@solibo/solibo-sdk 1.6.3 → 1.6.5
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 +76 -76
- package/KotlinBigInteger-bignum.mjs +1104 -1104
- package/MultiplatformSettings-multiplatform-settings-test.mjs +18 -18
- package/MultiplatformSettings-multiplatform-settings.mjs +16 -16
- package/Stately-stately-concurrency.mjs +4 -4
- 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/kotlin-kotlin-stdlib.mjs +24 -24
- 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 +17290 -17251
- package/solibo-sdk-sdk-home-api.mjs.map +1 -1
- package/solibo-sdk-sdk.d.mts +4 -2
- package/solibo-sdk-sdk.mjs +2810 -2810
package/solibo-sdk-sdk.d.mts
CHANGED
|
@@ -2718,16 +2718,18 @@ export interface CreateConversationCategoryCommandProps {
|
|
|
2718
2718
|
color?: CategoryColorProps | null | undefined;
|
|
2719
2719
|
contactCategory?: boolean | null | undefined;
|
|
2720
2720
|
description?: string | null | undefined;
|
|
2721
|
+
incomingEmailCategory?: boolean | null | undefined;
|
|
2721
2722
|
name: string;
|
|
2722
2723
|
responsible: bigint;
|
|
2723
2724
|
}
|
|
2724
2725
|
export declare class CreateConversationCategoryCommand {
|
|
2725
2726
|
constructor(props: CreateConversationCategoryCommandProps);
|
|
2726
|
-
constructor(coResponsibleIds: bigint[] | null | undefined, color: CategoryColor | null | undefined, contactCategory: boolean | null | undefined, description: string | null | undefined, name: string, responsible: bigint);
|
|
2727
|
+
constructor(coResponsibleIds: bigint[] | null | undefined, color: CategoryColor | null | undefined, contactCategory: boolean | null | undefined, description: string | null | undefined, incomingEmailCategory: boolean | null | undefined, name: string, responsible: bigint);
|
|
2727
2728
|
get coResponsibleIds(): bigint[] | null | undefined;
|
|
2728
2729
|
get color(): CategoryColor | null | undefined;
|
|
2729
2730
|
get contactCategory(): boolean | null | undefined;
|
|
2730
2731
|
get description(): string | null | undefined;
|
|
2732
|
+
get incomingEmailCategory(): boolean | null | undefined;
|
|
2731
2733
|
get name(): string;
|
|
2732
2734
|
get responsible(): bigint;
|
|
2733
2735
|
}
|
|
@@ -18765,7 +18767,7 @@ export declare class ConversationApi extends ApiClient.$metadata$.constructor {
|
|
|
18765
18767
|
indexConversationCountByCompany(companyIds?: KtList<bigint> | null | undefined, categoryIds?: KtList<bigint> | null | undefined, status?: ConversationStatus | null | undefined, folderId?: bigint | null | undefined, assignedToUserId?: bigint | null | undefined, createdSince?: bigint | null | undefined, fields?: string | null | undefined): Promise<HttpResponse<KtMap<string, ConversationCountConversationCountByCompanyMap>>>;
|
|
18766
18768
|
indexConversationCountInCompany(companyId: bigint, fields?: string | null | undefined): Promise<HttpResponse<ConversationCount>>;
|
|
18767
18769
|
indexConversationFolders(companyId: bigint, parentId?: bigint | null | undefined, fields?: string | null | undefined, pageToken?: string | null | undefined, autoPaginate?: boolean | null | undefined, count?: number | null | undefined): Promise<HttpResponse<PagedListConversationFolder>>;
|
|
18768
|
-
indexConversations(search?: string | null | undefined, companyIds?: KtList<bigint> | null | undefined, categoryIds?: KtList<bigint> | null | undefined, status?: ConversationStatus | null | undefined, byParticipants?: KtList<bigint> | null | undefined, byParticipantTypes?: KtList<ParticipantType> | null | undefined, folderId?: bigint | null | undefined, assignedToUserId?: bigint | null | undefined, createdSince?: bigint | null | undefined, fields?: string | null | undefined, pageToken?: string | null | undefined, autoPaginate?: boolean | null | undefined, count?: number | null | undefined): Promise<HttpResponse<PagedListConversation>>;
|
|
18770
|
+
indexConversations(search?: string | null | undefined, companyIds?: KtList<bigint> | null | undefined, categoryIds?: KtList<bigint> | null | undefined, status?: ConversationStatus | null | undefined, byParticipants?: KtList<bigint> | null | undefined, byParticipantTypes?: KtList<ParticipantType> | null | undefined, folderId?: bigint | null | undefined, assignedToUserId?: bigint | null | undefined, createdSince?: bigint | null | undefined, updatedSince?: bigint | null | undefined, fields?: string | null | undefined, pageToken?: string | null | undefined, autoPaginate?: boolean | null | undefined, count?: number | null | undefined): Promise<HttpResponse<PagedListConversation>>;
|
|
18769
18771
|
moveConversation(companyId: bigint, conversationId: bigint, moveConversationToFolderCommand: MoveConversationToFolderCommand): Promise<HttpResponse<void>>;
|
|
18770
18772
|
publishConversation(companyId: bigint, conversationId: bigint): Promise<HttpResponse<Conversation>>;
|
|
18771
18773
|
reOpenConversation(companyId: bigint, conversationId: bigint): Promise<HttpResponse<Conversation>>;
|