@solibo/solibo-sdk 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.
Files changed (30) hide show
  1. package/KmLogging-logging.mjs +98 -98
  2. package/KotlinBigInteger-bignum.mjs +1114 -1114
  3. package/MultiplatformSettings-multiplatform-settings-test.mjs +18 -18
  4. package/MultiplatformSettings-multiplatform-settings.mjs +16 -16
  5. package/Stately-stately-concurrency.mjs +3 -3
  6. package/bitops-library-bits.mjs +33 -33
  7. package/bitops-library-endian.mjs +3 -3
  8. package/core-library-digest.mjs +29 -29
  9. package/cryptography-kotlin-cryptography-bigint.mjs +27 -27
  10. package/cryptography-kotlin-cryptography-core.mjs +47 -47
  11. package/cryptography-kotlin-cryptography-provider-base.mjs +4 -4
  12. package/cryptography-kotlin-cryptography-provider-webcrypto.mjs +135 -135
  13. package/cryptography-kotlin-cryptography-random.mjs +15 -15
  14. package/cryptography-kotlin-cryptography-serialization-asn1-modules.mjs +112 -112
  15. package/cryptography-kotlin-cryptography-serialization-asn1.mjs +237 -237
  16. package/cryptography-kotlin-cryptography-serialization-pem.mjs +15 -15
  17. package/hash-library-md.mjs +30 -30
  18. package/kotlin-kotlin-stdlib.mjs +9 -9
  19. package/kotlin-kotlin-stdlib.mjs.map +1 -1
  20. package/kotlinx-coroutines-core.mjs +1 -1
  21. package/ktor-ktor-client-auth.mjs +224 -224
  22. package/ktor-ktor-client-encoding.mjs +75 -75
  23. package/ktor-ktor-client-logging.mjs +520 -520
  24. package/ktor-ktor-client-mock.mjs +39 -39
  25. package/package.json +1 -1
  26. package/solibo-sdk-sdk-home-api.mjs +13151 -12881
  27. package/solibo-sdk-sdk-home-api.mjs.map +1 -1
  28. package/solibo-sdk-sdk.d.mts +2 -0
  29. package/solibo-sdk-sdk.mjs +4909 -4811
  30. package/solibo-sdk-sdk.mjs.map +1 -1
@@ -22116,6 +22116,7 @@ export declare class ConversationApi extends ApiClient.$metadata$.constructor {
22116
22116
  static createWithClient(baseUrl: string, httpClient: any/* HttpClient */): ConversationApi;
22117
22117
  authorizePublicConversation(companySlug: string, conversationId: bigint): Promise<HttpResponse<void>>;
22118
22118
  authorizePublicConversationByToken(companySlug: string, conversationId: bigint, token: string): Promise<HttpResponse<void>>;
22119
+ completeMultipleConversations(companyId: bigint, batchConversationStateCommand: BatchConversationStateCommand): Promise<HttpResponse<void>>;
22119
22120
  createConversation(companyId: bigint, createConversationCommand: CreateConversationCommand): Promise<HttpResponse<Conversation>>;
22120
22121
  createConversationCategory(companyId: bigint, createConversationCategoryCommand: CreateConversationCategoryCommand): Promise<HttpResponse<SecureConversationCategory>>;
22121
22122
  createConversationExternalParticipant(companyId: bigint, conversationId: bigint, addExternalConversationParticipantCommand: AddExternalConversationParticipantCommand): Promise<HttpResponse<void>>;
@@ -22160,6 +22161,7 @@ export declare class ConversationApi extends ApiClient.$metadata$.constructor {
22160
22161
  previewConversationCategoryParticipants(companyId: bigint, categoryId: bigint, fields?: string | null | undefined): Promise<HttpResponse<KtList<ConversationCategoryParticipantPreview>>>;
22161
22162
  publishConversation(companyId: bigint, conversationId: bigint): Promise<HttpResponse<Conversation>>;
22162
22163
  reOpenConversation(companyId: bigint, conversationId: bigint): Promise<HttpResponse<Conversation>>;
22164
+ reOpenMultipleConversations(companyId: bigint, batchConversationStateCommand: BatchConversationStateCommand): Promise<HttpResponse<void>>;
22163
22165
  showConversation(companyId: bigint, conversationId: bigint, translateToCountryId?: bigint | null | undefined, fields?: string | null | undefined): Promise<HttpResponse<Conversation>>;
22164
22166
  showConversationFolder(companyId: bigint, folderId: bigint, fields?: string | null | undefined): Promise<HttpResponse<ConversationFolder>>;
22165
22167
  showConversationPublic(companySlug: string, conversationId: bigint, fields?: string | null | undefined): Promise<HttpResponse<PublicConversation>>;