@solibo/home-api 1.6.13 → 1.6.14

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.
@@ -263,7 +263,7 @@ initMetadataForClass(ContextScope, 'ContextScope', VOID, VOID, [CoroutineScope])
263
263
  initMetadataForClass(Symbol, 'Symbol');
264
264
  initMetadataForInterface(SelectInstance, 'SelectInstance');
265
265
  initMetadataForClass(ClauseData, 'ClauseData', VOID, VOID, VOID, [1]);
266
- initMetadataForClass(SelectImplementation, 'SelectImplementation', VOID, VOID, [CancelHandler, Waiter, SelectInstance], [0, 2]);
266
+ initMetadataForClass(SelectImplementation, 'SelectImplementation', VOID, VOID, [CancelHandler, SelectInstance, Waiter], [0, 2]);
267
267
  initMetadataForClass(TrySelectDetailedResult, 'TrySelectDetailedResult', VOID, Enum);
268
268
  initMetadataForClass(SetTimeoutBasedDispatcher, 'SetTimeoutBasedDispatcher', VOID, CoroutineDispatcher, [Delay], [1]);
269
269
  initMetadataForObject(NodeDispatcher, 'NodeDispatcher', VOID, SetTimeoutBasedDispatcher, VOID, [1]);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "main": "solibo-sdk-sdk-home-api.mjs",
3
- "version": "1.6.13",
3
+ "version": "1.6.14",
4
4
  "name": "@solibo/home-api",
5
5
  "dependencies": {
6
6
  "ws": "8.18.3",
@@ -827,6 +827,57 @@ export declare namespace ClientUser {
827
827
  const constructor: abstract new () => ClientUser;
828
828
  }
829
829
  }
830
+ export declare abstract class ClientUserCompanyScope {
831
+ private constructor();
832
+ static get READ_ONLY(): ClientUserCompanyScope & {
833
+ get name(): "READ_ONLY";
834
+ get ordinal(): 0;
835
+ };
836
+ static get BOARD(): ClientUserCompanyScope & {
837
+ get name(): "BOARD";
838
+ get ordinal(): 1;
839
+ };
840
+ static get ADMIN(): ClientUserCompanyScope & {
841
+ get name(): "ADMIN";
842
+ get ordinal(): 2;
843
+ };
844
+ static get ReadOnly(): ClientUserCompanyScope & {
845
+ get name(): "READ_ONLY";
846
+ get ordinal(): 0;
847
+ };
848
+ static get Board(): ClientUserCompanyScope & {
849
+ get name(): "BOARD";
850
+ get ordinal(): 1;
851
+ };
852
+ static get Admin(): ClientUserCompanyScope & {
853
+ get name(): "ADMIN";
854
+ get ordinal(): 2;
855
+ };
856
+ static values(): [typeof ClientUserCompanyScope.READ_ONLY, typeof ClientUserCompanyScope.BOARD, typeof ClientUserCompanyScope.ADMIN];
857
+ static valueOf(value: string): ClientUserCompanyScope;
858
+ get name(): "READ_ONLY" | "BOARD" | "ADMIN";
859
+ get ordinal(): 0 | 1 | 2;
860
+ get value(): string;
861
+ toString(): string;
862
+ }
863
+ export declare namespace ClientUserCompanyScope {
864
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
865
+ namespace $metadata$ {
866
+ const constructor: abstract new () => ClientUserCompanyScope;
867
+ }
868
+ abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
869
+ private constructor();
870
+ }
871
+ namespace Companion {
872
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
873
+ namespace $metadata$ {
874
+ abstract class constructor /* implements SerializerFactory */ {
875
+ fromValue(value: string): Nullable<ClientUserCompanyScope>;
876
+ private constructor();
877
+ }
878
+ }
879
+ }
880
+ }
830
881
  export declare class CloseInsuranceCommand {
831
882
  constructor(endDate: any/* Instant */);
832
883
  get endDate(): any/* Instant */;
@@ -2578,12 +2629,12 @@ export declare namespace CreateInsuranceCommand {
2578
2629
  }
2579
2630
  }
