@solibo/home-api 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 (64) hide show
  1. package/Kotlin-DateTime-library-kotlinx-datetime.mjs +1 -1
  2. package/Kotlin-DateTime-library-kotlinx-datetime.mjs.map +1 -0
  3. package/MultiplatformSettings-multiplatform-settings-no-arg.mjs +1 -1
  4. package/MultiplatformSettings-multiplatform-settings-no-arg.mjs.map +1 -0
  5. package/MultiplatformSettings-multiplatform-settings.mjs +1 -1
  6. package/MultiplatformSettings-multiplatform-settings.mjs.map +1 -0
  7. package/kotlin-kotlin-stdlib.mjs +12 -12
  8. package/kotlin-kotlin-stdlib.mjs.map +1 -0
  9. package/kotlin_org_jetbrains_kotlin_kotlin_dom_api_compat.mjs +1 -1
  10. package/kotlin_org_jetbrains_kotlin_kotlin_dom_api_compat.mjs.map +1 -0
  11. package/kotlinx-atomicfu.mjs +1 -1
  12. package/kotlinx-atomicfu.mjs.map +1 -0
  13. package/kotlinx-browser.mjs +1 -1
  14. package/kotlinx-browser.mjs.map +1 -0
  15. package/kotlinx-coroutines-core.mjs +1 -1
  16. package/kotlinx-coroutines-core.mjs.map +1 -0
  17. package/kotlinx-io-kotlinx-io-bytestring.mjs +1 -1
  18. package/kotlinx-io-kotlinx-io-bytestring.mjs.map +1 -0
  19. package/kotlinx-io-kotlinx-io-core.mjs +1 -1
  20. package/kotlinx-io-kotlinx-io-core.mjs.map +1 -0
  21. package/kotlinx-serialization-kotlinx-serialization-core.mjs +1 -1
  22. package/kotlinx-serialization-kotlinx-serialization-core.mjs.map +1 -0
  23. package/kotlinx-serialization-kotlinx-serialization-json-io.mjs +1 -1
  24. package/kotlinx-serialization-kotlinx-serialization-json-io.mjs.map +1 -0
  25. package/kotlinx-serialization-kotlinx-serialization-json.mjs +1 -1
  26. package/kotlinx-serialization-kotlinx-serialization-json.mjs.map +1 -0
  27. package/ktor-ktor-client-auth.mjs +1 -1
  28. package/ktor-ktor-client-auth.mjs.map +1 -0
  29. package/ktor-ktor-client-content-negotiation.mjs +1 -1
  30. package/ktor-ktor-client-content-negotiation.mjs.map +1 -0
  31. package/ktor-ktor-client-core.mjs +1 -1
  32. package/ktor-ktor-client-core.mjs.map +1 -0
  33. package/ktor-ktor-client-encoding.mjs +1 -1
  34. package/ktor-ktor-client-encoding.mjs.map +1 -0
  35. package/ktor-ktor-client-logging.mjs +1 -1
  36. package/ktor-ktor-client-logging.mjs.map +1 -0
  37. package/ktor-ktor-client-websockets.mjs +1 -1
  38. package/ktor-ktor-client-websockets.mjs.map +1 -0
  39. package/ktor-ktor-events.mjs +1 -1
  40. package/ktor-ktor-events.mjs.map +1 -0
  41. package/ktor-ktor-http-cio.mjs +1 -1
  42. package/ktor-ktor-http-cio.mjs.map +1 -0
  43. package/ktor-ktor-http.mjs +1 -1
  44. package/ktor-ktor-http.mjs.map +1 -0
  45. package/ktor-ktor-io.mjs +1 -1
  46. package/ktor-ktor-io.mjs.map +1 -0
  47. package/ktor-ktor-serialization-kotlinx-json.mjs +1 -1
  48. package/ktor-ktor-serialization-kotlinx-json.mjs.map +1 -0
  49. package/ktor-ktor-serialization-kotlinx.mjs +1 -1
  50. package/ktor-ktor-serialization-kotlinx.mjs.map +1 -0
  51. package/ktor-ktor-serialization.mjs +1 -1
  52. package/ktor-ktor-serialization.mjs.map +1 -0
  53. package/ktor-ktor-sse.mjs +1 -1
  54. package/ktor-ktor-sse.mjs.map +1 -0
  55. package/ktor-ktor-utils.mjs +1 -1
  56. package/ktor-ktor-utils.mjs.map +1 -0
  57. package/ktor-ktor-websocket-serialization.mjs +1 -1
  58. package/ktor-ktor-websocket-serialization.mjs.map +1 -0
  59. package/ktor-ktor-websockets.mjs +1 -1
  60. package/ktor-ktor-websockets.mjs.map +1 -0
  61. package/package.json +1 -1
  62. package/solibo-sdk-sdk-home-api.d.mts +390 -9
  63. package/solibo-sdk-sdk-home-api.mjs +47752 -42533
  64. package/solibo-sdk-sdk-home-api.mjs.map +1 -0
@@ -2470,6 +2470,49 @@ export declare namespace CloseMeetingCommand {
2470
2470
  const constructor: abstract new () => CloseMeetingCommand;
2471
2471
  }
2472
2472
  }
