@solibo/solibo-sdk 1.9.1 → 1.9.2

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 (33) 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/client.d.mts +111 -4
  9. package/client.mjs +375 -0
  10. package/core-library-digest.mjs +29 -29
  11. package/cryptography-kotlin-cryptography-bigint.mjs +27 -27
  12. package/cryptography-kotlin-cryptography-core.mjs +47 -47
  13. package/cryptography-kotlin-cryptography-provider-base.mjs +4 -4
  14. package/cryptography-kotlin-cryptography-provider-webcrypto.mjs +135 -135
  15. package/cryptography-kotlin-cryptography-random.mjs +15 -15
  16. package/cryptography-kotlin-cryptography-serialization-asn1-modules.mjs +112 -112
  17. package/cryptography-kotlin-cryptography-serialization-asn1.mjs +237 -237
  18. package/cryptography-kotlin-cryptography-serialization-pem.mjs +15 -15
  19. package/hash-library-md.mjs +30 -30
  20. package/index.mjs +6 -0
  21. package/kotlin-kotlin-stdlib.mjs +20 -20
  22. package/kotlin-kotlin-stdlib.mjs.map +1 -1
  23. package/kotlinx-coroutines-core.mjs +1 -1
  24. package/ktor-ktor-client-auth.mjs +224 -224
  25. package/ktor-ktor-client-encoding.mjs +75 -75
  26. package/ktor-ktor-client-logging.mjs +520 -520
  27. package/ktor-ktor-client-mock.mjs +39 -39
  28. package/package.json +1 -1
  29. package/solibo-sdk-sdk-home-api.mjs +43589 -38178
  30. package/solibo-sdk-sdk-home-api.mjs.map +1 -1
  31. package/solibo-sdk-sdk.d.mts +415 -6
  32. package/solibo-sdk-sdk.mjs +3885 -3849
  33. package/solibo-sdk-sdk.mjs.map +1 -1
@@ -2751,6 +2751,48 @@ export declare namespace CloseMeetingCommand {
2751
2751
  const constructor: abstract new () => CloseMeetingCommand;
2752
2752
  }
2753
2753
  }
