@solibo/solibo-sdk 1.8.2 → 1.8.3
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/Kotlin-DateTime-library-kotlinx-datetime.mjs +1 -1
- 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 +21 -21
- package/kotlin-kotlin-stdlib.mjs.map +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 +44460 -42461
- package/solibo-sdk-sdk-home-api.mjs.map +1 -1
- package/solibo-sdk-sdk.d.mts +85 -0
- package/solibo-sdk-sdk.mjs +3867 -3847
package/solibo-sdk-sdk.d.mts
CHANGED
|
@@ -667,6 +667,82 @@ export declare namespace Avviksliste {
|
|
|
667
667
|
const constructor: abstract new () => Avviksliste;
|
|
668
668
|
}
|
|
669
669
|
}
|
|
670
|
+
export interface BatchConversationStateCommandProps {
|
|
671
|
+
conversationIds: bigint[];
|
|
672
|
+
}
|
|
673
|
+
export declare class BatchConversationStateCommand {
|
|
674
|
+
constructor(props: BatchConversationStateCommandProps);
|
|
675
|
+
constructor(conversationIds: bigint[]);
|
|
676
|
+
get conversationIds(): bigint[];
|
|
677
|
+
}
|
|
678
|
+
export declare namespace BatchConversationStateCommand {
|
|
679
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
680
|
+
namespace $metadata$ {
|
|
681
|
+
const constructor: abstract new () => BatchConversationStateCommand;
|
|
682
|
+
}
|
|
683
|
+
}
|
|
684
|
+
export interface BatchMoveConversationsToFolderCommandProps {
|
|
685
|
+
conversationIds: bigint[];
|
|
686
|
+
folderId?: bigint | null | undefined;
|
|
687
|
+
}
|
|
688
|
+
export declare class BatchMoveConversationsToFolderCommand {
|
|
689
|
+
constructor(props: BatchMoveConversationsToFolderCommandProps);
|
|
690
|
+
constructor(conversationIds: bigint[], folderId?: bigint | null | undefined);
|
|
691
|
+
get conversationIds(): bigint[];
|
|
692
|
+
get folderId(): bigint | null | undefined;
|
|
693
|
+
}
|
|
694
|
+
export declare namespace BatchMoveConversationsToFolderCommand {
|
|
695
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
696
|
+
namespace $metadata$ {
|
|
697
|
+
const constructor: abstract new () => BatchMoveConversationsToFolderCommand;
|
|
698
|
+
}
|
|
699
|
+
}
|
|
700
|
+
export interface BatchMoveDocumentsCommandProps {
|
|
701
|
+
documentIds: bigint[];
|
|
702
|
+
}
|
|
703
|
+
export declare class BatchMoveDocumentsCommand {
|
|
704
|
+
constructor(props: BatchMoveDocumentsCommandProps);
|
|
705
|
+
constructor(documentIds: bigint[]);
|
|
706
|
+
get documentIds(): bigint[];
|
|
707
|
+
}
|
|
708
|
+
export declare namespace BatchMoveDocumentsCommand {
|
|
709
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
710
|
+
namespace $metadata$ {
|
|
711
|
+
const constructor: abstract new () => BatchMoveDocumentsCommand;
|
|
712
|
+
}
|
|
713
|
+
}
|
|
714
|
+
export interface BatchRestoreDocumentsCommandProps {
|
|
715
|
+
documentIds: bigint[];
|
|
716
|
+
documentType?: string | null | undefined;
|
|
717
|
+
parentId?: bigint | null | undefined;
|
|
718
|
+
}
|
|
719
|
+
export declare class BatchRestoreDocumentsCommand {
|
|
720
|
+
constructor(props: BatchRestoreDocumentsCommandProps);
|
|
721
|
+
constructor(documentIds: bigint[], documentType?: string | null | undefined, parentId?: bigint | null | undefined);
|
|
722
|
+
get documentIds(): bigint[];
|
|
723
|
+
get documentType(): string | null | undefined;
|
|
724
|
+
get parentId(): bigint | null | undefined;
|
|
725
|
+
}
|
|
726
|
+
export declare namespace BatchRestoreDocumentsCommand {
|
|
727
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
728
|
+
namespace $metadata$ {
|
|
729
|
+
const constructor: abstract new () => BatchRestoreDocumentsCommand;
|
|
730
|
+
}
|
|
731
|
+
}
|
|
732
|
+
export interface BatchTrashDocumentsCommandProps {
|
|
733
|
+
documentIds: bigint[];
|
|
734
|
+
}
|
|
735
|
+
export declare class BatchTrashDocumentsCommand {
|
|
736
|
+
constructor(props: BatchTrashDocumentsCommandProps);
|
|
737
|
+
constructor(documentIds: bigint[]);
|
|
738
|
+
get documentIds(): bigint[];
|
|
739
|
+
}
|
|
740
|
+
export declare namespace BatchTrashDocumentsCommand {
|
|
741
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
742
|
+
namespace $metadata$ {
|
|
743
|
+
const constructor: abstract new () => BatchTrashDocumentsCommand;
|
|
744
|
+
}
|
|
745
|
+
}
|
|
670
746
|
export interface BoardmemberPersonnummerProps {
|
|
671
747
|
pnr: string;
|
|
672
748
|
}
|
|
@@ -22049,6 +22125,9 @@ export declare class ConversationApi extends ApiClient.$metadata$.constructor {
|
|
|
22049
22125
|
createInternalMessage(companyId: bigint, conversationId: bigint, createInternalMessageCommand: CreateInternalMessageCommand): Promise<HttpResponse<MessageInConversation>>;
|
|
22050
22126
|
createMessage(companyId: bigint, conversationId: bigint, createMessageCommand: CreateMessageCommand): Promise<HttpResponse<MessageInConversation>>;
|
|
22051
22127
|
createMessagePublicConversation(companySlug: string, conversationId: bigint, createMessageCommand: CreateMessageCommand): Promise<HttpResponse<void>>;
|
|
22128
|
+
createMultipleConversationFlags(companyId: bigint, batchConversationStateCommand: BatchConversationStateCommand): Promise<HttpResponse<void>>;
|
|
22129
|
+
createMultipleConversationReads(companyId: bigint, batchConversationStateCommand: BatchConversationStateCommand): Promise<HttpResponse<void>>;
|
|
22130
|
+
createMultipleConversationUnreads(companyId: bigint, batchConversationStateCommand: BatchConversationStateCommand): Promise<HttpResponse<void>>;
|
|
22052
22131
|
createMultipleConversations(bulkCreateConversationsCommand: BulkCreateConversationsCommand): Promise<HttpResponse<BulkCreateConversationsResult>>;
|
|
22053
22132
|
deleteConversation(companyId: bigint, conversationId: bigint, translateToCountryId?: bigint | null | undefined): Promise<HttpResponse<void>>;
|
|
22054
22133
|
deleteConversationCategory(companyId: bigint, categoryId: bigint): Promise<HttpResponse<void>>;
|
|
@@ -22056,6 +22135,8 @@ export declare class ConversationApi extends ApiClient.$metadata$.constructor {
|
|
|
22056
22135
|
deleteConversationParticipant(companyId: bigint, conversationId: bigint, participantType: string, participantId: bigint): Promise<HttpResponse<void>>;
|
|
22057
22136
|
deleteDocumentPublicConversation(companySlug: string, conversationId: bigint, documentId: bigint, redirect?: boolean | null | undefined, size?: string | null | undefined): Promise<HttpResponse<void>>;
|
|
22058
22137
|
deleteFolder(companyId: bigint, folderId: bigint): Promise<HttpResponse<void>>;
|
|
22138
|
+
deleteMultipleConversationFlags(companyId: bigint, batchConversationStateCommand: BatchConversationStateCommand): Promise<HttpResponse<void>>;
|
|
22139
|
+
deleteMultipleConversations(companyId: bigint, batchConversationStateCommand: BatchConversationStateCommand): Promise<HttpResponse<void>>;
|
|
22059
22140
|
finalizeConversation(companyId: bigint, conversationId: bigint): Promise<HttpResponse<Conversation>>;
|
|
22060
22141
|
finalizeIntegratedConversationMessage(companyId: bigint, conversationId: bigint, finalizeConversationMessageDocumentCommand: FinalizeConversationMessageDocumentCommand): Promise<HttpResponse<IntegratedConversationMessageResult>>;
|
|
22061
22142
|
getMessageFullEmailContent(companyId: bigint, conversationId: bigint, messageId: bigint, fields?: string | null | undefined): Promise<HttpResponse<FullEmailContent>>;
|
|
@@ -22070,6 +22151,7 @@ export declare class ConversationApi extends ApiClient.$metadata$.constructor {
|
|
|
22070
22151
|
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>>;
|
|
22071
22152
|
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, flaggedByCurrentUser?: boolean | null | undefined, readByCurrentUser?: boolean | null | undefined, fields?: string | null | undefined, pageToken?: string | null | undefined, autoPaginate?: boolean | null | undefined, count?: number | null | undefined): Promise<HttpResponse<PagedListConversation>>;
|
|
22072
22153
|
moveConversation(companyId: bigint, conversationId: bigint, moveConversationToFolderCommand: MoveConversationToFolderCommand): Promise<HttpResponse<void>>;
|
|
22154
|
+
moveMultipleConversations(companyId: bigint, batchMoveConversationsToFolderCommand: BatchMoveConversationsToFolderCommand): Promise<HttpResponse<void>>;
|
|
22073
22155
|
previewConversationCategoryParticipants(companyId: bigint, categoryId: bigint, fields?: string | null | undefined): Promise<HttpResponse<KtList<ConversationCategoryParticipantPreview>>>;
|
|
22074
22156
|
publishConversation(companyId: bigint, conversationId: bigint): Promise<HttpResponse<Conversation>>;
|
|
22075
22157
|
reOpenConversation(companyId: bigint, conversationId: bigint): Promise<HttpResponse<Conversation>>;
|
|
@@ -22103,8 +22185,10 @@ export declare class DocumentApi extends ApiClient.$metadata$.constructor {
|
|
|
22103
22185
|
listDocument(companyId: bigint, search?: string | null | undefined, type?: KtList<DocumentType> | null | undefined, createdAtFrom?: bigint | null | undefined, createdAtTo?: bigint | null | undefined, fields?: string | null | undefined, pageToken?: string | null | undefined, autoPaginate?: boolean | null | undefined, count?: number | null | undefined): Promise<HttpResponse<PagedListDocument>>;
|
|
22104
22186
|
listDocumentByType(companyId: bigint, documentType: DocumentType, parentId?: bigint | null | undefined, isDirectory?: boolean | null | undefined, fields?: string | null | undefined, pageToken?: string | null | undefined, autoPaginate?: boolean | null | undefined, count?: number | null | undefined): Promise<HttpResponse<PagedListDocument>>;
|
|
22105
22187
|
moveDocument(companyId: bigint, documentId: bigint, parentId: string): Promise<HttpResponse<void>>;
|
|
22188
|
+
moveMultipleDocuments(companyId: bigint, parentId: string, batchMoveDocumentsCommand: BatchMoveDocumentsCommand): Promise<HttpResponse<KtList<Document>>>;
|
|
22106
22189
|
renameDocument(companyId: bigint, documentId: bigint, renameDocumentCommand: RenameDocumentCommand): Promise<HttpResponse<Document>>;
|
|
22107
22190
|
restoreDocument(companyId: bigint, documentId: bigint, restoreDocumentCommand: RestoreDocumentCommand): Promise<HttpResponse<void>>;
|
|
22191
|
+
restoreMultipleDocuments(companyId: bigint, batchRestoreDocumentsCommand: BatchRestoreDocumentsCommand): Promise<HttpResponse<void>>;
|
|
22108
22192
|
searchDocuments(companyId: bigint, searchText: string, fields?: string | null | undefined, pageToken?: string | null | undefined, autoPaginate?: boolean | null | undefined, count?: number | null | undefined): Promise<HttpResponse<PagedListDocument>>;
|
|
22109
22193
|
showCompanyTypeDirectoryZip(companyId: bigint, documentType: string, documentId: bigint): Promise<HttpResponse<Base64ByteArray>>;
|
|
22110
22194
|
showDirectoryZip(companyId: bigint): Promise<HttpResponse<Base64ByteArray>>;
|
|
@@ -22113,6 +22197,7 @@ export declare class DocumentApi extends ApiClient.$metadata$.constructor {
|
|
|
22113
22197
|
showPublicDocument(companyId: bigint, documentId: bigint, redirect?: boolean | null | undefined, size?: string | null | undefined, fields?: string | null | undefined): Promise<HttpResponse<UrlWrapper>>;
|
|
22114
22198
|
showTypeDirectoryZip(companyId: bigint, documentType: string): Promise<HttpResponse<Base64ByteArray>>;
|
|
22115
22199
|
trashDocument(companyId: bigint, documentId: bigint): Promise<HttpResponse<void>>;
|
|
22200
|
+
trashMultipleDocuments(companyId: bigint, batchTrashDocumentsCommand: BatchTrashDocumentsCommand): Promise<HttpResponse<void>>;
|
|
22116
22201
|
}
|
|
22117
22202
|
export declare namespace DocumentApi {
|
|
22118
22203
|
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|