2473
+ export declare abstract class CollectionHandoff {
2474
+ private constructor();
2475
+ static get NONE(): CollectionHandoff & {
2476
+ get name(): "NONE";
2477
+ get ordinal(): 0;
2478
+ };
2479
+ static get KRAVIA_AFTER_FINAL_NOTICE(): CollectionHandoff & {
2480
+ get name(): "KRAVIA_AFTER_FINAL_NOTICE";
2481
+ get ordinal(): 1;
2482
+ };
2483
+ static get None(): CollectionHandoff & {
2484
+ get name(): "NONE";
2485
+ get ordinal(): 0;
2486
+ };
2487
+ static get KraviaAfterFinalNotice(): CollectionHandoff & {
2488
+ get name(): "KRAVIA_AFTER_FINAL_NOTICE";
2489
+ get ordinal(): 1;
2490
+ };
2491
+ static values(): [typeof CollectionHandoff.NONE, typeof CollectionHandoff.KRAVIA_AFTER_FINAL_NOTICE];
2492
+ static valueOf(value: string): CollectionHandoff;
2493
+ get name(): "NONE" | "KRAVIA_AFTER_FINAL_NOTICE";
2494
+ get ordinal(): 0 | 1;
2495
+ get value(): string;
2496
+ toString(): string;
2497
+ }
2498
+ export declare namespace CollectionHandoff {
2499
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2500
+ namespace $metadata$ {
2501
+ const constructor: abstract new () => CollectionHandoff;
2502
+ }
2503
+ abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
2504
+ private constructor();
2505
+ }
2506
+ namespace Companion {
2507
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2508
+ namespace $metadata$ {
2509
+ abstract class constructor /* implements SerializerFactory */ {
2510
+ fromValue(value: string): Nullable<CollectionHandoff>;
2511
+ private constructor();
2512
+ }
2513
+ }
2514
+ }
2515
+ }
2473
2516
  export declare class CommunicationChannelReport {
2474
2517
  constructor(communicationType: CommunicationMessageType, finishedAt: Nullable<any>/* Nullable<Instant> */ | undefined, recipient: string, sentAt: any/* Instant */, status: CommunicationState, updatedAt: any/* Instant */);
2475
2518
  get communicationType(): CommunicationMessageType;
@@ -3716,6 +3759,10 @@ export declare abstract class ConversationStatus {
3716
3759
  get name(): "COMPLETE";
3717
3760
  get ordinal(): 3;
3718
3761
  };
3762
+ static get TRASHED(): ConversationStatus & {
3763
+ get name(): "TRASHED";
3764
+ get ordinal(): 4;
3765
+ };
3719
3766
  static get Draft(): ConversationStatus & {
3720
3767
  get name(): "DRAFT";
3721
3768
  get ordinal(): 0;
@@ -3732,10 +3779,14 @@ export declare abstract class ConversationStatus {
3732
3779
  get name(): "COMPLETE";
3733
3780
  get ordinal(): 3;
3734
3781
  };
3735
- static values(): [typeof ConversationStatus.DRAFT, typeof ConversationStatus.NEW, typeof ConversationStatus.IN_PROGRESS, typeof ConversationStatus.COMPLETE];
3782
+ static get Trashed(): ConversationStatus & {
3783
+ get name(): "TRASHED";
3784
+ get ordinal(): 4;
3785
+ };
3786
+ static values(): [typeof ConversationStatus.DRAFT, typeof ConversationStatus.NEW, typeof ConversationStatus.IN_PROGRESS, typeof ConversationStatus.COMPLETE, typeof ConversationStatus.TRASHED];
3736
3787
  static valueOf(value: string): ConversationStatus;
3737
- get name(): "DRAFT" | "NEW" | "IN_PROGRESS" | "COMPLETE";
3738
- get ordinal(): 0 | 1 | 2 | 3;
3788
+ get name(): "DRAFT" | "NEW" | "IN_PROGRESS" | "COMPLETE" | "TRASHED";
3789
+ get ordinal(): 0 | 1 | 2 | 3 | 4;
3739
3790
  get value(): string;
3740
3791
  toString(): string;
3741
3792
  }
@@ -7656,14 +7707,16 @@ export declare namespace InvoiceDistributionType {
7656
7707
  }
7657
7708
  }
7658
7709
  export declare class InvoiceInput {
7659
- constructor(id: string, invoiceData: InvoiceDataInput, invoiceReferenceId: Nullable<string> | undefined, payer: PayerInput, recurring: Nullable<boolean> | undefined, tenant: TenantInput);
7710
+ constructor(collectionHandoff: Nullable<CollectionHandoff> | undefined, id: string, invoiceData: InvoiceDataInput, invoiceReferenceId: Nullable<string> | undefined, overdueOwner: Nullable<OverdueOwner> | undefined, payer: PayerInput, recurring: Nullable<boolean> | undefined, tenant: TenantInput);
7711
+ get collectionHandoff(): Nullable<CollectionHandoff>;
7660
7712
  get id(): string;
7661
7713
  get invoiceData(): InvoiceDataInput;
7662
7714
  get invoiceReferenceId(): Nullable<string>;
7715
+ get overdueOwner(): Nullable<OverdueOwner>;
7663
7716
  get payer(): PayerInput;
7664
7717
  get recurring(): Nullable<boolean>;
7665
7718
  get tenant(): TenantInput;
7666
- copy(id?: string, invoiceData?: InvoiceDataInput, invoiceReferenceId?: Nullable<string>, payer?: PayerInput, recurring?: Nullable<boolean>, tenant?: TenantInput): InvoiceInput;
7719
+ copy(collectionHandoff?: Nullable<CollectionHandoff>, id?: string, invoiceData?: InvoiceDataInput, invoiceReferenceId?: Nullable<string>, overdueOwner?: Nullable<OverdueOwner>, payer?: PayerInput, recurring?: Nullable<boolean>, tenant?: TenantInput): InvoiceInput;
7667
7720
  toString(): string;
7668
7721
  hashCode(): number;
7669
7722
  equals(other: Nullable<any>): boolean;
@@ -8283,11 +8336,13 @@ export declare namespace InvoiceRecipient {
8283
8336
  }
8284
8337
  }
8285
8338
  export declare class InvoiceResult {
8286
- constructor(invoiceId: string, logs: KtList<InvoiceLog>, preview?: Nullable<InvoiceResultPreview>);
8339
+ constructor(collectionHandoff: Nullable<CollectionHandoff> | undefined, invoiceId: string, logs: KtList<InvoiceLog>, overdueOwner?: Nullable<OverdueOwner>, preview?: Nullable<InvoiceResultPreview>);
8340
+ get collectionHandoff(): Nullable<CollectionHandoff>;
8287
8341
  get invoiceId(): string;
8288
8342
  get logs(): KtList<InvoiceLog>;
8343
+ get overdueOwner(): Nullable<OverdueOwner>;
8289
8344
  get preview(): Nullable<InvoiceResultPreview>;
8290
- copy(invoiceId?: string, logs?: KtList<InvoiceLog>, preview?: Nullable<InvoiceResultPreview>): InvoiceResult;
8345
+ copy(collectionHandoff?: Nullable<CollectionHandoff>, invoiceId?: string, logs?: KtList<InvoiceLog>, overdueOwner?: Nullable<OverdueOwner>, preview?: Nullable<InvoiceResultPreview>): InvoiceResult;
8291
8346
  toString(): string;
8292
8347
  hashCode(): number;
8293
8348
  equals(other: Nullable<any>): boolean;
@@ -10105,6 +10160,22 @@ export declare namespace MessageDeliverability {
10105
10160
  const constructor: abstract new () => MessageDeliverability;
10106
10161
  }
10107
10162
  }
