diff --git a/clients/message-client/CHANGELOG.md b/clients/message-client/CHANGELOG.md index fb99f0fe..8119071c 100644 --- a/clients/message-client/CHANGELOG.md +++ b/clients/message-client/CHANGELOG.md @@ -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 diff --git a/clients/message-client/package.json b/clients/message-client/package.json index f7ec2ccd..d344dabb 100644 --- a/clients/message-client/package.json +++ b/clients/message-client/package.json @@ -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", diff --git a/clients/message-client/src/openapi.d.ts b/clients/message-client/src/openapi.d.ts index 391128c3..2f47b873 100644 --- a/clients/message-client/src/openapi.d.ts +++ b/clients/message-client/src/openapi.d.ts @@ -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: @@ -2851,6 +2852,7 @@ declare namespace Paths { } } + export interface OperationMethods { /** * updateMessage - updateMessage @@ -4097,6 +4099,7 @@ export interface PathsDictionary { export type Client = OpenAPIClient + export type Address = Components.Schemas.Address; export type AssigneeWorkload = Components.Schemas.AssigneeWorkload; export type AssigneeWorkloadParams = Components.Schemas.AssigneeWorkloadParams; diff --git a/clients/message-client/src/openapi.json b/clients/message-client/src/openapi.json index 60c3d304..87434e77 100644 --- a/clients/message-client/src/openapi.json +++ b/clients/message-client/src/openapi.json @@ -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",