@solibo/solibo-sdk 1.1.81 → 1.1.104

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.
@@ -1585,34 +1585,13 @@ export declare namespace ContactTryFreeCommand {
1585
1585
  const constructor: abstract new () => ContactTryFreeCommand;
1586
1586
  }
1587
1587
  }
1588
- export interface ContentProps {
1589
- contentType?: string | null | undefined;
1590
- creator?: string | null | undefined;
1591
- creatorName?: string | null | undefined;
1592
- key: string;
1593
- url?: string | null | undefined;
1594
- }
1595
- export declare class Content {
1596
- constructor(props: ContentProps);
1597
- constructor(contentType: string | null | undefined, creator: string | null | undefined, creatorName: string | null | undefined, key: string, url?: string | null | undefined);
1598
- get contentType(): string | null | undefined;
1599
- get creator(): string | null | undefined;
1600
- get creatorName(): string | null | undefined;
1601
- get key(): string;
1602
- get url(): string | null | undefined;
1603
- }
1604
- export declare namespace Content {
1605
- /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1606
- namespace $metadata$ {
1607
- const constructor: abstract new () => Content;
1608
- }
1609
- }
1610
1588
  export interface ConversationProps {
1611
1589
  category?: CategoryInConversationProps | null | undefined;
1612
1590
  companyId: bigint;
1613
1591
  conversationStartedAt: any/* Instant */;
1614
1592
  documents?: KtList<DocumentProps> | null | undefined;
1615
1593
  events?: KtList<ConversationEventProps> | null | undefined;
1594
+ folderId?: bigint | null | undefined;
1616
1595
  id: bigint;
1617
1596
  internalConversation?: InternalConversationProps | null | undefined;
1618
1597
  internalConversationId?: bigint | null | undefined;
@@ -1622,15 +1601,17 @@ export interface ConversationProps {
1622
1601
  relatedIssues?: KtList<IssueInConversationProps> | null | undefined;
1623
1602
  status: ConversationStatus;
1624
1603
  title?: string | null | undefined;
1604
+ type?: MessageType | null | undefined;
1625
1605
  }
1626
1606
  export declare class Conversation {
1627
1607
  constructor(props: ConversationProps);
1628
- constructor(category: CategoryInConversation | null | undefined, companyId: bigint, conversationStartedAt: any/* Instant */, documents: KtList<Document> | null | undefined, events: KtList<ConversationEvent> | null | undefined, id: bigint, internalConversation: InternalConversation | null | undefined, internalConversationId: bigint | null | undefined, messages: KtList<MessageInConversation> | null | undefined, participants: KtList<Participant> | null | undefined, readByCurrentUser: boolean, relatedIssues: KtList<IssueInConversation> | null | undefined, status: ConversationStatus, title?: string | null | undefined);
1608
+ constructor(category: CategoryInConversation | null | undefined, companyId: bigint, conversationStartedAt: any/* Instant */, documents: KtList<Document> | null | undefined, events: KtList<ConversationEvent> | null | undefined, folderId: bigint | null | undefined, id: bigint, internalConversation: InternalConversation | null | undefined, internalConversationId: bigint | null | undefined, messages: KtList<MessageInConversation> | null | undefined, participants: KtList<Participant> | null | undefined, readByCurrentUser: boolean, relatedIssues: KtList<IssueInConversation> | null | undefined, status: ConversationStatus, title?: string | null | undefined, type?: MessageType | null | undefined);
1629
1609
  get category(): CategoryInConversation | null | undefined;
1630
1610
  get companyId(): bigint;
1631
1611
  get conversationStartedAt(): any/* Instant */;
1632
1612
  get documents(): KtList<Document> | null | undefined;
1633
1613
  get events(): KtList<ConversationEvent> | null | undefined;
1614
+ get folderId(): bigint | null | undefined;
1634
1615
  get id(): bigint;
1635
1616
  get internalConversation(): InternalConversation | null | undefined;
1636
1617
  get internalConversationId(): bigint | null | undefined;
@@ -1640,6 +1621,7 @@ export declare class Conversation {
1640
1621
  get relatedIssues(): KtList<IssueInConversation> | null | undefined;
1641
1622
  get status(): ConversationStatus;
1642
1623
  get title(): string | null | undefined;
1624
+ get type(): MessageType | null | undefined;
1643
1625
  }
1644
1626
  export declare namespace Conversation {
1645
1627
  /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
@@ -1853,6 +1835,32 @@ export declare namespace ConversationEventType {
1853
1835
  }
1854
1836
  }
1855
1837
  }
1838
+ export interface ConversationFolderProps {
1839
+ companyId: bigint;
1840
+ createdAt: any/* Instant */;
1841
+ createdBy: bigint;
1842
+ id: bigint;
1843
+ name: string;
1844
+ parentId?: bigint | null | undefined;
1845
+ unreadCount?: bigint | null | undefined;
1846
+ }
1847
+ export declare class ConversationFolder {
1848
+ constructor(props: ConversationFolderProps);
1849
+ constructor(companyId: bigint, createdAt: any/* Instant */, createdBy: bigint, id: bigint, name: string, parentId?: bigint | null | undefined, unreadCount?: bigint | null | undefined);
1850
+ get companyId(): bigint;
1851
+ get createdAt(): any/* Instant */;
1852
+ get createdBy(): bigint;
1853
+ get id(): bigint;
1854
+ get name(): string;
1855
+ get parentId(): bigint | null | undefined;
1856
+ get unreadCount(): bigint | null | undefined;
1857
+ }
1858
+ export declare namespace ConversationFolder {
1859
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
1860
+ namespace $metadata$ {
1861
+ const constructor: abstract new () => ConversationFolder;
1862
+ }
1863
+ }
1856
1864
  export interface ConversationInIssueProps {
1857
1865
  id: bigint;
1858
1866
  participants?: KtList<PersonProps> | null | undefined;
@@ -2216,16 +2224,18 @@ export interface CreateConversationCommandProps {
2216
2224
  content?: string | null | undefined;
2217
2225
  draft?: boolean | null | undefined;
2218
2226
  externalParticipants?: KtList<ExternalConversationParticipantProps> | null | undefined;
2227
+ folderId?: bigint | null | undefined;
2219
2228
  participants: KtList<ConversationParticipantMetaProps>;
2220
2229
  title?: string | null | undefined;
2221
2230
  }
2222
2231
  export declare class CreateConversationCommand {
2223
2232
  constructor(props: CreateConversationCommandProps);
2224
- constructor(categoryId: bigint | null | undefined, content: string | null | undefined, draft: boolean | null | undefined, externalParticipants: KtList<ExternalConversationParticipant> | null | undefined, participants: KtList<ConversationParticipantMeta>, title?: string | null | undefined);
2233
+ constructor(categoryId: bigint | null | undefined, content: string | null | undefined, draft: boolean | null | undefined, externalParticipants: KtList<ExternalConversationParticipant> | null | undefined, folderId: bigint | null | undefined, participants: KtList<ConversationParticipantMeta>, title?: string | null | undefined);
2225
2234
  get categoryId(): bigint | null | undefined;
2226
2235
  get content(): string | null | undefined;
2227
2236
  get draft(): boolean | null | undefined;
2228
2237
  get externalParticipants(): KtList<ExternalConversationParticipant> | null | undefined;
2238
+ get folderId(): bigint | null | undefined;
2229
2239
  get participants(): KtList<ConversationParticipantMeta>;
2230
2240
  get title(): string | null | undefined;
2231
2241
  }
@@ -2372,6 +2382,22 @@ export declare namespace CreateExternalPersonCustomerCommand {
2372
2382
  const constructor: abstract new () => CreateExternalPersonCustomerCommand;
2373
2383
  }
2374
2384
  }
2385
+ export interface CreateFolderCommandProps {
2386
+ name: string;
2387
+ parentId?: bigint | null | undefined;
2388
+ }
2389
+ export declare class CreateFolderCommand {
2390
+ constructor(props: CreateFolderCommandProps);
2391
+ constructor(name: string, parentId?: bigint | null | undefined);
2392
+ get name(): string;
2393
+ get parentId(): bigint | null | undefined;
2394
+ }
2395
+ export declare namespace CreateFolderCommand {
2396
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
2397
+ namespace $metadata$ {
2398
+ const constructor: abstract new () => CreateFolderCommand;
2399
+ }
2400
+ }
2375
2401
  export interface CreateHmsSettingsCommandProps {
2376
2402
  routineGroups?: KtList<bigint> | null | undefined;
2377
2403
  }
@@ -2431,12 +2457,18 @@ export declare namespace CreateInsuranceCommand {
2431
2457
  }
2432
2458
  }