10163
+ export declare class MessageEditHistory {
10164
+ constructor(content: string, id: bigint, replacedAt: any/* Instant */);
10165
+ get content(): string;
10166
+ get id(): bigint;
10167
+ get replacedAt(): any/* Instant */;
10168
+ copy(content?: string, id?: bigint, replacedAt?: any/* Instant */): MessageEditHistory;
10169
+ toString(): string;
10170
+ hashCode(): number;
10171
+ equals(other: Nullable<any>): boolean;
10172
+ }
10173
+ export declare namespace MessageEditHistory {
10174
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
10175
+ namespace $metadata$ {
10176
+ const constructor: abstract new () => MessageEditHistory;
10177
+ }
10178
+ }
10108
10179
  export declare class MessageEmailContent {
10109
10180
  constructor(hasMoreContent?: Nullable<boolean>, html?: Nullable<string>, plain?: Nullable<string>, previewPlainContent?: Nullable<string>, renderedHtml?: Nullable<string>);
10110
10181
  get hasMoreContent(): Nullable<boolean>;
@@ -10156,10 +10227,12 @@ export declare namespace MessageGroup {
10156
10227
  }
10157
10228
  }
10158
10229
  export declare class MessageInConversation {
10159
- constructor(content: string, deliverability: Nullable<KtList<MessageDeliverability>> | undefined, documents: Nullable<KtList<Document>> | undefined, emailContent: Nullable<MessageEmailContent> | undefined, emailRecipients: Nullable<MessageEmailRecipients> | undefined, id: bigint, renderedContent: Nullable<string> | undefined, sentAt: any/* Instant */, sentBy: Nullable<Participant> | undefined, sentById: bigint, type?: Nullable<MessageType>);
10230
+ constructor(content: string, deletedAt: Nullable<any>/* Nullable<Instant> */ | undefined, deliverability: Nullable<KtList<MessageDeliverability>> | undefined, documents: Nullable<KtList<Document>> | undefined, editedAt: Nullable<any>/* Nullable<Instant> */ | undefined, emailContent: Nullable<MessageEmailContent> | undefined, emailRecipients: Nullable<MessageEmailRecipients> | undefined, id: bigint, renderedContent: Nullable<string> | undefined, sentAt: any/* Instant */, sentBy: Nullable<Participant> | undefined, sentById: bigint, type?: Nullable<MessageType>);
10160
10231
  get content(): string;
10232
+ get deletedAt(): Nullable<any>/* Nullable<Instant> */;
10161
10233
  get deliverability(): Nullable<KtList<MessageDeliverability>>;
10162
10234
  get documents(): Nullable<KtList<Document>>;
10235
+ get editedAt(): Nullable<any>/* Nullable<Instant> */;
10163
10236
  get emailContent(): Nullable<MessageEmailContent>;
10164
10237
  get emailRecipients(): Nullable<MessageEmailRecipients>;
10165
10238
  get id(): bigint;
@@ -10168,7 +10241,7 @@ export declare class MessageInConversation {
10168
10241
  get sentBy(): Nullable<Participant>;
10169
10242
  get sentById(): bigint;
10170
10243
  get type(): Nullable<MessageType>;
10171
- copy(content?: string, deliverability?: Nullable<KtList<MessageDeliverability>>, documents?: Nullable<KtList<Document>>, emailContent?: Nullable<MessageEmailContent>, emailRecipients?: Nullable<MessageEmailRecipients>, id?: bigint, renderedContent?: Nullable<string>, sentAt?: any/* Instant */, sentBy?: Nullable<Participant>, sentById?: bigint, type?: Nullable<MessageType>): MessageInConversation;
10244
+ copy(content?: string, deletedAt?: Nullable<any>/* Nullable<Instant> */, deliverability?: Nullable<KtList<MessageDeliverability>>, documents?: Nullable<KtList<Document>>, editedAt?: Nullable<any>/* Nullable<Instant> */, emailContent?: Nullable<MessageEmailContent>, emailRecipients?: Nullable<MessageEmailRecipients>, id?: bigint, renderedContent?: Nullable<string>, sentAt?: any/* Instant */, sentBy?: Nullable<Participant>, sentById?: bigint, type?: Nullable<MessageType>): MessageInConversation;
10172
10245
  toString(): string;
10173
10246
  hashCode(): number;
10174
10247
  equals(other: Nullable<any>): boolean;
@@ -10546,6 +10619,224 @@ export declare namespace NotificationGroupType {
10546
10619
  }
10547
10620
  }
10548
10621
  }
