@solibo/solibo-sdk 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.
@@ -947,6 +947,56 @@ export declare namespace ClientUser {
947
947
  const constructor: abstract new () => ClientUser;
948
948
  }
949
949
  }
950
+ export declare abstract class ClientUserCompanyScope {
951
+ private constructor();
952
+ static get READ_ONLY(): ClientUserCompanyScope & {
953
+ get name(): "READ_ONLY";
954
+ get ordinal(): 0;
955
+ };
956
+ static get BOARD(): ClientUserCompanyScope & {
957
+ get name(): "BOARD";
958
+ get ordinal(): 1;
959
+ };
960
+ static get ADMIN(): ClientUserCompanyScope & {
961
+ get name(): "ADMIN";
962
+ get ordinal(): 2;
963
+ };
964
+ static get ReadOnly(): ClientUserCompanyScope & {
965
+ get name(): "READ_ONLY";
966
+ get ordinal(): 0;
967
+ };
968
+ static get Board(): ClientUserCompanyScope & {
969
+ get name(): "BOARD";
970
+ get ordinal(): 1;
971
+ };
972
+ static get Admin(): ClientUserCompanyScope & {
973
+ get name(): "ADMIN";
974
+ get ordinal(): 2;
975
+ };
976
+ static values(): [typeof ClientUserCompanyScope.READ_ONLY, typeof ClientUserCompanyScope.BOARD, typeof ClientUserCompanyScope.ADMIN];
977
+ static valueOf(value: string): ClientUserCompanyScope;
978
+ get name(): "READ_ONLY" | "BOARD" | "ADMIN";
979
+ get ordinal(): 0 | 1 | 2;
980
+ get value(): string;
981
+ }
982
+ export declare namespace ClientUserCompanyScope {
983
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
984
+ namespace $metadata$ {
985
+ const constructor: abstract new () => ClientUserCompanyScope;
986
+ }
987
+ abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
988
+ private constructor();
989
+ }
990
+ namespace Companion {
991
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
992
+ namespace $metadata$ {
993
+ abstract class constructor /* implements SerializerFactory */ {
994
+ fromValue(value: string): ClientUserCompanyScope | null | undefined;
995
+ private constructor();
996
+ }
997
+ }
998
+ }
999
+ }
950
1000
  export interface CloseInsuranceCommandProps {
951
1001
  endDate: SoliboInstant /* Instant */;
952
1002
  }