2433
2459
  export interface CreateInternalMessageCommandProps {
2460
+ attachmentIds?: KtList<bigint> | null | undefined;
2434
2461
  content: string;
2462
+ emailContent?: MessageEmailContentProps | null | undefined;
2463
+ type?: MessageType | null | undefined;
2435
2464
  }
2436
2465
  export declare class CreateInternalMessageCommand {
2437
2466
  constructor(props: CreateInternalMessageCommandProps);
2438
- constructor(content: string);
2467
+ constructor(attachmentIds: KtList<bigint> | null | undefined, content: string, emailContent?: MessageEmailContent | null | undefined, type?: MessageType | null | undefined);
2468
+ get attachmentIds(): KtList<bigint> | null | undefined;
2439
2469
  get content(): string;
2470
+ get emailContent(): MessageEmailContent | null | undefined;
2471
+ get type(): MessageType | null | undefined;
2440
2472
  }
2441
2473
  export declare namespace CreateInternalMessageCommand {
2442
2474
  /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
@@ -2675,14 +2707,14 @@ export declare namespace CreateLoanCommand {
2675
2707
  export interface CreateM2MTokensCommandProps {
2676
2708
  clientId: string;
2677
2709
  clientSecret: string;
2678
- scopes: KtList<string>;
2710
+ scopes?: KtList<string> | null | undefined;
2679
2711
  }
2680
2712
  export declare class CreateM2MTokensCommand {
2681
2713
  constructor(props: CreateM2MTokensCommandProps);
2682
- constructor(clientId: string, clientSecret: string, scopes: KtList<string>);
2714
+ constructor(clientId: string, clientSecret: string, scopes?: KtList<string> | null | undefined);
2683
2715
  get clientId(): string;
2684
2716
  get clientSecret(): string;
2685
- get scopes(): KtList<string>;
2717
+ get scopes(): KtList<string> | null | undefined;
2686
2718
  }
2687
2719
  export declare namespace CreateM2MTokensCommand {
2688
2720
  /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
@@ -2739,12 +2771,18 @@ export declare namespace CreateMeetingReminderNotificationCommand {
2739
2771
  }
2740
2772
  }
2741
2773
  export interface CreateMessageCommandProps {
2774
+ attachmentIds?: KtList<bigint> | null | undefined;
2742
2775
  content: string;
2776
+ emailContent?: MessageEmailContentProps | null | undefined;
2777
+ type?: MessageType | null | undefined;
2743
2778
  }
2744
2779
  export declare class CreateMessageCommand {
2745
2780
  constructor(props: CreateMessageCommandProps);
2746
- constructor(content: string);
2781
+ constructor(attachmentIds: KtList<bigint> | null | undefined, content: string, emailContent?: MessageEmailContent | null | undefined, type?: MessageType | null | undefined);
2782
+ get attachmentIds(): KtList<bigint> | null | undefined;
2747
2783
  get content(): string;
2784
+ get emailContent(): MessageEmailContent | null | undefined;
2785
+ get type(): MessageType | null | undefined;
2748
2786
  }
2749
2787
  export declare namespace CreateMessageCommand {
2750
2788
  /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
@@ -3036,10 +3074,8 @@ export declare namespace CreatePersonResidentCommand {
3036
3074
  }
3037
3075
  export interface CreatePostCommandProps {
3038
3076
  content: string;
3039
- contentUrls?: KtList<ContentProps> | null | undefined;
3040
3077
  notificationEmailGroups?: KtList<NotificationGroupProps> | null | undefined;
3041
3078
  notificationSMSGroups?: KtList<NotificationGroupProps> | null | undefined;
3042
- pictureUrl?: ContentProps | null | undefined;
3043
3079
  pinned?: boolean | null | undefined;
3044
3080
  private?: boolean | null | undefined;
3045
3081
  publishedAt?: any | null | undefined/* Instant | null | undefined */ | undefined;
@@ -3048,12 +3084,10 @@ export interface CreatePostCommandProps {
3048
3084
  }
3049
3085
  export declare class CreatePostCommand {
3050
3086
  constructor(props: CreatePostCommandProps);
3051
- constructor(content: string, contentUrls: KtList<Content> | null | undefined, notificationEmailGroups: KtList<NotificationGroup> | null | undefined, notificationSMSGroups: KtList<NotificationGroup> | null | undefined, pictureUrl: Content | null | undefined, pinned: boolean | null | undefined, _private: boolean | null | undefined, publishedAt: any | null | undefined/* Instant | null | undefined */ | undefined, title: string, weighting?: bigint | null | undefined);
3087
+ constructor(content: string, notificationEmailGroups: KtList<NotificationGroup> | null | undefined, notificationSMSGroups: KtList<NotificationGroup> | null | undefined, pinned: boolean | null | undefined, _private: boolean | null | undefined, publishedAt: any | null | undefined/* Instant | null | undefined */ | undefined, title: string, weighting?: bigint | null | undefined);
3052
3088
  get content(): string;
3053
- get contentUrls(): KtList<Content> | null | undefined;
3054
3089
  get notificationEmailGroups(): KtList<NotificationGroup> | null | undefined;
3055
3090
  get notificationSMSGroups(): KtList<NotificationGroup> | null | undefined;
3056
- get pictureUrl(): Content | null | undefined;
3057
3091
  get pinned(): boolean | null | undefined;
3058
3092
  get private(): boolean | null | undefined;
3059
3093
  get publishedAt(): any | null | undefined/* Instant | null | undefined */;
@@ -3068,10 +3102,8 @@ export declare namespace CreatePostCommand {
3068
3102
  }
3069
3103
  export interface CreatePracticalInfoCommandProps {
3070
3104
  content: string;
3071
- contentUrls?: KtList<ContentProps> | null | undefined;
3072
3105
  notificationEmailGroups?: KtList<NotificationGroupProps> | null | undefined;
3073
3106
  notificationSMSGroups?: KtList<NotificationGroupProps> | null | undefined;
3074
- pictureUrl?: ContentProps | null | undefined;
3075
3107
  pinned?: boolean | null | undefined;
3076
3108
  private?: boolean | null | undefined;
3077
3109
  publishedAt?: any | null | undefined/* Instant | null | undefined */ | undefined;
@@ -3080,12 +3112,10 @@ export interface CreatePracticalInfoCommandProps {
3080
3112
  }
3081
3113
  export declare class CreatePracticalInfoCommand {
3082
3114
  constructor(props: CreatePracticalInfoCommandProps);
3083
- constructor(content: string, contentUrls: KtList<Content> | null | undefined, notificationEmailGroups: KtList<NotificationGroup> | null | undefined, notificationSMSGroups: KtList<NotificationGroup> | null | undefined, pictureUrl: Content | null | undefined, pinned: boolean | null | undefined, _private: boolean | null | undefined, publishedAt: any | null | undefined/* Instant | null | undefined */ | undefined, title: string, weighting?: bigint | null | undefined);
3115
+ constructor(content: string, notificationEmailGroups: KtList<NotificationGroup> | null | undefined, notificationSMSGroups: KtList<NotificationGroup> | null | undefined, pinned: boolean | null | undefined, _private: boolean | null | undefined, publishedAt: any | null | undefined/* Instant | null | undefined */ | undefined, title: string, weighting?: bigint | null | undefined);
3084
3116
  get content(): string;
3085
- get contentUrls(): KtList<Content> | null | undefined;
3086
3117
  get notificationEmailGroups(): KtList<NotificationGroup> | null | undefined;
3087
3118
  get notificationSMSGroups(): KtList<NotificationGroup> | null | undefined;
3088
- get pictureUrl(): Content | null | undefined;
3089
3119
  get pinned(): boolean | null | undefined;
3090
3120
  get private(): boolean | null | undefined;
3091
3121
  get publishedAt(): any | null | undefined/* Instant | null | undefined */;
@@ -4092,16 +4122,24 @@ export declare abstract class DocumentType {
4092
4122
  get name(): "SETTLEMENT_CUSTOM_COST";
4093
4123
  get ordinal(): 24;
4094
4124
  };
4125
+ static get MESSAGE(): DocumentType & {
4126
+ get name(): "MESSAGE";
4127
+ get ordinal(): 25;
4128
+ };
4129
+ static get INTERNAL_MESSAGE(): DocumentType & {
4130
+ get name(): "INTERNAL_MESSAGE";
4131
+ get ordinal(): 26;
4132
+ };
4095
4133
  static get OTHER(): DocumentType & {
4096
4134
  get name(): "OTHER";
4097
- get ordinal(): 25;
4135
+ get ordinal(): 27;
4098
4136
  };
4099
4137
  static get TRASH(): DocumentType & {
4100
4138
  get name(): "TRASH";
4101
- get ordinal(): 26;
4139
+ get ordinal(): 28;
4102
4140
  };
4103
- get name(): "ISSUE" | "SUPPLIER_FOR_COMPANY" | "HOMEPAGE" | "POST" | "PRACTICAL_INFO" | "PRIVATE" | "FDV" | "BUILDING" | "PROJECT" | "BYLAWS" | "HOUSE_RULES" | "ECONOMY" | "EXPENSE" | "MEETING" | "ANNUAL_MEETING" | "CONVERSATION" | "NEWSLETTER" | "ROUTINE" | "INSURANCE" | "LOAN" | "INVOICE" | "ADHOC" | "ECONOMIC_REPORT" | "SETTLEMENT" | "SETTLEMENT_CUSTOM_COST" | "OTHER" | "TRASH";
4104
- get ordinal(): 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26;
4141
+ get name(): "ISSUE" | "SUPPLIER_FOR_COMPANY" | "HOMEPAGE" | "POST" | "PRACTICAL_INFO" | "PRIVATE" | "FDV" | "BUILDING" | "PROJECT" | "BYLAWS" | "HOUSE_RULES" | "ECONOMY" | "EXPENSE" | "MEETING" | "ANNUAL_MEETING" | "CONVERSATION" | "NEWSLETTER" | "ROUTINE" | "INSURANCE" | "LOAN" | "INVOICE" | "ADHOC" | "ECONOMIC_REPORT" | "SETTLEMENT" | "SETTLEMENT_CUSTOM_COST" | "MESSAGE" | "INTERNAL_MESSAGE" | "OTHER" | "TRASH";
4142
+ get ordinal(): 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28;
4105
4143
  get value(): string;
4106
4144
  static values(): Array<DocumentType>;
4107
4145
  static valueOf(value: string): DocumentType;
@@ -7981,6 +8019,22 @@ export declare namespace MergePersonsCommand {
7981
8019
  const constructor: abstract new () => MergePersonsCommand;
7982
8020
  }
7983
8021
  }
8022
+ export interface MessageEmailContentProps {
8023
+ htmlContent?: string | null | undefined;
8024
+ plainContent?: string | null | undefined;
8025
+ }
8026
+ export declare class MessageEmailContent {
8027
+ constructor(props: MessageEmailContentProps);
8028
+ constructor(htmlContent?: string | null | undefined, plainContent?: string | null | undefined);
8029
+ get htmlContent(): string | null | undefined;
8030
+ get plainContent(): string | null | undefined;
8031
+ }
8032
+ export declare namespace MessageEmailContent {
8033
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
8034
+ namespace $metadata$ {
8035
+ const constructor: abstract new () => MessageEmailContent;
8036
+ }
8037
+ }
7984
8038
  export interface MessageGroupProps {
7985
8039
  id: bigint;
7986
8040
  name: string;
@@ -8003,19 +8057,25 @@ export declare namespace MessageGroup {
8003
8057
  }
8004
8058
  export interface MessageInConversationProps {
8005
8059
  content: string;
8060
+ documents?: KtList<DocumentProps> | null | undefined;
8061
+ emailContent?: MessageEmailContentProps | null | undefined;
8006
8062
  id: bigint;
8007
8063
  sentAt: any/* Instant */;
8008
8064
  sentBy?: Participant | null | undefined;
8009
8065
  sentById: bigint;
8066
+ type?: MessageType | null | undefined;
8010
8067
  }
8011
8068
  export declare class MessageInConversation {
8012
8069
  constructor(props: MessageInConversationProps);
8013
- constructor(content: string, id: bigint, sentAt: any/* Instant */, sentBy: Participant | null | undefined, sentById: bigint);
8070
+ constructor(content: string, documents: KtList<Document> | null | undefined, emailContent: MessageEmailContent | null | undefined, id: bigint, sentAt: any/* Instant */, sentBy: Participant | null | undefined, sentById: bigint, type?: MessageType | null | undefined);
8014
8071
  get content(): string;
8072
+ get documents(): KtList<Document> | null | undefined;
8073
+ get emailContent(): MessageEmailContent | null | undefined;
8015
8074
  get id(): bigint;
8016
8075
  get sentAt(): any/* Instant */;
8017
8076
  get sentBy(): Participant | null | undefined;
8018
8077
  get sentById(): bigint;
8078
+ get type(): MessageType | null | undefined;
8019
8079
  }
8020
8080
  export declare namespace MessageInConversation {
8021
8081
  /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
@@ -8023,6 +8083,40 @@ export declare namespace MessageInConversation {
8023
8083
  const constructor: abstract new () => MessageInConversation;
8024
8084
  }
8025
8085
  }
8086
+ export declare abstract class MessageType {
8087
+ private constructor();
8088
+ static get DEFAULT(): MessageType & {
8089
+ get name(): "DEFAULT";
8090
+ get ordinal(): 0;
8091
+ };
8092
+ static get EMAIL(): MessageType & {
8093
+ get name(): "EMAIL";
8094
+ get ordinal(): 1;
8095
+ };
8096
+ get name(): "DEFAULT" | "EMAIL";
8097
+ get ordinal(): 0 | 1;
8098
+ get value(): string;
8099
+ static values(): Array<MessageType>;
8100
+ static valueOf(value: string): MessageType;
8101
+ }
8102
+ export declare namespace MessageType {
8103
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
8104
+ namespace $metadata$ {
8105
+ const constructor: abstract new () => MessageType;
8106
+ }
8107
+ abstract class Companion extends KtSingleton<Companion.$metadata$.constructor>() {
8108
+ private constructor();
8109
+ }
8110
+ namespace Companion {
8111
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
8112
+ namespace $metadata$ {
8113
+ abstract class constructor /* implements SerializerFactory */ {
8114
+ fromValue(value: string): MessageType | null | undefined;
8115
+ private constructor();
8116
+ }
8117
+ }
8118
+ }
8119
+ }
8026
8120
  export interface MetaProps {
8027
8121
  count?: bigint | null | undefined;
8028
8122
  etag?: string | null | undefined;
@@ -8177,6 +8271,20 @@ export declare namespace ModifyCustomerMetadataCommand {
8177
8271
  const constructor: abstract new () => ModifyCustomerMetadataCommand;
8178
8272
  }
8179
8273
  }
8274
+ export interface MoveConversationToFolderCommandProps {
8275
+ folderId?: bigint | null | undefined;
8276
+ }
8277
+ export declare class MoveConversationToFolderCommand {
8278
+ constructor(props: MoveConversationToFolderCommandProps);
8279
+ constructor(folderId?: bigint | null | undefined);
8280
+ get folderId(): bigint | null | undefined;
8281
+ }
8282
+ export declare namespace MoveConversationToFolderCommand {
8283
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
8284
+ namespace $metadata$ {
8285
+ const constructor: abstract new () => MoveConversationToFolderCommand;
8286
+ }
8287
+ }
8180
8288
  export interface NameProps {
8181
8289
  complete?: string | null | undefined;
8182
8290
  family?: string | null | undefined;
@@ -8348,14 +8456,12 @@ export declare namespace OpenHomepage {
8348
8456
  export interface OpenPostProps {
8349
8457
  companyId: bigint;
8350
8458
  content: string;
8351
- contentUrls?: KtList<ContentProps> | null | undefined;
8352
8459
  documents?: KtList<DocumentProps> | null | undefined;
8353
8460
  id: bigint;
8354
8461
  notificationEmailGroups?: KtList<string> | null | undefined;
8355
8462
  notificationSMSGroups?: KtList<string> | null | undefined;
8356
8463
  pictureDocument?: DocumentProps | null | undefined;
8357
8464
  pictureDocumentId?: bigint | null | undefined;
8358
- pictureUrl?: ContentProps | null | undefined;
8359
8465
  pinned: boolean;
8360
8466
  postType: string;
8361
8467
  publishedAt: any/* Instant */;
@@ -8365,17 +8471,15 @@ export interface OpenPostProps {
8365
8471
  }
8366
8472
  export declare class OpenPost {
8367
8473
  constructor(props: OpenPostProps);
8368
- constructor(companyId: bigint, content: string, contentUrls: KtList<Content> | null | undefined, documents: KtList<Document> | null | undefined, id: bigint, notificationEmailGroups: KtList<string> | null | undefined, notificationSMSGroups: KtList<string> | null | undefined, pictureDocument: Document | null | undefined, pictureDocumentId: bigint | null | undefined, pictureUrl: Content | null | undefined, pinned: boolean, postType: string, publishedAt: any/* Instant */, title: string, updatedAt: any/* Instant */, weighting: bigint);
8474
+ constructor(companyId: bigint, content: string, documents: KtList<Document> | null | undefined, id: bigint, notificationEmailGroups: KtList<string> | null | undefined, notificationSMSGroups: KtList<string> | null | undefined, pictureDocument: Document | null | undefined, pictureDocumentId: bigint | null | undefined, pinned: boolean, postType: string, publishedAt: any/* Instant */, title: string, updatedAt: any/* Instant */, weighting: bigint);
8369
8475
  get companyId(): bigint;
8370
8476
  get content(): string;
8371
- get contentUrls(): KtList<Content> | null | undefined;
8372
8477
  get documents(): KtList<Document> | null | undefined;
8373
8478
  get id(): bigint;
8374
8479
  get notificationEmailGroups(): KtList<string> | null | undefined;
8375
8480
  get notificationSMSGroups(): KtList<string> | null | undefined;
8376
8481
  get pictureDocument(): Document | null | undefined;
8377
8482
  get pictureDocumentId(): bigint | null | undefined;
8378
- get pictureUrl(): Content | null | undefined;
8379
8483
  get pinned(): boolean;
8380
8484
  get postType(): string;
8381
8485
  get publishedAt(): any/* Instant */;
@@ -10113,7 +10217,6 @@ export declare namespace Pong {
10113
10217
  export interface PostProps {
10114
10218
  companyId: bigint;
10115
10219
  content: string;
10116
- contentUrls?: KtList<ContentProps> | null | undefined;
10117
10220
  createdAt: any/* Instant */;
10118
10221
  documents?: KtList<DocumentProps> | null | undefined;
10119
10222
  id: bigint;
@@ -10121,7 +10224,6 @@ export interface PostProps {
10121
10224
  notificationSMSGroups?: KtList<NotificationGroupProps> | null | undefined;
10122
10225
  pictureDocument?: DocumentProps | null | undefined;
10123
10226
  pictureDocumentId?: bigint | null | undefined;
10124
- pictureUrl?: ContentProps | null | undefined;
10125
10227
  pinned: boolean;
10126
10228
  postType: string;
10127
10229
  private: boolean;
@@ -10133,10 +10235,9 @@ export interface PostProps {
10133
10235
  }
10134
10236
  export declare class Post {
10135
10237
  constructor(props: PostProps);
10136
- constructor(companyId: bigint, content: string, contentUrls: KtList<Content> | null | undefined, createdAt: any/* Instant */, documents: KtList<Document> | null | undefined, id: bigint, notificationEmailGroups: KtList<NotificationGroup> | null | undefined, notificationSMSGroups: KtList<NotificationGroup> | null | undefined, pictureDocument: Document | null | undefined, pictureDocumentId: bigint | null | undefined, pictureUrl: Content | null | undefined, pinned: boolean, postType: string, _private: boolean, publishedAt: any | null | undefined/* Instant | null | undefined */ | undefined, publishedById: bigint, title: string, updatedAt: any/* Instant */, weighting: bigint);
10238
+ constructor(companyId: bigint, content: string, createdAt: any/* Instant */, documents: KtList<Document> | null | undefined, id: bigint, notificationEmailGroups: KtList<NotificationGroup> | null | undefined, notificationSMSGroups: KtList<NotificationGroup> | null | undefined, pictureDocument: Document | null | undefined, pictureDocumentId: bigint | null | undefined, pinned: boolean, postType: string, _private: boolean, publishedAt: any | null | undefined/* Instant | null | undefined */ | undefined, publishedById: bigint, title: string, updatedAt: any/* Instant */, weighting: bigint);
10137
10239
  get companyId(): bigint;
10138
10240
  get content(): string;
10139
- get contentUrls(): KtList<Content> | null | undefined;
10140
10241
  get createdAt(): any/* Instant */;
10141
10242
  get documents(): KtList<Document> | null | undefined;
10142
10243
  get id(): bigint;
@@ -10144,7 +10245,6 @@ export declare class Post {
10144
10245
  get notificationSMSGroups(): KtList<NotificationGroup> | null | undefined;
10145
10246
  get pictureDocument(): Document | null | undefined;
10146
10247
  get pictureDocumentId(): bigint | null | undefined;
10147
- get pictureUrl(): Content | null | undefined;
10148
10248
  get pinned(): boolean;
10149
10249
  get postType(): string;
10150
10250
  get private(): boolean;
@@ -10293,17 +10393,19 @@ export interface PublicConversationProps {
10293
10393
  messages?: KtList<PublicMessageProps> | null | undefined;
10294
10394
  participants?: KtList<Participant> | null | undefined;
10295
10395
  title?: string | null | undefined;
10396
+ type?: MessageType | null | undefined;
10296
10397
  userPersonId?: bigint | null | undefined;
10297
10398
  }
10298
10399
  export declare class PublicConversation {
10299
10400
  constructor(props: PublicConversationProps);
10300
- constructor(companyName: string | null | undefined, documents: KtList<Document> | null | undefined, id: bigint, messages?: KtList<PublicMessage> | null | undefined, participants?: KtList<Participant> | null | undefined, title?: string | null | undefined, userPersonId?: bigint | null | undefined);
10401
+ constructor(companyName: string | null | undefined, documents: KtList<Document> | null | undefined, id: bigint, messages?: KtList<PublicMessage> | null | undefined, participants?: KtList<Participant> | null | undefined, title?: string | null | undefined, type?: MessageType | null | undefined, userPersonId?: bigint | null | undefined);
10301
10402
  get companyName(): string | null | undefined;
10302
10403
  get documents(): KtList<Document> | null | undefined;
10303
10404
  get id(): bigint;
10304
10405
  get messages(): KtList<PublicMessage> | null | undefined;
10305
10406
  get participants(): KtList<Participant> | null | undefined;
10306
10407
  get title(): string | null | undefined;
10408
+ get type(): MessageType | null | undefined;
10307
10409
  get userPersonId(): bigint | null | undefined;
10308
10410
  }
10309
10411
  export declare namespace PublicConversation {
@@ -10314,15 +10416,21 @@ export declare namespace PublicConversation {
10314
10416
  }
10315
10417
  export interface PublicMessageProps {
10316
10418
  content: string;
10419
+ documents?: KtList<DocumentProps> | null | undefined;
10420
+ emailContent?: MessageEmailContentProps | null | undefined;
10317
10421
  sentAt: any/* Instant */;
10318
10422
  sentBy?: Participant | null | undefined;
10423
+ type?: MessageType | null | undefined;
10319
10424
  }
10320
10425
  export declare class PublicMessage {
10321
10426
  constructor(props: PublicMessageProps);
10322
- constructor(content: string, sentAt: any/* Instant */, sentBy?: Participant | null | undefined);
10427
+ constructor(content: string, documents: KtList<Document> | null | undefined, emailContent: MessageEmailContent | null | undefined, sentAt: any/* Instant */, sentBy?: Participant | null | undefined, type?: MessageType | null | undefined);
10323
10428
  get content(): string;
10429
+ get documents(): KtList<Document> | null | undefined;
10430
+ get emailContent(): MessageEmailContent | null | undefined;
10324
10431
  get sentAt(): any/* Instant */;
10325
10432
  get sentBy(): Participant | null | undefined;
10433
+ get type(): MessageType | null | undefined;
10326
10434
  }
10327
10435
  export declare namespace PublicMessage {
10328
10436
  /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
@@ -13748,16 +13856,16 @@ export declare namespace UpdateConversationCategoryCommand {
13748
13856
  }
13749
13857
  }
13750
13858
  export interface UpdateConversationCommandProps {
13751
- categoryId?: bigint | null | undefined;
13752
- content?: string | null | undefined;
13753
- title?: string | null | undefined;
13859
+ categoryId: bigint;
13860
+ content: string;
13861
+ title: string;
13754
13862
  }
13755
13863
  export declare class UpdateConversationCommand {
13756
13864
  constructor(props: UpdateConversationCommandProps);
13757
- constructor(categoryId?: bigint | null | undefined, content?: string | null | undefined, title?: string | null | undefined);
13758
- get categoryId(): bigint | null | undefined;
13759
- get content(): string | null | undefined;
13760
- get title(): string | null | undefined;
13865
+ constructor(categoryId: bigint, content: string, title: string);
13866
+ get categoryId(): bigint;
13867
+ get content(): string;
13868
+ get title(): string;
13761
13869
  }
13762
13870
  export declare namespace UpdateConversationCommand {
13763
13871
  /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
@@ -13821,6 +13929,22 @@ export declare namespace UpdateFeedWeightingCommand {
13821
13929
  const constructor: abstract new () => UpdateFeedWeightingCommand;
13822
13930
  }
13823
13931
  }
13932
+ export interface UpdateFolderCommandProps {
13933
+ name: string;
13934
+ parentId?: bigint | null | undefined;
13935
+ }
13936
+ export declare class UpdateFolderCommand {
13937
+ constructor(props: UpdateFolderCommandProps);
13938
+ constructor(name: string, parentId?: bigint | null | undefined);
13939
+ get name(): string;
13940
+ get parentId(): bigint | null | undefined;
13941
+ }
13942
+ export declare namespace UpdateFolderCommand {
13943
+ /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
13944
+ namespace $metadata$ {
13945
+ const constructor: abstract new () => UpdateFolderCommand;
13946
+ }
13947
+ }
13824
13948
  export interface UpdateHmsSettingsCommandProps {
13825
13949
  routineGroups?: KtList<bigint> | null | undefined;
13826
13950
  }
@@ -14395,11 +14519,9 @@ export declare namespace UpdatePersonResidentCommand {
14395
14519
  }
14396
14520
  export interface UpdatePostCommandProps {
14397
14521
  content: string;
14398
- contentUrls?: KtList<ContentProps> | null | undefined;
14399
14522
  notificationEmailGroups?: KtList<NotificationGroupProps> | null | undefined;
14400
14523
  notificationSMSGroups?: KtList<NotificationGroupProps> | null | undefined;
14401
14524
  pictureDocumentId?: bigint | null | undefined;
14402
- pictureUrl?: ContentProps | null | undefined;
14403
14525
  pinned?: boolean | null | undefined;
14404
14526
  private?: boolean | null | undefined;
14405
14527
  publishedAt?: any | null | undefined/* Instant | null | undefined */ | undefined;
@@ -14408,13 +14530,11 @@ export interface UpdatePostCommandProps {
14408
14530
  }
14409
14531
  export declare class UpdatePostCommand {
14410
14532
  constructor(props: UpdatePostCommandProps);
14411
- constructor(content: string, contentUrls: KtList<Content> | null | undefined, notificationEmailGroups: KtList<NotificationGroup> | null | undefined, notificationSMSGroups: KtList<NotificationGroup> | null | undefined, pictureDocumentId: bigint | null | undefined, pictureUrl: Content | null | undefined, pinned: boolean | null | undefined, _private: boolean | null | undefined, publishedAt: any | null | undefined/* Instant | null | undefined */ | undefined, title: string, weighting?: bigint | null | undefined);
14533
+ constructor(content: string, notificationEmailGroups: KtList<NotificationGroup> | null | undefined, notificationSMSGroups: KtList<NotificationGroup> | null | undefined, pictureDocumentId: bigint | null | undefined, pinned: boolean | null | undefined, _private: boolean | null | undefined, publishedAt: any | null | undefined/* Instant | null | undefined */ | undefined, title: string, weighting?: bigint | null | undefined);
14412
14534
  get content(): string;
14413
- get contentUrls(): KtList<Content> | null | undefined;
14414
14535
  get notificationEmailGroups(): KtList<NotificationGroup> | null | undefined;
14415
14536
  get notificationSMSGroups(): KtList<NotificationGroup> | null | undefined;
14416
14537
  get pictureDocumentId(): bigint | null | undefined;
14417
- get pictureUrl(): Content | null | undefined;
14418
14538
  get pinned(): boolean | null | undefined;
14419
14539
  get private(): boolean | null | undefined;
14420
14540
  get publishedAt(): any | null | undefined/* Instant | null | undefined */;
@@ -14429,11 +14549,9 @@ export declare namespace UpdatePostCommand {
14429
14549
  }
14430
14550
  export interface UpdatePracticalInfoCommandProps {
14431
14551
  content: string;
14432
- contentUrls?: KtList<ContentProps> | null | undefined;
14433
14552
  notificationEmailGroups?: KtList<NotificationGroupProps> | null | undefined;
14434
14553
  notificationSMSGroups?: KtList<NotificationGroupProps> | null | undefined;
14435
14554
  pictureDocumentId?: bigint | null | undefined;
14436
- pictureUrl?: ContentProps | null | undefined;
14437
14555
  pinned?: boolean | null | undefined;
14438
14556
  private?: boolean | null | undefined;
14439
14557
  publishedAt?: any | null | undefined/* Instant | null | undefined */ | undefined;
@@ -14442,13 +14560,11 @@ export interface UpdatePracticalInfoCommandProps {
14442
14560
  }
14443
14561
  export declare class UpdatePracticalInfoCommand {
14444
14562
  constructor(props: UpdatePracticalInfoCommandProps);
14445
- constructor(content: string, contentUrls: KtList<Content> | null | undefined, notificationEmailGroups: KtList<NotificationGroup> | null | undefined, notificationSMSGroups: KtList<NotificationGroup> | null | undefined, pictureDocumentId: bigint | null | undefined, pictureUrl: Content | null | undefined, pinned: boolean | null | undefined, _private: boolean | null | undefined, publishedAt: any | null | undefined/* Instant | null | undefined */ | undefined, title: string, weighting?: bigint | null | undefined);
14563
+ constructor(content: string, notificationEmailGroups: KtList<NotificationGroup> | null | undefined, notificationSMSGroups: KtList<NotificationGroup> | null | undefined, pictureDocumentId: bigint | null | undefined, pinned: boolean | null | undefined, _private: boolean | null | undefined, publishedAt: any | null | undefined/* Instant | null | undefined */ | undefined, title: string, weighting?: bigint | null | undefined);
14446
14564
  get content(): string;
14447
- get contentUrls(): KtList<Content> | null | undefined;
14448
14565
  get notificationEmailGroups(): KtList<NotificationGroup> | null | undefined;
14449
14566
  get notificationSMSGroups(): KtList<NotificationGroup> | null | undefined;
14450
14567
  get pictureDocumentId(): bigint | null | undefined;
14451
- get pictureUrl(): Content | null | undefined;
14452
14568
  get pinned(): boolean | null | undefined;
14453
14569
  get private(): boolean | null | undefined;
14454
14570
  get publishedAt(): any | null | undefined/* Instant | null | undefined */;
@@ -15215,12 +15331,13 @@ export declare class ConversationApi extends ApiClient.$metadata$.constructor {
15215
15331
  static createWithClient(baseUrl: string, httpClient: any/* HttpClient */): ConversationApi;
15216
15332
  authorizePublicConversation(companySlug: string, conversationId: bigint): Promise<HttpResponse<void>>;
15217
15333
  authorizePublicConversationByToken(companySlug: string, conversationId: bigint, token: string): Promise<HttpResponse<void>>;
15218
- createConversation(companyId: bigint, createConversationCommand: CreateConversationCommand, search?: string | null | undefined, category?: bigint | null | undefined, status?: ConversationStatus | null | undefined, byParticipant?: bigint | null | undefined, byParticipantType?: ParticipantType | null | undefined, pageToken?: string | null | undefined): Promise<HttpResponse<Conversation>>;
15334
+ createConversation(companyId: bigint, createConversationCommand: CreateConversationCommand, 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, pageToken?: string | null | undefined): Promise<HttpResponse<Conversation>>;
15219
15335
  createConversationCategory(companyId: bigint, createConversationCategoryCommand: CreateConversationCategoryCommand): Promise<HttpResponse<SecureConversationCategory>>;
15220
15336
  createConversationExternalParticipant(companyId: bigint, conversationId: bigint, addExternalConversationParticipantCommand: AddExternalConversationParticipantCommand): Promise<HttpResponse<void>>;
15221
15337
  createConversationParticipant(companyId: bigint, conversationId: bigint, participantType: string, participantId: bigint): Promise<HttpResponse<void>>;
15222
15338
  createConversationRead(companyId: bigint, conversationId: bigint): Promise<HttpResponse<void>>;
15223
15339
  createDocumentPublicConversation(companySlug: string, conversationId: bigint): Promise<HttpResponse<void>>;
15340
+ createFolder(companyId: bigint, createFolderCommand: CreateFolderCommand, parentId?: bigint | null | undefined): Promise<HttpResponse<ConversationFolder>>;
15224
15341
  createInquiry(companyId: bigint, createInquiryCommand: CreateInquiryCommand): Promise<HttpResponse<Conversation>>;
15225
15342
  createInquiryPublicConversation(companySlug: string, createInquiryCommand: CreateInquiryCommand): Promise<HttpResponse<PublicConversation>>;
15226
15343
  createInternalMessage(companyId: bigint, conversationId: bigint, createInternalMessageCommand: CreateInternalMessageCommand): Promise<HttpResponse<MessageInConversation>>;
@@ -15230,22 +15347,27 @@ export declare class ConversationApi extends ApiClient.$metadata$.constructor {
15230
15347
  deleteConversationCategory(companyId: bigint, categoryId: bigint): Promise<HttpResponse<void>>;
15231
15348
  deleteConversationParticipant(companyId: bigint, conversationId: bigint, participantType: string, participantId: bigint): Promise<HttpResponse<void>>;
15232
15349
  deleteDocumentPublicConversation(companySlug: string, conversationId: bigint, documentId: bigint, redirect?: boolean | null | undefined): Promise<HttpResponse<void>>;
15350
+ deleteFolder(companyId: bigint, folderId: bigint): Promise<HttpResponse<void>>;
15233
15351
  finalizeConversation(companyId: bigint, conversationId: bigint): Promise<HttpResponse<Conversation>>;
15234
15352
  indexCompanyConversationCategories(companyId: bigint): Promise<HttpResponse<KtList<SecureConversationCategory>>>;
15235
15353
  indexCompanyConversationCategoriesForRequests(companyId: bigint): Promise<HttpResponse<KtList<ConversationCategory>>>;
15236
- indexConversation(companyId: bigint, search?: string | null | undefined, category?: bigint | null | undefined, status?: ConversationStatus | null | undefined, byParticipant?: bigint | null | undefined, byParticipantType?: ParticipantType | null | undefined, pageToken?: string | null | undefined): Promise<HttpResponse<ConversationList>>;
15354
+ 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, pageToken?: string | null | undefined): Promise<HttpResponse<ConversationList>>;
15237
15355
  indexConversationByParticipant(companyId: bigint, participantId: bigint, participantType: ParticipantType): Promise<HttpResponse<KtList<Conversation>>>;
15238
15356
  indexConversationCategoriesOpen(companySlug: string): Promise<HttpResponse<KtList<ConversationCategory>>>;
15239
15357
  indexConversationCount(): Promise<HttpResponse<KtMap<string, ConversationCountConversationCountMap>>>;
15240
15358
  indexConversationCountInCompany(companyId: bigint): Promise<HttpResponse<ConversationCount>>;
15359
+ indexConversationFolders(companyId: bigint, parentId?: bigint | null | undefined): Promise<HttpResponse<KtList<ConversationFolder>>>;
15360
+ moveConversation(companyId: bigint, conversationId: bigint, moveConversationToFolderCommand: MoveConversationToFolderCommand): Promise<HttpResponse<void>>;
15241
15361
  publishConversation(companyId: bigint, conversationId: bigint): Promise<HttpResponse<Conversation>>;
15242
15362
  reOpenConversation(companyId: bigint, conversationId: bigint): Promise<HttpResponse<Conversation>>;
15243
15363
  showConversation(companyId: bigint, conversationId: bigint, translateToCountryId?: bigint | null | undefined): Promise<HttpResponse<Conversation>>;
15364
+ showConversationFolder(companyId: bigint, folderId: bigint): Promise<HttpResponse<ConversationFolder>>;
15244
15365
  showConversationPublic(companySlug: string, conversationId: bigint): Promise<HttpResponse<PublicConversation>>;
15245
15366
  showDocumentPublicConversation(companySlug: string, conversationId: bigint, documentId: bigint, redirect?: boolean | null | undefined): Promise<HttpResponse<UrlWrapper>>;
15246
15367
  updateConversation(companyId: bigint, conversationId: bigint, updateConversationCommand: UpdateConversationCommand, translateToCountryId?: bigint | null | undefined): Promise<HttpResponse<Conversation>>;
15247
15368
  updateConversationCategories(companyId: bigint, secureConversationCategory: KtList<SecureConversationCategory>): Promise<HttpResponse<KtList<SecureConversationCategory>>>;
15248
15369
  updateConversationCategory(companyId: bigint, categoryId: bigint, updateConversationCategoryCommand: UpdateConversationCategoryCommand): Promise<HttpResponse<SecureConversationCategory>>;
15370
+ updateFolder(companyId: bigint, folderId: bigint, updateFolderCommand: UpdateFolderCommand): Promise<HttpResponse<ConversationFolder>>;
15249
15371
  }
15250
15372
  export declare namespace ConversationApi {
15251
15373
  /** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
@@ -15337,10 +15459,8 @@ export declare class HomepageApi extends ApiClient.$metadata$.constructor {
15337
15459
  static createWithClient(baseUrl: string, httpClient: any/* HttpClient */): HomepageApi;
15338
15460
  checkSMSForPost(companyId: bigint, validateSMSCommand: ValidateSMSCommand, postId?: bigint | null | undefined): Promise<HttpResponse<SMSBundle>>;
15339
15461
  createPost(companyId: bigint, createPostCommand: CreatePostCommand, purchaseBundleId?: bigint | null | undefined): Promise<HttpResponse<Post>>;
15340
- createPostContent(companyId: bigint, contentTypeIdentifier: string, contentId: string, fileName: string): Promise<HttpResponse<void>>;
15341
15462
  createPracticalInfo(companyId: bigint, createPracticalInfoCommand: CreatePracticalInfoCommand, purchaseBundleId?: bigint | null | undefined): Promise<HttpResponse<Post>>;
15342
15463
  deletePost(companyId: bigint, postId: bigint, purchaseBundleId?: bigint | null | undefined, publishChanges?: boolean | null | undefined): Promise<HttpResponse<void>>;
15343
- deletePostContent(companyId: bigint, contentTypeIdentifier: string, contentId: string, fileName: string): Promise<HttpResponse<void>>;
15344
15464
  deletePracticalInfo(companyId: bigint, practicalInformationId: bigint, purchaseBundleId?: bigint | null | undefined, publishChanges?: boolean | null | undefined): Promise<HttpResponse<void>>;
15345
15465
  homepageRssByDomain(domainName: string): Promise<HttpResponse<string>>;
15346
15466
  homepageRssBySlug(companySlug: string, slug: string): Promise<HttpResponse<string>>;
@@ -15349,7 +15469,6 @@ export declare class HomepageApi extends ApiClient.$metadata$.constructor {
15349
15469
  homepageRssPraktiskInfoByDomain(domainName: string): Promise<HttpResponse<string>>;
15350
15470
  homepageRssPraktiskInfoBySlug(companySlug: string): Promise<HttpResponse<string>>;
15351
15471
  listHomepageNotificationGroups(companyId: bigint): Promise<HttpResponse<KtList<NotificationGroup>>>;
15352
- showContent(contentTypeIdentifier: string, companyId: bigint, contentId: string, fileName: string, size?: string | null | undefined): Promise<HttpResponse<void>>;
15353
15472
  showHomepage(companyId: bigint): Promise<HttpResponse<Homepage>>;
15354
15473
  showOpenHomepage(companySlug: string): Promise<HttpResponse<OpenHomepage>>;
15355
15474
  showOpenHomepageByDomain(domainName: string): Promise<HttpResponse<OpenHomepage>>;