10622
+ export declare class Office365CustomerConnectCommand {
10623
+ constructor(invitationEmail: string);
10624
+ get invitationEmail(): string;
10625
+ copy(invitationEmail?: string): Office365CustomerConnectCommand;
10626
+ toString(): string;
10627
+ hashCode(): number;
10628
+ equals(other: Nullable<any>): boolean;
10629
+ }
10630
+ export declare namespace Office365CustomerConnectCommand {
10631
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
10632
+ namespace $metadata$ {
10633
+ const constructor: abstract new () => Office365CustomerConnectCommand;
10634
+ }
10635
+ }
10636
+ export declare class Office365CustomerDisconnect {
10637
+ constructor(disconnected: boolean);
10638
+ get disconnected(): boolean;
10639
+ copy(disconnected?: boolean): Office365CustomerDisconnect;
10640
+ toString(): string;
10641
+ hashCode(): number;
10642
+ equals(other: Nullable<any>): boolean;
10643
+ }
10644
+ export declare namespace Office365CustomerDisconnect {
10645
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
10646
+ namespace $metadata$ {
10647
+ const constructor: abstract new () => Office365CustomerDisconnect;
10648
+ }
10649
+ }
10650
+ export declare class Office365EditSession {
10651
+ constructor(actorKind: Office365EditSessionActorKind, validUntil: Nullable<any>/* Nullable<Instant> */ | undefined, webUrl: string);
10652
+ get actorKind(): Office365EditSessionActorKind;
10653
+ get validUntil(): Nullable<any>/* Nullable<Instant> */;
10654
+ get webUrl(): string;
10655
+ copy(actorKind?: Office365EditSessionActorKind, validUntil?: Nullable<any>/* Nullable<Instant> */, webUrl?: string): Office365EditSession;
10656
+ toString(): string;
10657
+ hashCode(): number;
10658
+ equals(other: Nullable<any>): boolean;
10659
+ }
10660
+ export declare namespace Office365EditSession {
10661
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
10662
+ namespace $metadata$ {
10663
+ const constructor: abstract new () => Office365EditSession;
10664
+ }
10665
+ }
10666
+ export declare abstract class Office365EditSessionActorKind {
10667
+ private constructor();
10668
+ static get EMPLOYEE(): Office365EditSessionActorKind & {
10669
+ get name(): "EMPLOYEE";
10670
+ get ordinal(): 0;
10671
+ };
10672
+ static get CUSTOMER(): Office365EditSessionActorKind & {
10673
+ get name(): "CUSTOMER";
10674
+ get ordinal(): 1;
10675
+ };
10676
+ static get Employee(): Office365EditSessionActorKind & {
10677
+ get name(): "EMPLOYEE";
10678
+ get ordinal(): 0;
10679
+ };
10680
+ static get Customer(): Office365EditSessionActorKind & {
10681
+ get name(): "CUSTOMER";
10682
+ get ordinal(): 1;
10683
+ };
10684
+ static values(): [typeof Office365EditSessionActorKind.EMPLOYEE, typeof Office365EditSessionActorKind.CUSTOMER];
10685
+ static valueOf(value: string): Office365EditSessionActorKind;
10686
+ get name(): "EMPLOYEE" | "CUSTOMER";
10687
+ get ordinal(): 0 | 1;
10688
+ get value(): string;
10689
+ toString(): string;
10690
+ }
10691
+ export declare namespace Office365EditSessionActorKind {
10692
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
10693
+ namespace $metadata$ {
10694
+ const constructor: abstract new () => Office365EditSessionActorKind;
10695
+ }
10696
+ abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
10697
+ private constructor();
10698
+ }
10699
+ namespace Companion {
10700
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
10701
+ namespace $metadata$ {
10702
+ abstract class constructor /* implements SerializerFactory */ {
10703
+ fromValue(value: string): Nullable<Office365EditSessionActorKind>;
10704
+ private constructor();
10705
+ }
10706
+ }
10707
+ }
10708
+ }
10709
+ export declare class Office365InternalDocumentPublishRequest {
10710
+ constructor(requestId: bigint, state: string);
10711
+ get requestId(): bigint;
10712
+ get state(): string;
10713
+ copy(requestId?: bigint, state?: string): Office365InternalDocumentPublishRequest;
10714
+ toString(): string;
10715
+ hashCode(): number;
10716
+ equals(other: Nullable<any>): boolean;
10717
+ }
10718
+ export declare namespace Office365InternalDocumentPublishRequest {
10719
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
10720
+ namespace $metadata$ {
10721
+ const constructor: abstract new () => Office365InternalDocumentPublishRequest;
10722
+ }
10723
+ }
10724
+ export declare class Office365InternalDocumentPublishRequestCommand {
10725
+ constructor(belongsToId: Nullable<bigint> | undefined, documentType: DocumentType, driveItemId: string, idempotencyKey: string, parentDocumentId?: Nullable<bigint>);
10726
+ get belongsToId(): Nullable<bigint>;
10727
+ get documentType(): DocumentType;
10728
+ get driveItemId(): string;
10729
+ get idempotencyKey(): string;
10730
+ get parentDocumentId(): Nullable<bigint>;
10731
+ copy(belongsToId?: Nullable<bigint>, documentType?: DocumentType, driveItemId?: string, idempotencyKey?: string, parentDocumentId?: Nullable<bigint>): Office365InternalDocumentPublishRequestCommand;
10732
+ toString(): string;
10733
+ hashCode(): number;
10734
+ equals(other: Nullable<any>): boolean;
10735
+ }
10736
+ export declare namespace Office365InternalDocumentPublishRequestCommand {
10737
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
10738
+ namespace $metadata$ {
10739
+ const constructor: abstract new () => Office365InternalDocumentPublishRequestCommand;
10740
+ }
10741
+ }
10742
+ export declare class Office365ManagedDocumentCandidateClassificationRequest {
10743
+ constructor(belongsToId: Nullable<bigint> | undefined, documentType: DocumentType, parentDocumentId?: Nullable<bigint>);
10744
+ get belongsToId(): Nullable<bigint>;
10745
+ get documentType(): DocumentType;
10746
+ get parentDocumentId(): Nullable<bigint>;
10747
+ copy(belongsToId?: Nullable<bigint>, documentType?: DocumentType, parentDocumentId?: Nullable<bigint>): Office365ManagedDocumentCandidateClassificationRequest;
10748
+ toString(): string;
10749
+ hashCode(): number;
10750
+ equals(other: Nullable<any>): boolean;
10751
+ }
10752
+ export declare namespace Office365ManagedDocumentCandidateClassificationRequest {
10753
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
10754
+ namespace $metadata$ {
10755
+ const constructor: abstract new () => Office365ManagedDocumentCandidateClassificationRequest;
10756
+ }
10757
+ }
10758
+ export declare class Office365ManagedDocumentCandidateCompany {
10759
+ constructor(id: bigint, name?: Nullable<string>);
10760
+ get id(): bigint;
10761
+ get name(): Nullable<string>;
10762
+ copy(id?: bigint, name?: Nullable<string>): Office365ManagedDocumentCandidateCompany;
10763
+ toString(): string;
10764
+ hashCode(): number;
10765
+ equals(other: Nullable<any>): boolean;
10766
+ }
10767
+ export declare namespace Office365ManagedDocumentCandidateCompany {
10768
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
10769
+ namespace $metadata$ {
10770
+ const constructor: abstract new () => Office365ManagedDocumentCandidateCompany;
10771
+ }
10772
+ }
10773
+ export declare class Office365ManagedDocumentCandidateReview {
10774
+ constructor(candidateId: bigint, documentId: Nullable<bigint> | undefined, state: string);
10775
+ get candidateId(): bigint;
10776
+ get documentId(): Nullable<bigint>;
10777
+ get state(): string;
10778
+ copy(candidateId?: bigint, documentId?: Nullable<bigint>, state?: string): Office365ManagedDocumentCandidateReview;
10779
+ toString(): string;
10780
+ hashCode(): number;
10781
+ equals(other: Nullable<any>): boolean;
10782
+ }
10783
+ export declare namespace Office365ManagedDocumentCandidateReview {
10784
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
10785
+ namespace $metadata$ {
10786
+ const constructor: abstract new () => Office365ManagedDocumentCandidateReview;
10787
+ }
10788
+ }
10789
+ export declare class Office365ManagedDocumentCandidateReviewCandidate {
10790
+ constructor(actions: KtList<string>, candidateId: bigint, company: Office365ManagedDocumentCandidateCompany, discoveredAt: any/* Instant */, fileName: string, reason: string, uploader?: Nullable<Office365ManagedDocumentCandidateUploader>);
10791
+ get actions(): KtList<string>;
10792
+ get candidateId(): bigint;
10793
+ get company(): Office365ManagedDocumentCandidateCompany;
10794
+ get discoveredAt(): any/* Instant */;
10795
+ get fileName(): string;
10796
+ get reason(): string;
10797
+ get uploader(): Nullable<Office365ManagedDocumentCandidateUploader>;
10798
+ copy(actions?: KtList<string>, candidateId?: bigint, company?: Office365ManagedDocumentCandidateCompany, discoveredAt?: any/* Instant */, fileName?: string, reason?: string, uploader?: Nullable<Office365ManagedDocumentCandidateUploader>): Office365ManagedDocumentCandidateReviewCandidate;
10799
+ toString(): string;
10800
+ hashCode(): number;
10801
+ equals(other: Nullable<any>): boolean;
10802
+ }
10803
+ export declare namespace Office365ManagedDocumentCandidateReviewCandidate {
10804
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
10805
+ namespace $metadata$ {
10806
+ const constructor: abstract new () => Office365ManagedDocumentCandidateReviewCandidate;
10807
+ }
10808
+ }
10809
+ export declare class Office365ManagedDocumentCandidateUploader {
10810
+ constructor(displayName: Nullable<string> | undefined, personId: bigint);
10811
+ get displayName(): Nullable<string>;
10812
+ get personId(): bigint;
10813
+ copy(displayName?: Nullable<string>, personId?: bigint): Office365ManagedDocumentCandidateUploader;
10814
+ toString(): string;
10815
+ hashCode(): number;
10816
+ equals(other: Nullable<any>): boolean;
10817
+ }
10818
+ export declare namespace Office365ManagedDocumentCandidateUploader {
10819
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
10820
+ namespace $metadata$ {
10821
+ const constructor: abstract new () => Office365ManagedDocumentCandidateUploader;
10822
+ }
10823
+ }
10824
+ export declare class Office365ManagedDocumentCopyRequest {
10825
+ constructor(belongsToId: Nullable<bigint> | undefined, documentType: DocumentType, parentDocumentId?: Nullable<bigint>);
10826
+ get belongsToId(): Nullable<bigint>;
10827
+ get documentType(): DocumentType;
10828
+ get parentDocumentId(): Nullable<bigint>;
10829
+ copy(belongsToId?: Nullable<bigint>, documentType?: DocumentType, parentDocumentId?: Nullable<bigint>): Office365ManagedDocumentCopyRequest;
10830
+ toString(): string;
10831
+ hashCode(): number;
10832
+ equals(other: Nullable<any>): boolean;
10833
+ }
10834
+ export declare namespace Office365ManagedDocumentCopyRequest {
10835
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
10836
+ namespace $metadata$ {
10837
+ const constructor: abstract new () => Office365ManagedDocumentCopyRequest;
10838
+ }
10839
+ }
10549
10840
  export declare class Oppgave {
10550
10841
  constructor(avvik?: Nullable<KtList<Avvik>>, oppgaveeier?: Nullable<Oppgaveeier>, oppgavenoekkel?: Nullable<string>);
10551
10842
  get avvik(): Nullable<KtList<Avvik>>;
@@ -11025,6 +11316,49 @@ export declare namespace OverdueNoticeOrder {
11025
11316
  }
11026
11317
  }