2754
+ export declare abstract class CollectionHandoff {
2755
+ private constructor();
2756
+ static get NONE(): CollectionHandoff & {
2757
+ get name(): "NONE";
2758
+ get ordinal(): 0;
2759
+ };
2760
+ static get KRAVIA_AFTER_FINAL_NOTICE(): CollectionHandoff & {
2761
+ get name(): "KRAVIA_AFTER_FINAL_NOTICE";
2762
+ get ordinal(): 1;
2763
+ };
2764
+ static get None(): CollectionHandoff & {
2765
+ get name(): "NONE";
2766
+ get ordinal(): 0;
2767
+ };
2768
+ static get KraviaAfterFinalNotice(): CollectionHandoff & {
2769
+ get name(): "KRAVIA_AFTER_FINAL_NOTICE";
2770
+ get ordinal(): 1;
2771
+ };
2772
+ static values(): [typeof CollectionHandoff.NONE, typeof CollectionHandoff.KRAVIA_AFTER_FINAL_NOTICE];
2773
+ static valueOf(value: string): CollectionHandoff;
2774
+ get name(): "NONE" | "KRAVIA_AFTER_FINAL_NOTICE";
2775
+ get ordinal(): 0 | 1;
2776
+ get value(): string;
2777
+ }
2778
+ export declare namespace CollectionHandoff {
2779
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2780
+ namespace $metadata$ {
2781
+ const constructor: abstract new () => CollectionHandoff;
2782
+ }
2783
+ abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
2784
+ private constructor();
2785
+ }
2786
+ namespace Companion {
2787
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2788
+ namespace $metadata$ {
2789
+ abstract class constructor /* implements SerializerFactory */ {
2790
+ fromValue(value: string): CollectionHandoff | null | undefined;
2791
+ private constructor();
2792
+ }
2793
+ }
2794
+ }
2795
+ }
2754
2796
  export interface CommunicationChannelReportProps {
2755
2797
  communicationType: CommunicationMessageType;
2756
2798
  finishedAt?: SoliboInstant /* Instant */ | null | undefined;
@@ -4187,6 +4229,10 @@ export declare abstract class ConversationStatus {
4187
4229
  get name(): "COMPLETE";
4188
4230
  get ordinal(): 3;
4189
4231
  };
4232
+ static get TRASHED(): ConversationStatus & {
4233
+ get name(): "TRASHED";
4234
+ get ordinal(): 4;
4235
+ };
4190
4236
  static get Draft(): ConversationStatus & {
4191
4237
  get name(): "DRAFT";
4192
4238
  get ordinal(): 0;
@@ -4203,10 +4249,14 @@ export declare abstract class ConversationStatus {
4203
4249
  get name(): "COMPLETE";
4204
4250
  get ordinal(): 3;
4205
4251
  };
4206
- static values(): [typeof ConversationStatus.DRAFT, typeof ConversationStatus.NEW, typeof ConversationStatus.IN_PROGRESS, typeof ConversationStatus.COMPLETE];
4252
+ static get Trashed(): ConversationStatus & {
4253
+ get name(): "TRASHED";
4254
+ get ordinal(): 4;
4255
+ };
4256
+ static values(): [typeof ConversationStatus.DRAFT, typeof ConversationStatus.NEW, typeof ConversationStatus.IN_PROGRESS, typeof ConversationStatus.COMPLETE, typeof ConversationStatus.TRASHED];
4207
4257
  static valueOf(value: string): ConversationStatus;
4208
- get name(): "DRAFT" | "NEW" | "IN_PROGRESS" | "COMPLETE";
4209
- get ordinal(): 0 | 1 | 2 | 3;
4258
+ get name(): "DRAFT" | "NEW" | "IN_PROGRESS" | "COMPLETE" | "TRASHED";
4259
+ get ordinal(): 0 | 1 | 2 | 3 | 4;
4210
4260
  get value(): string;
4211
4261
  }
4212
4262
  export declare namespace ConversationStatus {
@@ -8860,19 +8910,23 @@ export declare namespace InvoiceDistributionType {
8860
8910
  }
8861
8911
  }
8862
8912
  export interface InvoiceInputProps {
8913
+ collectionHandoff?: CollectionHandoff | null | undefined;
8863
8914
  id: string;
8864
8915
  invoiceData: InvoiceDataInputProps;
8865
8916
  invoiceReferenceId?: string | null | undefined;
8917
+ overdueOwner?: OverdueOwner | null | undefined;
8866
8918
  payer: PayerInputProps;
8867
8919
  recurring?: boolean | null | undefined;
8868
8920
  tenant: TenantInputProps;
8869
8921
  }
8870
8922
  export declare class InvoiceInput {
8871
8923
  constructor(props: InvoiceInputProps);
8872
- constructor(id: string, invoiceData: InvoiceDataInput, invoiceReferenceId: string | null | undefined, payer: PayerInput, recurring: boolean | null | undefined, tenant: TenantInput);
8924
+ constructor(collectionHandoff: CollectionHandoff | null | undefined, id: string, invoiceData: InvoiceDataInput, invoiceReferenceId: string | null | undefined, overdueOwner: OverdueOwner | null | undefined, payer: PayerInput, recurring: boolean | null | undefined, tenant: TenantInput);
8925
+ get collectionHandoff(): CollectionHandoff | null | undefined;
8873
8926
  get id(): string;
8874
8927
  get invoiceData(): InvoiceDataInput;
8875
8928
  get invoiceReferenceId(): string | null | undefined;
8929
+ get overdueOwner(): OverdueOwner | null | undefined;
8876
8930
  get payer(): PayerInput;
8877
8931
  get recurring(): boolean | null | undefined;
8878
8932
  get tenant(): TenantInput;
@@ -9584,15 +9638,19 @@ export declare namespace InvoiceRecipient {
9584
9638
  }
9585
9639
  }
9586
9640
  export interface InvoiceResultProps {
9641
+ collectionHandoff?: CollectionHandoff | null | undefined;
9587
9642
  invoiceId: string;
9588
9643
  logs: InvoiceLogProps[];
9644
+ overdueOwner?: OverdueOwner | null | undefined;
9589
9645
  preview?: InvoiceResultPreviewProps | null | undefined;
9590
9646
  }
9591
9647
  export declare class InvoiceResult {
9592
9648
  constructor(props: InvoiceResultProps);
9593
- constructor(invoiceId: string, logs: InvoiceLog[], preview?: InvoiceResultPreview | null | undefined);
9649
+ constructor(collectionHandoff: CollectionHandoff | null | undefined, invoiceId: string, logs: InvoiceLog[], overdueOwner?: OverdueOwner | null | undefined, preview?: InvoiceResultPreview | null | undefined);
9650
+ get collectionHandoff(): CollectionHandoff | null | undefined;
9594
9651
  get invoiceId(): string;
9595
9652
  get logs(): InvoiceLog[];
9653
+ get overdueOwner(): OverdueOwner | null | undefined;
9596
9654
  get preview(): InvoiceResultPreview | null | undefined;
9597
9655
  }
9598
9656
  export declare namespace InvoiceResult {
@@ -11617,6 +11675,24 @@ export declare namespace MessageDeliverability {
11617
11675
  const constructor: abstract new () => MessageDeliverability;
11618
11676
  }
11619
11677
  }
11678
+ export interface MessageEditHistoryProps {
11679
+ content: string;
11680
+ id: bigint;
11681
+ replacedAt: SoliboInstant /* Instant */;
11682
+ }
11683
+ export declare class MessageEditHistory {
11684
+ constructor(props: MessageEditHistoryProps);
11685
+ constructor(content: string, id: bigint, replacedAt: SoliboInstant /* Instant */);
11686
+ get content(): string;
11687
+ get id(): bigint;
11688
+ get replacedAt(): SoliboInstant /* Instant */;
11689
+ }
11690
+ export declare namespace MessageEditHistory {
11691
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
11692
+ namespace $metadata$ {
11693
+ const constructor: abstract new () => MessageEditHistory;
11694
+ }
11695
+ }
11620
11696
  export interface MessageEmailContentProps {
11621
11697
  hasMoreContent?: boolean | null | undefined;
11622
11698
  html?: string | null | undefined;
@@ -11677,8 +11753,10 @@ export declare namespace MessageGroup {
11677
11753
  }
11678
11754
  export interface MessageInConversationProps {
11679
11755
  content: string;
11756
+ deletedAt?: SoliboInstant /* Instant */ | null | undefined;
11680
11757
  deliverability?: MessageDeliverabilityProps[] | null | undefined;
11681
11758
  documents?: DocumentProps[] | null | undefined;
11759
+ editedAt?: SoliboInstant /* Instant */ | null | undefined;
11682
11760
  emailContent?: MessageEmailContentProps | null | undefined;
11683
11761
  emailRecipients?: MessageEmailRecipientsProps | null | undefined;
11684
11762
  id: bigint;
@@ -11690,10 +11768,12 @@ export interface MessageInConversationProps {
11690
11768
  }
11691
11769
  export declare class MessageInConversation {
11692
11770
  constructor(props: MessageInConversationProps);
11693
- constructor(content: string, deliverability: MessageDeliverability[] | null | undefined, documents: Document[] | null | undefined, emailContent: MessageEmailContent | null | undefined, emailRecipients: MessageEmailRecipients | null | undefined, id: bigint, renderedContent: string | null | undefined, sentAt: SoliboInstant /* Instant */, sentBy: Participant | null | undefined, sentById: bigint, type?: MessageType | null | undefined);
11771
+ constructor(content: string, deletedAt: SoliboInstant /* Instant */ | null | undefined, deliverability: MessageDeliverability[] | null | undefined, documents: Document[] | null | undefined, editedAt: SoliboInstant /* Instant */ | null | undefined, emailContent: MessageEmailContent | null | undefined, emailRecipients: MessageEmailRecipients | null | undefined, id: bigint, renderedContent: string | null | undefined, sentAt: SoliboInstant /* Instant */, sentBy: Participant | null | undefined, sentById: bigint, type?: MessageType | null | undefined);
11694
11772
  get content(): string;
11773
+ get deletedAt(): SoliboInstant /* Instant */ | null | undefined;
11695
11774
  get deliverability(): MessageDeliverability[] | null | undefined;
11696
11775
  get documents(): Document[] | null | undefined;
11776
+ get editedAt(): SoliboInstant /* Instant */ | null | undefined;
11697
11777
  get emailContent(): MessageEmailContent | null | undefined;
11698
11778
  get emailRecipients(): MessageEmailRecipients | null | undefined;
11699
11779
  get id(): bigint;
@@ -12109,6 +12189,244 @@ export declare namespace NotificationGroupType {
12109
12189
  }
12110
12190
  }
12111
12191
  }
12192
+ export interface Office365CustomerConnectCommandProps {
12193
+ invitationEmail: string;
12194
+ }
12195
+ export declare class Office365CustomerConnectCommand {
12196
+ constructor(props: Office365CustomerConnectCommandProps);
12197
+ constructor(invitationEmail: string);
12198
+ get invitationEmail(): string;
12199
+ }
12200
+ export declare namespace Office365CustomerConnectCommand {
12201
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
12202
+ namespace $metadata$ {
12203
+ const constructor: abstract new () => Office365CustomerConnectCommand;
12204
+ }
12205
+ }
12206
+ export interface Office365CustomerDisconnectProps {
12207
+ disconnected: boolean;
12208
+ }
12209
+ export declare class Office365CustomerDisconnect {
12210
+ constructor(props: Office365CustomerDisconnectProps);
12211
+ constructor(disconnected: boolean);
12212
+ get disconnected(): boolean;
12213
+ }
12214
+ export declare namespace Office365CustomerDisconnect {
12215
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
12216
+ namespace $metadata$ {
12217
+ const constructor: abstract new () => Office365CustomerDisconnect;
12218
+ }
12219
+ }
12220
+ export interface Office365EditSessionProps {
12221
+ actorKind: Office365EditSessionActorKind;
12222
+ validUntil?: SoliboInstant /* Instant */ | null | undefined;
12223
+ webUrl: string;
12224
+ }
12225
+ export declare class Office365EditSession {
12226
+ constructor(props: Office365EditSessionProps);
12227
+ constructor(actorKind: Office365EditSessionActorKind, validUntil: SoliboInstant /* Instant */ | null | undefined, webUrl: string);
12228
+ get actorKind(): Office365EditSessionActorKind;
12229
+ get validUntil(): SoliboInstant /* Instant */ | null | undefined;
12230
+ get webUrl(): string;
12231
+ }
12232
+ export declare namespace Office365EditSession {
12233
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
12234
+ namespace $metadata$ {
12235
+ const constructor: abstract new () => Office365EditSession;
12236
+ }
12237
+ }
12238
+ export declare abstract class Office365EditSessionActorKind {
12239
+ private constructor();
12240
+ static get EMPLOYEE(): Office365EditSessionActorKind & {
12241
+ get name(): "EMPLOYEE";
12242
+ get ordinal(): 0;
12243
+ };
12244
+ static get CUSTOMER(): Office365EditSessionActorKind & {
12245
+ get name(): "CUSTOMER";
12246
+ get ordinal(): 1;
12247
+ };
12248
+ static get Employee(): Office365EditSessionActorKind & {
12249
+ get name(): "EMPLOYEE";
12250
+ get ordinal(): 0;
12251
+ };
12252
+ static get Customer(): Office365EditSessionActorKind & {
12253
+ get name(): "CUSTOMER";
12254
+ get ordinal(): 1;
12255
+ };
12256
+ static values(): [typeof Office365EditSessionActorKind.EMPLOYEE, typeof Office365EditSessionActorKind.CUSTOMER];
12257
+ static valueOf(value: string): Office365EditSessionActorKind;
12258
+ get name(): "EMPLOYEE" | "CUSTOMER";
12259
+ get ordinal(): 0 | 1;
12260
+ get value(): string;
12261
+ }
12262
+ export declare namespace Office365EditSessionActorKind {
12263
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
12264
+ namespace $metadata$ {
12265
+ const constructor: abstract new () => Office365EditSessionActorKind;
12266
+ }
12267
+ abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
12268
+ private constructor();
12269
+ }
12270
+ namespace Companion {
12271
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
12272
+ namespace $metadata$ {
12273
+ abstract class constructor /* implements SerializerFactory */ {
12274
+ fromValue(value: string): Office365EditSessionActorKind | null | undefined;
12275
+ private constructor();
12276
+ }
12277
+ }
12278
+ }
12279
+ }
12280
+ export interface Office365InternalDocumentPublishRequestProps {
12281
+ requestId: bigint;
12282
+ state: string;
12283
+ }
12284
+ export declare class Office365InternalDocumentPublishRequest {
12285
+ constructor(props: Office365InternalDocumentPublishRequestProps);
12286
+ constructor(requestId: bigint, state: string);
12287
+ get requestId(): bigint;
12288
+ get state(): string;
12289
+ }
12290
+ export declare namespace Office365InternalDocumentPublishRequest {
12291
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
12292
+ namespace $metadata$ {
12293
+ const constructor: abstract new () => Office365InternalDocumentPublishRequest;
12294
+ }
12295
+ }
12296
+ export interface Office365InternalDocumentPublishRequestCommandProps {
12297
+ belongsToId?: bigint | null | undefined;
12298
+ documentType: DocumentType;
12299
+ driveItemId: string;
12300
+ idempotencyKey: string;
12301
+ parentDocumentId?: bigint | null | undefined;
12302
+ }
12303
+ export declare class Office365InternalDocumentPublishRequestCommand {
12304
+ constructor(props: Office365InternalDocumentPublishRequestCommandProps);
12305
+ constructor(belongsToId: bigint | null | undefined, documentType: DocumentType, driveItemId: string, idempotencyKey: string, parentDocumentId?: bigint | null | undefined);
12306
+ get belongsToId(): bigint | null | undefined;
12307
+ get documentType(): DocumentType;
12308
+ get driveItemId(): string;
12309
+ get idempotencyKey(): string;
12310
+ get parentDocumentId(): bigint | null | undefined;
12311
+ }
12312
+ export declare namespace Office365InternalDocumentPublishRequestCommand {
12313
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
12314
+ namespace $metadata$ {
12315
+ const constructor: abstract new () => Office365InternalDocumentPublishRequestCommand;
12316
+ }
12317
+ }
12318
+ export interface Office365ManagedDocumentCandidateClassificationRequestProps {
12319
+ belongsToId?: bigint | null | undefined;
12320
+ documentType: DocumentType;
12321
+ parentDocumentId?: bigint | null | undefined;
12322
+ }
12323
+ export declare class Office365ManagedDocumentCandidateClassificationRequest {
12324
+ constructor(props: Office365ManagedDocumentCandidateClassificationRequestProps);
12325
+ constructor(belongsToId: bigint | null | undefined, documentType: DocumentType, parentDocumentId?: bigint | null | undefined);
12326
+ get belongsToId(): bigint | null | undefined;
12327
+ get documentType(): DocumentType;
12328
+ get parentDocumentId(): bigint | null | undefined;
12329
+ }
12330
+ export declare namespace Office365ManagedDocumentCandidateClassificationRequest {
12331
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
12332
+ namespace $metadata$ {
12333
+ const constructor: abstract new () => Office365ManagedDocumentCandidateClassificationRequest;
12334
+ }
12335
+ }
12336
+ export interface Office365ManagedDocumentCandidateCompanyProps {
12337
+ id: bigint;
12338
+ name?: string | null | undefined;
12339
+ }
12340
+ export declare class Office365ManagedDocumentCandidateCompany {
12341
+ constructor(props: Office365ManagedDocumentCandidateCompanyProps);
12342
+ constructor(id: bigint, name?: string | null | undefined);
12343
+ get id(): bigint;
12344
+ get name(): string | null | undefined;
12345
+ }
12346
+ export declare namespace Office365ManagedDocumentCandidateCompany {
12347
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
12348
+ namespace $metadata$ {
12349
+ const constructor: abstract new () => Office365ManagedDocumentCandidateCompany;
12350
+ }
12351
+ }
12352
+ export interface Office365ManagedDocumentCandidateReviewProps {
12353
+ candidateId: bigint;
12354
+ documentId?: bigint | null | undefined;
12355
+ state: string;
12356
+ }
12357
+ export declare class Office365ManagedDocumentCandidateReview {
12358
+ constructor(props: Office365ManagedDocumentCandidateReviewProps);
12359
+ constructor(candidateId: bigint, documentId: bigint | null | undefined, state: string);
12360
+ get candidateId(): bigint;
12361
+ get documentId(): bigint | null | undefined;
12362
+ get state(): string;
12363
+ }
12364
+ export declare namespace Office365ManagedDocumentCandidateReview {
12365
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
12366
+ namespace $metadata$ {
12367
+ const constructor: abstract new () => Office365ManagedDocumentCandidateReview;
12368
+ }
12369
+ }
12370
+ export interface Office365ManagedDocumentCandidateReviewCandidateProps {
12371
+ actions: string[];
12372
+ candidateId: bigint;
12373
+ company: Office365ManagedDocumentCandidateCompanyProps;
12374
+ discoveredAt: SoliboInstant /* Instant */;
12375
+ fileName: string;
12376
+ reason: string;
12377
+ uploader?: Office365ManagedDocumentCandidateUploaderProps | null | undefined;
12378
+ }
12379
+ export declare class Office365ManagedDocumentCandidateReviewCandidate {
12380
+ constructor(props: Office365ManagedDocumentCandidateReviewCandidateProps);
12381
+ constructor(actions: string[], candidateId: bigint, company: Office365ManagedDocumentCandidateCompany, discoveredAt: SoliboInstant /* Instant */, fileName: string, reason: string, uploader?: Office365ManagedDocumentCandidateUploader | null | undefined);
12382
+ get actions(): string[];
12383
+ get candidateId(): bigint;
12384
+ get company(): Office365ManagedDocumentCandidateCompany;
12385
+ get discoveredAt(): SoliboInstant /* Instant */;
12386
+ get fileName(): string;
12387
+ get reason(): string;
12388
+ get uploader(): Office365ManagedDocumentCandidateUploader | null | undefined;
12389
+ }
12390
+ export declare namespace Office365ManagedDocumentCandidateReviewCandidate {
12391
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
12392
+ namespace $metadata$ {
12393
+ const constructor: abstract new () => Office365ManagedDocumentCandidateReviewCandidate;
12394
+ }
12395
+ }
12396
+ export interface Office365ManagedDocumentCandidateUploaderProps {
12397
+ displayName?: string | null | undefined;
12398
+ personId: bigint;
12399
+ }
12400
+ export declare class Office365ManagedDocumentCandidateUploader {
12401
+ constructor(props: Office365ManagedDocumentCandidateUploaderProps);
12402
+ constructor(displayName: string | null | undefined, personId: bigint);
12403
+ get displayName(): string | null | undefined;
12404
+ get personId(): bigint;
12405
+ }
12406
+ export declare namespace Office365ManagedDocumentCandidateUploader {
12407
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
12408
+ namespace $metadata$ {
12409
+ const constructor: abstract new () => Office365ManagedDocumentCandidateUploader;
12410
+ }
12411
+ }
12412
+ export interface Office365ManagedDocumentCopyRequestProps {
12413
+ belongsToId?: bigint | null | undefined;
12414
+ documentType: DocumentType;
12415
+ parentDocumentId?: bigint | null | undefined;
12416
+ }
12417
+ export declare class Office365ManagedDocumentCopyRequest {
12418
+ constructor(props: Office365ManagedDocumentCopyRequestProps);
12419
+ constructor(belongsToId: bigint | null | undefined, documentType: DocumentType, parentDocumentId?: bigint | null | undefined);
12420
+ get belongsToId(): bigint | null | undefined;
12421
+ get documentType(): DocumentType;
12422
+ get parentDocumentId(): bigint | null | undefined;
12423
+ }
12424
+ export declare namespace Office365ManagedDocumentCopyRequest {
12425
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
12426
+ namespace $metadata$ {
12427
+ const constructor: abstract new () => Office365ManagedDocumentCopyRequest;
12428
+ }
12429
+ }
12112
12430
  export interface OppgaveProps {
12113
12431
  avvik?: AvvikProps[] | null | undefined;
12114
12432
  oppgaveeier?: OppgaveeierProps | null | undefined;
@@ -12733,6 +13051,48 @@ export declare namespace OverdueNoticeOrder {
12733
13051
  }
12734
13052
  }
12735
13053
  }