2580
2631
  export declare class CreateInternalMessageCommand {
2581
- constructor(attachmentIds: Nullable<KtList<bigint>> | undefined, content: string, emailContent?: Nullable<MessageEmailContent>, type?: Nullable<MessageType>);
2632
+ constructor(attachmentIds: Nullable<KtList<bigint>> | undefined, content: string, emailContent?: Nullable<EmailContentCommand>, type?: Nullable<MessageType>);
2582
2633
  get attachmentIds(): Nullable<KtList<bigint>>;
2583
2634
  get content(): string;
2584
- get emailContent(): Nullable<MessageEmailContent>;
2635
+ get emailContent(): Nullable<EmailContentCommand>;
2585
2636
  get type(): Nullable<MessageType>;
2586
- copy(attachmentIds?: Nullable<KtList<bigint>>, content?: string, emailContent?: Nullable<MessageEmailContent>, type?: Nullable<MessageType>): CreateInternalMessageCommand;
2637
+ copy(attachmentIds?: Nullable<KtList<bigint>>, content?: string, emailContent?: Nullable<EmailContentCommand>, type?: Nullable<MessageType>): CreateInternalMessageCommand;
2587
2638
  toString(): string;
2588
2639
  hashCode(): number;
2589
2640
  equals(other: Nullable<any>): boolean;
@@ -2821,12 +2872,12 @@ export declare namespace CreateMeetingReminderNotificationCommand {
2821
2872
  }
2822
2873
  }
2823
2874
  export declare class CreateMessageCommand {
2824
- constructor(attachmentIds: Nullable<KtList<bigint>> | undefined, content: string, emailContent?: Nullable<MessageEmailContent>, type?: Nullable<MessageType>);
2875
+ constructor(attachmentIds: Nullable<KtList<bigint>> | undefined, content: string, emailContent?: Nullable<EmailContentCommand>, type?: Nullable<MessageType>);
2825
2876
  get attachmentIds(): Nullable<KtList<bigint>>;
2826
2877
  get content(): string;
2827
- get emailContent(): Nullable<MessageEmailContent>;
2878
+ get emailContent(): Nullable<EmailContentCommand>;
2828
2879
  get type(): Nullable<MessageType>;
2829
- copy(attachmentIds?: Nullable<KtList<bigint>>, content?: string, emailContent?: Nullable<MessageEmailContent>, type?: Nullable<MessageType>): CreateMessageCommand;
2880
+ copy(attachmentIds?: Nullable<KtList<bigint>>, content?: string, emailContent?: Nullable<EmailContentCommand>, type?: Nullable<MessageType>): CreateMessageCommand;
2830
2881
  toString(): string;
2831
2882
  hashCode(): number;
2832
2883
  equals(other: Nullable<any>): boolean;
@@ -4393,6 +4444,21 @@ export declare namespace EditResidencyCommand {
4393
4444
  const constructor: abstract new () => EditResidencyCommand;
4394
4445
  }
4395
4446
  }
4447
+ export declare class EmailContentCommand {
4448
+ constructor(htmlContent?: Nullable<string>, plainContent?: Nullable<string>);
4449
+ get htmlContent(): Nullable<string>;
4450
+ get plainContent(): Nullable<string>;
4451
+ copy(htmlContent?: Nullable<string>, plainContent?: Nullable<string>): EmailContentCommand;
4452
+ toString(): string;
4453
+ hashCode(): number;
4454
+ equals(other: Nullable<any>): boolean;
4455
+ }
4456
+ export declare namespace EmailContentCommand {
4457
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
4458
+ namespace $metadata$ {
4459
+ const constructor: abstract new () => EmailContentCommand;
4460
+ }
4461
+ }
4396
4462
  export declare class EmailInlineConfirmCommand {
4397
4463
  constructor(fingerprint: string, session: string);
4398
4464
  get fingerprint(): string;
@@ -5028,6 +5094,21 @@ export declare namespace FractionType {
5028
5094
  }
5029
5095
  }
5030
5096
  }
5097
+ export declare class FullEmailContent {
5098
+ constructor(html?: Nullable<string>, plain?: Nullable<string>);
5099
+ get html(): Nullable<string>;
5100
+ get plain(): Nullable<string>;
5101
+ copy(html?: Nullable<string>, plain?: Nullable<string>): FullEmailContent;
5102
+ toString(): string;
5103
+ hashCode(): number;
5104
+ equals(other: Nullable<any>): boolean;
5105
+ }
5106
+ export declare namespace FullEmailContent {
5107
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
5108
+ namespace $metadata$ {
5109
+ const constructor: abstract new () => FullEmailContent;
5110
+ }
5111
+ }
5031
5112
  export declare class GenerateThirdPartyInformationCommand {
5032
5113
  constructor(debt?: Nullable<number>, inFourDebt?: Nullable<number>, inOneDebt?: Nullable<number>, inThreeDebt?: Nullable<number>, inTwoDebt?: Nullable<number>, leaseFeeAsPartOfDebt?: Nullable<number>, periods?: Nullable<KtList<ThreePOPeriodInput>>, taxAssessedValues?: Nullable<number>, wealth?: Nullable<number>);
5033
5114
  get debt(): Nullable<number>;
@@ -8046,10 +8127,12 @@ export declare namespace MergePersonsCommand {
8046
8127
  }
8047
8128
  }