@@ -2979,15 +3029,15 @@ export declare namespace CreateInsuranceCommand {
2979
3029
  export interface CreateInternalMessageCommandProps {
2980
3030
  attachmentIds?: bigint[] | null | undefined;
2981
3031
  content: string;
2982
- emailContent?: MessageEmailContentProps | null | undefined;
3032
+ emailContent?: EmailContentCommandProps | null | undefined;
2983
3033
  type?: MessageTypeProps | null | undefined;
2984
3034
  }
2985
3035
  export declare class CreateInternalMessageCommand {
2986
3036
  constructor(props: CreateInternalMessageCommandProps);
2987
- constructor(attachmentIds: bigint[] | null | undefined, content: string, emailContent?: MessageEmailContent | null | undefined, type?: MessageType | null | undefined);
3037
+ constructor(attachmentIds: bigint[] | null | undefined, content: string, emailContent?: EmailContentCommand | null | undefined, type?: MessageType | null | undefined);
2988
3038
  get attachmentIds(): bigint[] | null | undefined;
2989
3039
  get content(): string;
2990
- get emailContent(): MessageEmailContent | null | undefined;
3040
+ get emailContent(): EmailContentCommand | null | undefined;
2991
3041
  get type(): MessageType | null | undefined;
2992
3042
  }
2993
3043
  export declare namespace CreateInternalMessageCommand {
@@ -3269,15 +3319,15 @@ export declare namespace CreateMeetingReminderNotificationCommand {
3269
3319
  export interface CreateMessageCommandProps {
3270
3320
  attachmentIds?: bigint[] | null | undefined;
3271
3321
  content: string;
3272
- emailContent?: MessageEmailContentProps | null | undefined;
3322
+ emailContent?: EmailContentCommandProps | null | undefined;
3273
3323
  type?: MessageTypeProps | null | undefined;
3274
3324
  }
3275
3325
  export declare class CreateMessageCommand {
3276
3326
  constructor(props: CreateMessageCommandProps);
3277
- constructor(attachmentIds: bigint[] | null | undefined, content: string, emailContent?: MessageEmailContent | null | undefined, type?: MessageType | null | undefined);
3327
+ constructor(attachmentIds: bigint[] | null | undefined, content: string, emailContent?: EmailContentCommand | null | undefined, type?: MessageType | null | undefined);
3278
3328
  get attachmentIds(): bigint[] | null | undefined;
3279
3329
  get content(): string;
3280
- get emailContent(): MessageEmailContent | null | undefined;
3330
+ get emailContent(): EmailContentCommand | null | undefined;
3281
3331
  get type(): MessageType | null | undefined;
3282
3332
  }
3283
3333
  export declare namespace CreateMessageCommand {
@@ -5090,6 +5140,22 @@ export declare namespace EditResidencyCommand {
5090
5140
  const constructor: abstract new () => EditResidencyCommand;
5091
5141
  }
5092
5142
  }
5143
+ export interface EmailContentCommandProps {
5144
+ htmlContent?: string | null | undefined;
5145
+ plainContent?: string | null | undefined;
5146
+ }
5147
+ export declare class EmailContentCommand {
5148
+ constructor(props: EmailContentCommandProps);
5149
+ constructor(htmlContent?: string | null | undefined, plainContent?: string | null | undefined);
5150
+ get htmlContent(): string | null | undefined;
5151
+ get plainContent(): string | null | undefined;
5152
+ }
5153
+ export declare namespace EmailContentCommand {
5154
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
5155
+ namespace $metadata$ {
5156
+ const constructor: abstract new () => EmailContentCommand;
5157
+ }
5158
+ }
5093
5159
  export interface EmailInlineConfirmCommandProps {
5094
5160
  fingerprint: string;
5095
5161
  session: string;
@@ -5786,6 +5852,22 @@ export declare namespace FractionType {
5786
5852
  }
5787
5853
  }
5788
5854
  }
5855
+ export interface FullEmailContentProps {
5856
+ html?: string | null | undefined;
5857
+ plain?: string | null | undefined;
5858
+ }
5859
+ export declare class FullEmailContent {
5860
+ constructor(props: FullEmailContentProps);
5861
+ constructor(html?: string | null | undefined, plain?: string | null | undefined);
5862
+ get html(): string | null | undefined;
5863
+ get plain(): string | null | undefined;
5864
+ }
5865
+ export declare namespace FullEmailContent {
5866
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
5867
+ namespace $metadata$ {
5868
+ const constructor: abstract new () => FullEmailContent;
5869
+ }
5870
+ }
5789
5871
  export interface GenerateThirdPartyInformationCommandProps {
5790
5872
  debt?: number | null | undefined;
5791
5873
  inFourDebt?: number | null | undefined;
@@ -9242,14 +9324,18 @@ export declare namespace MergePersonsCommand {
9242
9324
  }
9243
9325
  }
9244
9326
  export interface MessageEmailContentProps {
9245
- htmlContent?: string | null | undefined;
9246
- plainContent?: string | null | undefined;
9327
+ hasMoreContent?: boolean | null | undefined;
9328
+ html?: string | null | undefined;
9329
+ plain?: string | null | undefined;
9330
+ previewPlainContent?: string | null | undefined;
9247
9331
  }
9248
9332
  export declare class MessageEmailContent {
9249
9333
  constructor(props: MessageEmailContentProps);
9250
- constructor(htmlContent?: string | null | undefined, plainContent?: string | null | undefined);
9251
- get htmlContent(): string | null | undefined;
9252
- get plainContent(): string | null | undefined;
9334
+ constructor(hasMoreContent?: boolean | null | undefined, html?: string | null | undefined, plain?: string | null | undefined, previewPlainContent?: string | null | undefined);
9335
+ get hasMoreContent(): boolean | null | undefined;
9336
+ get html(): string | null | undefined;
9337
+ get plain(): string | null | undefined;
9338
+ get previewPlainContent(): string | null | undefined;
9253
9339
  }
9254
9340
  export declare namespace MessageEmailContent {
9255
9341
  /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
@@ -18758,6 +18844,7 @@ export declare class ConversationApi extends ApiClient.$metadata$.constructor {
18758
18844
  deleteDocumentPublicConversation(companySlug: string, conversationId: bigint, documentId: bigint, redirect?: boolean | null | undefined, size?: string | null | undefined): Promise<HttpResponse<void>>;
18759
18845
  deleteFolder(companyId: bigint, folderId: bigint): Promise<HttpResponse<void>>;
18760
18846
  finalizeConversation(companyId: bigint, conversationId: bigint): Promise<HttpResponse<Conversation>>;
18847
+ getMessageFullEmailContent(companyId: bigint, conversationId: bigint, messageId: bigint, fields?: string | null | undefined): Promise<HttpResponse<FullEmailContent>>;
18761
18848
  indexCompanyConversationCategories(companyId: bigint, fields?: string | null | undefined, pageToken?: string | null | undefined, autoPaginate?: boolean | null | undefined, count?: number | null | undefined): Promise<HttpResponse<PagedListSecureConversationCategory>>;
18762
18849
  indexCompanyConversationCategoriesForRequests(companyId: bigint, fields?: string | null | undefined, pageToken?: string | null | undefined, autoPaginate?: boolean | null | undefined, count?: number | null | undefined): Promise<HttpResponse<PagedListConversationCategory>>;
18763
18850
  indexConversation(companyId: bigint, search?: string | null | undefined, category?: bigint | null | undefined, folder?: bigint | null | undefined, onlyRoot?: boolean | null | undefined, status?: ConversationStatus | null | undefined, byParticipant?: bigint | null | undefined, byParticipantType?: ParticipantType | null | undefined, assignedToUserId?: bigint | null | undefined, createdSince?: bigint | null | undefined, fields?: string | null | undefined, pageToken?: string | null | undefined, autoPaginate?: boolean | null | undefined, count?: number | null | undefined): Promise<HttpResponse<PagedListConversation>>;
@@ -19469,6 +19556,19 @@ export declare namespace ThirdPartyInformationApi {
19469
19556
  const constructor: abstract new () => ThirdPartyInformationApi;
19470
19557
  }
19471
19558
  }
19559
+ export declare class UnsubscribeApi extends ApiClient.$metadata$.constructor {
19560
+ private constructor();
19561
+ static create(baseUrl?: string, httpClientEngine?: any | null | undefined/* HttpClientEngine | null | undefined */, httpClientConfig?: (p0: any/* HttpClientConfig<UnknownType *> */) => void | null | undefined, jsonSerializer?: any/* Json */): UnsubscribeApi;
19562
+ static createWithClient(baseUrl: string, httpClient: any/* HttpClient */): UnsubscribeApi;
19563
+ getUnsubscribePage(token: string, fields?: string | null | undefined): Promise<HttpResponse<string>>;
19564
+ unsubscribe(token: string): Promise<HttpResponse<void>>;
19565
+ }
19566
+ export declare namespace UnsubscribeApi {
19567
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
19568
+ namespace $metadata$ {
19569
+ const constructor: abstract new () => UnsubscribeApi;
19570
+ }
19571
+ }
19472
19572
  export declare class UserApi extends ApiClient.$metadata$.constructor {
19473
19573
  private constructor();
19474
19574
  static create(baseUrl?: string, httpClientEngine?: any | null | undefined/* HttpClientEngine | null | undefined */, httpClientConfig?: (p0: any/* HttpClientConfig<UnknownType *> */) => void | null | undefined, jsonSerializer?: any/* Json */): UserApi;