13054
+ export declare abstract class OverdueOwner {
13055
+ private constructor();
13056
+ static get LEGACY_BACKEND(): OverdueOwner & {
13057
+ get name(): "LEGACY_BACKEND";
13058
+ get ordinal(): 0;
13059
+ };
13060
+ static get GENGHIS(): OverdueOwner & {
13061
+ get name(): "GENGHIS";
13062
+ get ordinal(): 1;
13063
+ };
13064
+ static get LegacyBackend(): OverdueOwner & {
13065
+ get name(): "LEGACY_BACKEND";
13066
+ get ordinal(): 0;
13067
+ };
13068
+ static get Genghis(): OverdueOwner & {
13069
+ get name(): "GENGHIS";
13070
+ get ordinal(): 1;
13071
+ };
13072
+ static values(): [typeof OverdueOwner.LEGACY_BACKEND, typeof OverdueOwner.GENGHIS];
13073
+ static valueOf(value: string): OverdueOwner;
13074
+ get name(): "LEGACY_BACKEND" | "GENGHIS";
13075
+ get ordinal(): 0 | 1;
13076
+ get value(): string;
13077
+ }
13078
+ export declare namespace OverdueOwner {
13079
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
13080
+ namespace $metadata$ {
13081
+ const constructor: abstract new () => OverdueOwner;
13082
+ }
13083
+ abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
13084
+ private constructor();
13085
+ }
13086
+ namespace Companion {
13087
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
13088
+ namespace $metadata$ {
13089
+ abstract class constructor /* implements SerializerFactory */ {
13090
+ fromValue(value: string): OverdueOwner | null | undefined;
13091
+ private constructor();
13092
+ }
13093
+ }
13094
+ }
13095
+ }
12736
13096
  export interface OverrideThirdPartyInformationResultCommandProps {
12737
13097
  contact: ThirdPartyInformationKontaktProps;
12738
13098
  entries?: ThirdPartyInformationOppgaveProps[] | null | undefined;
@@ -13577,6 +13937,24 @@ export declare namespace PagedListNotificationGroup {
13577
13937
  const constructor: abstract new () => PagedListNotificationGroup;
13578
13938
  }
13579
13939
  }
