@scryme/chat 2.57.1 → 2.71.1

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.
@@ -173,7 +173,14 @@ export type CallsControllerGetScheduledCallsParams = {
173
173
  /**
174
174
  * The workspace ID
175
175
  */
176
- workspaceId: string;
176
+ workspaceId?: string;
177
+ /**
178
+ * The workspace slug
179
+ */
180
+ workspaceSlug?: string;
181
+ };
182
+ export type StorageControllerUploadFileBody = {
183
+ file?: Blob;
177
184
  };
178
185
  export type InvitationsControllerGetInvitationsParams = {
179
186
  /**
@@ -181,6 +188,28 @@ export type InvitationsControllerGetInvitationsParams = {
181
188
  */
182
189
  workspaceId?: string;
183
190
  };
191
+ export type NotificationsControllerGetChannelSettingsParams = {
192
+ /**
193
+ * The channel ID
194
+ */
195
+ channelId: string;
196
+ };
197
+ export type NotificationsControllerGetWorkspaceSettingsParams = {
198
+ /**
199
+ * The workspace ID
200
+ */
201
+ workspaceId: string;
202
+ };
203
+ export type NotificationsControllerGetNotificationsParams = {
204
+ /**
205
+ * Filter by unread only
206
+ */
207
+ unreadOnly?: string;
208
+ /**
209
+ * Number of notifications to return
210
+ */
211
+ limit?: string;
212
+ };
184
213
  export type V3ChannelIncomingWebhooksControllerExecuteWebhookByChannelIdParams = {
185
214
  /**
186
215
  * The unique webhook token (can alternatively use x-webhook-token header)
@@ -195,11 +224,6 @@ export type V3WorkspacesControllerDeleteWorkspace200 = {
195
224
  success?: boolean;
196
225
  timestamp?: string;
197
226
  };
198
- export type V3WorkspacesControllerUpdateWorkspace200 = {
199
- data?: V3WorkspacesControllerUpdateWorkspace200Data;
200
- success?: boolean;
201
- timestamp?: string;
202
- };
203
227
  /**
204
228
  * @nullable
205
229
  */
@@ -223,6 +247,16 @@ export type V3WorkspacesControllerUpdateWorkspace200DataWorkspace = {
223
247
  export type V3WorkspacesControllerUpdateWorkspace200Data = {
224
248
  workspace?: V3WorkspacesControllerUpdateWorkspace200DataWorkspace;
225
249
  };
250
+ export type V3WorkspacesControllerUpdateWorkspace200 = {
251
+ data?: V3WorkspacesControllerUpdateWorkspace200Data;
252
+ success?: boolean;
253
+ timestamp?: string;
254
+ };
255
+ export type V3WorkspacesControllerGetWorkspaceBySlug200 = {
256
+ data?: V3WorkspacesControllerGetWorkspaceBySlug200Data;
257
+ success?: boolean;
258
+ timestamp?: string;
259
+ };
226
260
  /**
227
261
  * @nullable
228
262
  */
@@ -246,8 +280,8 @@ export type V3WorkspacesControllerGetWorkspaceBySlug200DataWorkspace = {
246
280
  export type V3WorkspacesControllerGetWorkspaceBySlug200Data = {
247
281
  workspace?: V3WorkspacesControllerGetWorkspaceBySlug200DataWorkspace;
248
282
  };
249
- export type V3WorkspacesControllerGetWorkspaceBySlug200 = {
250
- data?: V3WorkspacesControllerGetWorkspaceBySlug200Data;
283
+ export type V3WorkspacesControllerProvisionWorkspace201 = {
284
+ data?: V3WorkspacesControllerProvisionWorkspace201Data;
251
285
  success?: boolean;
252
286
  timestamp?: string;
253
287
  };
@@ -265,11 +299,6 @@ export type V3WorkspacesControllerProvisionWorkspace201Data = {
265
299
  bot?: V3WorkspacesControllerProvisionWorkspace201DataBot;
266
300
  workspace?: V3WorkspacesControllerProvisionWorkspace201DataWorkspace;
267
301
  };
268
- export type V3WorkspacesControllerProvisionWorkspace201 = {
269
- data?: V3WorkspacesControllerProvisionWorkspace201Data;
270
- success?: boolean;
271
- timestamp?: string;
272
- };
273
302
  export type V3WorkspacesControllerGetWorkspaces200DataWorkspacesItem = {
274
303
  createdAt?: string;
275
304
  /** @nullable */
@@ -302,88 +331,6 @@ export type V10ChannelsControllerGetMessagesParams = {
302
331
  before?: string;
303
332
  after?: string;
304
333
  };
305
- export type StorageControllerUploadFileBody = {
306
- file?: Blob;
307
- };
308
- export type NotificationsControllerGetChannelSettingsParams = {
309
- /**
310
- * The channel ID
311
- */
312
- channelId: string;
313
- };
314
- export type NotificationsControllerGetWorkspaceSettingsParams = {
315
- /**
316
- * The workspace ID
317
- */
318
- workspaceId: string;
319
- };
320
- export type NotificationsControllerGetNotificationsParams = {
321
- /**
322
- * Filter by unread only
323
- */
324
- unreadOnly?: string;
325
- /**
326
- * Number of notifications to return
327
- */
328
- limit?: string;
329
- };
330
- export type V2ContactControllerSubmitContactFormBody = {
331
- email?: string;
332
- message?: string;
333
- name?: string;
334
- };
335
- export type V2ApplicationsControllerInstallBotBody = {
336
- workspaceId?: string;
337
- };
338
- export type V2OAuthControllerGetToken200 = {
339
- access_token?: string;
340
- expires_in?: number;
341
- scope?: string;
342
- token_type?: string;
343
- };
344
- export type V2MessageActionsControllerHandleActionBodyPayload = {
345
- [key: string]: unknown;
346
- };
347
- export type V2MessageActionsControllerHandleActionBodyFormState = {
348
- [key: string]: unknown;
349
- };
350
- export type V2MessageActionsControllerHandleActionBody = {
351
- formState?: V2MessageActionsControllerHandleActionBodyFormState;
352
- payload?: V2MessageActionsControllerHandleActionBodyPayload;
353
- };
354
- export type V2ThreadsControllerGetThreadMessagesParams = {
355
- cursor?: string;
356
- limit?: number;
357
- };
358
- export type V2ThreadsControllerGetThreadsParams = {
359
- channelId?: string;
360
- limit?: number;
361
- };
362
- export type V2SearchControllerSearchMessagesParams = {
363
- /**
364
- * The search query
365
- */
366
- q: string;
367
- channelId?: string;
368
- limit?: number;
369
- };
370
- export type V2SearchControllerSearchMembersParams = {
371
- /**
372
- * The search query
373
- */
374
- q: string;
375
- limit?: number;
376
- };
377
- export type V2MessagesControllerGetMessagesParams = {
378
- channelId?: string;
379
- threadId?: string;
380
- contextId?: string;
381
- limit?: number;
382
- cursor?: string;
383
- };
384
- export type V2MessagesControllerUploadChannelIconBody = {
385
- file?: Blob;
386
- };
387
334
  export type UsersControllerDeleteDeviceTokenParams = {
388
335
  token: string;
389
336
  };
@@ -405,6 +352,9 @@ export type UsersControllerRegisterDeviceTokenBody = {
405
352
  export type UsersControllerSearchUsersParams = {
406
353
  query: string;
407
354
  };
355
+ export type AppControllerGetLinkPreviewParams = {
356
+ url: string;
357
+ };
408
358
  export type CreateScheduledNotificationDtoScheduleType = typeof CreateScheduledNotificationDtoScheduleType[keyof typeof CreateScheduledNotificationDtoScheduleType];
409
359
  export declare const CreateScheduledNotificationDtoScheduleType: {
410
360
  readonly custom: "custom";
@@ -633,6 +583,7 @@ export type UpdateWorkspaceDtoBrandingConfig = {
633
583
  [key: string]: unknown;
634
584
  };
635
585
  export interface UpdateWorkspaceDto {
586
+ banner?: string;
636
587
  brandingConfig?: UpdateWorkspaceDtoBrandingConfig;
637
588
  customDomain?: string;
638
589
  description?: string;
@@ -691,6 +642,50 @@ export declare const StartCallDtoType: {
691
642
  export interface StartCallDto {
692
643
  type: StartCallDtoType;
693
644
  }
645
+ export type CreateIntegrationDtoService = typeof CreateIntegrationDtoService[keyof typeof CreateIntegrationDtoService];
646
+ export declare const CreateIntegrationDtoService: {
647
+ readonly slack: "slack";
648
+ readonly github: "github";
649
+ readonly gitlab: "gitlab";
650
+ readonly jira: "jira";
651
+ readonly linear: "linear";
652
+ readonly notion: "notion";
653
+ readonly figma: "figma";
654
+ readonly discord: "discord";
655
+ readonly teams: "teams";
656
+ readonly zapier: "zapier";
657
+ readonly make: "make";
658
+ readonly custom: "custom";
659
+ readonly huly: "huly";
660
+ };
661
+ export interface CreateIntegrationDto {
662
+ config: CreateIntegrationDtoConfig;
663
+ description?: string;
664
+ name: string;
665
+ service: CreateIntegrationDtoService;
666
+ }
667
+ export type CreateIntegrationDtoConfigCustomHeaders = {
668
+ [key: string]: unknown;
669
+ };
670
+ export type CreateIntegrationDtoConfig = {
671
+ accessToken?: string;
672
+ apiKey?: string;
673
+ channelId?: string;
674
+ customHeaders?: CreateIntegrationDtoConfigCustomHeaders;
675
+ events?: string[];
676
+ hulyUrl?: string;
677
+ projectId?: string;
678
+ refreshToken?: string;
679
+ repositoryId?: string;
680
+ scopes?: string[];
681
+ teamId?: string;
682
+ webhookUrl?: string;
683
+ };
684
+ export interface CreateIntegrationWebhookDto {
685
+ events: string[];
686
+ name: string;
687
+ url: string;
688
+ }
694
689
  export type CreateInvitationDtoPermissions = {
695
690
  [key: string]: unknown;
696
691
  };
@@ -701,6 +696,45 @@ export interface CreateInvitationDto {
701
696
  role?: string;
702
697
  workspaceId?: string;
703
698
  }
699
+ export interface UpdateNotificationDto {
700
+ isRead: boolean;
701
+ }
702
+ export type ChannelSettingsDtoPreference = typeof ChannelSettingsDtoPreference[keyof typeof ChannelSettingsDtoPreference];
703
+ export declare const ChannelSettingsDtoPreference: {
704
+ readonly all: "all";
705
+ readonly mentions: "mentions";
706
+ readonly none: "none";
707
+ readonly default: "default";
708
+ };
709
+ export interface ChannelSettingsDto {
710
+ channelId: string;
711
+ preference: ChannelSettingsDtoPreference;
712
+ }
713
+ export type WorkspaceSettingsDtoPreference = typeof WorkspaceSettingsDtoPreference[keyof typeof WorkspaceSettingsDtoPreference];
714
+ export declare const WorkspaceSettingsDtoPreference: {
715
+ readonly all: "all";
716
+ readonly mentions: "mentions";
717
+ readonly none: "none";
718
+ };
719
+ export interface WorkspaceSettingsDto {
720
+ preference: WorkspaceSettingsDtoPreference;
721
+ workspaceId: string;
722
+ }
723
+ export interface V3UpdateM2mApplicationDto {
724
+ allowedIps?: string[];
725
+ name?: string;
726
+ scopes?: string[];
727
+ }
728
+ export interface V3CreateM2mApplicationDto {
729
+ allowedIps?: string[];
730
+ name: string;
731
+ scopes?: string[];
732
+ }
733
+ export interface V3UpdateOrganizationDto {
734
+ banner?: string;
735
+ logo?: string;
736
+ name?: string;
737
+ }
704
738
  export type ExecuteChannelIncomingWebhookDtoAttachmentsItem = {
705
739
  [key: string]: unknown;
706
740
  };
@@ -820,427 +854,26 @@ export interface V3TokenRequestDto {
820
854
  /** Space-separated list of scopes requested. */
821
855
  scope?: string;
822
856
  }
823
- export interface UpdateNotificationDto {
824
- isRead: boolean;
825
- }
826
- export type ChannelSettingsDtoPreference = typeof ChannelSettingsDtoPreference[keyof typeof ChannelSettingsDtoPreference];
827
- export declare const ChannelSettingsDtoPreference: {
828
- readonly all: "all";
829
- readonly mentions: "mentions";
830
- readonly none: "none";
831
- readonly default: "default";
832
- };
833
- export interface ChannelSettingsDto {
834
- channelId: string;
835
- preference: ChannelSettingsDtoPreference;
836
- }
837
- export type WorkspaceSettingsDtoPreference = typeof WorkspaceSettingsDtoPreference[keyof typeof WorkspaceSettingsDtoPreference];
838
- export declare const WorkspaceSettingsDtoPreference: {
839
- readonly all: "all";
840
- readonly mentions: "mentions";
841
- readonly none: "none";
842
- };
843
- export interface WorkspaceSettingsDto {
844
- preference: WorkspaceSettingsDtoPreference;
845
- workspaceId: string;
846
- }
847
- export type CreateIntegrationDtoService = typeof CreateIntegrationDtoService[keyof typeof CreateIntegrationDtoService];
848
- export declare const CreateIntegrationDtoService: {
849
- readonly slack: "slack";
850
- readonly github: "github";
851
- readonly gitlab: "gitlab";
852
- readonly jira: "jira";
853
- readonly linear: "linear";
854
- readonly notion: "notion";
855
- readonly figma: "figma";
856
- readonly discord: "discord";
857
- readonly teams: "teams";
858
- readonly zapier: "zapier";
859
- readonly make: "make";
860
- readonly custom: "custom";
861
- readonly huly: "huly";
862
- };
863
- export type CreateIntegrationDtoConfigCustomHeaders = {
864
- [key: string]: unknown;
865
- };
866
- export type CreateIntegrationDtoConfig = {
867
- accessToken?: string;
868
- apiKey?: string;
869
- channelId?: string;
870
- customHeaders?: CreateIntegrationDtoConfigCustomHeaders;
871
- events?: string[];
872
- hulyUrl?: string;
873
- projectId?: string;
874
- refreshToken?: string;
875
- repositoryId?: string;
876
- scopes?: string[];
877
- teamId?: string;
878
- webhookUrl?: string;
879
- };
880
- export interface CreateIntegrationDto {
881
- config: CreateIntegrationDtoConfig;
882
- description?: string;
883
- name: string;
884
- service: CreateIntegrationDtoService;
885
- }
886
- export interface CreateIntegrationWebhookDto {
887
- events: string[];
888
- name: string;
889
- url: string;
890
- }
891
- export interface UpdateOrganizationDto {
892
- banner?: string;
893
- logo?: string;
894
- name?: string;
895
- }
896
- export type ProvisionWorkspaceDtoInitialMembersItemRole = typeof ProvisionWorkspaceDtoInitialMembersItemRole[keyof typeof ProvisionWorkspaceDtoInitialMembersItemRole];
897
- export declare const ProvisionWorkspaceDtoInitialMembersItemRole: {
898
- readonly admin: "admin";
899
- readonly member: "member";
900
- };
901
- export type ProvisionWorkspaceDtoInitialMembersItem = {
902
- email?: string;
903
- role?: ProvisionWorkspaceDtoInitialMembersItemRole;
904
- };
905
- /**
906
- * Custom branding configuration
907
- */
908
- export type ProvisionWorkspaceDtoBrandingConfig = {
909
- [key: string]: unknown;
910
- };
911
- export interface ProvisionWorkspaceDto {
912
- /** Custom branding configuration */
913
- brandingConfig?: ProvisionWorkspaceDtoBrandingConfig;
914
- /** Initial channels to create */
915
- channels?: string[];
916
- description?: string;
917
- /** Icon identifier */
918
- icon?: string;
919
- industry?: string;
920
- /** Initial members to add to the workspace */
921
- initialMembers?: ProvisionWorkspaceDtoInitialMembersItem[];
922
- /** The display name of the workspace */
923
- name: string;
924
- /** The email of the workspace owner. Must exist in the organization. */
925
- ownerEmail: string;
926
- /** Unique slug for the workspace URL */
927
- slug: string;
928
- }
929
- export type UpdateApplicationDtoChannelDefinitions = {
930
- [key: string]: unknown;
931
- };
932
- export interface UpdateApplicationDto {
933
- allowedIps?: string[];
934
- channelDefinitions?: UpdateApplicationDtoChannelDefinitions;
935
- description?: string;
936
- name?: string;
937
- scopes?: string[];
938
- webhookSecret?: string;
939
- webhookUrl?: string;
940
- }
941
- export interface CreateApplicationDto {
942
- allowedIps?: string[];
943
- description?: string;
944
- name: string;
945
- organizationId?: string;
946
- scopes?: string[];
947
- webhookSecret?: string;
948
- webhookUrl?: string;
949
- /** Optional workspace ID to link the bot to */
950
- workspaceId?: string;
951
- }
952
- export type TokenRequestDtoGrantType = typeof TokenRequestDtoGrantType[keyof typeof TokenRequestDtoGrantType];
953
- export declare const TokenRequestDtoGrantType: {
954
- readonly client_credentials: "client_credentials";
955
- };
956
- export interface TokenRequestDto {
957
- client_id: string;
958
- client_secret: string;
959
- grant_type: TokenRequestDtoGrantType;
960
- scope?: string;
961
- }
962
- export type UpdateAnnouncementDtoTargetAudience = {
963
- [key: string]: unknown;
964
- };
965
- export type UpdateAnnouncementDtoPriority = typeof UpdateAnnouncementDtoPriority[keyof typeof UpdateAnnouncementDtoPriority];
966
- export declare const UpdateAnnouncementDtoPriority: {
967
- readonly low: "low";
968
- readonly normal: "normal";
969
- readonly high: "high";
970
- readonly urgent: "urgent";
971
- };
972
- export type UpdateAnnouncementDtoAttachmentsItem = {
973
- [key: string]: unknown;
974
- };
975
- export interface UpdateAnnouncementDto {
976
- attachments?: UpdateAnnouncementDtoAttachmentsItem[];
977
- content?: string;
978
- departmentId?: string;
979
- expiresAt?: string;
980
- pinned?: boolean;
981
- priority?: UpdateAnnouncementDtoPriority;
982
- publishAt?: string;
983
- targetAudience?: UpdateAnnouncementDtoTargetAudience;
984
- title?: string;
985
- }
986
- export type CreateAnnouncementDtoTargetAudience = {
987
- [key: string]: unknown;
988
- };
989
- export type CreateAnnouncementDtoPriority = typeof CreateAnnouncementDtoPriority[keyof typeof CreateAnnouncementDtoPriority];
990
- export declare const CreateAnnouncementDtoPriority: {
991
- readonly low: "low";
992
- readonly normal: "normal";
993
- readonly high: "high";
994
- readonly urgent: "urgent";
995
- };
996
- export type CreateAnnouncementDtoAttachmentsItem = {
997
- [key: string]: unknown;
998
- };
999
- export interface CreateAnnouncementDto {
1000
- attachments?: CreateAnnouncementDtoAttachmentsItem[];
1001
- content: string;
1002
- departmentId: string;
1003
- /** ISO string date */
1004
- expiresAt?: string;
1005
- pinned?: boolean;
1006
- priority?: CreateAnnouncementDtoPriority;
1007
- /** ISO string date */
1008
- publishAt?: string;
1009
- targetAudience?: CreateAnnouncementDtoTargetAudience;
1010
- title: string;
1011
- }
1012
- export interface UpdateTeamDto {
1013
- color?: string;
1014
- departmentId?: string;
1015
- description?: string;
1016
- icon?: string;
1017
- leadId?: string;
1018
- name?: string;
1019
- slug?: string;
1020
- }
1021
- export interface CreateTeamDto {
1022
- color?: string;
1023
- departmentId?: string;
1024
- description?: string;
1025
- icon?: string;
1026
- leadId?: string;
1027
- name: string;
1028
- slug: string;
1029
- }
1030
- export interface UpdateDepartmentDto {
1031
- color?: string;
1032
- description?: string;
1033
- icon?: string;
1034
- managerId?: string;
1035
- name?: string;
1036
- parentId?: string;
1037
- slug?: string;
1038
- }
1039
- export interface CreateDepartmentDto {
1040
- color?: string;
1041
- description?: string;
1042
- icon?: string;
1043
- managerId?: string;
1044
- name: string;
1045
- parentId?: string;
1046
- slug: string;
1047
- }
1048
- export interface UpdateWebhookDto {
1049
- active?: boolean;
1050
- events?: string[];
1051
- name?: string;
1052
- url?: string;
1053
- }
1054
- export interface CreateWebhookDto {
1055
- active?: boolean;
1056
- events: string[];
1057
- name: string;
1058
- url: string;
1059
- }
1060
- export type CreateTokenDtoPermissionsActionsItem = typeof CreateTokenDtoPermissionsActionsItem[keyof typeof CreateTokenDtoPermissionsActionsItem];
1061
- export declare const CreateTokenDtoPermissionsActionsItem: {
1062
- readonly 'read:members': "read:members";
1063
- readonly 'write:members': "write:members";
1064
- readonly 'read:departments': "read:departments";
1065
- readonly 'write:departments': "write:departments";
1066
- readonly 'read:teams': "read:teams";
1067
- readonly 'write:teams': "write:teams";
1068
- readonly 'read:announcements': "read:announcements";
1069
- readonly 'write:announcements': "write:announcements";
1070
- readonly 'read:channels': "read:channels";
1071
- readonly 'write:channels': "write:channels";
1072
- readonly 'send:messages': "send:messages";
1073
- readonly 'read:messages': "read:messages";
1074
- readonly 'read:threads': "read:threads";
1075
- readonly 'read:webhooks': "read:webhooks";
1076
- readonly 'write:webhooks': "write:webhooks";
1077
- readonly 'read:tokens': "read:tokens";
1078
- readonly 'write:tokens': "write:tokens";
1079
- };
1080
- export type CreateTokenDtoPermissions = {
1081
- actions?: CreateTokenDtoPermissionsActionsItem[];
1082
- };
1083
- export interface CreateTokenDto {
1084
- /** ISO string date */
1085
- expiresAt?: string;
1086
- name: string;
1087
- permissions: CreateTokenDtoPermissions;
1088
- rateLimit?: number;
1089
- }
1090
- export type SendMessageDtoMetadata = {
1091
- [key: string]: unknown;
1092
- };
1093
- export type SendMessageDtoAttachmentsItem = {
1094
- [key: string]: unknown;
1095
- };
1096
- export type SendMessageDtoActionsItem = {
1097
- [key: string]: unknown;
1098
- };
1099
- export interface SendMessageDto {
1100
- actions?: SendMessageDtoActionsItem[];
1101
- attachments?: SendMessageDtoAttachmentsItem[];
1102
- /** Required if recipientId is not provided */
1103
- channelId?: string;
1104
- content: string;
1105
- contextId?: string;
1106
- messageType?: string;
1107
- metadata?: SendMessageDtoMetadata;
1108
- /** Required if channelId is not provided */
1109
- recipientId?: string;
1110
- threadId?: string;
1111
- }
1112
- export type UpdateChannelDtoType = typeof UpdateChannelDtoType[keyof typeof UpdateChannelDtoType];
1113
- export declare const UpdateChannelDtoType: {
1114
- readonly public: "public";
1115
- readonly private: "private";
1116
- };
1117
- export interface UpdateChannelDto {
1118
- description?: string;
1119
- icon?: string;
1120
- name?: string;
1121
- type?: UpdateChannelDtoType;
1122
- }
1123
- export type CreateChannelDtoType = typeof CreateChannelDtoType[keyof typeof CreateChannelDtoType];
1124
- export declare const CreateChannelDtoType: {
1125
- readonly public: "public";
1126
- readonly private: "private";
1127
- };
1128
- export type CreateChannelDtoMetadata = {
1129
- [key: string]: unknown;
1130
- };
1131
- export interface CreateChannelDto {
1132
- description?: string;
1133
- icon?: string;
1134
- metadata?: CreateChannelDtoMetadata;
1135
- name: string;
1136
- type?: CreateChannelDtoType;
1137
- }
1138
- export interface AddMemberDto {
1139
- /** The email of the user to add */
1140
- email: string;
1141
- /** The role of the member */
1142
- role?: string;
1143
- }
1144
857
  type SecondParameter<T extends (...args: any) => any> = Parameters<T>[1];
1145
858
  export declare const getSkyrmeChatAPI: () => {
1146
859
  appControllerGetHealth: (options?: SecondParameter<typeof customInstance>) => Promise<void>;
1147
860
  appControllerGetHello: (options?: SecondParameter<typeof customInstance>) => Promise<void>;
1148
861
  appControllerGetRealtimeConfig: (options?: SecondParameter<typeof customInstance>) => Promise<void>;
862
+ appControllerGetLinkPreview: (params: AppControllerGetLinkPreviewParams, options?: SecondParameter<typeof customInstance>) => Promise<void>;
863
+ usersControllerGetUsers: (options?: SecondParameter<typeof customInstance>) => Promise<void>;
1149
864
  usersControllerSearchUsers: (params: UsersControllerSearchUsersParams, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1150
865
  usersControllerGetMe: (options?: SecondParameter<typeof customInstance>) => Promise<void>;
866
+ usersControllerPatchMe: (options?: SecondParameter<typeof customInstance>) => Promise<void>;
1151
867
  usersControllerUpdateMe: (options?: SecondParameter<typeof customInstance>) => Promise<void>;
1152
868
  usersControllerGetUser: (id: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
869
+ usersControllerPatchUser: (id: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1153
870
  usersControllerGetSocialProfile: (id: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1154
871
  usersControllerBlockUser: (id: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1155
872
  usersControllerUnblockUser: (id: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
873
+ usersControllerUpdateMyStatus: (options?: SecondParameter<typeof customInstance>) => Promise<void>;
1156
874
  usersControllerRegisterDeviceToken: (usersControllerRegisterDeviceTokenBody: BodyType<UsersControllerRegisterDeviceTokenBody>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1157
875
  usersControllerGetDeviceTokens: (options?: SecondParameter<typeof customInstance>) => Promise<void>;
1158
876
  usersControllerDeleteDeviceToken: (params: UsersControllerDeleteDeviceTokenParams, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1159
- v2WorkspacesControllerGetMembers: (slug: unknown, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1160
- v2WorkspacesControllerAddMember: (slug: unknown, addMemberDto: BodyType<AddMemberDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1161
- v2WorkspacesControllerGetMember: (slug: unknown, userId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1162
- v2WorkspacesControllerRemoveMember: (slug: unknown, userId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1163
- v2MessagesControllerGetChannels: (slug: unknown, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1164
- v2MessagesControllerCreateChannel: (slug: unknown, createChannelDto: BodyType<CreateChannelDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1165
- v2MessagesControllerUploadChannelIcon: (slug: unknown, channelId: string, v2MessagesControllerUploadChannelIconBody: BodyType<V2MessagesControllerUploadChannelIconBody>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1166
- v2MessagesControllerGetChannel: (slug: unknown, channelId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1167
- v2MessagesControllerUpdateChannel: (slug: unknown, channelId: string, updateChannelDto: BodyType<UpdateChannelDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1168
- v2MessagesControllerDeleteChannel: (slug: unknown, channelId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1169
- v2MessagesControllerGetMessages: (slug: unknown, params?: V2MessagesControllerGetMessagesParams, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1170
- v2MessagesControllerSendMessage: (slug: unknown, sendMessageDto: BodyType<SendMessageDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1171
- v2SearchControllerSearchMembers: (slug: unknown, params: V2SearchControllerSearchMembersParams, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1172
- v2SearchControllerSearchMessages: (slug: unknown, params: V2SearchControllerSearchMessagesParams, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1173
- v2ApiTokensControllerGetTokens: (slug: unknown, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1174
- v2ApiTokensControllerCreateToken: (slug: unknown, createTokenDto: BodyType<CreateTokenDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1175
- v2ApiTokensControllerDeleteToken: (slug: unknown, tokenId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1176
- v2ApiTokensControllerRotateToken: (slug: unknown, tokenId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1177
- v2WebhooksControllerGetWebhooks: (slug: unknown, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1178
- v2WebhooksControllerCreateWebhook: (slug: unknown, createWebhookDto: BodyType<CreateWebhookDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1179
- v2WebhooksControllerGetWebhook: (slug: unknown, webhookId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1180
- v2WebhooksControllerUpdateWebhook: (slug: unknown, webhookId: string, updateWebhookDto: BodyType<UpdateWebhookDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1181
- v2WebhooksControllerDeleteWebhook: (slug: unknown, webhookId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1182
- v2ThreadsControllerGetThreads: (slug: unknown, params?: V2ThreadsControllerGetThreadsParams, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1183
- v2ThreadsControllerGetThreadMessages: (slug: unknown, threadId: string, params?: V2ThreadsControllerGetThreadMessagesParams, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1184
- v2ThreadsControllerGetThreadByContext: (slug: unknown, contextId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1185
- v2MessageActionsControllerHandleAction: (slug: unknown, messageId: string, actionId: string, v2MessageActionsControllerHandleActionBody?: BodyType<V2MessageActionsControllerHandleActionBody>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1186
- v2DepartmentsControllerGetDepartments: (slug: unknown, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1187
- v2DepartmentsControllerCreateDepartment: (slug: unknown, createDepartmentDto: BodyType<CreateDepartmentDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1188
- v2DepartmentsControllerGetDepartment: (slug: unknown, departmentId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1189
- v2DepartmentsControllerUpdateDepartment: (slug: unknown, departmentId: string, updateDepartmentDto: BodyType<UpdateDepartmentDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1190
- v2DepartmentsControllerDeleteDepartment: (slug: unknown, departmentId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1191
- v2TeamsControllerGetTeams: (slug: unknown, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1192
- v2TeamsControllerCreateTeam: (slug: unknown, createTeamDto: BodyType<CreateTeamDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1193
- v2TeamsControllerGetTeam: (slug: unknown, teamId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1194
- v2TeamsControllerUpdateTeam: (slug: unknown, teamId: string, updateTeamDto: BodyType<UpdateTeamDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1195
- v2TeamsControllerDeleteTeam: (slug: unknown, teamId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1196
- v2AnnouncementsControllerGetAnnouncements: (slug: unknown, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1197
- v2AnnouncementsControllerCreateAnnouncement: (slug: unknown, createAnnouncementDto: BodyType<CreateAnnouncementDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1198
- v2AnnouncementsControllerGetAnnouncement: (slug: unknown, announcementId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1199
- v2AnnouncementsControllerUpdateAnnouncement: (slug: unknown, announcementId: string, updateAnnouncementDto: BodyType<UpdateAnnouncementDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1200
- v2AnnouncementsControllerDeleteAnnouncement: (slug: unknown, announcementId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1201
- v2OAuthControllerGetToken: (tokenRequestDto: BodyType<TokenRequestDto>, options?: SecondParameter<typeof customInstance>) => Promise<V2OAuthControllerGetToken200>;
1202
- v2ApplicationsControllerCreateApplication: (createApplicationDto: BodyType<CreateApplicationDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1203
- v2ApplicationsControllerGetApplications: (options?: SecondParameter<typeof customInstance>) => Promise<void>;
1204
- v2ApplicationsControllerGetApplication: (id: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1205
- v2ApplicationsControllerUpdateApplication: (id: string, updateApplicationDto: BodyType<UpdateApplicationDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1206
- v2ApplicationsControllerDeleteApplication: (id: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1207
- v2ApplicationsControllerResetBotToken: (id: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1208
- v2ApplicationsControllerInstallBot: (id: string, v2ApplicationsControllerInstallBotBody: BodyType<V2ApplicationsControllerInstallBotBody>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1209
- v2ContactControllerSubmitContactForm: (v2ContactControllerSubmitContactFormBody: BodyType<V2ContactControllerSubmitContactFormBody>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1210
- provisioningControllerProvisionWorkspace: (provisionWorkspaceDto: BodyType<ProvisionWorkspaceDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1211
- organizationsControllerGetOrganizationWorkspaces: (orgSlug: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1212
- organizationsControllerGetOrganization: (orgSlug: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1213
- organizationsControllerUpdateOrganization: (orgSlug: string, updateOrganizationDto: BodyType<UpdateOrganizationDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1214
- integrationsControllerHandlePlaneWebhook: (options?: SecondParameter<typeof customInstance>) => Promise<void>;
1215
- integrationsControllerHandleHulyWebhook: (id: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1216
- integrationsControllerGetStats: (options?: SecondParameter<typeof customInstance>) => Promise<void>;
1217
- integrationsControllerGetWebhooks: (options?: SecondParameter<typeof customInstance>) => Promise<void>;
1218
- integrationsControllerCreateWebhook: (createIntegrationWebhookDto: BodyType<CreateIntegrationWebhookDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1219
- integrationsControllerUpdateWebhook: (webhookId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1220
- integrationsControllerDeleteWebhook: (webhookId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1221
- integrationsControllerGetWebhookLogs: (webhookId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1222
- integrationsControllerGetApiKeys: (options?: SecondParameter<typeof customInstance>) => Promise<void>;
1223
- integrationsControllerUpdateApiKey: (keyId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1224
- integrationsControllerDeleteApiKey: (keyId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1225
- workspaceIntegrationsControllerGetWorkspaceIntegrations: (slug: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1226
- workspaceIntegrationsControllerCreateWorkspaceIntegration: (slug: string, createIntegrationDto: BodyType<CreateIntegrationDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1227
- workspaceIntegrationsControllerGetWorkspaceIntegration: (slug: string, integrationId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1228
- workspaceIntegrationsControllerUpdateWorkspaceIntegration: (slug: string, integrationId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1229
- workspaceIntegrationsControllerDeleteWorkspaceIntegration: (slug: string, integrationId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1230
- workspaceIntegrationsControllerTestWorkspaceIntegration: (slug: string, integrationId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1231
- workspaceIntegrationsControllerGetWorkspaceWebhooks: (slug: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1232
- workspaceIntegrationsControllerCreateWorkspaceWebhook: (slug: string, createIntegrationWebhookDto: BodyType<CreateIntegrationWebhookDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1233
- notificationsControllerGetNotifications: (params?: NotificationsControllerGetNotificationsParams, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1234
- notificationsControllerMarkAllRead: (options?: SecondParameter<typeof customInstance>) => Promise<void>;
1235
- notificationsControllerGetWorkspaceSettings: (params: NotificationsControllerGetWorkspaceSettingsParams, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1236
- notificationsControllerUpdateWorkspaceSettings: (workspaceSettingsDto: BodyType<WorkspaceSettingsDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1237
- notificationsControllerGetChannelSettings: (params: NotificationsControllerGetChannelSettingsParams, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1238
- notificationsControllerUpdateChannelSettings: (channelSettingsDto: BodyType<ChannelSettingsDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1239
- notificationsControllerUpdateNotification: (notificationId: string, updateNotificationDto: BodyType<UpdateNotificationDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1240
- notificationsControllerDeleteNotification: (notificationId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1241
- ablyControllerGetToken: (options?: SecondParameter<typeof customInstance>) => Promise<void>;
1242
- storageControllerUploadFile: (storageControllerUploadFileBody: BodyType<StorageControllerUploadFileBody>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1243
- shortUrlControllerRedirect: (code: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1244
877
  v10UsersControllerGetUser: (id: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1245
878
  v10UsersControllerGetMe: (options?: SecondParameter<typeof customInstance>) => Promise<void>;
1246
879
  v10GatewayControllerGetBotGateway: (options?: SecondParameter<typeof customInstance>) => Promise<void>;
@@ -1285,15 +918,53 @@ export declare const getSkyrmeChatAPI: () => {
1285
918
  v3ChannelIncomingWebhooksControllerDeleteChannelWebhook: (slug: string, channelId: string, webhookId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1286
919
  v3ChannelIncomingWebhooksControllerExecuteWebhookByUrlToken: (token: string, executeChannelIncomingWebhookDto: BodyType<ExecuteChannelIncomingWebhookDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1287
920
  v3ChannelIncomingWebhooksControllerExecuteWebhookByChannelId: (channelId: string, executeChannelIncomingWebhookDto: BodyType<ExecuteChannelIncomingWebhookDto>, params?: V3ChannelIncomingWebhooksControllerExecuteWebhookByChannelIdParams, options?: SecondParameter<typeof customInstance>) => Promise<void>;
921
+ v3OrganizationsControllerGetOrganizationWorkspaces: (orgSlug: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
922
+ v3OrganizationsControllerGetOrganization: (orgSlug: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
923
+ v3OrganizationsControllerUpdateOrganization: (orgSlug: string, v3UpdateOrganizationDto: BodyType<V3UpdateOrganizationDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
924
+ v3OrganizationsControllerGetM2mApplications: (orgSlug: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
925
+ v3OrganizationsControllerCreateM2mApplication: (orgSlug: string, v3CreateM2mApplicationDto: BodyType<V3CreateM2mApplicationDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
926
+ v3OrganizationsControllerUpdateM2mApplication: (orgSlug: string, id: string, v3UpdateM2mApplicationDto: BodyType<V3UpdateM2mApplicationDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
927
+ v3OrganizationsControllerDeleteM2mApplication: (orgSlug: string, id: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
928
+ notificationsControllerGetNotifications: (params?: NotificationsControllerGetNotificationsParams, options?: SecondParameter<typeof customInstance>) => Promise<void>;
929
+ notificationsControllerGetNotificationById: (notificationId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
930
+ notificationsControllerUpdateNotification: (notificationId: string, updateNotificationDto: BodyType<UpdateNotificationDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
931
+ notificationsControllerDeleteNotification: (notificationId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
932
+ notificationsControllerMarkAllRead: (options?: SecondParameter<typeof customInstance>) => Promise<void>;
933
+ notificationsControllerGetWorkspaceSettings: (params: NotificationsControllerGetWorkspaceSettingsParams, options?: SecondParameter<typeof customInstance>) => Promise<void>;
934
+ notificationsControllerUpdateWorkspaceSettings: (workspaceSettingsDto: BodyType<WorkspaceSettingsDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
935
+ notificationsControllerGetChannelSettings: (params: NotificationsControllerGetChannelSettingsParams, options?: SecondParameter<typeof customInstance>) => Promise<void>;
936
+ notificationsControllerUpdateChannelSettings: (channelSettingsDto: BodyType<ChannelSettingsDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1288
937
  invitationsControllerGetInvitations: (params?: InvitationsControllerGetInvitationsParams, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1289
938
  invitationsControllerCreateInvitation: (createInvitationDto: BodyType<CreateInvitationDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1290
939
  invitationsControllerGetInvitationByToken: (token: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1291
940
  invitationsControllerAcceptInvitation: (token: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
941
+ integrationsControllerHandlePlaneWebhook: (options?: SecondParameter<typeof customInstance>) => Promise<void>;
942
+ integrationsControllerHandleHulyWebhook: (id: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
943
+ integrationsControllerGetStats: (options?: SecondParameter<typeof customInstance>) => Promise<void>;
944
+ integrationsControllerGetWebhooks: (options?: SecondParameter<typeof customInstance>) => Promise<void>;
945
+ integrationsControllerCreateWebhook: (createIntegrationWebhookDto: BodyType<CreateIntegrationWebhookDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
946
+ integrationsControllerUpdateWebhook: (webhookId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
947
+ integrationsControllerDeleteWebhook: (webhookId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
948
+ integrationsControllerGetWebhookLogs: (webhookId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
949
+ integrationsControllerGetApiKeys: (options?: SecondParameter<typeof customInstance>) => Promise<void>;
950
+ integrationsControllerUpdateApiKey: (keyId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
951
+ integrationsControllerDeleteApiKey: (keyId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
952
+ workspaceIntegrationsControllerGetWorkspaceIntegrations: (slug: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
953
+ workspaceIntegrationsControllerCreateWorkspaceIntegration: (slug: string, createIntegrationDto: BodyType<CreateIntegrationDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
954
+ workspaceIntegrationsControllerGetWorkspaceIntegration: (slug: string, integrationId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
955
+ workspaceIntegrationsControllerUpdateWorkspaceIntegration: (slug: string, integrationId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
956
+ workspaceIntegrationsControllerDeleteWorkspaceIntegration: (slug: string, integrationId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
957
+ workspaceIntegrationsControllerTestWorkspaceIntegration: (slug: string, integrationId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
958
+ workspaceIntegrationsControllerGetWorkspaceWebhooks: (slug: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
959
+ workspaceIntegrationsControllerCreateWorkspaceWebhook: (slug: string, createIntegrationWebhookDto: BodyType<CreateIntegrationWebhookDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
960
+ ablyControllerGetToken: (options?: SecondParameter<typeof customInstance>) => Promise<void>;
961
+ storageControllerUploadFile: (storageControllerUploadFileBody: BodyType<StorageControllerUploadFileBody>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
962
+ shortUrlControllerRedirect: (code: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1292
963
  callsControllerStartCall: (startCallDto: BodyType<StartCallDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1293
964
  callsControllerUpdateCall: (callId: string, updateCallDto: BodyType<UpdateCallDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1294
965
  callsControllerInviteToCall: (callId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1295
966
  callsControllerGetParticipants: (callId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1296
- callsControllerGetScheduledCalls: (params: CallsControllerGetScheduledCallsParams, options?: SecondParameter<typeof customInstance>) => Promise<void>;
967
+ callsControllerGetScheduledCalls: (params?: CallsControllerGetScheduledCallsParams, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1297
968
  callsControllerScheduleCall: (scheduleCallDto: BodyType<ScheduleCallDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1298
969
  callsControllerPlaySoundboardSound: (soundboardSoundDto: BodyType<SoundboardSoundDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1299
970
  channelsControllerGetGlobalChannels: (options?: SecondParameter<typeof customInstance>) => Promise<void>;
@@ -1350,6 +1021,9 @@ export declare const getSkyrmeChatAPI: () => {
1350
1021
  channelsControllerGetChannel: (slug: string, channelId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1351
1022
  channelsControllerUpdateChannel: (slug: string, channelId: string, updateWorkspaceChannelDto: BodyType<UpdateWorkspaceChannelDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1352
1023
  channelsControllerDeleteChannel: (slug: string, channelId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1024
+ channelsControllerGetChannelMembers: (slug: string, channelId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1025
+ channelsControllerAddChannelMembers: (slug: string, channelId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1026
+ channelsControllerRemoveChannelMember: (slug: string, channelId: string, targetUserId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1353
1027
  departmentsControllerGetDepartments: (slug: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1354
1028
  departmentsControllerCreateDepartment: (slug: string, createWorkspaceDepartmentDto: BodyType<CreateWorkspaceDepartmentDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1355
1029
  departmentsControllerGetDepartment: (slug: string, departmentId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
@@ -1413,101 +1087,21 @@ export declare const getSkyrmeChatAPI: () => {
1413
1087
  export type AppControllerGetHealthResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['appControllerGetHealth']>>>;
1414
1088
  export type AppControllerGetHelloResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['appControllerGetHello']>>>;
1415
1089
  export type AppControllerGetRealtimeConfigResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['appControllerGetRealtimeConfig']>>>;
1090
+ export type AppControllerGetLinkPreviewResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['appControllerGetLinkPreview']>>>;
1091
+ export type UsersControllerGetUsersResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['usersControllerGetUsers']>>>;
1416
1092
  export type UsersControllerSearchUsersResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['usersControllerSearchUsers']>>>;
1417
1093
  export type UsersControllerGetMeResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['usersControllerGetMe']>>>;
1094
+ export type UsersControllerPatchMeResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['usersControllerPatchMe']>>>;
1418
1095
  export type UsersControllerUpdateMeResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['usersControllerUpdateMe']>>>;
1419
1096
  export type UsersControllerGetUserResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['usersControllerGetUser']>>>;
1097
+ export type UsersControllerPatchUserResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['usersControllerPatchUser']>>>;
1420
1098
  export type UsersControllerGetSocialProfileResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['usersControllerGetSocialProfile']>>>;
1421
1099
  export type UsersControllerBlockUserResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['usersControllerBlockUser']>>>;
1422
1100
  export type UsersControllerUnblockUserResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['usersControllerUnblockUser']>>>;
1101
+ export type UsersControllerUpdateMyStatusResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['usersControllerUpdateMyStatus']>>>;
1423
1102
  export type UsersControllerRegisterDeviceTokenResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['usersControllerRegisterDeviceToken']>>>;
1424
1103
  export type UsersControllerGetDeviceTokensResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['usersControllerGetDeviceTokens']>>>;
1425
1104
  export type UsersControllerDeleteDeviceTokenResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['usersControllerDeleteDeviceToken']>>>;
1426
- export type V2WorkspacesControllerGetMembersResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v2WorkspacesControllerGetMembers']>>>;
1427
- export type V2WorkspacesControllerAddMemberResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v2WorkspacesControllerAddMember']>>>;
1428
- export type V2WorkspacesControllerGetMemberResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v2WorkspacesControllerGetMember']>>>;
1429
- export type V2WorkspacesControllerRemoveMemberResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v2WorkspacesControllerRemoveMember']>>>;
1430
- export type V2MessagesControllerGetChannelsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v2MessagesControllerGetChannels']>>>;
1431
- export type V2MessagesControllerCreateChannelResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v2MessagesControllerCreateChannel']>>>;
1432
- export type V2MessagesControllerUploadChannelIconResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v2MessagesControllerUploadChannelIcon']>>>;
1433
- export type V2MessagesControllerGetChannelResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v2MessagesControllerGetChannel']>>>;
1434
- export type V2MessagesControllerUpdateChannelResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v2MessagesControllerUpdateChannel']>>>;
1435
- export type V2MessagesControllerDeleteChannelResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v2MessagesControllerDeleteChannel']>>>;
1436
- export type V2MessagesControllerGetMessagesResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v2MessagesControllerGetMessages']>>>;
1437
- export type V2MessagesControllerSendMessageResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v2MessagesControllerSendMessage']>>>;
1438
- export type V2SearchControllerSearchMembersResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v2SearchControllerSearchMembers']>>>;
1439
- export type V2SearchControllerSearchMessagesResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v2SearchControllerSearchMessages']>>>;
1440
- export type V2ApiTokensControllerGetTokensResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v2ApiTokensControllerGetTokens']>>>;
1441
- export type V2ApiTokensControllerCreateTokenResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v2ApiTokensControllerCreateToken']>>>;
1442
- export type V2ApiTokensControllerDeleteTokenResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v2ApiTokensControllerDeleteToken']>>>;
1443
- export type V2ApiTokensControllerRotateTokenResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v2ApiTokensControllerRotateToken']>>>;
1444
- export type V2WebhooksControllerGetWebhooksResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v2WebhooksControllerGetWebhooks']>>>;
1445
- export type V2WebhooksControllerCreateWebhookResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v2WebhooksControllerCreateWebhook']>>>;
1446
- export type V2WebhooksControllerGetWebhookResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v2WebhooksControllerGetWebhook']>>>;
1447
- export type V2WebhooksControllerUpdateWebhookResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v2WebhooksControllerUpdateWebhook']>>>;
1448
- export type V2WebhooksControllerDeleteWebhookResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v2WebhooksControllerDeleteWebhook']>>>;
1449
- export type V2ThreadsControllerGetThreadsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v2ThreadsControllerGetThreads']>>>;
1450
- export type V2ThreadsControllerGetThreadMessagesResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v2ThreadsControllerGetThreadMessages']>>>;
1451
- export type V2ThreadsControllerGetThreadByContextResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v2ThreadsControllerGetThreadByContext']>>>;
1452
- export type V2MessageActionsControllerHandleActionResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v2MessageActionsControllerHandleAction']>>>;
1453
- export type V2DepartmentsControllerGetDepartmentsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v2DepartmentsControllerGetDepartments']>>>;
1454
- export type V2DepartmentsControllerCreateDepartmentResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v2DepartmentsControllerCreateDepartment']>>>;
1455
- export type V2DepartmentsControllerGetDepartmentResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v2DepartmentsControllerGetDepartment']>>>;
1456
- export type V2DepartmentsControllerUpdateDepartmentResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v2DepartmentsControllerUpdateDepartment']>>>;
1457
- export type V2DepartmentsControllerDeleteDepartmentResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v2DepartmentsControllerDeleteDepartment']>>>;
1458
- export type V2TeamsControllerGetTeamsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v2TeamsControllerGetTeams']>>>;
1459
- export type V2TeamsControllerCreateTeamResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v2TeamsControllerCreateTeam']>>>;
1460
- export type V2TeamsControllerGetTeamResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v2TeamsControllerGetTeam']>>>;
1461
- export type V2TeamsControllerUpdateTeamResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v2TeamsControllerUpdateTeam']>>>;
1462
- export type V2TeamsControllerDeleteTeamResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v2TeamsControllerDeleteTeam']>>>;
1463
- export type V2AnnouncementsControllerGetAnnouncementsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v2AnnouncementsControllerGetAnnouncements']>>>;
1464
- export type V2AnnouncementsControllerCreateAnnouncementResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v2AnnouncementsControllerCreateAnnouncement']>>>;
1465
- export type V2AnnouncementsControllerGetAnnouncementResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v2AnnouncementsControllerGetAnnouncement']>>>;
1466
- export type V2AnnouncementsControllerUpdateAnnouncementResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v2AnnouncementsControllerUpdateAnnouncement']>>>;
1467
- export type V2AnnouncementsControllerDeleteAnnouncementResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v2AnnouncementsControllerDeleteAnnouncement']>>>;
1468
- export type V2OAuthControllerGetTokenResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v2OAuthControllerGetToken']>>>;
1469
- export type V2ApplicationsControllerCreateApplicationResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v2ApplicationsControllerCreateApplication']>>>;
1470
- export type V2ApplicationsControllerGetApplicationsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v2ApplicationsControllerGetApplications']>>>;
1471
- export type V2ApplicationsControllerGetApplicationResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v2ApplicationsControllerGetApplication']>>>;
1472
- export type V2ApplicationsControllerUpdateApplicationResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v2ApplicationsControllerUpdateApplication']>>>;
1473
- export type V2ApplicationsControllerDeleteApplicationResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v2ApplicationsControllerDeleteApplication']>>>;
1474
- export type V2ApplicationsControllerResetBotTokenResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v2ApplicationsControllerResetBotToken']>>>;
1475
- export type V2ApplicationsControllerInstallBotResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v2ApplicationsControllerInstallBot']>>>;
1476
- export type V2ContactControllerSubmitContactFormResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v2ContactControllerSubmitContactForm']>>>;
1477
- export type ProvisioningControllerProvisionWorkspaceResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['provisioningControllerProvisionWorkspace']>>>;
1478
- export type OrganizationsControllerGetOrganizationWorkspacesResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['organizationsControllerGetOrganizationWorkspaces']>>>;
1479
- export type OrganizationsControllerGetOrganizationResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['organizationsControllerGetOrganization']>>>;
1480
- export type OrganizationsControllerUpdateOrganizationResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['organizationsControllerUpdateOrganization']>>>;
1481
- export type IntegrationsControllerHandlePlaneWebhookResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['integrationsControllerHandlePlaneWebhook']>>>;
1482
- export type IntegrationsControllerHandleHulyWebhookResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['integrationsControllerHandleHulyWebhook']>>>;
1483
- export type IntegrationsControllerGetStatsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['integrationsControllerGetStats']>>>;
1484
- export type IntegrationsControllerGetWebhooksResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['integrationsControllerGetWebhooks']>>>;
1485
- export type IntegrationsControllerCreateWebhookResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['integrationsControllerCreateWebhook']>>>;
1486
- export type IntegrationsControllerUpdateWebhookResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['integrationsControllerUpdateWebhook']>>>;
1487
- export type IntegrationsControllerDeleteWebhookResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['integrationsControllerDeleteWebhook']>>>;
1488
- export type IntegrationsControllerGetWebhookLogsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['integrationsControllerGetWebhookLogs']>>>;
1489
- export type IntegrationsControllerGetApiKeysResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['integrationsControllerGetApiKeys']>>>;
1490
- export type IntegrationsControllerUpdateApiKeyResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['integrationsControllerUpdateApiKey']>>>;
1491
- export type IntegrationsControllerDeleteApiKeyResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['integrationsControllerDeleteApiKey']>>>;
1492
- export type WorkspaceIntegrationsControllerGetWorkspaceIntegrationsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['workspaceIntegrationsControllerGetWorkspaceIntegrations']>>>;
1493
- export type WorkspaceIntegrationsControllerCreateWorkspaceIntegrationResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['workspaceIntegrationsControllerCreateWorkspaceIntegration']>>>;
1494
- export type WorkspaceIntegrationsControllerGetWorkspaceIntegrationResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['workspaceIntegrationsControllerGetWorkspaceIntegration']>>>;
1495
- export type WorkspaceIntegrationsControllerUpdateWorkspaceIntegrationResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['workspaceIntegrationsControllerUpdateWorkspaceIntegration']>>>;
1496
- export type WorkspaceIntegrationsControllerDeleteWorkspaceIntegrationResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['workspaceIntegrationsControllerDeleteWorkspaceIntegration']>>>;
1497
- export type WorkspaceIntegrationsControllerTestWorkspaceIntegrationResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['workspaceIntegrationsControllerTestWorkspaceIntegration']>>>;
1498
- export type WorkspaceIntegrationsControllerGetWorkspaceWebhooksResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['workspaceIntegrationsControllerGetWorkspaceWebhooks']>>>;
1499
- export type WorkspaceIntegrationsControllerCreateWorkspaceWebhookResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['workspaceIntegrationsControllerCreateWorkspaceWebhook']>>>;
1500
- export type NotificationsControllerGetNotificationsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['notificationsControllerGetNotifications']>>>;
1501
- export type NotificationsControllerMarkAllReadResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['notificationsControllerMarkAllRead']>>>;
1502
- export type NotificationsControllerGetWorkspaceSettingsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['notificationsControllerGetWorkspaceSettings']>>>;
1503
- export type NotificationsControllerUpdateWorkspaceSettingsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['notificationsControllerUpdateWorkspaceSettings']>>>;
1504
- export type NotificationsControllerGetChannelSettingsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['notificationsControllerGetChannelSettings']>>>;
1505
- export type NotificationsControllerUpdateChannelSettingsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['notificationsControllerUpdateChannelSettings']>>>;
1506
- export type NotificationsControllerUpdateNotificationResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['notificationsControllerUpdateNotification']>>>;
1507
- export type NotificationsControllerDeleteNotificationResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['notificationsControllerDeleteNotification']>>>;
1508
- export type AblyControllerGetTokenResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['ablyControllerGetToken']>>>;
1509
- export type StorageControllerUploadFileResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['storageControllerUploadFile']>>>;
1510
- export type ShortUrlControllerRedirectResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['shortUrlControllerRedirect']>>>;
1511
1105
  export type V10UsersControllerGetUserResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v10UsersControllerGetUser']>>>;
1512
1106
  export type V10UsersControllerGetMeResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v10UsersControllerGetMe']>>>;
1513
1107
  export type V10GatewayControllerGetBotGatewayResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v10GatewayControllerGetBotGateway']>>>;
@@ -1552,10 +1146,48 @@ export type V3ChannelIncomingWebhooksControllerUpdateChannelWebhookResult = NonN
1552
1146
  export type V3ChannelIncomingWebhooksControllerDeleteChannelWebhookResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v3ChannelIncomingWebhooksControllerDeleteChannelWebhook']>>>;
1553
1147
  export type V3ChannelIncomingWebhooksControllerExecuteWebhookByUrlTokenResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v3ChannelIncomingWebhooksControllerExecuteWebhookByUrlToken']>>>;
1554
1148
  export type V3ChannelIncomingWebhooksControllerExecuteWebhookByChannelIdResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v3ChannelIncomingWebhooksControllerExecuteWebhookByChannelId']>>>;
1149
+ export type V3OrganizationsControllerGetOrganizationWorkspacesResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v3OrganizationsControllerGetOrganizationWorkspaces']>>>;
1150
+ export type V3OrganizationsControllerGetOrganizationResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v3OrganizationsControllerGetOrganization']>>>;
1151
+ export type V3OrganizationsControllerUpdateOrganizationResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v3OrganizationsControllerUpdateOrganization']>>>;
1152
+ export type V3OrganizationsControllerGetM2mApplicationsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v3OrganizationsControllerGetM2mApplications']>>>;
1153
+ export type V3OrganizationsControllerCreateM2mApplicationResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v3OrganizationsControllerCreateM2mApplication']>>>;
1154
+ export type V3OrganizationsControllerUpdateM2mApplicationResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v3OrganizationsControllerUpdateM2mApplication']>>>;
1155
+ export type V3OrganizationsControllerDeleteM2mApplicationResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v3OrganizationsControllerDeleteM2mApplication']>>>;
1156
+ export type NotificationsControllerGetNotificationsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['notificationsControllerGetNotifications']>>>;
1157
+ export type NotificationsControllerGetNotificationByIdResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['notificationsControllerGetNotificationById']>>>;
1158
+ export type NotificationsControllerUpdateNotificationResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['notificationsControllerUpdateNotification']>>>;
1159
+ export type NotificationsControllerDeleteNotificationResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['notificationsControllerDeleteNotification']>>>;
1160
+ export type NotificationsControllerMarkAllReadResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['notificationsControllerMarkAllRead']>>>;
1161
+ export type NotificationsControllerGetWorkspaceSettingsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['notificationsControllerGetWorkspaceSettings']>>>;
1162
+ export type NotificationsControllerUpdateWorkspaceSettingsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['notificationsControllerUpdateWorkspaceSettings']>>>;
1163
+ export type NotificationsControllerGetChannelSettingsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['notificationsControllerGetChannelSettings']>>>;
1164
+ export type NotificationsControllerUpdateChannelSettingsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['notificationsControllerUpdateChannelSettings']>>>;
1555
1165
  export type InvitationsControllerGetInvitationsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['invitationsControllerGetInvitations']>>>;
1556
1166
  export type InvitationsControllerCreateInvitationResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['invitationsControllerCreateInvitation']>>>;
1557
1167
  export type InvitationsControllerGetInvitationByTokenResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['invitationsControllerGetInvitationByToken']>>>;
1558
1168
  export type InvitationsControllerAcceptInvitationResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['invitationsControllerAcceptInvitation']>>>;
1169
+ export type IntegrationsControllerHandlePlaneWebhookResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['integrationsControllerHandlePlaneWebhook']>>>;
1170
+ export type IntegrationsControllerHandleHulyWebhookResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['integrationsControllerHandleHulyWebhook']>>>;
1171
+ export type IntegrationsControllerGetStatsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['integrationsControllerGetStats']>>>;
1172
+ export type IntegrationsControllerGetWebhooksResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['integrationsControllerGetWebhooks']>>>;
1173
+ export type IntegrationsControllerCreateWebhookResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['integrationsControllerCreateWebhook']>>>;
1174
+ export type IntegrationsControllerUpdateWebhookResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['integrationsControllerUpdateWebhook']>>>;
1175
+ export type IntegrationsControllerDeleteWebhookResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['integrationsControllerDeleteWebhook']>>>;
1176
+ export type IntegrationsControllerGetWebhookLogsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['integrationsControllerGetWebhookLogs']>>>;
1177
+ export type IntegrationsControllerGetApiKeysResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['integrationsControllerGetApiKeys']>>>;
1178
+ export type IntegrationsControllerUpdateApiKeyResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['integrationsControllerUpdateApiKey']>>>;
1179
+ export type IntegrationsControllerDeleteApiKeyResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['integrationsControllerDeleteApiKey']>>>;
1180
+ export type WorkspaceIntegrationsControllerGetWorkspaceIntegrationsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['workspaceIntegrationsControllerGetWorkspaceIntegrations']>>>;
1181
+ export type WorkspaceIntegrationsControllerCreateWorkspaceIntegrationResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['workspaceIntegrationsControllerCreateWorkspaceIntegration']>>>;
1182
+ export type WorkspaceIntegrationsControllerGetWorkspaceIntegrationResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['workspaceIntegrationsControllerGetWorkspaceIntegration']>>>;
1183
+ export type WorkspaceIntegrationsControllerUpdateWorkspaceIntegrationResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['workspaceIntegrationsControllerUpdateWorkspaceIntegration']>>>;
1184
+ export type WorkspaceIntegrationsControllerDeleteWorkspaceIntegrationResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['workspaceIntegrationsControllerDeleteWorkspaceIntegration']>>>;
1185
+ export type WorkspaceIntegrationsControllerTestWorkspaceIntegrationResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['workspaceIntegrationsControllerTestWorkspaceIntegration']>>>;
1186
+ export type WorkspaceIntegrationsControllerGetWorkspaceWebhooksResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['workspaceIntegrationsControllerGetWorkspaceWebhooks']>>>;
1187
+ export type WorkspaceIntegrationsControllerCreateWorkspaceWebhookResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['workspaceIntegrationsControllerCreateWorkspaceWebhook']>>>;
1188
+ export type AblyControllerGetTokenResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['ablyControllerGetToken']>>>;
1189
+ export type StorageControllerUploadFileResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['storageControllerUploadFile']>>>;
1190
+ export type ShortUrlControllerRedirectResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['shortUrlControllerRedirect']>>>;
1559
1191
  export type CallsControllerStartCallResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['callsControllerStartCall']>>>;
1560
1192
  export type CallsControllerUpdateCallResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['callsControllerUpdateCall']>>>;
1561
1193
  export type CallsControllerInviteToCallResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['callsControllerInviteToCall']>>>;
@@ -1617,6 +1249,9 @@ export type ChannelsControllerGetWorkspaceChannelsResult = NonNullable<Awaited<R
1617
1249
  export type ChannelsControllerGetChannelResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['channelsControllerGetChannel']>>>;
1618
1250
  export type ChannelsControllerUpdateChannelResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['channelsControllerUpdateChannel']>>>;
1619
1251
  export type ChannelsControllerDeleteChannelResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['channelsControllerDeleteChannel']>>>;
1252
+ export type ChannelsControllerGetChannelMembersResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['channelsControllerGetChannelMembers']>>>;
1253
+ export type ChannelsControllerAddChannelMembersResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['channelsControllerAddChannelMembers']>>>;
1254
+ export type ChannelsControllerRemoveChannelMemberResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['channelsControllerRemoveChannelMember']>>>;
1620
1255
  export type DepartmentsControllerGetDepartmentsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['departmentsControllerGetDepartments']>>>;
1621
1256
  export type DepartmentsControllerCreateDepartmentResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['departmentsControllerCreateDepartment']>>>;
1622
1257
  export type DepartmentsControllerGetDepartmentResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['departmentsControllerGetDepartment']>>>;