11027
11318
  }
11319
+ export declare abstract class OverdueOwner {
11320
+ private constructor();
11321
+ static get LEGACY_BACKEND(): OverdueOwner & {
11322
+ get name(): "LEGACY_BACKEND";
11323
+ get ordinal(): 0;
11324
+ };
11325
+ static get GENGHIS(): OverdueOwner & {
11326
+ get name(): "GENGHIS";
11327
+ get ordinal(): 1;
11328
+ };
11329
+ static get LegacyBackend(): OverdueOwner & {
11330
+ get name(): "LEGACY_BACKEND";
11331
+ get ordinal(): 0;
11332
+ };
11333
+ static get Genghis(): OverdueOwner & {
11334
+ get name(): "GENGHIS";
11335
+ get ordinal(): 1;
11336
+ };
11337
+ static values(): [typeof OverdueOwner.LEGACY_BACKEND, typeof OverdueOwner.GENGHIS];
11338
+ static valueOf(value: string): OverdueOwner;
11339
+ get name(): "LEGACY_BACKEND" | "GENGHIS";
11340
+ get ordinal(): 0 | 1;
11341
+ get value(): string;
11342
+ toString(): string;
11343
+ }
11344
+ export declare namespace OverdueOwner {
11345
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
11346
+ namespace $metadata$ {
11347
+ const constructor: abstract new () => OverdueOwner;
11348
+ }
11349
+ abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
11350
+ private constructor();
11351
+ }
11352
+ namespace Companion {
11353
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
11354
+ namespace $metadata$ {
11355
+ abstract class constructor /* implements SerializerFactory */ {
11356
+ fromValue(value: string): Nullable<OverdueOwner>;
11357
+ private constructor();
11358
+ }
11359
+ }
11360
+ }
11361
+ }
11028
11362
  export declare class OverrideThirdPartyInformationResultCommand {
11029
11363
  constructor(contact: ThirdPartyInformationKontakt, entries?: Nullable<KtList<ThirdPartyInformationOppgave>>, summary?: Nullable<ThirdPartyInformationOppsummering>, type?: Nullable<LeveranseType3po>);
11030
11364
  get contact(): ThirdPartyInformationKontakt;
@@ -11762,6 +12096,22 @@ export declare namespace PagedListNotificationGroup {
11762
12096
  const constructor: abstract new () => PagedListNotificationGroup;
11763
12097
  }
11764
12098
  }