13940
+ export interface PagedListOffice365ManagedDocumentCandidateReviewCandidateProps {
13941
+ items: Office365ManagedDocumentCandidateReviewCandidateProps[];
13942
+ meta: MetaProps;
13943
+ paging: PagingProps;
13944
+ }
13945
+ export declare class PagedListOffice365ManagedDocumentCandidateReviewCandidate {
13946
+ constructor(props: PagedListOffice365ManagedDocumentCandidateReviewCandidateProps);
13947
+ constructor(items: Office365ManagedDocumentCandidateReviewCandidate[], meta: Meta, paging: Paging);
13948
+ get items(): Office365ManagedDocumentCandidateReviewCandidate[];
13949
+ get meta(): Meta;
13950
+ get paging(): Paging;
13951
+ }
13952
+ export declare namespace PagedListOffice365ManagedDocumentCandidateReviewCandidate {
13953
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
13954
+ namespace $metadata$ {
13955
+ const constructor: abstract new () => PagedListOffice365ManagedDocumentCandidateReviewCandidate;
13956
+ }
13957
+ }
13580
13958
  export interface PagedListOrganizationProps {
13581
13959
  items: OrganizationProps[];
13582
13960
  meta: MetaProps;
@@ -20971,6 +21349,20 @@ export declare namespace UpdateMeetingParticipantsCommand {
20971
21349
  const constructor: abstract new () => UpdateMeetingParticipantsCommand;
20972
21350
  }
20973
21351
  }
