@solibo/home-api 1.8.11 → 1.8.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "main": "solibo-sdk-sdk-home-api.mjs",
3
- "version": "1.8.11",
3
+ "version": "1.8.12",
4
4
  "name": "@solibo/home-api",
5
5
  "dependencies": {
6
6
  "ws": "8.18.3",
@@ -19130,6 +19130,7 @@ export declare class ConversationApi extends ApiClient.$metadata$.constructor {
19130
19130
  static createWithClient(baseUrl: string, httpClient: any/* HttpClient */): ConversationApi;
19131
19131
  authorizePublicConversation(companySlug: string, conversationId: bigint): Promise<HttpResponse<void>>;
19132
19132
  authorizePublicConversationByToken(companySlug: string, conversationId: bigint, token: string): Promise<HttpResponse<void>>;
19133
+ completeMultipleConversations(companyId: bigint, batchConversationStateCommand: BatchConversationStateCommand): Promise<HttpResponse<void>>;
19133
19134
  createConversation(companyId: bigint, createConversationCommand: CreateConversationCommand): Promise<HttpResponse<Conversation>>;
19134
19135
  createConversationCategory(companyId: bigint, createConversationCategoryCommand: CreateConversationCategoryCommand): Promise<HttpResponse<SecureConversationCategory>>;
19135
19136
  createConversationExternalParticipant(companyId: bigint, conversationId: bigint, addExternalConversationParticipantCommand: AddExternalConversationParticipantCommand): Promise<HttpResponse<void>>;
@@ -19174,6 +19175,7 @@ export declare class ConversationApi extends ApiClient.$metadata$.constructor {
19174
19175
  previewConversationCategoryParticipants(companyId: bigint, categoryId: bigint, fields?: Nullable<string>): Promise<HttpResponse<KtList<ConversationCategoryParticipantPreview>>>;
19175
19176
  publishConversation(companyId: bigint, conversationId: bigint): Promise<HttpResponse<Conversation>>;
19176
19177
  reOpenConversation(companyId: bigint, conversationId: bigint): Promise<HttpResponse<Conversation>>;
19178
+ reOpenMultipleConversations(companyId: bigint, batchConversationStateCommand: BatchConversationStateCommand): Promise<HttpResponse<void>>;
19177
19179
  showConversation(companyId: bigint, conversationId: bigint, translateToCountryId?: Nullable<bigint>, fields?: Nullable<string>): Promise<HttpResponse<Conversation>>;
19178
19180
  showConversationFolder(companyId: bigint, folderId: bigint, fields?: Nullable<string>): Promise<HttpResponse<ConversationFolder>>;
19179
19181
  showConversationPublic(companySlug: string, conversationId: bigint, fields?: Nullable<string>): Promise<HttpResponse<PublicConversation>>;