12099
+ export declare class PagedListOffice365ManagedDocumentCandidateReviewCandidate {
12100
+ constructor(items: KtList<Office365ManagedDocumentCandidateReviewCandidate>, meta: Meta, paging: Paging);
12101
+ get items(): KtList<Office365ManagedDocumentCandidateReviewCandidate>;
12102
+ get meta(): Meta;
12103
+ get paging(): Paging;
12104
+ copy(items?: KtList<Office365ManagedDocumentCandidateReviewCandidate>, meta?: Meta, paging?: Paging): PagedListOffice365ManagedDocumentCandidateReviewCandidate;
12105
+ toString(): string;
12106
+ hashCode(): number;
12107
+ equals(other: Nullable<any>): boolean;
12108
+ }
12109
+ export declare namespace PagedListOffice365ManagedDocumentCandidateReviewCandidate {
12110
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
12111
+ namespace $metadata$ {
12112
+ const constructor: abstract new () => PagedListOffice365ManagedDocumentCandidateReviewCandidate;
12113
+ }
12114
+ }
11765
12115
  export declare class PagedListOrganization {
11766
12116
  constructor(items: KtList<Organization>, meta: Meta, paging: Paging);
11767
12117
  get items(): KtList<Organization>;
@@ -18149,6 +18499,20 @@ export declare namespace UpdateMeetingParticipantsCommand {
18149
18499
  const constructor: abstract new () => UpdateMeetingParticipantsCommand;
18150
18500
  }
18151
18501
  }