21352
+ export interface UpdateMessageCommandProps {
21353
+ content: string;
21354
+ }
21355
+ export declare class UpdateMessageCommand {
21356
+ constructor(props: UpdateMessageCommandProps);
21357
+ constructor(content: string);
21358
+ get content(): string;
21359
+ }
21360
+ export declare namespace UpdateMessageCommand {
21361
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
21362
+ namespace $metadata$ {
21363
+ const constructor: abstract new () => UpdateMessageCommand;
21364
+ }
21365
+ }
20974
21366
  export interface UpdateNewsletterCommandProps {
20975
21367
  directRecipients?: string[] | null | undefined;
20976
21368
  htmlText?: string | null | undefined;
@@ -22144,6 +22536,7 @@ export declare class ConversationApi extends ApiClient.$metadata$.constructor {
22144
22536
  deleteConversation(companyId: bigint, conversationId: bigint, translateToCountryId?: bigint | null | undefined): Promise<HttpResponse<void>>;
22145
22537
  deleteConversationCategory(companyId: bigint, categoryId: bigint): Promise<HttpResponse<void>>;
22146
22538
  deleteConversationFlag(companyId: bigint, conversationId: bigint): Promise<HttpResponse<void>>;
22539
+ deleteConversationMessage(companyId: bigint, conversationId: bigint, messageId: bigint): Promise<HttpResponse<void>>;
22147
22540
  deleteConversationParticipant(companyId: bigint, conversationId: bigint, participantType: string, participantId: bigint): Promise<HttpResponse<void>>;
22148
22541
  deleteDocumentPublicConversation(companySlug: string, conversationId: bigint, documentId: bigint, redirect?: boolean | null | undefined, size?: string | null | undefined): Promise<HttpResponse<void>>;
22149
22542
  deleteFolder(companyId: bigint, folderId: bigint): Promise<HttpResponse<void>>;
@@ -22161,6 +22554,7 @@ export declare class ConversationApi extends ApiClient.$metadata$.constructor {
22161
22554
  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, flaggedByCurrentUser?: boolean | null | undefined, readByCurrentUser?: boolean | null | undefined, fields?: string | null | undefined): Promise<HttpResponse<KtMap<string, ConversationCountConversationCountByCompanyMap>>>;
22162
22555
  indexConversationCountInCompany(companyId: bigint, fields?: string | null | undefined): Promise<HttpResponse<ConversationCount>>;
22163
22556
  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>>;
22557
+ indexConversationMessageHistory(companyId: bigint, conversationId: bigint, messageId: bigint, fields?: string | null | undefined): Promise<HttpResponse<KtList<MessageEditHistory>>>;
22164
22558
  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>>;
22165
22559
  moveConversation(companyId: bigint, conversationId: bigint, moveConversationToFolderCommand: MoveConversationToFolderCommand): Promise<HttpResponse<void>>;
22166
22560
  moveMultipleConversations(companyId: bigint, batchMoveConversationsToFolderCommand: BatchMoveConversationsToFolderCommand): Promise<HttpResponse<void>>;
@@ -22168,13 +22562,19 @@ export declare class ConversationApi extends ApiClient.$metadata$.constructor {
22168
22562
  publishConversation(companyId: bigint, conversationId: bigint): Promise<HttpResponse<Conversation>>;
22169
22563
  reOpenConversation(companyId: bigint, conversationId: bigint): Promise<HttpResponse<Conversation>>;
22170
22564
  reOpenMultipleConversations(companyId: bigint, batchConversationStateCommand: BatchConversationStateCommand): Promise<HttpResponse<void>>;
22565
+ restoreConversationMessage(companyId: bigint, conversationId: bigint, messageId: bigint): Promise<HttpResponse<void>>;
22171
22566
  showConversation(companyId: bigint, conversationId: bigint, translateToCountryId?: bigint | null | undefined, fields?: string | null | undefined): Promise<HttpResponse<Conversation>>;
22172
22567
  showConversationFolder(companyId: bigint, folderId: bigint, fields?: string | null | undefined): Promise<HttpResponse<ConversationFolder>>;
22173
22568
  showConversationPublic(companySlug: string, conversationId: bigint, fields?: string | null | undefined): Promise<HttpResponse<PublicConversation>>;
22174
22569
  showDocumentPublicConversation(companySlug: string, conversationId: bigint, documentId: bigint, redirect?: boolean | null | undefined, size?: string | null | undefined, fields?: string | null | undefined): Promise<HttpResponse<UrlWrapper>>;
22570
+ trashConversation(companyId: bigint, conversationId: bigint): Promise<HttpResponse<void>>;
22571
+ trashMultipleConversations(companyId: bigint, batchConversationStateCommand: BatchConversationStateCommand): Promise<HttpResponse<void>>;
22572
+ untrashConversation(companyId: bigint, conversationId: bigint): Promise<HttpResponse<void>>;
22573
+ untrashMultipleConversations(companyId: bigint, batchConversationStateCommand: BatchConversationStateCommand): Promise<HttpResponse<void>>;
22175
22574
  updateConversation(companyId: bigint, conversationId: bigint, updateConversationCommand: UpdateConversationCommand, translateToCountryId?: bigint | null | undefined): Promise<HttpResponse<Conversation>>;
22176
22575
  updateConversationCategories(companyId: bigint, secureConversationCategory: KtList<SecureConversationCategory>): Promise<HttpResponse<KtList<SecureConversationCategory>>>;
22177
22576
  updateConversationCategory(companyId: bigint, categoryId: bigint, updateConversationCategoryCommand: UpdateConversationCategoryCommand): Promise<HttpResponse<SecureConversationCategory>>;
22577
+ updateConversationMessage(companyId: bigint, conversationId: bigint, messageId: bigint, updateMessageCommand: UpdateMessageCommand): Promise<HttpResponse<void>>;
22178
22578
  updateFolder(companyId: bigint, folderId: bigint, updateFolderCommand: UpdateFolderCommand): Promise<HttpResponse<ConversationFolder>>;
22179
22579
  }
22180
22580
  export declare namespace ConversationApi {
@@ -22188,18 +22588,26 @@ export declare class DocumentApi extends ApiClient.$metadata$.constructor {
22188
22588
  static create(baseUrl?: string, httpClientEngine?: any | null | undefined/* HttpClientEngine | null | undefined */, httpClientConfig?: (p0: any/* HttpClientConfig<UnknownType *> */) => void | null | undefined, jsonSerializer?: any/* Json */): DocumentApi;
22189
22589
  static createWithClient(baseUrl: string, httpClient: any/* HttpClient */): DocumentApi;
22190
22590
  abortDocumentUploadTicket(companyId: bigint, ticketId: string): Promise<HttpResponse<void>>;
22591
+ beginOffice365CustomerConnection(companyId: bigint, documentId: bigint, office365CustomerConnectCommand: Office365CustomerConnectCommand): Promise<HttpResponse<void>>;
22592
+ classifyOffice365ManagedDocumentCandidate(companyId: bigint, candidateId: bigint, office365ManagedDocumentCandidateClassificationRequest: Office365ManagedDocumentCandidateClassificationRequest): Promise<HttpResponse<Office365ManagedDocumentCandidateReview>>;
22593
+ copyOffice365ManagedDocument(companyId: bigint, documentId: bigint, office365ManagedDocumentCopyRequest: Office365ManagedDocumentCopyRequest): Promise<HttpResponse<Document>>;
22191
22594
  createDocument(companyId: bigint, documentType: DocumentType, parentId?: bigint | null | undefined, isDirectory?: boolean | null | undefined): Promise<HttpResponse<Document>>;
22192
22595
  createDocumentBelongsTo(companyId: bigint, documentType: string, belongsToId: bigint, parentId?: bigint | null | undefined, uploadGroupId?: string | null | undefined): Promise<HttpResponse<Document>>;
22193
22596
  createDocumentReference(companyId: bigint, documentId: bigint, createDocumentReferenceCommand: CreateDocumentReferenceCommand): Promise<HttpResponse<Document>>;
22194
22597
  createDocumentUploadTicket(companyId: bigint, contentType: string, contentDisposition: string, xContentLengthUpload: string, contentMd5?: string | null | undefined): Promise<HttpResponse<DocumentUploadTicket>>;
22195
22598
  deleteDocument(companyId: bigint, documentId: bigint): Promise<HttpResponse<void>>;
22599
+ discardOffice365ManagedDocumentCandidate(companyId: bigint, candidateId: bigint): Promise<HttpResponse<Office365ManagedDocumentCandidateReview>>;
22600
+ disconnectOffice365CustomerConnection(companyId: bigint, documentId: bigint, officeCustomerConnect: string): Promise<HttpResponse<Office365CustomerDisconnect>>;
22196
22601
  indexDocumentBelongsTo(companyId: bigint, documentType: string, belongsToId: bigint, parentId?: bigint | null | undefined, uploadGroupId?: string | null | undefined, fields?: string | null | undefined, pageToken?: string | null | undefined, autoPaginate?: boolean | null | undefined, count?: number | null | undefined): Promise<HttpResponse<PagedListDocument>>;
22197
22602
  indexDocumentsUser(search?: string | null | undefined, companyIds?: KtList<bigint> | 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>>;
22198
22603
  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>>;
22199
22604
  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>>;
22605
+ listOffice365ManagedDocumentCandidates(companyId: bigint, managedDocuments: string, fields?: string | null | undefined, pageToken?: string | null | undefined, autoPaginate?: boolean | null | undefined, count?: number | null | undefined): Promise<HttpResponse<PagedListOffice365ManagedDocumentCandidateReviewCandidate>>;
22200
22606
  moveDocument(companyId: bigint, documentId: bigint, parentId: string): Promise<HttpResponse<void>>;
22201
22607
  moveMultipleDocuments(companyId: bigint, parentId: string, batchMoveDocumentsCommand: BatchMoveDocumentsCommand): Promise<HttpResponse<KtList<Document>>>;
22608
+ openOffice365DocumentEditSession(companyId: bigint, documentId: bigint): Promise<HttpResponse<Office365EditSession>>;
22202
22609
  renameDocument(companyId: bigint, documentId: bigint, renameDocumentCommand: RenameDocumentCommand): Promise<HttpResponse<Document>>;
22610
+ requestOffice365InternalDocumentPublish(companyId: bigint, internalDocuments: string, office365InternalDocumentPublishRequestCommand: Office365InternalDocumentPublishRequestCommand): Promise<HttpResponse<Office365InternalDocumentPublishRequest>>;
22203
22611
  restoreDocument(companyId: bigint, documentId: bigint, restoreDocumentCommand: RestoreDocumentCommand): Promise<HttpResponse<void>>;
22204
22612
  restoreMultipleDocuments(companyId: bigint, batchRestoreDocumentsCommand: BatchRestoreDocumentsCommand): Promise<HttpResponse<void>>;
22205
22613
  searchDocuments(companyId: bigint, searchText: string, fields?: string | null | undefined, pageToken?: string | null | undefined, autoPaginate?: boolean | null | undefined, count?: number | null | undefined): Promise<HttpResponse<PagedListDocument>>;
@@ -22207,6 +22615,7 @@ export declare class DocumentApi extends ApiClient.$metadata$.constructor {
22207
22615
  showDirectoryZip(companyId: bigint): Promise<HttpResponse<Base64ByteArray>>;
22208
22616
  showDocument(companyId: bigint, documentId: bigint, redirect?: boolean | null | undefined, size?: string | null | undefined, fields?: string | null | undefined): Promise<HttpResponse<UrlWrapper>>;
22209
22617
  showDocumentTypes(companyId: bigint, fields?: string | null | undefined, pageToken?: string | null | undefined, autoPaginate?: boolean | null | undefined, count?: number | null | undefined): Promise<HttpResponse<PagedListDocumentType>>;
22618
+ showOffice365ManagedDocumentCandidate(companyId: bigint, candidateId: bigint, fields?: string | null | undefined): Promise<HttpResponse<Office365ManagedDocumentCandidateReviewCandidate>>;
22210
22619
  showPublicDocument(companyId: bigint, documentId: bigint, redirect?: boolean | null | undefined, size?: string | null | undefined, fields?: string | null | undefined): Promise<HttpResponse<UrlWrapper>>;
22211
22620
  showTypeDirectoryZip(companyId: bigint, documentType: string): Promise<HttpResponse<Base64ByteArray>>;
22212
22621
  trashDocument(companyId: bigint, documentId: bigint): Promise<HttpResponse<void>>;