@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/kotlin-kotlin-stdlib.mjs +11 -11
- package/kotlin-kotlin-stdlib.mjs.map +1 -1
- package/package.json +1 -1
- package/solibo-sdk-sdk-home-api.d.mts +2 -0
- package/solibo-sdk-sdk-home-api.mjs +13149 -12881
- package/solibo-sdk-sdk-home-api.mjs.map +1 -1
package/package.json
CHANGED
|
@@ -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>>;
|