@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.
- package/KmLogging-logging.mjs +98 -98
- package/KotlinBigInteger-bignum.mjs +1114 -1114
- package/MultiplatformSettings-multiplatform-settings-test.mjs +18 -18
- package/MultiplatformSettings-multiplatform-settings.mjs +16 -16
- package/Stately-stately-concurrency.mjs +3 -3
- package/bitops-library-bits.mjs +33 -33
- package/bitops-library-endian.mjs +3 -3
- package/core-library-digest.mjs +29 -29
- package/cryptography-kotlin-cryptography-bigint.mjs +27 -27
- package/cryptography-kotlin-cryptography-core.mjs +47 -47
- package/cryptography-kotlin-cryptography-provider-base.mjs +4 -4
- package/cryptography-kotlin-cryptography-provider-webcrypto.mjs +135 -135
- package/cryptography-kotlin-cryptography-random.mjs +15 -15
- package/cryptography-kotlin-cryptography-serialization-asn1-modules.mjs +112 -112
- package/cryptography-kotlin-cryptography-serialization-asn1.mjs +237 -237
- package/cryptography-kotlin-cryptography-serialization-pem.mjs +15 -15
- package/hash-library-md.mjs +30 -30
- package/kotlin-kotlin-stdlib.mjs +9 -9
- package/kotlin-kotlin-stdlib.mjs.map +1 -1
- package/kotlinx-coroutines-core.mjs +1 -1
- package/ktor-ktor-client-auth.mjs +224 -224
- package/ktor-ktor-client-encoding.mjs +75 -75
- package/ktor-ktor-client-logging.mjs +520 -520
- package/ktor-ktor-client-mock.mjs +39 -39
- package/package.json +1 -1
- package/solibo-sdk-sdk-home-api.mjs +13151 -12881
- package/solibo-sdk-sdk-home-api.mjs.map +1 -1
- package/solibo-sdk-sdk.d.mts +2 -0
- package/solibo-sdk-sdk.mjs +4909 -4811
- package/solibo-sdk-sdk.mjs.map +1 -1
package/solibo-sdk-sdk.d.mts
CHANGED
|
@@ -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>>;
|