8048
8129
  export declare class MessageEmailContent {
8049
- constructor(htmlContent?: Nullable<string>, plainContent?: Nullable<string>);
8050
- get htmlContent(): Nullable<string>;
8051
- get plainContent(): Nullable<string>;
8052
- copy(htmlContent?: Nullable<string>, plainContent?: Nullable<string>): MessageEmailContent;
8130
+ constructor(hasMoreContent?: Nullable<boolean>, html?: Nullable<string>, plain?: Nullable<string>, previewPlainContent?: Nullable<string>);
8131
+ get hasMoreContent(): Nullable<boolean>;
8132
+ get html(): Nullable<string>;
8133
+ get plain(): Nullable<string>;
8134
+ get previewPlainContent(): Nullable<string>;
8135
+ copy(hasMoreContent?: Nullable<boolean>, html?: Nullable<string>, plain?: Nullable<string>, previewPlainContent?: Nullable<string>): MessageEmailContent;
8053
8136
  toString(): string;
8054
8137
  hashCode(): number;
8055
8138
  equals(other: Nullable<any>): boolean;
@@ -16235,6 +16318,7 @@ export declare class ConversationApi extends ApiClient.$metadata$.constructor {
16235
16318
  deleteDocumentPublicConversation(companySlug: string, conversationId: bigint, documentId: bigint, redirect?: Nullable<boolean>, size?: Nullable<string>): Promise<HttpResponse<void>>;
16236
16319
  deleteFolder(companyId: bigint, folderId: bigint): Promise<HttpResponse<void>>;
16237
16320
  finalizeConversation(companyId: bigint, conversationId: bigint): Promise<HttpResponse<Conversation>>;
16321
+ getMessageFullEmailContent(companyId: bigint, conversationId: bigint, messageId: bigint, fields?: Nullable<string>): Promise<HttpResponse<FullEmailContent>>;
16238
16322
  indexCompanyConversationCategories(companyId: bigint, fields?: Nullable<string>, pageToken?: Nullable<string>, autoPaginate?: Nullable<boolean>, count?: Nullable<number>): Promise<HttpResponse<PagedListSecureConversationCategory>>;
16239
16323
  indexCompanyConversationCategoriesForRequests(companyId: bigint, fields?: Nullable<string>, pageToken?: Nullable<string>, autoPaginate?: Nullable<boolean>, count?: Nullable<number>): Promise<HttpResponse<PagedListConversationCategory>>;
16240
16324
  indexConversation(companyId: bigint, search?: Nullable<string>, category?: Nullable<bigint>, folder?: Nullable<bigint>, onlyRoot?: Nullable<boolean>, status?: Nullable<ConversationStatus>, byParticipant?: Nullable<bigint>, byParticipantType?: Nullable<ParticipantType>, assignedToUserId?: Nullable<bigint>, createdSince?: Nullable<bigint>, fields?: Nullable<string>, pageToken?: Nullable<string>, autoPaginate?: Nullable<boolean>, count?: Nullable<number>): Promise<HttpResponse<PagedListConversation>>;
@@ -16946,6 +17030,19 @@ export declare namespace ThirdPartyInformationApi {
16946
17030
  const constructor: abstract new () => ThirdPartyInformationApi;
16947
17031
  }
16948
17032
  }
17033
+ export declare class UnsubscribeApi extends ApiClient.$metadata$.constructor {
17034
+ private constructor();
17035
+ static create(baseUrl?: string, httpClientEngine?: Nullable<any>/* Nullable<HttpClientEngine> */, httpClientConfig?: Nullable<(p0: any/* HttpClientConfig<UnknownType *> */) => void>, jsonSerializer?: any/* Json */): UnsubscribeApi;
17036
+ static createWithClient(baseUrl: string, httpClient: any/* HttpClient */): UnsubscribeApi;
17037
+ getUnsubscribePage(token: string, fields?: Nullable<string>): Promise<HttpResponse<string>>;
17038
+ unsubscribe(token: string): Promise<HttpResponse<void>>;
17039
+ }
17040
+ export declare namespace UnsubscribeApi {
17041
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
17042
+ namespace $metadata$ {
17043
+ const constructor: abstract new () => UnsubscribeApi;
17044
+ }
17045
+ }
16949
17046
  export declare class UserApi extends ApiClient.$metadata$.constructor {
16950
17047
  private constructor();
16951
17048
  static create(baseUrl?: string, httpClientEngine?: Nullable<any>/* Nullable<HttpClientEngine> */, httpClientConfig?: Nullable<(p0: any/* HttpClientConfig<UnknownType *> */) => void>, jsonSerializer?: any/* Json */): UserApi;