18502
+ export declare class UpdateMessageCommand {
18503
+ constructor(content: string);
18504
+ get content(): string;
18505
+ copy(content?: string): UpdateMessageCommand;
18506
+ toString(): string;
18507
+ hashCode(): number;
18508
+ equals(other: Nullable<any>): boolean;
18509
+ }
18510
+ export declare namespace UpdateMessageCommand {
18511
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
18512
+ namespace $metadata$ {
18513
+ const constructor: abstract new () => UpdateMessageCommand;
18514
+ }
18515
+ }
18152
18516
  export declare class UpdateNewsletterCommand {
18153
18517
  constructor(directRecipients: Nullable<KtList<string>> | undefined, htmlText: Nullable<string> | undefined, notificationGroups: Nullable<KtList<NotificationGroup>> | undefined, plainText: string, publishedAt: Nullable<any>/* Nullable<Instant> */ | undefined, reviewers: Nullable<KtList<bigint>> | undefined, subject: string);
18154
18518
  get directRecipients(): Nullable<KtList<string>>;
@@ -19152,6 +19516,7 @@ export declare class ConversationApi extends ApiClient.$metadata$.constructor {
19152
19516
  deleteConversation(companyId: bigint, conversationId: bigint, translateToCountryId?: Nullable<bigint>): Promise<HttpResponse<void>>;
19153
19517
  deleteConversationCategory(companyId: bigint, categoryId: bigint): Promise<HttpResponse<void>>;
19154
19518
  deleteConversationFlag(companyId: bigint, conversationId: bigint): Promise<HttpResponse<void>>;
19519
+ deleteConversationMessage(companyId: bigint, conversationId: bigint, messageId: bigint): Promise<HttpResponse<void>>;
19155
19520
  deleteConversationParticipant(companyId: bigint, conversationId: bigint, participantType: string, participantId: bigint): Promise<HttpResponse<void>>;
19156
19521
  deleteDocumentPublicConversation(companySlug: string, conversationId: bigint, documentId: bigint, redirect?: Nullable<boolean>, size?: Nullable<string>): Promise<HttpResponse<void>>;
19157
19522
  deleteFolder(companyId: bigint, folderId: bigint): Promise<HttpResponse<void>>;
@@ -19169,6 +19534,7 @@ export declare class ConversationApi extends ApiClient.$metadata$.constructor {
19169
19534
  indexConversationCountByCompany(companyIds?: Nullable<KtList<bigint>>, categoryIds?: Nullable<KtList<bigint>>, status?: Nullable<ConversationStatus>, folderId?: Nullable<bigint>, assignedToUserId?: Nullable<bigint>, createdSince?: Nullable<bigint>, flaggedByCurrentUser?: Nullable<boolean>, readByCurrentUser?: Nullable<boolean>, fields?: Nullable<string>): Promise<HttpResponse<KtMap<string, ConversationCountConversationCountByCompanyMap>>>;
19170
19535
  indexConversationCountInCompany(companyId: bigint, fields?: Nullable<string>): Promise<HttpResponse<ConversationCount>>;
19171
19536
  indexConversationFolders(companyId: bigint, parentId?: Nullable<bigint>, fields?: Nullable<string>, pageToken?: Nullable<string>, autoPaginate?: Nullable<boolean>, count?: Nullable<number>): Promise<HttpResponse<PagedListConversationFolder>>;
19537
+ indexConversationMessageHistory(companyId: bigint, conversationId: bigint, messageId: bigint, fields?: Nullable<string>): Promise<HttpResponse<KtList<MessageEditHistory>>>;
19172
19538
  indexConversations(search?: Nullable<string>, companyIds?: Nullable<KtList<bigint>>, categoryIds?: Nullable<KtList<bigint>>, status?: Nullable<ConversationStatus>, byParticipants?: Nullable<KtList<bigint>>, byParticipantTypes?: Nullable<KtList<ParticipantType>>, folderId?: Nullable<bigint>, assignedToUserId?: Nullable<bigint>, createdSince?: Nullable<bigint>, updatedSince?: Nullable<bigint>, flaggedByCurrentUser?: Nullable<boolean>, readByCurrentUser?: Nullable<boolean>, fields?: Nullable<string>, pageToken?: Nullable<string>, autoPaginate?: Nullable<boolean>, count?: Nullable<number>): Promise<HttpResponse<PagedListConversation>>;
19173
19539
  moveConversation(companyId: bigint, conversationId: bigint, moveConversationToFolderCommand: MoveConversationToFolderCommand): Promise<HttpResponse<void>>;
19174
19540
  moveMultipleConversations(companyId: bigint, batchMoveConversationsToFolderCommand: BatchMoveConversationsToFolderCommand): Promise<HttpResponse<void>>;
@@ -19176,13 +19542,19 @@ export declare class ConversationApi extends ApiClient.$metadata$.constructor {
19176
19542
  publishConversation(companyId: bigint, conversationId: bigint): Promise<HttpResponse<Conversation>>;
19177
19543
  reOpenConversation(companyId: bigint, conversationId: bigint): Promise<HttpResponse<Conversation>>;
19178
19544
  reOpenMultipleConversations(companyId: bigint, batchConversationStateCommand: BatchConversationStateCommand): Promise<HttpResponse<void>>;
19545
+ restoreConversationMessage(companyId: bigint, conversationId: bigint, messageId: bigint): Promise<HttpResponse<void>>;
19179
19546
  showConversation(companyId: bigint, conversationId: bigint, translateToCountryId?: Nullable<bigint>, fields?: Nullable<string>): Promise<HttpResponse<Conversation>>;
19180
19547
  showConversationFolder(companyId: bigint, folderId: bigint, fields?: Nullable<string>): Promise<HttpResponse<ConversationFolder>>;
19181
19548
  showConversationPublic(companySlug: string, conversationId: bigint, fields?: Nullable<string>): Promise<HttpResponse<PublicConversation>>;
19182
19549
  showDocumentPublicConversation(companySlug: string, conversationId: bigint, documentId: bigint, redirect?: Nullable<boolean>, size?: Nullable<string>, fields?: Nullable<string>): Promise<HttpResponse<UrlWrapper>>;
19550
+ trashConversation(companyId: bigint, conversationId: bigint): Promise<HttpResponse<void>>;
19551
+ trashMultipleConversations(companyId: bigint, batchConversationStateCommand: BatchConversationStateCommand): Promise<HttpResponse<void>>;
19552
+ untrashConversation(companyId: bigint, conversationId: bigint): Promise<HttpResponse<void>>;
19553
+ untrashMultipleConversations(companyId: bigint, batchConversationStateCommand: BatchConversationStateCommand): Promise<HttpResponse<void>>;
19183
19554
  updateConversation(companyId: bigint, conversationId: bigint, updateConversationCommand: UpdateConversationCommand, translateToCountryId?: Nullable<bigint>): Promise<HttpResponse<Conversation>>;
19184
19555
  updateConversationCategories(companyId: bigint, secureConversationCategory: KtList<SecureConversationCategory>): Promise<HttpResponse<KtList<SecureConversationCategory>>>;
19185
19556
  updateConversationCategory(companyId: bigint, categoryId: bigint, updateConversationCategoryCommand: UpdateConversationCategoryCommand): Promise<HttpResponse<SecureConversationCategory>>;
19557
+ updateConversationMessage(companyId: bigint, conversationId: bigint, messageId: bigint, updateMessageCommand: UpdateMessageCommand): Promise<HttpResponse<void>>;
19186
19558
  updateFolder(companyId: bigint, folderId: bigint, updateFolderCommand: UpdateFolderCommand): Promise<HttpResponse<ConversationFolder>>;
19187
19559
  }
19188
19560
  export declare namespace ConversationApi {
@@ -19196,18 +19568,26 @@ export declare class DocumentApi extends ApiClient.$metadata$.constructor {
19196
19568
  static create(baseUrl?: string, httpClientEngine?: Nullable<any>/* Nullable<HttpClientEngine> */, httpClientConfig?: Nullable<(p0: any/* HttpClientConfig<UnknownType *> */) => void>, jsonSerializer?: any/* Json */): DocumentApi;
19197
19569
  static createWithClient(baseUrl: string, httpClient: any/* HttpClient */): DocumentApi;
19198
19570
  abortDocumentUploadTicket(companyId: bigint, ticketId: string): Promise<HttpResponse<void>>;
19571
+ beginOffice365CustomerConnection(companyId: bigint, documentId: bigint, office365CustomerConnectCommand: Office365CustomerConnectCommand): Promise<HttpResponse<void>>;
19572
+ classifyOffice365ManagedDocumentCandidate(companyId: bigint, candidateId: bigint, office365ManagedDocumentCandidateClassificationRequest: Office365ManagedDocumentCandidateClassificationRequest): Promise<HttpResponse<Office365ManagedDocumentCandidateReview>>;
19573
+ copyOffice365ManagedDocument(companyId: bigint, documentId: bigint, office365ManagedDocumentCopyRequest: Office365ManagedDocumentCopyRequest): Promise<HttpResponse<Document>>;
19199
19574
  createDocument(companyId: bigint, documentType: DocumentType, parentId?: Nullable<bigint>, isDirectory?: Nullable<boolean>): Promise<HttpResponse<Document>>;
19200
19575
  createDocumentBelongsTo(companyId: bigint, documentType: string, belongsToId: bigint, parentId?: Nullable<bigint>, uploadGroupId?: Nullable<string>): Promise<HttpResponse<Document>>;
19201
19576
  createDocumentReference(companyId: bigint, documentId: bigint, createDocumentReferenceCommand: CreateDocumentReferenceCommand): Promise<HttpResponse<Document>>;
19202
19577
  createDocumentUploadTicket(companyId: bigint, contentType: string, contentDisposition: string, xContentLengthUpload: string, contentMd5?: Nullable<string>): Promise<HttpResponse<DocumentUploadTicket>>;
19203
19578
  deleteDocument(companyId: bigint, documentId: bigint): Promise<HttpResponse<void>>;
19579
+ discardOffice365ManagedDocumentCandidate(companyId: bigint, candidateId: bigint): Promise<HttpResponse<Office365ManagedDocumentCandidateReview>>;
19580
+ disconnectOffice365CustomerConnection(companyId: bigint, documentId: bigint, officeCustomerConnect: string): Promise<HttpResponse<Office365CustomerDisconnect>>;
19204
19581
  indexDocumentBelongsTo(companyId: bigint, documentType: string, belongsToId: bigint, parentId?: Nullable<bigint>, uploadGroupId?: Nullable<string>, fields?: Nullable<string>, pageToken?: Nullable<string>, autoPaginate?: Nullable<boolean>, count?: Nullable<number>): Promise<HttpResponse<PagedListDocument>>;
19205
19582
  indexDocumentsUser(search?: Nullable<string>, companyIds?: Nullable<KtList<bigint>>, type?: Nullable<KtList<DocumentType>>, createdAtFrom?: Nullable<bigint>, createdAtTo?: Nullable<bigint>, fields?: Nullable<string>, pageToken?: Nullable<string>, autoPaginate?: Nullable<boolean>, count?: Nullable<number>): Promise<HttpResponse<PagedListDocument>>;
19206
19583
  listDocument(companyId: bigint, search?: Nullable<string>, type?: Nullable<KtList<DocumentType>>, createdAtFrom?: Nullable<bigint>, createdAtTo?: Nullable<bigint>, fields?: Nullable<string>, pageToken?: Nullable<string>, autoPaginate?: Nullable<boolean>, count?: Nullable<number>): Promise<HttpResponse<PagedListDocument>>;
19207
19584
  listDocumentByType(companyId: bigint, documentType: DocumentType, parentId?: Nullable<bigint>, isDirectory?: Nullable<boolean>, fields?: Nullable<string>, pageToken?: Nullable<string>, autoPaginate?: Nullable<boolean>, count?: Nullable<number>): Promise<HttpResponse<PagedListDocument>>;
19585
+ listOffice365ManagedDocumentCandidates(companyId: bigint, managedDocuments: string, fields?: Nullable<string>, pageToken?: Nullable<string>, autoPaginate?: Nullable<boolean>, count?: Nullable<number>): Promise<HttpResponse<PagedListOffice365ManagedDocumentCandidateReviewCandidate>>;
19208
19586
  moveDocument(companyId: bigint, documentId: bigint, parentId: string): Promise<HttpResponse<void>>;
19209
19587
  moveMultipleDocuments(companyId: bigint, parentId: string, batchMoveDocumentsCommand: BatchMoveDocumentsCommand): Promise<HttpResponse<KtList<Document>>>;
19588
+ openOffice365DocumentEditSession(companyId: bigint, documentId: bigint): Promise<HttpResponse<Office365EditSession>>;
19210
19589
  renameDocument(companyId: bigint, documentId: bigint, renameDocumentCommand: RenameDocumentCommand): Promise<HttpResponse<Document>>;
19590
+ requestOffice365InternalDocumentPublish(companyId: bigint, internalDocuments: string, office365InternalDocumentPublishRequestCommand: Office365InternalDocumentPublishRequestCommand): Promise<HttpResponse<Office365InternalDocumentPublishRequest>>;
19211
19591
  restoreDocument(companyId: bigint, documentId: bigint, restoreDocumentCommand: RestoreDocumentCommand): Promise<HttpResponse<void>>;
19212
19592
  restoreMultipleDocuments(companyId: bigint, batchRestoreDocumentsCommand: BatchRestoreDocumentsCommand): Promise<HttpResponse<void>>;
19213
19593
  searchDocuments(companyId: bigint, searchText: string, fields?: Nullable<string>, pageToken?: Nullable<string>, autoPaginate?: Nullable<boolean>, count?: Nullable<number>): Promise<HttpResponse<PagedListDocument>>;
@@ -19215,6 +19595,7 @@ export declare class DocumentApi extends ApiClient.$metadata$.constructor {
19215
19595
  showDirectoryZip(companyId: bigint): Promise<HttpResponse<Base64ByteArray>>;
19216
19596
  showDocument(companyId: bigint, documentId: bigint, redirect?: Nullable<boolean>, size?: Nullable<string>, fields?: Nullable<string>): Promise<HttpResponse<UrlWrapper>>;
19217
19597
  showDocumentTypes(companyId: bigint, fields?: Nullable<string>, pageToken?: Nullable<string>, autoPaginate?: Nullable<boolean>, count?: Nullable<number>): Promise<HttpResponse<PagedListDocumentType>>;
19598
+ showOffice365ManagedDocumentCandidate(companyId: bigint, candidateId: bigint, fields?: Nullable<string>): Promise<HttpResponse<Office365ManagedDocumentCandidateReviewCandidate>>;
19218
19599
  showPublicDocument(companyId: bigint, documentId: bigint, redirect?: Nullable<boolean>, size?: Nullable<string>, fields?: Nullable<string>): Promise<HttpResponse<UrlWrapper>>;
19219
19600
  showTypeDirectoryZip(companyId: bigint, documentType: string): Promise<HttpResponse<Base64ByteArray>>;
19220
19601
  trashDocument(companyId: bigint, documentId: bigint): Promise<HttpResponse<void>>;