Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions clients/message-client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 1.30.0

### Minor Changes

- "Add inbox_id to searchIds"

## 1.28.0

- Added `unlink_mapped_entities` query param to `unassignThread` to also remove unassigned entities from `mapped_entities` on related source entities
Expand Down
2 changes: 1 addition & 1 deletion clients/message-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@epilot/message-client",
"version": "1.29.0",
"version": "1.30.0",
"description": "API Client for epilot Message API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
3 changes: 3 additions & 0 deletions clients/message-client/src/openapi.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -614,6 +614,7 @@ declare namespace Components {
*/
export type ReadingScope = "organization" | "user";
export interface SearchIDParams {
inbox_id?: string | string[];
/**
* Lucene query syntax supported with ElasticSearch
* example:
Expand Down Expand Up @@ -2851,6 +2852,7 @@ declare namespace Paths {
}
}


export interface OperationMethods {
/**
* updateMessage - updateMessage
Expand Down Expand Up @@ -4097,6 +4099,7 @@ export interface PathsDictionary {

export type Client = OpenAPIClient<OperationMethods, PathsDictionary>


export type Address = Components.Schemas.Address;
export type AssigneeWorkload = Components.Schemas.AssigneeWorkload;
export type AssigneeWorkloadParams = Components.Schemas.AssigneeWorkloadParams;
Expand Down
20 changes: 20 additions & 0 deletions clients/message-client/src/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -2745,6 +2745,26 @@
"SearchIDParams": {
"type": "object",
"properties": {
"inbox_id": {
"oneOf": [
{
"type": "string",
"description": "Inbox ID",
"example": "3f34ce73-089c-4d45-a5ee-c161234e41c3"
},
{
"type": "array",
"items": {
"type": "string"
},
"description": "Inbox IDs",
"example": [
"3f34ce73-089c-4d45-a5ee-c161234e41c3",
"3f34ce73-089c-4d45-a5ee-c161234e41c4"
]
}
]
},
"q": {
"description": "Lucene query syntax supported with ElasticSearch",
"type": "string",
Expand Down
Loading