@scryme/chat 0.0.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.
@@ -0,0 +1,1679 @@
1
+ /**
2
+ * Generated by orval v6.31.0 🍺
3
+ * Do not edit manually.
4
+ * Skyrme Chat API
5
+ * Comprehensive API documentation for Skyrme Chat V2 and V3 Enterprise. This documentation describes both standard V2 integrations and high-performance, secure V3 Enterprise M2M interfaces.
6
+ * OpenAPI spec version: 3.0
7
+ */
8
+ import { customInstance } from '../custom-instance';
9
+ import type { BodyType } from '../custom-instance';
10
+ export type SupportControllerGetCustomerProfilesParams = {
11
+ workspaceId: string;
12
+ };
13
+ export type SupportControllerGetTicketsParams = {
14
+ workspaceId: string;
15
+ };
16
+ export type ScheduledNotificationsControllerUpdateNotificationBodyAction = typeof ScheduledNotificationsControllerUpdateNotificationBodyAction[keyof typeof ScheduledNotificationsControllerUpdateNotificationBodyAction];
17
+ export declare const ScheduledNotificationsControllerUpdateNotificationBodyAction: {
18
+ readonly pause: "pause";
19
+ readonly resume: "resume";
20
+ };
21
+ export type ScheduledNotificationsControllerUpdateNotificationBody = {
22
+ action?: ScheduledNotificationsControllerUpdateNotificationBodyAction;
23
+ message?: string;
24
+ title?: string;
25
+ };
26
+ export type ScheduledNotificationsControllerGetNotificationsParams = {
27
+ /**
28
+ * Return stats instead of list
29
+ */
30
+ stats?: string;
31
+ };
32
+ export type AndroidAuthControllerCheckUsernameParams = {
33
+ username: string;
34
+ };
35
+ export type SearchControllerSearchParams = {
36
+ /**
37
+ * Filter: all | messages | channels | members | files
38
+ */
39
+ type?: string;
40
+ limit?: number;
41
+ /**
42
+ * The search query
43
+ */
44
+ q: unknown;
45
+ };
46
+ export type AuditLogsControllerGetAuditLogsParams = {
47
+ /**
48
+ * Items per page
49
+ */
50
+ limit?: unknown;
51
+ /**
52
+ * Page number
53
+ */
54
+ page?: unknown;
55
+ };
56
+ export type MessagesControllerGetMessagesParams = {
57
+ /**
58
+ * Pagination cursor
59
+ */
60
+ cursor?: string;
61
+ /**
62
+ * Filter by thread ID
63
+ */
64
+ threadId?: string;
65
+ /**
66
+ * Number of messages to return
67
+ */
68
+ limit?: unknown;
69
+ };
70
+ export type TeamsControllerGetTeamsParams = {
71
+ /**
72
+ * Filter teams by department
73
+ */
74
+ departmentId?: string;
75
+ };
76
+ export type DepartmentsControllerGetAnnouncementsPriority = typeof DepartmentsControllerGetAnnouncementsPriority[keyof typeof DepartmentsControllerGetAnnouncementsPriority];
77
+ export declare const DepartmentsControllerGetAnnouncementsPriority: {
78
+ readonly low: "low";
79
+ readonly normal: "normal";
80
+ readonly high: "high";
81
+ readonly urgent: "urgent";
82
+ };
83
+ export type DepartmentsControllerGetAnnouncementsParams = {
84
+ priority?: DepartmentsControllerGetAnnouncementsPriority;
85
+ /**
86
+ * Items per page
87
+ */
88
+ limit?: unknown;
89
+ /**
90
+ * Page number
91
+ */
92
+ page?: unknown;
93
+ };
94
+ export type WorkspacesControllerDiscoverWorkspacesParams = {
95
+ /**
96
+ * Search query for workspace name or slug
97
+ */
98
+ q?: string;
99
+ };
100
+ export type FriendsControllerGetFriendRequestsStatus = typeof FriendsControllerGetFriendRequestsStatus[keyof typeof FriendsControllerGetFriendRequestsStatus];
101
+ export declare const FriendsControllerGetFriendRequestsStatus: {
102
+ readonly pending: "pending";
103
+ readonly accepted: "accepted";
104
+ readonly declined: "declined";
105
+ };
106
+ export type FriendsControllerGetFriendRequestsType = typeof FriendsControllerGetFriendRequestsType[keyof typeof FriendsControllerGetFriendRequestsType];
107
+ export declare const FriendsControllerGetFriendRequestsType: {
108
+ readonly incoming: "incoming";
109
+ readonly outgoing: "outgoing";
110
+ };
111
+ export type FriendsControllerGetFriendRequestsParams = {
112
+ /**
113
+ * Type of requests
114
+ */
115
+ type?: FriendsControllerGetFriendRequestsType;
116
+ /**
117
+ * Status of requests
118
+ */
119
+ status?: FriendsControllerGetFriendRequestsStatus;
120
+ };
121
+ export type FriendsControllerGetFriendsParams = {
122
+ /**
123
+ * Search for friends by name
124
+ */
125
+ search?: string;
126
+ };
127
+ export type DmsControllerAddReactionBody = {
128
+ emoji?: string;
129
+ };
130
+ export type DmsControllerGetMessagesParams = {
131
+ /**
132
+ * Pagination cursor
133
+ */
134
+ cursor?: string;
135
+ /**
136
+ * Number of messages to return
137
+ */
138
+ limit?: unknown;
139
+ };
140
+ export type AdminControllerUploadFileBody = {
141
+ file?: Blob;
142
+ };
143
+ export type AdminControllerGetAssetStatsParams = {
144
+ assetId: string;
145
+ assetType: string;
146
+ };
147
+ export type AdminControllerDeleteAssetParams = {
148
+ type: string;
149
+ id: string;
150
+ };
151
+ export type AdminControllerGetAssetsParams = {
152
+ type: string;
153
+ };
154
+ export type AdminControllerGetMembersParams = {
155
+ search: string;
156
+ role: string;
157
+ status: string;
158
+ };
159
+ export type ChannelsControllerAddReactionBody = {
160
+ emoji?: string;
161
+ };
162
+ export type ChannelsControllerMarkAsReadBody = {
163
+ messageIds?: string[];
164
+ };
165
+ export type ChannelsControllerUpdateMessageBody = {
166
+ content?: string;
167
+ };
168
+ export type ChannelsControllerGetMessagesParams = {
169
+ cursor?: string;
170
+ limit?: unknown;
171
+ };
172
+ export type CallsControllerGetScheduledCallsParams = {
173
+ /**
174
+ * The workspace ID
175
+ */
176
+ workspaceId: string;
177
+ };
178
+ export type InvitationsControllerGetInvitationsParams = {
179
+ /**
180
+ * Filter by workspace ID
181
+ */
182
+ workspaceId?: string;
183
+ };
184
+ export type V3ChannelIncomingWebhooksControllerExecuteWebhookByChannelIdParams = {
185
+ /**
186
+ * The unique webhook token (can alternatively use x-webhook-token header)
187
+ */
188
+ token?: string;
189
+ };
190
+ export type V3WorkspacesControllerDeleteWorkspace200Data = {
191
+ success?: boolean;
192
+ };
193
+ export type V3WorkspacesControllerDeleteWorkspace200 = {
194
+ data?: V3WorkspacesControllerDeleteWorkspace200Data;
195
+ success?: boolean;
196
+ timestamp?: string;
197
+ };
198
+ export type V3WorkspacesControllerUpdateWorkspace200 = {
199
+ data?: V3WorkspacesControllerUpdateWorkspace200Data;
200
+ success?: boolean;
201
+ timestamp?: string;
202
+ };
203
+ /**
204
+ * @nullable
205
+ */
206
+ export type V3WorkspacesControllerUpdateWorkspace200DataWorkspaceBrandingConfig = {
207
+ [key: string]: unknown;
208
+ } | null;
209
+ export type V3WorkspacesControllerUpdateWorkspace200DataWorkspace = {
210
+ /** @nullable */
211
+ brandingConfig?: V3WorkspacesControllerUpdateWorkspace200DataWorkspaceBrandingConfig;
212
+ /** @nullable */
213
+ description?: string | null;
214
+ /** @nullable */
215
+ icon?: string | null;
216
+ id?: string;
217
+ /** @nullable */
218
+ industry?: string | null;
219
+ name?: string;
220
+ slug?: string;
221
+ updatedAt?: string;
222
+ };
223
+ export type V3WorkspacesControllerUpdateWorkspace200Data = {
224
+ workspace?: V3WorkspacesControllerUpdateWorkspace200DataWorkspace;
225
+ };
226
+ /**
227
+ * @nullable
228
+ */
229
+ export type V3WorkspacesControllerGetWorkspaceBySlug200DataWorkspaceBrandingConfig = {
230
+ [key: string]: unknown;
231
+ } | null;
232
+ export type V3WorkspacesControllerGetWorkspaceBySlug200DataWorkspace = {
233
+ /** @nullable */
234
+ brandingConfig?: V3WorkspacesControllerGetWorkspaceBySlug200DataWorkspaceBrandingConfig;
235
+ createdAt?: string;
236
+ /** @nullable */
237
+ description?: string | null;
238
+ /** @nullable */
239
+ icon?: string | null;
240
+ id?: string;
241
+ /** @nullable */
242
+ industry?: string | null;
243
+ name?: string;
244
+ slug?: string;
245
+ };
246
+ export type V3WorkspacesControllerGetWorkspaceBySlug200Data = {
247
+ workspace?: V3WorkspacesControllerGetWorkspaceBySlug200DataWorkspace;
248
+ };
249
+ export type V3WorkspacesControllerGetWorkspaceBySlug200 = {
250
+ data?: V3WorkspacesControllerGetWorkspaceBySlug200Data;
251
+ success?: boolean;
252
+ timestamp?: string;
253
+ };
254
+ export type V3WorkspacesControllerProvisionWorkspace201DataWorkspace = {
255
+ id?: string;
256
+ name?: string;
257
+ slug?: string;
258
+ };
259
+ export type V3WorkspacesControllerProvisionWorkspace201DataBot = {
260
+ clientId?: string;
261
+ clientSecret?: string;
262
+ id?: string;
263
+ };
264
+ export type V3WorkspacesControllerProvisionWorkspace201Data = {
265
+ bot?: V3WorkspacesControllerProvisionWorkspace201DataBot;
266
+ workspace?: V3WorkspacesControllerProvisionWorkspace201DataWorkspace;
267
+ };
268
+ export type V3WorkspacesControllerProvisionWorkspace201 = {
269
+ data?: V3WorkspacesControllerProvisionWorkspace201Data;
270
+ success?: boolean;
271
+ timestamp?: string;
272
+ };
273
+ export type V3WorkspacesControllerGetWorkspaces200DataWorkspacesItem = {
274
+ createdAt?: string;
275
+ /** @nullable */
276
+ description?: string | null;
277
+ id?: string;
278
+ name?: string;
279
+ slug?: string;
280
+ };
281
+ export type V3WorkspacesControllerGetWorkspaces200Data = {
282
+ workspaces?: V3WorkspacesControllerGetWorkspaces200DataWorkspacesItem[];
283
+ };
284
+ export type V3WorkspacesControllerGetWorkspaces200 = {
285
+ data?: V3WorkspacesControllerGetWorkspaces200Data;
286
+ success?: boolean;
287
+ timestamp?: string;
288
+ };
289
+ export type V3OAuthControllerGetToken200Data = {
290
+ access_token?: string;
291
+ expires_in?: number;
292
+ scope?: string;
293
+ token_type?: string;
294
+ };
295
+ export type V3OAuthControllerGetToken200 = {
296
+ data?: V3OAuthControllerGetToken200Data;
297
+ success?: boolean;
298
+ timestamp?: string;
299
+ };
300
+ export type V10ChannelsControllerGetMessagesParams = {
301
+ limit?: number;
302
+ before?: string;
303
+ after?: string;
304
+ };
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
+ export type UsersControllerDeleteDeviceTokenParams = {
388
+ token: string;
389
+ };
390
+ export type UsersControllerRegisterDeviceTokenBodyPlatform = typeof UsersControllerRegisterDeviceTokenBodyPlatform[keyof typeof UsersControllerRegisterDeviceTokenBodyPlatform];
391
+ export declare const UsersControllerRegisterDeviceTokenBodyPlatform: {
392
+ readonly web: "web";
393
+ readonly ios: "ios";
394
+ readonly android: "android";
395
+ readonly desktop: "desktop";
396
+ };
397
+ export type UsersControllerRegisterDeviceTokenBodyDeviceInfo = {
398
+ [key: string]: unknown;
399
+ };
400
+ export type UsersControllerRegisterDeviceTokenBody = {
401
+ deviceInfo?: UsersControllerRegisterDeviceTokenBodyDeviceInfo;
402
+ platform: UsersControllerRegisterDeviceTokenBodyPlatform;
403
+ token: string;
404
+ };
405
+ export type UsersControllerSearchUsersParams = {
406
+ query: string;
407
+ };
408
+ export type CreateScheduledNotificationDtoScheduleType = typeof CreateScheduledNotificationDtoScheduleType[keyof typeof CreateScheduledNotificationDtoScheduleType];
409
+ export declare const CreateScheduledNotificationDtoScheduleType: {
410
+ readonly custom: "custom";
411
+ readonly once: "once";
412
+ readonly daily: "daily";
413
+ readonly weekly: "weekly";
414
+ readonly monthly: "monthly";
415
+ };
416
+ export type CreateScheduledNotificationDtoRecurrence = {
417
+ [key: string]: unknown;
418
+ };
419
+ export type CreateScheduledNotificationDtoMetadata = {
420
+ [key: string]: unknown;
421
+ };
422
+ export type CreateScheduledNotificationDtoEntityType = typeof CreateScheduledNotificationDtoEntityType[keyof typeof CreateScheduledNotificationDtoEntityType];
423
+ export declare const CreateScheduledNotificationDtoEntityType: {
424
+ readonly channel: "channel";
425
+ };
426
+ export interface CreateScheduledNotificationDto {
427
+ entityId?: string;
428
+ entityType?: CreateScheduledNotificationDtoEntityType;
429
+ linkUrl?: string;
430
+ message: string;
431
+ metadata?: CreateScheduledNotificationDtoMetadata;
432
+ recurrence?: CreateScheduledNotificationDtoRecurrence;
433
+ /** ISO format datetime */
434
+ scheduledFor: string;
435
+ scheduleType: CreateScheduledNotificationDtoScheduleType;
436
+ title: string;
437
+ }
438
+ export interface UpdateWorkspaceWebhookDto {
439
+ active?: boolean;
440
+ }
441
+ export interface CreateWorkspaceWebhookDto {
442
+ events: string[];
443
+ name: string;
444
+ url: string;
445
+ }
446
+ export type CreateApiTokenDtoPermissionsActionsItem = typeof CreateApiTokenDtoPermissionsActionsItem[keyof typeof CreateApiTokenDtoPermissionsActionsItem];
447
+ export declare const CreateApiTokenDtoPermissionsActionsItem: {
448
+ readonly 'read:members': "read:members";
449
+ readonly 'write:members': "write:members";
450
+ readonly 'read:departments': "read:departments";
451
+ readonly 'write:departments': "write:departments";
452
+ readonly 'read:teams': "read:teams";
453
+ readonly 'write:teams': "write:teams";
454
+ readonly 'read:announcements': "read:announcements";
455
+ readonly 'write:announcements': "write:announcements";
456
+ readonly 'read:channels': "read:channels";
457
+ readonly 'write:channels': "write:channels";
458
+ readonly 'send:messages': "send:messages";
459
+ };
460
+ export type CreateApiTokenDtoPermissions = {
461
+ actions?: CreateApiTokenDtoPermissionsActionsItem[];
462
+ departments?: string[];
463
+ teams?: string[];
464
+ };
465
+ export interface CreateApiTokenDto {
466
+ /** ISO format datetime */
467
+ expiresAt?: string;
468
+ name: string;
469
+ permissions: CreateApiTokenDtoPermissions;
470
+ rateLimit?: number;
471
+ }
472
+ export interface CreateInviteLinkDto {
473
+ /** Expiration date in ISO format */
474
+ expiresAt?: string;
475
+ /** Maximum uses, 0 for unlimited */
476
+ maxUses?: number;
477
+ }
478
+ export interface CreateEmojiDto {
479
+ imageUrl: string;
480
+ name: string;
481
+ shortcode: string;
482
+ }
483
+ export interface AddReactionDto {
484
+ customEmojiId?: string;
485
+ emoji: string;
486
+ }
487
+ export interface MarkMessagesAsReadDto {
488
+ messageIds: string[];
489
+ }
490
+ export interface UpdateMessageDto {
491
+ content: string;
492
+ }
493
+ export type CreateMessageDtoMetadata = {
494
+ [key: string]: unknown;
495
+ };
496
+ export type CreateMessageDtoAttachmentsItem = {
497
+ [key: string]: unknown;
498
+ };
499
+ export interface CreateMessageDto {
500
+ attachments?: CreateMessageDtoAttachmentsItem[];
501
+ content: string;
502
+ metadata?: CreateMessageDtoMetadata;
503
+ replyToId?: string;
504
+ stickerId?: string;
505
+ threadId?: string;
506
+ }
507
+ export interface AddTeamMemberDto {
508
+ role?: string;
509
+ userId: string;
510
+ }
511
+ export interface CreateWorkspaceTeamDto {
512
+ color?: string;
513
+ createChannel?: boolean;
514
+ departmentId?: string;
515
+ description?: string;
516
+ icon?: string;
517
+ leadId?: string;
518
+ memberIds?: string[];
519
+ name: string;
520
+ slug: string;
521
+ }
522
+ export type CreateDepartmentAnnouncementDtoPriority = typeof CreateDepartmentAnnouncementDtoPriority[keyof typeof CreateDepartmentAnnouncementDtoPriority];
523
+ export declare const CreateDepartmentAnnouncementDtoPriority: {
524
+ readonly low: "low";
525
+ readonly normal: "normal";
526
+ readonly high: "high";
527
+ readonly urgent: "urgent";
528
+ };
529
+ export type CreateDepartmentAnnouncementDtoAttachmentsItem = {
530
+ [key: string]: unknown;
531
+ };
532
+ export interface TargetAudienceDto {
533
+ departments?: string[];
534
+ roles?: string[];
535
+ teams?: string[];
536
+ }
537
+ export interface CreateDepartmentAnnouncementDto {
538
+ attachments?: CreateDepartmentAnnouncementDtoAttachmentsItem[];
539
+ content: string;
540
+ /** ISO format datetime */
541
+ expiresAt?: string;
542
+ pinned?: boolean;
543
+ priority?: CreateDepartmentAnnouncementDtoPriority;
544
+ /** ISO format datetime */
545
+ publishAt?: string;
546
+ targetAudience?: TargetAudienceDto;
547
+ title: string;
548
+ }
549
+ export type UpdateWorkspaceDepartmentDtoSettings = {
550
+ [key: string]: unknown;
551
+ };
552
+ /**
553
+ * @nullable
554
+ */
555
+ export type UpdateWorkspaceDepartmentDtoParentId = {
556
+ [key: string]: unknown;
557
+ } | null;
558
+ /**
559
+ * @nullable
560
+ */
561
+ export type UpdateWorkspaceDepartmentDtoManagerId = {
562
+ [key: string]: unknown;
563
+ } | null;
564
+ export interface UpdateWorkspaceDepartmentDto {
565
+ color?: string;
566
+ description?: string;
567
+ icon?: string;
568
+ /** @nullable */
569
+ managerId?: UpdateWorkspaceDepartmentDtoManagerId;
570
+ name?: string;
571
+ /** @nullable */
572
+ parentId?: UpdateWorkspaceDepartmentDtoParentId;
573
+ settings?: UpdateWorkspaceDepartmentDtoSettings;
574
+ }
575
+ export type CreateWorkspaceDepartmentDtoSettings = {
576
+ [key: string]: unknown;
577
+ };
578
+ export interface CreateWorkspaceDepartmentDto {
579
+ color?: string;
580
+ createChannel?: boolean;
581
+ description?: string;
582
+ icon?: string;
583
+ managerId?: string;
584
+ name: string;
585
+ parentId?: string;
586
+ settings?: CreateWorkspaceDepartmentDtoSettings;
587
+ slug: string;
588
+ }
589
+ export type UpdateWorkspaceChannelDtoType = typeof UpdateWorkspaceChannelDtoType[keyof typeof UpdateWorkspaceChannelDtoType];
590
+ export declare const UpdateWorkspaceChannelDtoType: {
591
+ readonly public: "public";
592
+ readonly private: "private";
593
+ };
594
+ export interface UpdateWorkspaceChannelDto {
595
+ description?: string;
596
+ icon?: string;
597
+ name?: string;
598
+ type?: UpdateWorkspaceChannelDtoType;
599
+ }
600
+ export type CreateWorkspaceChannelDtoType = typeof CreateWorkspaceChannelDtoType[keyof typeof CreateWorkspaceChannelDtoType];
601
+ export declare const CreateWorkspaceChannelDtoType: {
602
+ readonly public: "public";
603
+ readonly private: "private";
604
+ };
605
+ export interface CreateWorkspaceChannelDto {
606
+ departmentId?: string;
607
+ description?: string;
608
+ icon?: string;
609
+ name: string;
610
+ type?: CreateWorkspaceChannelDtoType;
611
+ }
612
+ export type UpdateMemberRoleDtoRole = typeof UpdateMemberRoleDtoRole[keyof typeof UpdateMemberRoleDtoRole];
613
+ export declare const UpdateMemberRoleDtoRole: {
614
+ readonly owner: "owner";
615
+ readonly admin: "admin";
616
+ readonly moderator: "moderator";
617
+ readonly member: "member";
618
+ readonly guest: "guest";
619
+ };
620
+ export interface UpdateMemberRoleDto {
621
+ role: UpdateMemberRoleDtoRole;
622
+ }
623
+ export type UpdateWorkspaceDtoSettings = {
624
+ [key: string]: unknown;
625
+ };
626
+ export type UpdateWorkspaceDtoPlan = typeof UpdateWorkspaceDtoPlan[keyof typeof UpdateWorkspaceDtoPlan];
627
+ export declare const UpdateWorkspaceDtoPlan: {
628
+ readonly free: "free";
629
+ readonly pro: "pro";
630
+ readonly enterprise: "enterprise";
631
+ };
632
+ export type UpdateWorkspaceDtoBrandingConfig = {
633
+ [key: string]: unknown;
634
+ };
635
+ export interface UpdateWorkspaceDto {
636
+ brandingConfig?: UpdateWorkspaceDtoBrandingConfig;
637
+ customDomain?: string;
638
+ description?: string;
639
+ icon?: string;
640
+ industry?: string;
641
+ isPublic?: boolean;
642
+ name?: string;
643
+ plan?: UpdateWorkspaceDtoPlan;
644
+ settings?: UpdateWorkspaceDtoSettings;
645
+ }
646
+ export interface CreateWorkspaceDto {
647
+ banner?: string;
648
+ description?: string;
649
+ icon?: string;
650
+ name: string;
651
+ slug?: string;
652
+ }
653
+ export type UpdateFriendRequestDtoAction = typeof UpdateFriendRequestDtoAction[keyof typeof UpdateFriendRequestDtoAction];
654
+ export declare const UpdateFriendRequestDtoAction: {
655
+ readonly accept: "accept";
656
+ readonly decline: "decline";
657
+ readonly cancel: "cancel";
658
+ };
659
+ export interface UpdateFriendRequestDto {
660
+ action: UpdateFriendRequestDtoAction;
661
+ }
662
+ export interface SendFriendRequestDto {
663
+ message?: string;
664
+ /** The ID of the user to send a request to */
665
+ receiverId: string;
666
+ }
667
+ export interface MarkAsReadDto {
668
+ messageIds: string[];
669
+ }
670
+ export interface UpdateDmMessageDto {
671
+ content: string;
672
+ }
673
+ export interface CreateDmDto {
674
+ /** The ID of the user to start a DM with */
675
+ userId: string;
676
+ }
677
+ export interface SoundboardSoundDto {
678
+ [key: string]: unknown;
679
+ }
680
+ export interface ScheduleCallDto {
681
+ [key: string]: unknown;
682
+ }
683
+ export interface UpdateCallDto {
684
+ [key: string]: unknown;
685
+ }
686
+ export type StartCallDtoType = typeof StartCallDtoType[keyof typeof StartCallDtoType];
687
+ export declare const StartCallDtoType: {
688
+ readonly voice: "voice";
689
+ readonly video: "video";
690
+ };
691
+ export interface StartCallDto {
692
+ type: StartCallDtoType;
693
+ }
694
+ export type CreateInvitationDtoPermissions = {
695
+ [key: string]: unknown;
696
+ };
697
+ export interface CreateInvitationDto {
698
+ channelId?: string;
699
+ email: string;
700
+ permissions?: CreateInvitationDtoPermissions;
701
+ role?: string;
702
+ workspaceId?: string;
703
+ }
704
+ export type ExecuteChannelIncomingWebhookDtoAttachmentsItem = {
705
+ [key: string]: unknown;
706
+ };
707
+ export interface ExecuteChannelIncomingWebhookDto {
708
+ attachments?: ExecuteChannelIncomingWebhookDtoAttachmentsItem[];
709
+ avatar?: string;
710
+ avatar_url?: string;
711
+ content: string;
712
+ name?: string;
713
+ username?: string;
714
+ }
715
+ export interface UpdateChannelIncomingWebhookDto {
716
+ description?: string;
717
+ isActive?: boolean;
718
+ name?: string;
719
+ }
720
+ export interface CreateChannelIncomingWebhookDto {
721
+ description?: string;
722
+ name: string;
723
+ }
724
+ export interface V3UpdateWebhookDto {
725
+ active?: boolean;
726
+ events?: string[];
727
+ name?: string;
728
+ url?: string;
729
+ }
730
+ export interface V3CreateWebhookDto {
731
+ active?: boolean;
732
+ events: string[];
733
+ name: string;
734
+ url: string;
735
+ }
736
+ export type V3UpdateMemberRoleDtoRole = typeof V3UpdateMemberRoleDtoRole[keyof typeof V3UpdateMemberRoleDtoRole];
737
+ export declare const V3UpdateMemberRoleDtoRole: {
738
+ readonly owner: "owner";
739
+ readonly admin: "admin";
740
+ readonly moderator: "moderator";
741
+ readonly member: "member";
742
+ readonly guest: "guest";
743
+ };
744
+ export interface V3UpdateMemberRoleDto {
745
+ role: V3UpdateMemberRoleDtoRole;
746
+ }
747
+ export interface V3AddMemberDto {
748
+ /** The email of the user to add */
749
+ email: string;
750
+ /** The role of the member */
751
+ role?: string;
752
+ }
753
+ /**
754
+ * Custom branding configuration
755
+ */
756
+ export type V3UpdateWorkspaceDtoBrandingConfig = {
757
+ [key: string]: unknown;
758
+ };
759
+ export interface V3UpdateWorkspaceDto {
760
+ /** Custom branding configuration */
761
+ brandingConfig?: V3UpdateWorkspaceDtoBrandingConfig;
762
+ /** A description for the workspace. */
763
+ description?: string;
764
+ /** Icon identifier or URL */
765
+ icon?: string;
766
+ /** The industry categorization of the workspace. */
767
+ industry?: string;
768
+ /** The display name of the workspace */
769
+ name?: string;
770
+ }
771
+ export type V3ProvisionWorkspaceDtoInitialMembersItemRole = typeof V3ProvisionWorkspaceDtoInitialMembersItemRole[keyof typeof V3ProvisionWorkspaceDtoInitialMembersItemRole];
772
+ export declare const V3ProvisionWorkspaceDtoInitialMembersItemRole: {
773
+ readonly admin: "admin";
774
+ readonly member: "member";
775
+ };
776
+ export type V3ProvisionWorkspaceDtoInitialMembersItem = {
777
+ email?: string;
778
+ role?: V3ProvisionWorkspaceDtoInitialMembersItemRole;
779
+ };
780
+ /**
781
+ * Custom branding configuration
782
+ */
783
+ export type V3ProvisionWorkspaceDtoBrandingConfig = {
784
+ [key: string]: unknown;
785
+ };
786
+ export interface V3ProvisionWorkspaceDto {
787
+ /** Custom branding configuration */
788
+ brandingConfig?: V3ProvisionWorkspaceDtoBrandingConfig;
789
+ /** Initial channels to create */
790
+ channels?: string[];
791
+ /** A description for the workspace. */
792
+ description?: string;
793
+ /** Icon identifier */
794
+ icon?: string;
795
+ /** The industry categorization of the workspace. */
796
+ industry?: string;
797
+ /** Initial members to add to the workspace */
798
+ initialMembers?: V3ProvisionWorkspaceDtoInitialMembersItem[];
799
+ /** The display name of the workspace */
800
+ name: string;
801
+ /** The email of the workspace owner. Must exist in the organization. */
802
+ ownerEmail: string;
803
+ /** Unique slug for the workspace URL */
804
+ slug: string;
805
+ }
806
+ /**
807
+ * The OAuth2 grant type. Must be client_credentials.
808
+ */
809
+ export type V3TokenRequestDtoGrantType = typeof V3TokenRequestDtoGrantType[keyof typeof V3TokenRequestDtoGrantType];
810
+ export declare const V3TokenRequestDtoGrantType: {
811
+ readonly client_credentials: "client_credentials";
812
+ };
813
+ export interface V3TokenRequestDto {
814
+ /** The unique Client ID for your M2M application. */
815
+ client_id: string;
816
+ /** The Client Secret for authentication. */
817
+ client_secret: string;
818
+ /** The OAuth2 grant type. Must be client_credentials. */
819
+ grant_type: V3TokenRequestDtoGrantType;
820
+ /** Space-separated list of scopes requested. */
821
+ scope?: string;
822
+ }
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
+ type SecondParameter<T extends (...args: any) => any> = Parameters<T>[1];
1145
+ export declare const getSkyrmeChatAPI: () => {
1146
+ appControllerGetHealth: (options?: SecondParameter<typeof customInstance>) => Promise<void>;
1147
+ appControllerGetHello: (options?: SecondParameter<typeof customInstance>) => Promise<void>;
1148
+ appControllerGetRealtimeConfig: (options?: SecondParameter<typeof customInstance>) => Promise<void>;
1149
+ usersControllerSearchUsers: (params: UsersControllerSearchUsersParams, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1150
+ usersControllerGetMe: (options?: SecondParameter<typeof customInstance>) => Promise<void>;
1151
+ usersControllerUpdateMe: (options?: SecondParameter<typeof customInstance>) => Promise<void>;
1152
+ usersControllerGetUser: (id: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1153
+ usersControllerGetSocialProfile: (id: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1154
+ usersControllerBlockUser: (id: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1155
+ usersControllerUnblockUser: (id: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1156
+ usersControllerRegisterDeviceToken: (usersControllerRegisterDeviceTokenBody: BodyType<UsersControllerRegisterDeviceTokenBody>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1157
+ usersControllerGetDeviceTokens: (options?: SecondParameter<typeof customInstance>) => Promise<void>;
1158
+ 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
+ v10UsersControllerGetUser: (id: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1245
+ v10UsersControllerGetMe: (options?: SecondParameter<typeof customInstance>) => Promise<void>;
1246
+ v10GatewayControllerGetBotGateway: (options?: SecondParameter<typeof customInstance>) => Promise<void>;
1247
+ v10GatewayControllerBotAuth: (options?: SecondParameter<typeof customInstance>) => Promise<void>;
1248
+ v10ChannelsControllerGetChannel: (id: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1249
+ v10ChannelsControllerCreateMessage: (id: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1250
+ v10ChannelsControllerGetMessages: (id: string, params?: V10ChannelsControllerGetMessagesParams, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1251
+ v10ChannelsControllerUpdateMessage: (id: string, messageId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1252
+ v10ChannelsControllerDeleteMessage: (id: string, messageId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1253
+ v10GuildsControllerGetGuild: (guildId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1254
+ v10GuildsControllerGetChannels: (guildId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1255
+ v10GuildsControllerGetMembers: (guildId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1256
+ v10GuildsControllerGetRoles: (guildId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1257
+ v10GuildsControllerAddMemberRole: (guildId: string, userId: string, roleId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1258
+ v10GuildsControllerRemoveMemberRole: (guildId: string, userId: string, roleId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1259
+ v10ApplicationsControllerGetCommands: (id: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1260
+ v10ApplicationsControllerCreateCommand: (id: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1261
+ v10ApplicationsControllerGetGuildCommands: (id: string, guildId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1262
+ v10ApplicationsControllerCreateGuildCommand: (id: string, guildId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1263
+ v10InteractionsControllerHandleCallback: (id: string, token: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1264
+ v10EnterpriseControllerCreateAnnouncement: (id: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1265
+ v3OAuthControllerGetToken: (v3TokenRequestDto: BodyType<V3TokenRequestDto>, options?: SecondParameter<typeof customInstance>) => Promise<V3OAuthControllerGetToken200>;
1266
+ v3WorkspacesControllerGetWorkspaces: (options?: SecondParameter<typeof customInstance>) => Promise<V3WorkspacesControllerGetWorkspaces200>;
1267
+ v3WorkspacesControllerProvisionWorkspace: (v3ProvisionWorkspaceDto: BodyType<V3ProvisionWorkspaceDto>, options?: SecondParameter<typeof customInstance>) => Promise<V3WorkspacesControllerProvisionWorkspace201>;
1268
+ v3WorkspacesControllerGetWorkspaceBySlug: (slug: string, options?: SecondParameter<typeof customInstance>) => Promise<V3WorkspacesControllerGetWorkspaceBySlug200>;
1269
+ v3WorkspacesControllerUpdateWorkspace: (slug: string, v3UpdateWorkspaceDto: BodyType<V3UpdateWorkspaceDto>, options?: SecondParameter<typeof customInstance>) => Promise<V3WorkspacesControllerUpdateWorkspace200>;
1270
+ v3WorkspacesControllerDeleteWorkspace: (slug: string, options?: SecondParameter<typeof customInstance>) => Promise<V3WorkspacesControllerDeleteWorkspace200>;
1271
+ v3WorkspacesControllerGetWorkspaceMembers: (slug: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1272
+ v3WorkspacesControllerAddWorkspaceMember: (slug: string, v3AddMemberDto: BodyType<V3AddMemberDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1273
+ v3WorkspacesControllerGetWorkspaceMember: (slug: string, userId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1274
+ v3WorkspacesControllerUpdateWorkspaceMember: (slug: string, userId: string, v3UpdateMemberRoleDto: BodyType<V3UpdateMemberRoleDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1275
+ v3WorkspacesControllerDeleteWorkspaceMember: (slug: string, userId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1276
+ v3WebhooksControllerGetWebhooks: (slug: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1277
+ v3WebhooksControllerCreateWebhook: (slug: string, v3CreateWebhookDto: BodyType<V3CreateWebhookDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1278
+ v3WebhooksControllerGetWebhook: (slug: string, webhookId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1279
+ v3WebhooksControllerUpdateWebhook: (slug: string, webhookId: string, v3UpdateWebhookDto: BodyType<V3UpdateWebhookDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1280
+ v3WebhooksControllerDeleteWebhook: (slug: string, webhookId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1281
+ v3ChannelIncomingWebhooksControllerGetChannelWebhooks: (slug: string, channelId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1282
+ v3ChannelIncomingWebhooksControllerCreateChannelWebhook: (slug: string, channelId: string, createChannelIncomingWebhookDto: BodyType<CreateChannelIncomingWebhookDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1283
+ v3ChannelIncomingWebhooksControllerGetChannelWebhook: (slug: string, channelId: string, webhookId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1284
+ v3ChannelIncomingWebhooksControllerUpdateChannelWebhook: (slug: string, channelId: string, webhookId: string, updateChannelIncomingWebhookDto: BodyType<UpdateChannelIncomingWebhookDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1285
+ v3ChannelIncomingWebhooksControllerDeleteChannelWebhook: (slug: string, channelId: string, webhookId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1286
+ v3ChannelIncomingWebhooksControllerExecuteWebhookByUrlToken: (token: string, executeChannelIncomingWebhookDto: BodyType<ExecuteChannelIncomingWebhookDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1287
+ v3ChannelIncomingWebhooksControllerExecuteWebhookByChannelId: (channelId: string, executeChannelIncomingWebhookDto: BodyType<ExecuteChannelIncomingWebhookDto>, params?: V3ChannelIncomingWebhooksControllerExecuteWebhookByChannelIdParams, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1288
+ invitationsControllerGetInvitations: (params?: InvitationsControllerGetInvitationsParams, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1289
+ invitationsControllerCreateInvitation: (createInvitationDto: BodyType<CreateInvitationDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1290
+ invitationsControllerGetInvitationByToken: (token: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1291
+ invitationsControllerAcceptInvitation: (token: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1292
+ callsControllerStartCall: (startCallDto: BodyType<StartCallDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1293
+ callsControllerUpdateCall: (callId: string, updateCallDto: BodyType<UpdateCallDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1294
+ callsControllerInviteToCall: (callId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1295
+ callsControllerGetParticipants: (callId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1296
+ callsControllerGetScheduledCalls: (params: CallsControllerGetScheduledCallsParams, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1297
+ callsControllerScheduleCall: (scheduleCallDto: BodyType<ScheduleCallDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1298
+ callsControllerPlaySoundboardSound: (soundboardSoundDto: BodyType<SoundboardSoundDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1299
+ channelsControllerGetGlobalChannels: (options?: SecondParameter<typeof customInstance>) => Promise<void>;
1300
+ channelsControllerCreateChannel: (slug: string, createWorkspaceChannelDto: BodyType<CreateWorkspaceChannelDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1301
+ channelsControllerGetMessages: (channelId: string, params?: ChannelsControllerGetMessagesParams, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1302
+ channelsControllerCreateMessage: (channelId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1303
+ channelsControllerUpdateMessage: (channelId: string, messageId: string, channelsControllerUpdateMessageBody: BodyType<ChannelsControllerUpdateMessageBody>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1304
+ channelsControllerDeleteMessage: (channelId: string, messageId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1305
+ channelsControllerMarkAsRead: (channelId: string, channelsControllerMarkAsReadBody: BodyType<ChannelsControllerMarkAsReadBody>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1306
+ channelsControllerAddReaction: (channelId: string, messageId: string, channelsControllerAddReactionBody: BodyType<ChannelsControllerAddReactionBody>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1307
+ channelsControllerRemoveReaction: (channelId: string, messageId: string, emoji: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1308
+ channelsControllerShareChannel: (channelId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1309
+ channelsControllerCreateReply: (channelId: string, messageId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1310
+ adminControllerGetStats: (options?: SecondParameter<typeof customInstance>) => Promise<void>;
1311
+ adminControllerGetMembers: (params: AdminControllerGetMembersParams, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1312
+ adminControllerUpdateMemberRole: (userId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1313
+ adminControllerGetAssets: (params: AdminControllerGetAssetsParams, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1314
+ adminControllerCreateAsset: (options?: SecondParameter<typeof customInstance>) => Promise<void>;
1315
+ adminControllerUpdateAsset: (options?: SecondParameter<typeof customInstance>) => Promise<void>;
1316
+ adminControllerDeleteAsset: (params: AdminControllerDeleteAssetParams, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1317
+ adminControllerGetProfileAssets: (options?: SecondParameter<typeof customInstance>) => Promise<void>;
1318
+ adminControllerCreateProfileAsset: (options?: SecondParameter<typeof customInstance>) => Promise<void>;
1319
+ adminControllerGetAssetStats: (params: AdminControllerGetAssetStatsParams, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1320
+ adminControllerUploadFile: (adminControllerUploadFileBody: BodyType<AdminControllerUploadFileBody>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1321
+ dmsControllerGetDms: (options?: SecondParameter<typeof customInstance>) => Promise<void>;
1322
+ dmsControllerCreateDm: (createDmDto: BodyType<CreateDmDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1323
+ dmsControllerGetDm: (conversationId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1324
+ dmsControllerDeleteDm: (conversationId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1325
+ dmsControllerGetMessages: (conversationId: string, params?: DmsControllerGetMessagesParams, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1326
+ dmsControllerCreateMessage: (conversationId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1327
+ dmsControllerUpdateMessage: (conversationId: string, messageId: string, updateDmMessageDto: BodyType<UpdateDmMessageDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1328
+ dmsControllerDeleteMessage: (conversationId: string, messageId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1329
+ dmsControllerMarkAsRead: (conversationId: string, markAsReadDto: BodyType<MarkAsReadDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1330
+ dmsControllerAddReaction: (conversationId: string, messageId: string, dmsControllerAddReactionBody: BodyType<DmsControllerAddReactionBody>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1331
+ dmsControllerRemoveReaction: (conversationId: string, messageId: string, emoji: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1332
+ friendsControllerGetFriends: (params?: FriendsControllerGetFriendsParams, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1333
+ friendsControllerGetFriendRequests: (params?: FriendsControllerGetFriendRequestsParams, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1334
+ friendsControllerSendFriendRequest: (sendFriendRequestDto: BodyType<SendFriendRequestDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1335
+ friendsControllerUpdateFriendRequest: (requestId: string, updateFriendRequestDto: BodyType<UpdateFriendRequestDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1336
+ friendsControllerDeleteFriendRequest: (requestId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1337
+ workspacesControllerGetWorkspaces: (options?: SecondParameter<typeof customInstance>) => Promise<void>;
1338
+ workspacesControllerCreateWorkspace: (createWorkspaceDto: BodyType<CreateWorkspaceDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1339
+ workspacesControllerGetWorkspaceRoles: (options?: SecondParameter<typeof customInstance>) => Promise<void>;
1340
+ workspacesControllerGetWorkspaceSlugRoles: (slug: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1341
+ workspacesControllerDiscoverWorkspaces: (params?: WorkspacesControllerDiscoverWorkspacesParams, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1342
+ workspacesControllerJoinWorkspace: (slug: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1343
+ workspacesControllerGetWorkspaceBySlug: (slug: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1344
+ workspacesControllerUpdateWorkspaceBySlug: (slug: string, updateWorkspaceDto: BodyType<UpdateWorkspaceDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1345
+ workspacesControllerDeleteWorkspaceBySlug: (slug: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1346
+ membersControllerGetWorkspaceMembers: (slug: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1347
+ membersControllerUpdateMember: (slug: string, memberId: string, updateMemberRoleDto: BodyType<UpdateMemberRoleDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1348
+ membersControllerRemoveMember: (slug: string, memberId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1349
+ channelsControllerGetWorkspaceChannels: (slug: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1350
+ channelsControllerGetChannel: (slug: string, channelId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1351
+ channelsControllerUpdateChannel: (slug: string, channelId: string, updateWorkspaceChannelDto: BodyType<UpdateWorkspaceChannelDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1352
+ channelsControllerDeleteChannel: (slug: string, channelId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1353
+ departmentsControllerGetDepartments: (slug: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1354
+ departmentsControllerCreateDepartment: (slug: string, createWorkspaceDepartmentDto: BodyType<CreateWorkspaceDepartmentDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1355
+ departmentsControllerGetDepartment: (slug: string, departmentId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1356
+ departmentsControllerUpdateDepartment: (slug: string, departmentId: string, updateWorkspaceDepartmentDto: BodyType<UpdateWorkspaceDepartmentDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1357
+ departmentsControllerDeleteDepartment: (slug: string, departmentId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1358
+ departmentsControllerGetAnnouncements: (slug: string, departmentId: string, params?: DepartmentsControllerGetAnnouncementsParams, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1359
+ departmentsControllerCreateAnnouncement: (slug: string, departmentId: string, createDepartmentAnnouncementDto: BodyType<CreateDepartmentAnnouncementDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1360
+ teamsControllerGetTeams: (slug: string, params?: TeamsControllerGetTeamsParams, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1361
+ teamsControllerCreateTeam: (slug: string, createWorkspaceTeamDto: BodyType<CreateWorkspaceTeamDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1362
+ teamsControllerAddMember: (slug: string, teamId: string, addTeamMemberDto: BodyType<AddTeamMemberDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1363
+ teamsControllerRemoveMember: (slug: string, teamId: string, userId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1364
+ messagesControllerGetMessages: (slug: string, channelId: string, params?: MessagesControllerGetMessagesParams, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1365
+ messagesControllerCreateMessage: (slug: string, channelId: string, createMessageDto: BodyType<CreateMessageDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1366
+ messagesControllerUpdateMessage: (slug: string, channelId: string, messageId: string, updateMessageDto: BodyType<UpdateMessageDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1367
+ messagesControllerDeleteMessage: (slug: string, channelId: string, messageId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1368
+ messagesControllerMarkAsRead: (slug: string, channelId: string, markMessagesAsReadDto: BodyType<MarkMessagesAsReadDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1369
+ messagesControllerAddReaction: (slug: string, channelId: string, messageId: string, addReactionDto: BodyType<AddReactionDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1370
+ messagesControllerRemoveReaction: (slug: string, channelId: string, messageId: string, emoji: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1371
+ messagesControllerCreateReply: (slug: string, channelId: string, messageId: string, createMessageDto: BodyType<CreateMessageDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1372
+ emojisControllerGetEmojis: (slug: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1373
+ emojisControllerCreateEmoji: (slug: string, createEmojiDto: BodyType<CreateEmojiDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1374
+ auditLogsControllerGetAuditLogs: (slug: string, params?: AuditLogsControllerGetAuditLogsParams, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1375
+ auditLogsControllerExportAuditLogs: (slug: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1376
+ inviteLinksControllerGetInviteLinks: (slug: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1377
+ inviteLinksControllerCreateInviteLink: (slug: string, createInviteLinkDto: BodyType<CreateInviteLinkDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1378
+ apiTokensControllerGetApiTokens: (slug: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1379
+ apiTokensControllerCreateApiToken: (slug: string, createApiTokenDto: BodyType<CreateApiTokenDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1380
+ apiTokensControllerDeleteApiToken: (slug: string, tokenId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1381
+ webhooksControllerGetWebhooks: (slug: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1382
+ webhooksControllerCreateWebhook: (slug: string, createWorkspaceWebhookDto: BodyType<CreateWorkspaceWebhookDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1383
+ webhooksControllerUpdateWebhook: (slug: string, webhookId: string, updateWorkspaceWebhookDto: BodyType<UpdateWorkspaceWebhookDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1384
+ webhooksControllerDeleteWebhook: (slug: string, webhookId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1385
+ callsControllerGetActiveCalls: (slug: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1386
+ searchControllerSearch: (slug: string, params: SearchControllerSearchParams, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1387
+ deviceAuthControllerGenerateQR: (options?: SecondParameter<typeof customInstance>) => Promise<void>;
1388
+ deviceAuthControllerCheckStatus: (deviceCode: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1389
+ deviceAuthControllerAuthorize: (options?: SecondParameter<typeof customInstance>) => Promise<void>;
1390
+ deviceAuthControllerDeny: (options?: SecondParameter<typeof customInstance>) => Promise<void>;
1391
+ androidAuthControllerGetProfile: (options?: SecondParameter<typeof customInstance>) => Promise<void>;
1392
+ androidAuthControllerChangePassword: (options?: SecondParameter<typeof customInstance>) => Promise<void>;
1393
+ androidAuthControllerCheckUsername: (params: AndroidAuthControllerCheckUsernameParams, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1394
+ androidAuthControllerLogin: (options?: SecondParameter<typeof customInstance>) => Promise<void>;
1395
+ androidAuthControllerSignup: (options?: SecondParameter<typeof customInstance>) => Promise<void>;
1396
+ androidAuthControllerGoogleLogin: (options?: SecondParameter<typeof customInstance>) => Promise<void>;
1397
+ androidAuthControllerGithubLogin: (options?: SecondParameter<typeof customInstance>) => Promise<void>;
1398
+ androidAuthControllerRefresh: (options?: SecondParameter<typeof customInstance>) => Promise<void>;
1399
+ scheduledNotificationsControllerGetNotifications: (params?: ScheduledNotificationsControllerGetNotificationsParams, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1400
+ scheduledNotificationsControllerCreateNotification: (createScheduledNotificationDto: BodyType<CreateScheduledNotificationDto>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1401
+ scheduledNotificationsControllerUpdateNotification: (id: string, scheduledNotificationsControllerUpdateNotificationBody: BodyType<ScheduledNotificationsControllerUpdateNotificationBody>, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1402
+ scheduledNotificationsControllerDeleteNotification: (id: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1403
+ assetsControllerGetEligibleAssets: (options?: SecondParameter<typeof customInstance>) => Promise<void>;
1404
+ supportControllerCreateTicket: (options?: SecondParameter<typeof customInstance>) => Promise<void>;
1405
+ supportControllerGetTickets: (params: SupportControllerGetTicketsParams, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1406
+ supportControllerStartLiveChat: (options?: SecondParameter<typeof customInstance>) => Promise<void>;
1407
+ supportControllerEndLiveChat: (sessionId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1408
+ supportControllerUpdateTicketStatus: (ticketId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1409
+ supportControllerAssignTicket: (ticketId: string, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1410
+ supportControllerCreateCustomerProfile: (options?: SecondParameter<typeof customInstance>) => Promise<void>;
1411
+ supportControllerGetCustomerProfiles: (params: SupportControllerGetCustomerProfilesParams, options?: SecondParameter<typeof customInstance>) => Promise<void>;
1412
+ };
1413
+ export type AppControllerGetHealthResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['appControllerGetHealth']>>>;
1414
+ export type AppControllerGetHelloResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['appControllerGetHello']>>>;
1415
+ export type AppControllerGetRealtimeConfigResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['appControllerGetRealtimeConfig']>>>;
1416
+ export type UsersControllerSearchUsersResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['usersControllerSearchUsers']>>>;
1417
+ export type UsersControllerGetMeResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['usersControllerGetMe']>>>;
1418
+ export type UsersControllerUpdateMeResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['usersControllerUpdateMe']>>>;
1419
+ export type UsersControllerGetUserResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['usersControllerGetUser']>>>;
1420
+ export type UsersControllerGetSocialProfileResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['usersControllerGetSocialProfile']>>>;
1421
+ export type UsersControllerBlockUserResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['usersControllerBlockUser']>>>;
1422
+ export type UsersControllerUnblockUserResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['usersControllerUnblockUser']>>>;
1423
+ export type UsersControllerRegisterDeviceTokenResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['usersControllerRegisterDeviceToken']>>>;
1424
+ export type UsersControllerGetDeviceTokensResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['usersControllerGetDeviceTokens']>>>;
1425
+ 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
+ export type V10UsersControllerGetUserResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v10UsersControllerGetUser']>>>;
1512
+ export type V10UsersControllerGetMeResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v10UsersControllerGetMe']>>>;
1513
+ export type V10GatewayControllerGetBotGatewayResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v10GatewayControllerGetBotGateway']>>>;
1514
+ export type V10GatewayControllerBotAuthResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v10GatewayControllerBotAuth']>>>;
1515
+ export type V10ChannelsControllerGetChannelResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v10ChannelsControllerGetChannel']>>>;
1516
+ export type V10ChannelsControllerCreateMessageResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v10ChannelsControllerCreateMessage']>>>;
1517
+ export type V10ChannelsControllerGetMessagesResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v10ChannelsControllerGetMessages']>>>;
1518
+ export type V10ChannelsControllerUpdateMessageResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v10ChannelsControllerUpdateMessage']>>>;
1519
+ export type V10ChannelsControllerDeleteMessageResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v10ChannelsControllerDeleteMessage']>>>;
1520
+ export type V10GuildsControllerGetGuildResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v10GuildsControllerGetGuild']>>>;
1521
+ export type V10GuildsControllerGetChannelsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v10GuildsControllerGetChannels']>>>;
1522
+ export type V10GuildsControllerGetMembersResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v10GuildsControllerGetMembers']>>>;
1523
+ export type V10GuildsControllerGetRolesResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v10GuildsControllerGetRoles']>>>;
1524
+ export type V10GuildsControllerAddMemberRoleResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v10GuildsControllerAddMemberRole']>>>;
1525
+ export type V10GuildsControllerRemoveMemberRoleResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v10GuildsControllerRemoveMemberRole']>>>;
1526
+ export type V10ApplicationsControllerGetCommandsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v10ApplicationsControllerGetCommands']>>>;
1527
+ export type V10ApplicationsControllerCreateCommandResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v10ApplicationsControllerCreateCommand']>>>;
1528
+ export type V10ApplicationsControllerGetGuildCommandsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v10ApplicationsControllerGetGuildCommands']>>>;
1529
+ export type V10ApplicationsControllerCreateGuildCommandResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v10ApplicationsControllerCreateGuildCommand']>>>;
1530
+ export type V10InteractionsControllerHandleCallbackResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v10InteractionsControllerHandleCallback']>>>;
1531
+ export type V10EnterpriseControllerCreateAnnouncementResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v10EnterpriseControllerCreateAnnouncement']>>>;
1532
+ export type V3OAuthControllerGetTokenResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v3OAuthControllerGetToken']>>>;
1533
+ export type V3WorkspacesControllerGetWorkspacesResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v3WorkspacesControllerGetWorkspaces']>>>;
1534
+ export type V3WorkspacesControllerProvisionWorkspaceResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v3WorkspacesControllerProvisionWorkspace']>>>;
1535
+ export type V3WorkspacesControllerGetWorkspaceBySlugResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v3WorkspacesControllerGetWorkspaceBySlug']>>>;
1536
+ export type V3WorkspacesControllerUpdateWorkspaceResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v3WorkspacesControllerUpdateWorkspace']>>>;
1537
+ export type V3WorkspacesControllerDeleteWorkspaceResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v3WorkspacesControllerDeleteWorkspace']>>>;
1538
+ export type V3WorkspacesControllerGetWorkspaceMembersResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v3WorkspacesControllerGetWorkspaceMembers']>>>;
1539
+ export type V3WorkspacesControllerAddWorkspaceMemberResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v3WorkspacesControllerAddWorkspaceMember']>>>;
1540
+ export type V3WorkspacesControllerGetWorkspaceMemberResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v3WorkspacesControllerGetWorkspaceMember']>>>;
1541
+ export type V3WorkspacesControllerUpdateWorkspaceMemberResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v3WorkspacesControllerUpdateWorkspaceMember']>>>;
1542
+ export type V3WorkspacesControllerDeleteWorkspaceMemberResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v3WorkspacesControllerDeleteWorkspaceMember']>>>;
1543
+ export type V3WebhooksControllerGetWebhooksResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v3WebhooksControllerGetWebhooks']>>>;
1544
+ export type V3WebhooksControllerCreateWebhookResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v3WebhooksControllerCreateWebhook']>>>;
1545
+ export type V3WebhooksControllerGetWebhookResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v3WebhooksControllerGetWebhook']>>>;
1546
+ export type V3WebhooksControllerUpdateWebhookResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v3WebhooksControllerUpdateWebhook']>>>;
1547
+ export type V3WebhooksControllerDeleteWebhookResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v3WebhooksControllerDeleteWebhook']>>>;
1548
+ export type V3ChannelIncomingWebhooksControllerGetChannelWebhooksResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v3ChannelIncomingWebhooksControllerGetChannelWebhooks']>>>;
1549
+ export type V3ChannelIncomingWebhooksControllerCreateChannelWebhookResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v3ChannelIncomingWebhooksControllerCreateChannelWebhook']>>>;
1550
+ export type V3ChannelIncomingWebhooksControllerGetChannelWebhookResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v3ChannelIncomingWebhooksControllerGetChannelWebhook']>>>;
1551
+ export type V3ChannelIncomingWebhooksControllerUpdateChannelWebhookResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v3ChannelIncomingWebhooksControllerUpdateChannelWebhook']>>>;
1552
+ export type V3ChannelIncomingWebhooksControllerDeleteChannelWebhookResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v3ChannelIncomingWebhooksControllerDeleteChannelWebhook']>>>;
1553
+ export type V3ChannelIncomingWebhooksControllerExecuteWebhookByUrlTokenResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v3ChannelIncomingWebhooksControllerExecuteWebhookByUrlToken']>>>;
1554
+ export type V3ChannelIncomingWebhooksControllerExecuteWebhookByChannelIdResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['v3ChannelIncomingWebhooksControllerExecuteWebhookByChannelId']>>>;
1555
+ export type InvitationsControllerGetInvitationsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['invitationsControllerGetInvitations']>>>;
1556
+ export type InvitationsControllerCreateInvitationResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['invitationsControllerCreateInvitation']>>>;
1557
+ export type InvitationsControllerGetInvitationByTokenResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['invitationsControllerGetInvitationByToken']>>>;
1558
+ export type InvitationsControllerAcceptInvitationResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['invitationsControllerAcceptInvitation']>>>;
1559
+ export type CallsControllerStartCallResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['callsControllerStartCall']>>>;
1560
+ export type CallsControllerUpdateCallResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['callsControllerUpdateCall']>>>;
1561
+ export type CallsControllerInviteToCallResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['callsControllerInviteToCall']>>>;
1562
+ export type CallsControllerGetParticipantsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['callsControllerGetParticipants']>>>;
1563
+ export type CallsControllerGetScheduledCallsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['callsControllerGetScheduledCalls']>>>;
1564
+ export type CallsControllerScheduleCallResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['callsControllerScheduleCall']>>>;
1565
+ export type CallsControllerPlaySoundboardSoundResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['callsControllerPlaySoundboardSound']>>>;
1566
+ export type ChannelsControllerGetGlobalChannelsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['channelsControllerGetGlobalChannels']>>>;
1567
+ export type ChannelsControllerCreateChannelResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['channelsControllerCreateChannel']>>>;
1568
+ export type ChannelsControllerGetMessagesResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['channelsControllerGetMessages']>>>;
1569
+ export type ChannelsControllerCreateMessageResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['channelsControllerCreateMessage']>>>;
1570
+ export type ChannelsControllerUpdateMessageResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['channelsControllerUpdateMessage']>>>;
1571
+ export type ChannelsControllerDeleteMessageResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['channelsControllerDeleteMessage']>>>;
1572
+ export type ChannelsControllerMarkAsReadResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['channelsControllerMarkAsRead']>>>;
1573
+ export type ChannelsControllerAddReactionResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['channelsControllerAddReaction']>>>;
1574
+ export type ChannelsControllerRemoveReactionResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['channelsControllerRemoveReaction']>>>;
1575
+ export type ChannelsControllerShareChannelResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['channelsControllerShareChannel']>>>;
1576
+ export type ChannelsControllerCreateReplyResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['channelsControllerCreateReply']>>>;
1577
+ export type AdminControllerGetStatsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['adminControllerGetStats']>>>;
1578
+ export type AdminControllerGetMembersResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['adminControllerGetMembers']>>>;
1579
+ export type AdminControllerUpdateMemberRoleResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['adminControllerUpdateMemberRole']>>>;
1580
+ export type AdminControllerGetAssetsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['adminControllerGetAssets']>>>;
1581
+ export type AdminControllerCreateAssetResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['adminControllerCreateAsset']>>>;
1582
+ export type AdminControllerUpdateAssetResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['adminControllerUpdateAsset']>>>;
1583
+ export type AdminControllerDeleteAssetResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['adminControllerDeleteAsset']>>>;
1584
+ export type AdminControllerGetProfileAssetsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['adminControllerGetProfileAssets']>>>;
1585
+ export type AdminControllerCreateProfileAssetResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['adminControllerCreateProfileAsset']>>>;
1586
+ export type AdminControllerGetAssetStatsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['adminControllerGetAssetStats']>>>;
1587
+ export type AdminControllerUploadFileResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['adminControllerUploadFile']>>>;
1588
+ export type DmsControllerGetDmsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['dmsControllerGetDms']>>>;
1589
+ export type DmsControllerCreateDmResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['dmsControllerCreateDm']>>>;
1590
+ export type DmsControllerGetDmResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['dmsControllerGetDm']>>>;
1591
+ export type DmsControllerDeleteDmResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['dmsControllerDeleteDm']>>>;
1592
+ export type DmsControllerGetMessagesResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['dmsControllerGetMessages']>>>;
1593
+ export type DmsControllerCreateMessageResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['dmsControllerCreateMessage']>>>;
1594
+ export type DmsControllerUpdateMessageResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['dmsControllerUpdateMessage']>>>;
1595
+ export type DmsControllerDeleteMessageResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['dmsControllerDeleteMessage']>>>;
1596
+ export type DmsControllerMarkAsReadResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['dmsControllerMarkAsRead']>>>;
1597
+ export type DmsControllerAddReactionResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['dmsControllerAddReaction']>>>;
1598
+ export type DmsControllerRemoveReactionResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['dmsControllerRemoveReaction']>>>;
1599
+ export type FriendsControllerGetFriendsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['friendsControllerGetFriends']>>>;
1600
+ export type FriendsControllerGetFriendRequestsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['friendsControllerGetFriendRequests']>>>;
1601
+ export type FriendsControllerSendFriendRequestResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['friendsControllerSendFriendRequest']>>>;
1602
+ export type FriendsControllerUpdateFriendRequestResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['friendsControllerUpdateFriendRequest']>>>;
1603
+ export type FriendsControllerDeleteFriendRequestResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['friendsControllerDeleteFriendRequest']>>>;
1604
+ export type WorkspacesControllerGetWorkspacesResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['workspacesControllerGetWorkspaces']>>>;
1605
+ export type WorkspacesControllerCreateWorkspaceResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['workspacesControllerCreateWorkspace']>>>;
1606
+ export type WorkspacesControllerGetWorkspaceRolesResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['workspacesControllerGetWorkspaceRoles']>>>;
1607
+ export type WorkspacesControllerGetWorkspaceSlugRolesResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['workspacesControllerGetWorkspaceSlugRoles']>>>;
1608
+ export type WorkspacesControllerDiscoverWorkspacesResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['workspacesControllerDiscoverWorkspaces']>>>;
1609
+ export type WorkspacesControllerJoinWorkspaceResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['workspacesControllerJoinWorkspace']>>>;
1610
+ export type WorkspacesControllerGetWorkspaceBySlugResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['workspacesControllerGetWorkspaceBySlug']>>>;
1611
+ export type WorkspacesControllerUpdateWorkspaceBySlugResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['workspacesControllerUpdateWorkspaceBySlug']>>>;
1612
+ export type WorkspacesControllerDeleteWorkspaceBySlugResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['workspacesControllerDeleteWorkspaceBySlug']>>>;
1613
+ export type MembersControllerGetWorkspaceMembersResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['membersControllerGetWorkspaceMembers']>>>;
1614
+ export type MembersControllerUpdateMemberResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['membersControllerUpdateMember']>>>;
1615
+ export type MembersControllerRemoveMemberResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['membersControllerRemoveMember']>>>;
1616
+ export type ChannelsControllerGetWorkspaceChannelsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['channelsControllerGetWorkspaceChannels']>>>;
1617
+ export type ChannelsControllerGetChannelResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['channelsControllerGetChannel']>>>;
1618
+ export type ChannelsControllerUpdateChannelResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['channelsControllerUpdateChannel']>>>;
1619
+ export type ChannelsControllerDeleteChannelResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['channelsControllerDeleteChannel']>>>;
1620
+ export type DepartmentsControllerGetDepartmentsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['departmentsControllerGetDepartments']>>>;
1621
+ export type DepartmentsControllerCreateDepartmentResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['departmentsControllerCreateDepartment']>>>;
1622
+ export type DepartmentsControllerGetDepartmentResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['departmentsControllerGetDepartment']>>>;
1623
+ export type DepartmentsControllerUpdateDepartmentResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['departmentsControllerUpdateDepartment']>>>;
1624
+ export type DepartmentsControllerDeleteDepartmentResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['departmentsControllerDeleteDepartment']>>>;
1625
+ export type DepartmentsControllerGetAnnouncementsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['departmentsControllerGetAnnouncements']>>>;
1626
+ export type DepartmentsControllerCreateAnnouncementResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['departmentsControllerCreateAnnouncement']>>>;
1627
+ export type TeamsControllerGetTeamsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['teamsControllerGetTeams']>>>;
1628
+ export type TeamsControllerCreateTeamResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['teamsControllerCreateTeam']>>>;
1629
+ export type TeamsControllerAddMemberResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['teamsControllerAddMember']>>>;
1630
+ export type TeamsControllerRemoveMemberResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['teamsControllerRemoveMember']>>>;
1631
+ export type MessagesControllerGetMessagesResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['messagesControllerGetMessages']>>>;
1632
+ export type MessagesControllerCreateMessageResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['messagesControllerCreateMessage']>>>;
1633
+ export type MessagesControllerUpdateMessageResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['messagesControllerUpdateMessage']>>>;
1634
+ export type MessagesControllerDeleteMessageResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['messagesControllerDeleteMessage']>>>;
1635
+ export type MessagesControllerMarkAsReadResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['messagesControllerMarkAsRead']>>>;
1636
+ export type MessagesControllerAddReactionResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['messagesControllerAddReaction']>>>;
1637
+ export type MessagesControllerRemoveReactionResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['messagesControllerRemoveReaction']>>>;
1638
+ export type MessagesControllerCreateReplyResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['messagesControllerCreateReply']>>>;
1639
+ export type EmojisControllerGetEmojisResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['emojisControllerGetEmojis']>>>;
1640
+ export type EmojisControllerCreateEmojiResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['emojisControllerCreateEmoji']>>>;
1641
+ export type AuditLogsControllerGetAuditLogsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['auditLogsControllerGetAuditLogs']>>>;
1642
+ export type AuditLogsControllerExportAuditLogsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['auditLogsControllerExportAuditLogs']>>>;
1643
+ export type InviteLinksControllerGetInviteLinksResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['inviteLinksControllerGetInviteLinks']>>>;
1644
+ export type InviteLinksControllerCreateInviteLinkResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['inviteLinksControllerCreateInviteLink']>>>;
1645
+ export type ApiTokensControllerGetApiTokensResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['apiTokensControllerGetApiTokens']>>>;
1646
+ export type ApiTokensControllerCreateApiTokenResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['apiTokensControllerCreateApiToken']>>>;
1647
+ export type ApiTokensControllerDeleteApiTokenResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['apiTokensControllerDeleteApiToken']>>>;
1648
+ export type WebhooksControllerGetWebhooksResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['webhooksControllerGetWebhooks']>>>;
1649
+ export type WebhooksControllerCreateWebhookResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['webhooksControllerCreateWebhook']>>>;
1650
+ export type WebhooksControllerUpdateWebhookResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['webhooksControllerUpdateWebhook']>>>;
1651
+ export type WebhooksControllerDeleteWebhookResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['webhooksControllerDeleteWebhook']>>>;
1652
+ export type CallsControllerGetActiveCallsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['callsControllerGetActiveCalls']>>>;
1653
+ export type SearchControllerSearchResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['searchControllerSearch']>>>;
1654
+ export type DeviceAuthControllerGenerateQRResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['deviceAuthControllerGenerateQR']>>>;
1655
+ export type DeviceAuthControllerCheckStatusResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['deviceAuthControllerCheckStatus']>>>;
1656
+ export type DeviceAuthControllerAuthorizeResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['deviceAuthControllerAuthorize']>>>;
1657
+ export type DeviceAuthControllerDenyResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['deviceAuthControllerDeny']>>>;
1658
+ export type AndroidAuthControllerGetProfileResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['androidAuthControllerGetProfile']>>>;
1659
+ export type AndroidAuthControllerChangePasswordResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['androidAuthControllerChangePassword']>>>;
1660
+ export type AndroidAuthControllerCheckUsernameResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['androidAuthControllerCheckUsername']>>>;
1661
+ export type AndroidAuthControllerLoginResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['androidAuthControllerLogin']>>>;
1662
+ export type AndroidAuthControllerSignupResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['androidAuthControllerSignup']>>>;
1663
+ export type AndroidAuthControllerGoogleLoginResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['androidAuthControllerGoogleLogin']>>>;
1664
+ export type AndroidAuthControllerGithubLoginResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['androidAuthControllerGithubLogin']>>>;
1665
+ export type AndroidAuthControllerRefreshResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['androidAuthControllerRefresh']>>>;
1666
+ export type ScheduledNotificationsControllerGetNotificationsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['scheduledNotificationsControllerGetNotifications']>>>;
1667
+ export type ScheduledNotificationsControllerCreateNotificationResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['scheduledNotificationsControllerCreateNotification']>>>;
1668
+ export type ScheduledNotificationsControllerUpdateNotificationResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['scheduledNotificationsControllerUpdateNotification']>>>;
1669
+ export type ScheduledNotificationsControllerDeleteNotificationResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['scheduledNotificationsControllerDeleteNotification']>>>;
1670
+ export type AssetsControllerGetEligibleAssetsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['assetsControllerGetEligibleAssets']>>>;
1671
+ export type SupportControllerCreateTicketResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['supportControllerCreateTicket']>>>;
1672
+ export type SupportControllerGetTicketsResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['supportControllerGetTickets']>>>;
1673
+ export type SupportControllerStartLiveChatResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['supportControllerStartLiveChat']>>>;
1674
+ export type SupportControllerEndLiveChatResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['supportControllerEndLiveChat']>>>;
1675
+ export type SupportControllerUpdateTicketStatusResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['supportControllerUpdateTicketStatus']>>>;
1676
+ export type SupportControllerAssignTicketResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['supportControllerAssignTicket']>>>;
1677
+ export type SupportControllerCreateCustomerProfileResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['supportControllerCreateCustomerProfile']>>>;
1678
+ export type SupportControllerGetCustomerProfilesResult = NonNullable<Awaited<ReturnType<ReturnType<typeof getSkyrmeChatAPI>['supportControllerGetCustomerProfiles']>>>;
1679
+ export {};