1 | import type { WebAPICallResult } from '../../WebClient';
|
2 | export type RtmStartResponse = WebAPICallResult & {
|
3 | accept_tos_url?: string;
|
4 | bots?: Bot[];
|
5 | cache_ts?: number;
|
6 | cache_ts_version?: string;
|
7 | cache_version?: string;
|
8 | can_manage_shared_channels?: boolean;
|
9 | channels?: Channel[];
|
10 | dnd?: Dnd;
|
11 | error?: string;
|
12 | groups?: Group[];
|
13 | ims?: Im[];
|
14 | is_europe?: boolean;
|
15 | latest_event_ts?: string;
|
16 | links?: Links;
|
17 | mobile_app_requires_upgrade?: boolean;
|
18 | needed?: string;
|
19 | non_threadable_channels?: string[];
|
20 | ok?: boolean;
|
21 | provided?: string;
|
22 | read_only_channels?: string[];
|
23 | response_metadata?: ResponseMetadata;
|
24 | self?: Self;
|
25 | subteams?: Subteams;
|
26 | team?: Team;
|
27 | thread_only_channels?: string[];
|
28 | url?: string;
|
29 | users?: User[];
|
30 | };
|
31 | export interface Bot {
|
32 | app_id?: Appid;
|
33 | deleted?: boolean;
|
34 | icons?: BotIcons;
|
35 | id?: Id;
|
36 | is_workflow_bot?: boolean;
|
37 | name?: string;
|
38 | team_id?: string;
|
39 | updated?: number;
|
40 | }
|
41 | export declare enum Appid {
|
42 | A00000000 = "A00000000",
|
43 | Empty = ""
|
44 | }
|
45 | export interface BotIcons {
|
46 | image_36?: string;
|
47 | image_48?: string;
|
48 | image_72?: string;
|
49 | }
|
50 | export declare enum Id {
|
51 | B00000000 = "B00000000",
|
52 | Empty = ""
|
53 | }
|
54 | export interface Channel {
|
55 | connected_limited_team_ids?: string[];
|
56 | connected_team_ids?: string[];
|
57 | context_team_id?: string;
|
58 | conversation_host_id?: string;
|
59 | created?: number;
|
60 | creator?: string;
|
61 | has_pins?: boolean;
|
62 | id?: string;
|
63 | internal_team_ids?: string[];
|
64 | is_archived?: boolean;
|
65 | is_channel?: boolean;
|
66 | is_ext_shared?: boolean;
|
67 | is_general?: boolean;
|
68 | is_group?: boolean;
|
69 | is_im?: boolean;
|
70 | is_member?: boolean;
|
71 | is_mpim?: boolean;
|
72 | is_org_shared?: boolean;
|
73 | is_pending_ext_shared?: boolean;
|
74 | is_private?: boolean;
|
75 | is_shared?: boolean;
|
76 | last_read?: string;
|
77 | name?: string;
|
78 | name_normalized?: string;
|
79 | pending_connected_team_ids?: string[];
|
80 | pending_shared?: string[];
|
81 | previous_names?: string[];
|
82 | priority?: number;
|
83 | purpose?: Purpose;
|
84 | shared_team_ids?: string[];
|
85 | topic?: Purpose;
|
86 | unlinked?: number;
|
87 | }
|
88 | export interface Purpose {
|
89 | creator?: string;
|
90 | last_set?: number;
|
91 | value?: string;
|
92 | }
|
93 | export interface Dnd {
|
94 | dnd_enabled?: boolean;
|
95 | next_dnd_end_ts?: number;
|
96 | next_dnd_start_ts?: number;
|
97 | snooze_enabled?: boolean;
|
98 | }
|
99 | export interface Group {
|
100 | created?: number;
|
101 | creator?: string;
|
102 | id?: string;
|
103 | is_archived?: boolean;
|
104 | is_group?: boolean;
|
105 | is_mpim?: boolean;
|
106 | is_open?: boolean;
|
107 | is_read_only?: boolean;
|
108 | is_thread_only?: boolean;
|
109 | last_read?: string;
|
110 | latest?: Latest;
|
111 | members?: string[];
|
112 | name?: string;
|
113 | name_normalized?: string;
|
114 | parent_group?: string;
|
115 | priority?: number;
|
116 | purpose?: Purpose;
|
117 | topic?: Purpose;
|
118 | unread_count?: number;
|
119 | unread_count_display?: number;
|
120 | }
|
121 | export interface Latest {
|
122 | attachments?: Attachment[];
|
123 | blocks?: LatestBlock[];
|
124 | bot_id?: string;
|
125 | bot_link?: string;
|
126 | bot_profile?: Bot;
|
127 | client_msg_id?: string;
|
128 | display_as_bot?: boolean;
|
129 | edited?: Edited;
|
130 | files?: FileElement[];
|
131 | icons?: MessageIcons;
|
132 | parent_user_id?: string;
|
133 | reactions?: string[];
|
134 | root?: Root;
|
135 | subtype?: string;
|
136 | team?: string;
|
137 | text?: string;
|
138 | thread_ts?: string;
|
139 | topic?: string;
|
140 | ts?: string;
|
141 | type?: string;
|
142 | upload?: boolean;
|
143 | user?: string;
|
144 | username?: string;
|
145 | x_files?: string[];
|
146 | }
|
147 | export interface Attachment {
|
148 | actions?: Action[];
|
149 | app_id?: string;
|
150 | app_unfurl_url?: string;
|
151 | author_icon?: string;
|
152 | author_id?: string;
|
153 | author_link?: string;
|
154 | author_name?: string;
|
155 | author_subname?: string;
|
156 | blocks?: TitleBlockElement[];
|
157 | bot_id?: string;
|
158 | callback_id?: string;
|
159 | channel_id?: string;
|
160 | channel_name?: string;
|
161 | channel_team?: string;
|
162 | color?: string;
|
163 | fallback?: string;
|
164 | fields?: AttachmentField[];
|
165 | file_id?: string;
|
166 | filename?: string;
|
167 | files?: FileElement[];
|
168 | footer?: string;
|
169 | footer_icon?: string;
|
170 | from_url?: string;
|
171 | hide_border?: boolean;
|
172 | hide_color?: boolean;
|
173 | id?: number;
|
174 | image_bytes?: number;
|
175 | image_height?: number;
|
176 | image_url?: string;
|
177 | image_width?: number;
|
178 | indent?: boolean;
|
179 | is_app_unfurl?: boolean;
|
180 | is_file_attachment?: boolean;
|
181 | is_msg_unfurl?: boolean;
|
182 | is_reply_unfurl?: boolean;
|
183 | is_thread_root_unfurl?: boolean;
|
184 | list?: List;
|
185 | list_record?: PurpleListRecord;
|
186 | list_record_id?: string;
|
187 | list_records?: ListRecordElement[];
|
188 | list_schema?: Schema[];
|
189 | list_view?: View;
|
190 | list_view_id?: string;
|
191 | message_blocks?: MessageBlock[];
|
192 | metadata?: AttachmentMetadata;
|
193 | mimetype?: string;
|
194 | mrkdwn_in?: string[];
|
195 | msg_subtype?: string;
|
196 | original_url?: string;
|
197 | pretext?: string;
|
198 | preview?: AttachmentPreview;
|
199 | service_icon?: string;
|
200 | service_name?: string;
|
201 | service_url?: string;
|
202 | size?: number;
|
203 | text?: string;
|
204 | thumb_height?: number;
|
205 | thumb_url?: string;
|
206 | thumb_width?: number;
|
207 | title?: string;
|
208 | title_link?: string;
|
209 | ts?: string;
|
210 | url?: string;
|
211 | video_html?: string;
|
212 | video_html_height?: number;
|
213 | video_html_width?: number;
|
214 | video_url?: string;
|
215 | }
|
216 | export interface Action {
|
217 | confirm?: ActionConfirm;
|
218 | data_source?: string;
|
219 | id?: string;
|
220 | min_query_length?: number;
|
221 | name?: string;
|
222 | option_groups?: ActionOptionGroup[];
|
223 | options?: SelectedOptionElement[];
|
224 | selected_options?: SelectedOptionElement[];
|
225 | style?: string;
|
226 | text?: string;
|
227 | type?: ActionType;
|
228 | url?: string;
|
229 | value?: string;
|
230 | }
|
231 | export interface ActionConfirm {
|
232 | dismiss_text?: string;
|
233 | ok_text?: string;
|
234 | text?: string;
|
235 | title?: string;
|
236 | }
|
237 | export interface ActionOptionGroup {
|
238 | options?: SelectedOptionElement[];
|
239 | text?: string;
|
240 | }
|
241 | export interface SelectedOptionElement {
|
242 | text?: string;
|
243 | value?: string;
|
244 | }
|
245 | export declare enum ActionType {
|
246 | Button = "button",
|
247 | ChannelsSelect = "channels_select",
|
248 | Checkboxes = "checkboxes",
|
249 | ConversationsSelect = "conversations_select",
|
250 | Datepicker = "datepicker",
|
251 | Datetimepicker = "datetimepicker",
|
252 | ExternalSelect = "external_select",
|
253 | Image = "image",
|
254 | MultiChannelsSelect = "multi_channels_select",
|
255 | MultiConversationsSelect = "multi_conversations_select",
|
256 | MultiExternalSelect = "multi_external_select",
|
257 | MultiStaticSelect = "multi_static_select",
|
258 | MultiUsersSelect = "multi_users_select",
|
259 | Overflow = "overflow",
|
260 | RadioButtons = "radio_buttons",
|
261 | RichTextList = "rich_text_list",
|
262 | RichTextPreformatted = "rich_text_preformatted",
|
263 | RichTextQuote = "rich_text_quote",
|
264 | RichTextSection = "rich_text_section",
|
265 | StaticSelect = "static_select",
|
266 | Timepicker = "timepicker",
|
267 | UsersSelect = "users_select",
|
268 | WorkflowButton = "workflow_button"
|
269 | }
|
270 | export interface TitleBlockElement {
|
271 | accessory?: Accessory;
|
272 | alt_text?: string;
|
273 | app_collaborators?: string[];
|
274 | app_id?: string;
|
275 | author_name?: string;
|
276 | block_id?: string;
|
277 | bot_user_id?: string;
|
278 | button_label?: string;
|
279 | description?: DescriptionElement | string;
|
280 | developer_trace_id?: string;
|
281 | elements?: Accessory[];
|
282 | fallback?: string;
|
283 | fields?: DescriptionElement[];
|
284 | function_trigger_id?: string;
|
285 | image_bytes?: number;
|
286 | image_height?: number;
|
287 | image_url?: string;
|
288 | image_width?: number;
|
289 | is_animated?: boolean;
|
290 | is_workflow_app?: boolean;
|
291 | owning_team_id?: string;
|
292 | provider_icon_url?: string;
|
293 | provider_name?: string;
|
294 | sales_home_workflow_app_type?: number;
|
295 | share_url?: string;
|
296 | slack_file?: SlackFile;
|
297 | text?: DescriptionElement;
|
298 | thumbnail_url?: string;
|
299 | title?: DescriptionElement | string;
|
300 | title_url?: string;
|
301 | trigger_subtype?: string;
|
302 | trigger_type?: string;
|
303 | type?: BlockType;
|
304 | url?: string;
|
305 | video_url?: string;
|
306 | workflow_id?: string;
|
307 | }
|
308 | export interface Accessory {
|
309 | accessibility_label?: string;
|
310 | action_id?: string;
|
311 | alt_text?: string;
|
312 | border?: number;
|
313 | confirm?: AccessoryConfirm;
|
314 | default_to_current_conversation?: boolean;
|
315 | elements?: AccessoryElement[];
|
316 | fallback?: string;
|
317 | filter?: Filter;
|
318 | focus_on_load?: boolean;
|
319 | image_bytes?: number;
|
320 | image_height?: number;
|
321 | image_url?: string;
|
322 | image_width?: number;
|
323 | indent?: number;
|
324 | initial_channel?: string;
|
325 | initial_channels?: string[];
|
326 | initial_conversation?: string;
|
327 | initial_conversations?: string[];
|
328 | initial_date?: string;
|
329 | initial_date_time?: number;
|
330 | initial_option?: InitialOptionElement;
|
331 | initial_options?: InitialOptionElement[];
|
332 | initial_time?: string;
|
333 | initial_user?: string;
|
334 | initial_users?: string[];
|
335 | max_selected_items?: number;
|
336 | min_query_length?: number;
|
337 | offset?: number;
|
338 | option_groups?: AccessoryOptionGroup[];
|
339 | options?: InitialOptionElement[];
|
340 | placeholder?: DescriptionElement;
|
341 | response_url_enabled?: boolean;
|
342 | slack_file?: SlackFile;
|
343 | style?: string;
|
344 | text?: DescriptionElement;
|
345 | timezone?: string;
|
346 | type?: ActionType;
|
347 | url?: string;
|
348 | value?: string;
|
349 | workflow?: Workflow;
|
350 | }
|
351 | export interface AccessoryConfirm {
|
352 | confirm?: DescriptionElement;
|
353 | deny?: DescriptionElement;
|
354 | style?: string;
|
355 | text?: DescriptionElement;
|
356 | title?: DescriptionElement;
|
357 | }
|
358 | export interface DescriptionElement {
|
359 | emoji?: boolean;
|
360 | text?: string;
|
361 | type?: DescriptionType;
|
362 | verbatim?: boolean;
|
363 | }
|
364 | export declare enum DescriptionType {
|
365 | Mrkdwn = "mrkdwn",
|
366 | PlainText = "plain_text"
|
367 | }
|
368 | export interface AccessoryElement {
|
369 | border?: number;
|
370 | elements?: PurpleElement[];
|
371 | indent?: number;
|
372 | offset?: number;
|
373 | style?: string;
|
374 | type?: ActionType;
|
375 | }
|
376 | export interface PurpleElement {
|
377 | channel_id?: string;
|
378 | fallback?: string;
|
379 | format?: string;
|
380 | name?: string;
|
381 | range?: string;
|
382 | skin_tone?: number;
|
383 | style?: Style;
|
384 | team_id?: string;
|
385 | text?: string;
|
386 | timestamp?: number;
|
387 | type?: PurpleType;
|
388 | unicode?: string;
|
389 | unsafe?: boolean;
|
390 | url?: string;
|
391 | user_id?: string;
|
392 | usergroup_id?: string;
|
393 | value?: string;
|
394 | }
|
395 | export interface Style {
|
396 | bold?: boolean;
|
397 | client_highlight?: boolean;
|
398 | code?: boolean;
|
399 | highlight?: boolean;
|
400 | italic?: boolean;
|
401 | strike?: boolean;
|
402 | unlink?: boolean;
|
403 | }
|
404 | export declare enum PurpleType {
|
405 | Broadcast = "broadcast",
|
406 | Channel = "channel",
|
407 | Color = "color",
|
408 | Date = "date",
|
409 | Emoji = "emoji",
|
410 | Link = "link",
|
411 | Team = "team",
|
412 | Text = "text",
|
413 | User = "user",
|
414 | Usergroup = "usergroup"
|
415 | }
|
416 | export interface Filter {
|
417 | exclude_bot_users?: boolean;
|
418 | exclude_external_shared_channels?: boolean;
|
419 | include?: any[];
|
420 | }
|
421 | export interface InitialOptionElement {
|
422 | description?: DescriptionElement;
|
423 | text?: DescriptionElement;
|
424 | url?: string;
|
425 | value?: string;
|
426 | }
|
427 | export interface AccessoryOptionGroup {
|
428 | label?: DescriptionElement;
|
429 | options?: InitialOptionElement[];
|
430 | }
|
431 | export interface SlackFile {
|
432 | id?: string;
|
433 | url?: string;
|
434 | }
|
435 | export interface Workflow {
|
436 | trigger?: Trigger;
|
437 | }
|
438 | export interface Trigger {
|
439 | customizable_input_parameters?: CustomizableInputParameter[];
|
440 | url?: string;
|
441 | }
|
442 | export interface CustomizableInputParameter {
|
443 | name?: string;
|
444 | value?: string;
|
445 | }
|
446 | export declare enum BlockType {
|
447 | Actions = "actions",
|
448 | Context = "context",
|
449 | Divider = "divider",
|
450 | Image = "image",
|
451 | RichText = "rich_text",
|
452 | Section = "section",
|
453 | ShareShortcut = "share_shortcut",
|
454 | Video = "video"
|
455 | }
|
456 | export interface AttachmentField {
|
457 | short?: boolean;
|
458 | title?: string;
|
459 | value?: string;
|
460 | }
|
461 | export interface FileElement {
|
462 | access?: string;
|
463 | alt_txt?: string;
|
464 | app_id?: string;
|
465 | app_name?: string;
|
466 | attachments?: any[];
|
467 | blocks?: TitleBlockElement[];
|
468 | bot_id?: string;
|
469 | can_toggle_canvas_lock?: boolean;
|
470 | canvas_template_mode?: string;
|
471 | cc?: Cc[];
|
472 | channel_actions_count?: number;
|
473 | channel_actions_ts?: string;
|
474 | channels?: string[];
|
475 | comments_count?: number;
|
476 | converted_pdf?: string;
|
477 | created?: number;
|
478 | deanimate?: string;
|
479 | deanimate_gif?: string;
|
480 | display_as_bot?: boolean;
|
481 | dm_mpdm_users_with_file_access?: DmMpdmUsersWithFileAccess[];
|
482 | duration_ms?: number;
|
483 | edit_link?: string;
|
484 | edit_timestamp?: number;
|
485 | editable?: boolean;
|
486 | editor?: string;
|
487 | editors?: string[];
|
488 | external_id?: string;
|
489 | external_type?: string;
|
490 | external_url?: string;
|
491 | favorites?: Favorite[];
|
492 | file_access?: string;
|
493 | filetype?: string;
|
494 | from?: Cc[];
|
495 | groups?: string[];
|
496 | has_more?: boolean;
|
497 | has_more_shares?: boolean;
|
498 | has_rich_preview?: boolean;
|
499 | headers?: Headers;
|
500 | hls?: string;
|
501 | hls_embed?: string;
|
502 | id?: string;
|
503 | image_exif_rotation?: number;
|
504 | ims?: string[];
|
505 | initial_comment?: InitialComment;
|
506 | is_channel_space?: boolean;
|
507 | is_external?: boolean;
|
508 | is_public?: boolean;
|
509 | is_restricted_sharing_enabled?: boolean;
|
510 | is_starred?: boolean;
|
511 | last_editor?: string;
|
512 | last_read?: number;
|
513 | lines?: number;
|
514 | lines_more?: number;
|
515 | linked_channel_id?: string;
|
516 | list_limits?: ListLimits;
|
517 | list_metadata?: ListMetadata;
|
518 | media_display_type?: string;
|
519 | media_progress?: MediaProgress;
|
520 | mimetype?: string;
|
521 | mode?: string;
|
522 | mp4?: string;
|
523 | mp4_low?: string;
|
524 | name?: string;
|
525 | non_owner_editable?: boolean;
|
526 | num_stars?: number;
|
527 | org_or_workspace_access?: string;
|
528 | original_attachment_count?: number;
|
529 | original_h?: string;
|
530 | original_w?: string;
|
531 | permalink?: string;
|
532 | permalink_public?: string;
|
533 | pinned_to?: string[];
|
534 | pjpeg?: string;
|
535 | plain_text?: string;
|
536 | pretty_type?: string;
|
537 | preview?: string;
|
538 | preview_highlight?: string;
|
539 | preview_is_truncated?: boolean;
|
540 | preview_plain_text?: string;
|
541 | private_channels_with_file_access_count?: number;
|
542 | private_file_with_access_count?: number;
|
543 | public_url_shared?: boolean;
|
544 | quip_thread_id?: string;
|
545 | reactions?: Reaction[];
|
546 | saved?: Saved;
|
547 | sent_to_self?: boolean;
|
548 | shares?: PurpleShares;
|
549 | show_badge?: boolean;
|
550 | simplified_html?: string;
|
551 | size?: number;
|
552 | source_team?: string;
|
553 | subject?: string;
|
554 | subtype?: string;
|
555 | team_pref_version_history_enabled?: boolean;
|
556 | teams_shared_with?: any[];
|
557 | template_conversion_ts?: number;
|
558 | template_description?: string;
|
559 | template_icon?: string;
|
560 | template_name?: string;
|
561 | template_title?: string;
|
562 | thumb_1024?: string;
|
563 | thumb_1024_gif?: string;
|
564 | thumb_1024_h?: string;
|
565 | thumb_1024_w?: string;
|
566 | thumb_160?: string;
|
567 | thumb_160_gif?: string;
|
568 | thumb_160_h?: string;
|
569 | thumb_160_w?: string;
|
570 | thumb_360?: string;
|
571 | thumb_360_gif?: string;
|
572 | thumb_360_h?: string;
|
573 | thumb_360_w?: string;
|
574 | thumb_480?: string;
|
575 | thumb_480_gif?: string;
|
576 | thumb_480_h?: string;
|
577 | thumb_480_w?: string;
|
578 | thumb_64?: string;
|
579 | thumb_64_gif?: string;
|
580 | thumb_64_h?: string;
|
581 | thumb_64_w?: string;
|
582 | thumb_720?: string;
|
583 | thumb_720_gif?: string;
|
584 | thumb_720_h?: string;
|
585 | thumb_720_w?: string;
|
586 | thumb_80?: string;
|
587 | thumb_800?: string;
|
588 | thumb_800_gif?: string;
|
589 | thumb_800_h?: string;
|
590 | thumb_800_w?: string;
|
591 | thumb_80_gif?: string;
|
592 | thumb_80_h?: string;
|
593 | thumb_80_w?: string;
|
594 | thumb_960?: string;
|
595 | thumb_960_gif?: string;
|
596 | thumb_960_h?: string;
|
597 | thumb_960_w?: string;
|
598 | thumb_gif?: string;
|
599 | thumb_pdf?: string;
|
600 | thumb_pdf_h?: string;
|
601 | thumb_pdf_w?: string;
|
602 | thumb_tiny?: string;
|
603 | thumb_video?: string;
|
604 | thumb_video_h?: number;
|
605 | thumb_video_w?: number;
|
606 | timestamp?: number;
|
607 | title?: string;
|
608 | title_blocks?: TitleBlockElement[];
|
609 | to?: Cc[];
|
610 | transcription?: Transcription;
|
611 | update_notification?: number;
|
612 | updated?: number;
|
613 | url_private?: string;
|
614 | url_private_download?: string;
|
615 | url_static_preview?: string;
|
616 | user?: string;
|
617 | user_team?: string;
|
618 | username?: string;
|
619 | vtt?: string;
|
620 | }
|
621 | export interface Cc {
|
622 | address?: string;
|
623 | name?: string;
|
624 | original?: string;
|
625 | }
|
626 | export interface DmMpdmUsersWithFileAccess {
|
627 | access?: string;
|
628 | user_id?: string;
|
629 | }
|
630 | export interface Favorite {
|
631 | collection_id?: string;
|
632 | collection_name?: string;
|
633 | position?: string;
|
634 | }
|
635 | export interface Headers {
|
636 | date?: string;
|
637 | in_reply_to?: string;
|
638 | message_id?: string;
|
639 | reply_to?: string;
|
640 | }
|
641 | export interface InitialComment {
|
642 | channel?: string;
|
643 | comment?: string;
|
644 | created?: number;
|
645 | id?: string;
|
646 | is_intro?: boolean;
|
647 | timestamp?: number;
|
648 | user?: string;
|
649 | }
|
650 | export interface ListLimits {
|
651 | column_count?: number;
|
652 | column_count_limit?: number;
|
653 | over_column_maximum?: boolean;
|
654 | over_row_maximum?: boolean;
|
655 | over_view_maximum?: boolean;
|
656 | row_count?: number;
|
657 | row_count_limit?: number;
|
658 | view_count?: number;
|
659 | view_count_limit?: number;
|
660 | }
|
661 | export interface ListMetadata {
|
662 | creation_source?: CreationSource;
|
663 | description?: string;
|
664 | icon?: string;
|
665 | icon_team_id?: string;
|
666 | icon_url?: string;
|
667 | integrations?: string[];
|
668 | is_trial?: boolean;
|
669 | schema?: Schema[];
|
670 | views?: View[];
|
671 | }
|
672 | export interface CreationSource {
|
673 | reference_id?: string;
|
674 | type?: string;
|
675 | workflow_function_id?: string;
|
676 | }
|
677 | export interface Schema {
|
678 | id?: string;
|
679 | is_primary_column?: boolean;
|
680 | key?: string;
|
681 | name?: string;
|
682 | options?: Options;
|
683 | type?: string;
|
684 | }
|
685 | export interface Options {
|
686 | canvas_id?: string;
|
687 | canvas_placeholder_mapping?: CanvasPlaceholderMapping[];
|
688 | choices?: Choice[];
|
689 | currency?: string;
|
690 | currency_format?: string;
|
691 | date_format?: string;
|
692 | default_value?: string;
|
693 | default_value_typed?: DefaultValueTyped;
|
694 | emoji?: string;
|
695 | emoji_team_id?: string;
|
696 | for_assignment?: boolean;
|
697 | format?: string;
|
698 | linked_to?: string[];
|
699 | mark_as_done_when_checked?: boolean;
|
700 | max?: number;
|
701 | notify_users?: boolean;
|
702 | precision?: number;
|
703 | rounding?: string;
|
704 | show_member_name?: boolean;
|
705 | time_format?: string;
|
706 | }
|
707 | export interface CanvasPlaceholderMapping {
|
708 | column?: string;
|
709 | variable?: string;
|
710 | }
|
711 | export interface Choice {
|
712 | color?: string;
|
713 | label?: string;
|
714 | value?: string;
|
715 | }
|
716 | export interface DefaultValueTyped {
|
717 | select?: string[];
|
718 | }
|
719 | export interface View {
|
720 | columns?: Column[];
|
721 | created_by?: string;
|
722 | date_created?: number;
|
723 | id?: string;
|
724 | is_all_items_view?: boolean;
|
725 | is_locked?: boolean;
|
726 | name?: string;
|
727 | position?: string;
|
728 | stick_column_left?: boolean;
|
729 | type?: string;
|
730 | }
|
731 | export interface Column {
|
732 | id?: string;
|
733 | key?: string;
|
734 | position?: string;
|
735 | visible?: boolean;
|
736 | width?: number;
|
737 | }
|
738 | export interface MediaProgress {
|
739 | duration_ms?: number;
|
740 | max_offset_ms?: number;
|
741 | media_watched?: boolean;
|
742 | offset_ms?: number;
|
743 | }
|
744 | export interface Reaction {
|
745 | count?: number;
|
746 | name?: string;
|
747 | url?: string;
|
748 | users?: string[];
|
749 | }
|
750 | export interface Saved {
|
751 | date_completed?: number;
|
752 | date_due?: number;
|
753 | is_archived?: boolean;
|
754 | state?: string;
|
755 | }
|
756 | export interface PurpleShares {
|
757 | private?: {
|
758 | [key: string]: Private[];
|
759 | };
|
760 | public?: {
|
761 | [key: string]: Private[];
|
762 | };
|
763 | }
|
764 | export interface Private {
|
765 | access?: string;
|
766 | channel_name?: string;
|
767 | date_last_shared?: number;
|
768 | latest_reply?: string;
|
769 | reply_count?: number;
|
770 | reply_users?: string[];
|
771 | reply_users_count?: number;
|
772 | share_user_id?: string;
|
773 | source?: string;
|
774 | team_id?: string;
|
775 | thread_ts?: string;
|
776 | ts?: string;
|
777 | }
|
778 | export interface Transcription {
|
779 | locale?: string;
|
780 | preview?: TranscriptionPreview;
|
781 | status?: string;
|
782 | }
|
783 | export interface TranscriptionPreview {
|
784 | content?: string;
|
785 | has_more?: boolean;
|
786 | }
|
787 | export interface List {
|
788 | channels?: string[];
|
789 | comments_count?: number;
|
790 | created?: number;
|
791 | display_as_bot?: boolean;
|
792 | dm_mpdm_users_with_file_access?: DmMpdmUsersWithFileAccess[];
|
793 | editable?: boolean;
|
794 | external_type?: string;
|
795 | file_access?: string;
|
796 | filetype?: string;
|
797 | groups?: string[];
|
798 | has_more_shares?: boolean;
|
799 | has_rich_preview?: boolean;
|
800 | id?: string;
|
801 | ims?: string[];
|
802 | is_external?: boolean;
|
803 | is_public?: boolean;
|
804 | last_editor?: string;
|
805 | list_limits?: ListLimits;
|
806 | list_metadata?: ListMetadata;
|
807 | mimetype?: string;
|
808 | mode?: string;
|
809 | name?: string;
|
810 | permalink?: string;
|
811 | permalink_public?: string;
|
812 | pretty_type?: string;
|
813 | private_channels_with_file_access_count?: number;
|
814 | private_file_with_access_count?: number;
|
815 | public_url_shared?: boolean;
|
816 | shares?: ListShares;
|
817 | size?: number;
|
818 | timestamp?: number;
|
819 | title?: string;
|
820 | updated?: number;
|
821 | url_private?: string;
|
822 | url_private_download?: string;
|
823 | user?: string;
|
824 | user_team?: string;
|
825 | username?: string;
|
826 | }
|
827 | export type ListShares = {};
|
828 | export interface PurpleListRecord {
|
829 | record?: Record;
|
830 | schema?: Schema[];
|
831 | }
|
832 | export interface Record {
|
833 | fields?: RecordField[];
|
834 | record_id?: string;
|
835 | }
|
836 | export interface RecordField {
|
837 | attachment?: any[];
|
838 | channel?: any[];
|
839 | checkbox?: boolean;
|
840 | column_id?: string;
|
841 | date?: any[];
|
842 | email?: any[];
|
843 | key?: string;
|
844 | message?: Message;
|
845 | number?: any[];
|
846 | phone?: any[];
|
847 | rating?: any[];
|
848 | rich_text?: any[];
|
849 | select?: any[];
|
850 | text?: string;
|
851 | timestamp?: any[];
|
852 | user?: any[];
|
853 | value?: string;
|
854 | }
|
855 | export interface Message {
|
856 | app_id?: string;
|
857 | assistant_app_thread?: AssistantAppThread;
|
858 | attachments?: any[];
|
859 | blocks?: TitleBlockElement[];
|
860 | bot_id?: string;
|
861 | bot_link?: string;
|
862 | bot_profile?: Bot;
|
863 | channel?: string;
|
864 | client_msg_id?: string;
|
865 | comment?: Comment;
|
866 | display_as_bot?: boolean;
|
867 | edited?: Edited;
|
868 | file?: MessageFile;
|
869 | files?: any[];
|
870 | hidden?: boolean;
|
871 | icons?: MessageIcons;
|
872 | inviter?: string;
|
873 | is_intro?: boolean;
|
874 | is_locked?: boolean;
|
875 | is_starred?: boolean;
|
876 | is_thread_broadcast?: boolean;
|
877 | item?: Comment;
|
878 | item_type?: string;
|
879 | last_read?: string;
|
880 | latest_reply?: string;
|
881 | metadata?: MessageMetadata;
|
882 | no_notifications?: boolean;
|
883 | parent_user_id?: string;
|
884 | pinned_to?: any[];
|
885 | purpose?: string;
|
886 | reactions?: any[];
|
887 | replies?: any[];
|
888 | reply_count?: number;
|
889 | reply_users?: any[];
|
890 | reply_users_count?: number;
|
891 | room?: Room;
|
892 | root?: Root;
|
893 | subscribed?: boolean;
|
894 | subtype?: string;
|
895 | team?: string;
|
896 | text?: string;
|
897 | thread_ts?: string;
|
898 | topic?: string;
|
899 | ts?: string;
|
900 | type?: string;
|
901 | unfurl_links?: boolean;
|
902 | unfurl_media?: boolean;
|
903 | upload?: boolean;
|
904 | user?: string;
|
905 | username?: string;
|
906 | wibblr?: boolean;
|
907 | x_files?: any[];
|
908 | }
|
909 | export interface AssistantAppThread {
|
910 | first_user_thread_reply?: string;
|
911 | title?: string;
|
912 | title_blocks?: any[];
|
913 | }
|
914 | export interface Comment {
|
915 | comment?: string;
|
916 | created?: string;
|
917 | display_as_bot?: boolean;
|
918 | edit_link?: string;
|
919 | editable?: boolean;
|
920 | external_type?: string;
|
921 | filetype?: string;
|
922 | has_rich_preview?: boolean;
|
923 | id?: string;
|
924 | is_external?: boolean;
|
925 | is_intro?: boolean;
|
926 | is_public?: boolean;
|
927 | is_starred?: boolean;
|
928 | lines?: number;
|
929 | lines_more?: number;
|
930 | media_display_type?: string;
|
931 | mimetype?: string;
|
932 | mode?: string;
|
933 | name?: string;
|
934 | permalink?: string;
|
935 | permalink_public?: boolean;
|
936 | pretty_type?: string;
|
937 | preview?: string;
|
938 | preview_highlight?: string;
|
939 | preview_is_truncated?: boolean;
|
940 | public_url_shared?: boolean;
|
941 | size?: number;
|
942 | timestamp?: string;
|
943 | title?: string;
|
944 | url_private?: string;
|
945 | url_private_download?: boolean;
|
946 | user?: string;
|
947 | username?: string;
|
948 | }
|
949 | export interface Edited {
|
950 | ts?: string;
|
951 | user?: string;
|
952 | }
|
953 | export interface MessageFile {
|
954 | access?: string;
|
955 | alt_txt?: string;
|
956 | app_id?: string;
|
957 | app_name?: string;
|
958 | attachments?: any[];
|
959 | blocks?: any[];
|
960 | bot_id?: string;
|
961 | can_toggle_canvas_lock?: boolean;
|
962 | canvas_template_mode?: string;
|
963 | cc?: any[];
|
964 | channel_actions_count?: number;
|
965 | channel_actions_ts?: string;
|
966 | channels?: any[];
|
967 | comments_count?: number;
|
968 | converted_pdf?: string;
|
969 | created?: number;
|
970 | deanimate?: string;
|
971 | deanimate_gif?: string;
|
972 | display_as_bot?: boolean;
|
973 | dm_mpdm_users_with_file_access?: any[];
|
974 | duration_ms?: number;
|
975 | edit_link?: string;
|
976 | edit_timestamp?: number;
|
977 | editable?: boolean;
|
978 | editor?: string;
|
979 | editors?: any[];
|
980 | external_id?: string;
|
981 | external_type?: string;
|
982 | external_url?: string;
|
983 | favorites?: any[];
|
984 | file_access?: string;
|
985 | filetype?: string;
|
986 | from?: any[];
|
987 | groups?: any[];
|
988 | has_more?: boolean;
|
989 | has_more_shares?: boolean;
|
990 | has_rich_preview?: boolean;
|
991 | headers?: Headers;
|
992 | hls?: string;
|
993 | hls_embed?: string;
|
994 | id?: string;
|
995 | image_exif_rotation?: number;
|
996 | ims?: any[];
|
997 | initial_comment?: InitialComment;
|
998 | is_channel_space?: boolean;
|
999 | is_external?: boolean;
|
1000 | is_public?: boolean;
|
1001 | is_restricted_sharing_enabled?: boolean;
|
1002 | is_starred?: boolean;
|
1003 | last_editor?: string;
|
1004 | last_read?: number;
|
1005 | lines?: number;
|
1006 | lines_more?: number;
|
1007 | linked_channel_id?: string;
|
1008 | list_limits?: ListLimits;
|
1009 | list_metadata?: ListMetadata;
|
1010 | media_display_type?: string;
|
1011 | media_progress?: MediaProgress;
|
1012 | mimetype?: string;
|
1013 | mode?: string;
|
1014 | mp4?: string;
|
1015 | mp4_low?: string;
|
1016 | name?: string;
|
1017 | non_owner_editable?: boolean;
|
1018 | num_stars?: number;
|
1019 | org_or_workspace_access?: string;
|
1020 | original_attachment_count?: number;
|
1021 | original_h?: string;
|
1022 | original_w?: string;
|
1023 | permalink?: string;
|
1024 | permalink_public?: string;
|
1025 | pinned_to?: any[];
|
1026 | pjpeg?: string;
|
1027 | plain_text?: string;
|
1028 | pretty_type?: string;
|
1029 | preview?: string;
|
1030 | preview_highlight?: string;
|
1031 | preview_is_truncated?: boolean;
|
1032 | preview_plain_text?: string;
|
1033 | private_channels_with_file_access_count?: number;
|
1034 | private_file_with_access_count?: number;
|
1035 | public_url_shared?: boolean;
|
1036 | quip_thread_id?: string;
|
1037 | reactions?: any[];
|
1038 | saved?: Saved;
|
1039 | sent_to_self?: boolean;
|
1040 | shares?: ListShares;
|
1041 | show_badge?: boolean;
|
1042 | simplified_html?: string;
|
1043 | size?: number;
|
1044 | source_team?: string;
|
1045 | subject?: string;
|
1046 | subtype?: string;
|
1047 | team_pref_version_history_enabled?: boolean;
|
1048 | teams_shared_with?: any[];
|
1049 | template_conversion_ts?: number;
|
1050 | template_description?: string;
|
1051 | template_icon?: string;
|
1052 | template_name?: string;
|
1053 | template_title?: string;
|
1054 | thumb_1024?: string;
|
1055 | thumb_1024_gif?: string;
|
1056 | thumb_1024_h?: string;
|
1057 | thumb_1024_w?: string;
|
1058 | thumb_160?: string;
|
1059 | thumb_160_gif?: string;
|
1060 | thumb_160_h?: string;
|
1061 | thumb_160_w?: string;
|
1062 | thumb_360?: string;
|
1063 | thumb_360_gif?: string;
|
1064 | thumb_360_h?: string;
|
1065 | thumb_360_w?: string;
|
1066 | thumb_480?: string;
|
1067 | thumb_480_gif?: string;
|
1068 | thumb_480_h?: string;
|
1069 | thumb_480_w?: string;
|
1070 | thumb_64?: string;
|
1071 | thumb_64_gif?: string;
|
1072 | thumb_64_h?: string;
|
1073 | thumb_64_w?: string;
|
1074 | thumb_720?: string;
|
1075 | thumb_720_gif?: string;
|
1076 | thumb_720_h?: string;
|
1077 | thumb_720_w?: string;
|
1078 | thumb_80?: string;
|
1079 | thumb_800?: string;
|
1080 | thumb_800_gif?: string;
|
1081 | thumb_800_h?: string;
|
1082 | thumb_800_w?: string;
|
1083 | thumb_80_gif?: string;
|
1084 | thumb_80_h?: string;
|
1085 | thumb_80_w?: string;
|
1086 | thumb_960?: string;
|
1087 | thumb_960_gif?: string;
|
1088 | thumb_960_h?: string;
|
1089 | thumb_960_w?: string;
|
1090 | thumb_gif?: string;
|
1091 | thumb_pdf?: string;
|
1092 | thumb_pdf_h?: string;
|
1093 | thumb_pdf_w?: string;
|
1094 | thumb_tiny?: string;
|
1095 | thumb_video?: string;
|
1096 | thumb_video_h?: number;
|
1097 | thumb_video_w?: number;
|
1098 | timestamp?: number;
|
1099 | title?: string;
|
1100 | title_blocks?: any[];
|
1101 | to?: any[];
|
1102 | transcription?: Transcription;
|
1103 | update_notification?: number;
|
1104 | updated?: number;
|
1105 | url_private?: string;
|
1106 | url_private_download?: string;
|
1107 | url_static_preview?: string;
|
1108 | user?: string;
|
1109 | user_team?: string;
|
1110 | username?: string;
|
1111 | vtt?: string;
|
1112 | }
|
1113 | export interface MessageIcons {
|
1114 | emoji?: string;
|
1115 | image_36?: string;
|
1116 | image_48?: string;
|
1117 | image_64?: string;
|
1118 | image_72?: string;
|
1119 | }
|
1120 | export interface MessageMetadata {
|
1121 | event_type?: string;
|
1122 | }
|
1123 | export interface Room {
|
1124 | app_id?: string;
|
1125 | attached_file_ids?: any[];
|
1126 | background_id?: string;
|
1127 | call_family?: string;
|
1128 | canvas_background?: string;
|
1129 | canvas_thread_ts?: string;
|
1130 | channels?: any[];
|
1131 | created_by?: string;
|
1132 | date_end?: number;
|
1133 | date_start?: number;
|
1134 | display_id?: string;
|
1135 | external_unique_id?: string;
|
1136 | has_ended?: boolean;
|
1137 | id?: string;
|
1138 | is_dm_call?: boolean;
|
1139 | is_prewarmed?: boolean;
|
1140 | is_scheduled?: boolean;
|
1141 | media_backend_type?: string;
|
1142 | media_server?: string;
|
1143 | name?: string;
|
1144 | participant_history?: any[];
|
1145 | participants?: any[];
|
1146 | participants_camera_off?: any[];
|
1147 | participants_camera_on?: any[];
|
1148 | participants_screenshare_off?: any[];
|
1149 | participants_screenshare_on?: any[];
|
1150 | thread_root_ts?: string;
|
1151 | was_accepted?: boolean;
|
1152 | was_missed?: boolean;
|
1153 | was_rejected?: boolean;
|
1154 | }
|
1155 | export interface Root {
|
1156 | bot_id?: string;
|
1157 | bot_profile?: Bot;
|
1158 | edited?: Edited;
|
1159 | icons?: MessageIcons;
|
1160 | last_read?: string;
|
1161 | latest_reply?: string;
|
1162 | mrkdwn?: boolean;
|
1163 | no_notifications?: boolean;
|
1164 | parent_user_id?: string;
|
1165 | replies?: Edited[];
|
1166 | reply_count?: number;
|
1167 | reply_users?: string[];
|
1168 | reply_users_count?: number;
|
1169 | room?: Room;
|
1170 | subscribed?: boolean;
|
1171 | subtype?: string;
|
1172 | team?: string;
|
1173 | text?: string;
|
1174 | thread_ts?: string;
|
1175 | ts?: string;
|
1176 | type?: string;
|
1177 | unread_count?: number;
|
1178 | user?: string;
|
1179 | username?: string;
|
1180 | }
|
1181 | export interface ListRecordElement {
|
1182 | created_by?: string;
|
1183 | date_created?: number;
|
1184 | fields?: RecordField[];
|
1185 | id?: string;
|
1186 | is_subscribed?: boolean;
|
1187 | list_id?: string;
|
1188 | platform_refs?: PlatformRefs;
|
1189 | position?: string;
|
1190 | saved?: Saved;
|
1191 | thread_ts?: string;
|
1192 | updated_by?: string;
|
1193 | updated_timestamp?: string;
|
1194 | }
|
1195 | export interface PlatformRefs {
|
1196 | bot_created_by?: string;
|
1197 | bot_deleted_by?: string;
|
1198 | bot_updated_by?: string;
|
1199 | }
|
1200 | export interface MessageBlock {
|
1201 | channel?: string;
|
1202 | message?: Message;
|
1203 | team?: string;
|
1204 | ts?: string;
|
1205 | }
|
1206 | export interface AttachmentMetadata {
|
1207 | extension?: string;
|
1208 | format?: string;
|
1209 | original_h?: number;
|
1210 | original_w?: number;
|
1211 | rotation?: number;
|
1212 | thumb_160?: boolean;
|
1213 | thumb_360_h?: number;
|
1214 | thumb_360_w?: number;
|
1215 | thumb_64?: boolean;
|
1216 | thumb_80?: boolean;
|
1217 | thumb_tiny?: string;
|
1218 | }
|
1219 | export interface AttachmentPreview {
|
1220 | can_remove?: boolean;
|
1221 | icon_url?: string;
|
1222 | subtitle?: DescriptionElement;
|
1223 | title?: DescriptionElement;
|
1224 | type?: string;
|
1225 | }
|
1226 | export interface LatestBlock {
|
1227 | accessory?: Accessory;
|
1228 | alt_text?: string;
|
1229 | api_decoration_available?: boolean;
|
1230 | app_collaborators?: string[];
|
1231 | app_id?: string;
|
1232 | author_name?: string;
|
1233 | block_id?: string;
|
1234 | bot_user_id?: string;
|
1235 | button_label?: string;
|
1236 | call?: Call;
|
1237 | call_id?: string;
|
1238 | description?: DescriptionElement;
|
1239 | developer_trace_id?: string;
|
1240 | dispatch_action?: boolean;
|
1241 | element?: Accessory;
|
1242 | elements?: Accessory[];
|
1243 | external_id?: string;
|
1244 | fallback?: string;
|
1245 | fields?: DescriptionElement[];
|
1246 | file?: FileElement;
|
1247 | file_id?: string;
|
1248 | function_trigger_id?: string;
|
1249 | hint?: DescriptionElement;
|
1250 | image_bytes?: number;
|
1251 | image_height?: number;
|
1252 | image_url?: string;
|
1253 | image_width?: number;
|
1254 | is_animated?: boolean;
|
1255 | is_workflow_app?: boolean;
|
1256 | label?: DescriptionElement;
|
1257 | optional?: boolean;
|
1258 | owning_team_id?: string;
|
1259 | provider_icon_url?: string;
|
1260 | provider_name?: string;
|
1261 | sales_home_workflow_app_type?: number;
|
1262 | share_url?: string;
|
1263 | slack_file?: SlackFile;
|
1264 | source?: string;
|
1265 | text?: DescriptionElement;
|
1266 | thumbnail_url?: string;
|
1267 | title?: DescriptionElement;
|
1268 | title_url?: string;
|
1269 | trigger_subtype?: string;
|
1270 | trigger_type?: string;
|
1271 | type?: BlockType;
|
1272 | url?: string;
|
1273 | video_url?: string;
|
1274 | workflow_id?: string;
|
1275 | }
|
1276 | export interface Call {
|
1277 | media_backend_type?: string;
|
1278 | v1?: V1;
|
1279 | }
|
1280 | export interface V1 {
|
1281 | active_participants?: Participant[];
|
1282 | all_participants?: Participant[];
|
1283 | app_icon_urls?: AppIconUrls;
|
1284 | app_id?: string;
|
1285 | channels?: string[];
|
1286 | created_by?: string;
|
1287 | date_end?: number;
|
1288 | date_start?: number;
|
1289 | desktop_app_join_url?: string;
|
1290 | display_id?: string;
|
1291 | has_ended?: boolean;
|
1292 | id?: string;
|
1293 | is_dm_call?: boolean;
|
1294 | join_url?: string;
|
1295 | name?: string;
|
1296 | was_accepted?: boolean;
|
1297 | was_missed?: boolean;
|
1298 | was_rejected?: boolean;
|
1299 | }
|
1300 | export interface Participant {
|
1301 | avatar_url?: string;
|
1302 | display_name?: string;
|
1303 | external_id?: string;
|
1304 | slack_id?: string;
|
1305 | }
|
1306 | export interface AppIconUrls {
|
1307 | image_1024?: string;
|
1308 | image_128?: string;
|
1309 | image_192?: string;
|
1310 | image_32?: string;
|
1311 | image_36?: string;
|
1312 | image_48?: string;
|
1313 | image_512?: string;
|
1314 | image_64?: string;
|
1315 | image_72?: string;
|
1316 | image_96?: string;
|
1317 | image_original?: string;
|
1318 | }
|
1319 | export interface Im {
|
1320 | context_team_id?: string;
|
1321 | created?: number;
|
1322 | has_pins?: boolean;
|
1323 | id?: string;
|
1324 | is_archived?: boolean;
|
1325 | is_im?: boolean;
|
1326 | is_open?: boolean;
|
1327 | is_org_shared?: boolean;
|
1328 | last_read?: string;
|
1329 | priority?: number;
|
1330 | user?: string;
|
1331 | }
|
1332 | export interface Links {
|
1333 | domains_ts?: number;
|
1334 | }
|
1335 | export interface ResponseMetadata {
|
1336 | messages?: string[];
|
1337 | }
|
1338 | export interface Self {
|
1339 | created?: number;
|
1340 | first_login?: number;
|
1341 | id?: string;
|
1342 | manual_presence?: string;
|
1343 | name?: string;
|
1344 | prefs?: SelfPrefs;
|
1345 | }
|
1346 | export interface SelfPrefs {
|
1347 | a11y_animations?: boolean;
|
1348 | a11y_dyslexic?: boolean;
|
1349 | a11y_play_sound_for_incoming_dm?: boolean;
|
1350 | a11y_play_sound_for_incoming_dm_choice?: string;
|
1351 | a11y_play_sound_for_sent_dm?: boolean;
|
1352 | a11y_play_sound_for_sent_dm_choice?: string;
|
1353 | a11y_read_out_incoming_dm?: boolean;
|
1354 | a11y_screen_reader_message_label_date_time_first?: boolean;
|
1355 | activity_view?: string;
|
1356 | add_apps_prompt_dismissed?: boolean;
|
1357 | add_channel_prompt_dismissed?: boolean;
|
1358 | add_prompt_interacted?: boolean;
|
1359 | all_channels_loud?: boolean;
|
1360 | all_notifications_prefs?: string;
|
1361 | all_unreads_section_filter?: string;
|
1362 | all_unreads_sort_order?: string;
|
1363 | allow_calls_to_set_current_status?: boolean;
|
1364 | allow_cmd_tab_iss?: boolean;
|
1365 | allowed_unfurl_senders?: string;
|
1366 | analytics_upsell_coachmark_seen?: boolean;
|
1367 | app_manifest_schema_format?: string;
|
1368 | app_subdomain_check_completed?: number;
|
1369 | arrow_history?: boolean;
|
1370 | at_channel_suppressed_channels?: string;
|
1371 | box_enabled?: boolean;
|
1372 | browsers_dismissed_channels_low_results_education?: boolean;
|
1373 | browsers_dismissed_files_low_results_education?: boolean;
|
1374 | browsers_dismissed_initial_activity_education?: boolean;
|
1375 | browsers_dismissed_initial_drafts_education?: boolean;
|
1376 | browsers_dismissed_initial_saved_education?: boolean;
|
1377 | browsers_dismissed_people_low_results_education?: boolean;
|
1378 | browsers_dismissed_user_groups_low_results_education?: boolean;
|
1379 | browsers_seen_initial_activity_education?: boolean;
|
1380 | browsers_seen_initial_channels_education?: boolean;
|
1381 | browsers_seen_initial_drafts_education?: boolean;
|
1382 | browsers_seen_initial_files_education?: boolean;
|
1383 | browsers_seen_initial_people_education?: boolean;
|
1384 | browsers_seen_initial_saved_education?: boolean;
|
1385 | browsers_seen_initial_user_groups_education?: boolean;
|
1386 | calls_disconnect_on_lock?: boolean;
|
1387 | calls_survey_last_seen?: string;
|
1388 | channel_canvas_variant?: number;
|
1389 | channel_sections?: string;
|
1390 | channel_sidebar_hide_browse_dms_link?: boolean;
|
1391 | channel_sidebar_hide_invite?: boolean;
|
1392 | channel_sort?: string;
|
1393 | chime_access_check_completed?: number;
|
1394 | clicked_close_onboarding_synth_view_banner?: boolean;
|
1395 | client_logs_pri?: string;
|
1396 | clips_feedback_survey_last_trigger_attempt?: number;
|
1397 | color_names_in_list?: boolean;
|
1398 | composer_nux?: string;
|
1399 | confirm_clear_all_unreads?: boolean;
|
1400 | confirm_sh_call_start?: boolean;
|
1401 | confirm_user_marked_away?: boolean;
|
1402 | connect_dm_early_access?: boolean;
|
1403 | contextual_help_reset_count?: number;
|
1404 | contextual_message_shortcuts_modal_was_seen?: boolean;
|
1405 | convert_emoticons?: boolean;
|
1406 | deprecation_banner_last_seen?: number;
|
1407 | deprecation_modal_last_seen?: number;
|
1408 | deprecation_toast_last_seen?: number;
|
1409 | desktop_client_ids?: string;
|
1410 | dismissed_app_config_redesign_coachmark?: boolean;
|
1411 | dismissed_app_launcher_atlassian_promo?: boolean;
|
1412 | dismissed_app_launcher_limit?: boolean;
|
1413 | dismissed_app_launcher_welcome?: boolean;
|
1414 | dismissed_app_manifest_coachmark?: boolean;
|
1415 | dismissed_app_manifest_description?: boolean;
|
1416 | dismissed_banner_download_ssb_prompt?: boolean;
|
1417 | dismissed_connect_auto_approval_modal?: string;
|
1418 | dismissed_fullscreen_download_ssb_prompt?: boolean;
|
1419 | dismissed_gov_slack_first_time_popup?: boolean;
|
1420 | dismissed_installed_app_dm_suggestions?: string;
|
1421 | dismissed_scdm_education?: boolean;
|
1422 | dismissed_scroll_search_tooltip_count?: number;
|
1423 | dismissed_sent_page_education?: boolean;
|
1424 | display_display_names?: boolean;
|
1425 | display_real_names_override?: number;
|
1426 | dnd_after_friday?: string;
|
1427 | dnd_after_monday?: string;
|
1428 | dnd_after_saturday?: string;
|
1429 | dnd_after_sunday?: string;
|
1430 | dnd_after_thursday?: string;
|
1431 | dnd_after_tuesday?: string;
|
1432 | dnd_after_wednesday?: string;
|
1433 | dnd_before_friday?: string;
|
1434 | dnd_before_monday?: string;
|
1435 | dnd_before_saturday?: string;
|
1436 | dnd_before_sunday?: string;
|
1437 | dnd_before_thursday?: string;
|
1438 | dnd_before_tuesday?: string;
|
1439 | dnd_before_wednesday?: string;
|
1440 | dnd_custom_new_badge_seen?: boolean;
|
1441 | dnd_days?: string;
|
1442 | dnd_enabled?: boolean;
|
1443 | dnd_enabled_friday?: string;
|
1444 | dnd_enabled_monday?: string;
|
1445 | dnd_enabled_saturday?: string;
|
1446 | dnd_enabled_sunday?: string;
|
1447 | dnd_enabled_thursday?: string;
|
1448 | dnd_enabled_tuesday?: string;
|
1449 | dnd_enabled_wednesday?: string;
|
1450 | dnd_end_hour?: string;
|
1451 | dnd_notification_schedule_new_badge_seen?: boolean;
|
1452 | dnd_start_hour?: string;
|
1453 | dnd_weekdays_off_allday?: boolean;
|
1454 | dropbox_enabled?: boolean;
|
1455 | edge_upload_proxy_check_completed?: number;
|
1456 | email_alerts?: string;
|
1457 | email_alerts_sleep_until?: number;
|
1458 | email_developer?: boolean;
|
1459 | email_offers?: boolean;
|
1460 | email_research?: boolean;
|
1461 | email_tips?: boolean;
|
1462 | email_weekly?: boolean;
|
1463 | emoji_autocomplete_big?: boolean;
|
1464 | emoji_mode?: string;
|
1465 | emoji_packs_clicked_collection_cta?: boolean;
|
1466 | emoji_packs_clicked_picker_cta?: boolean;
|
1467 | emoji_packs_clicked_picker_post_install_cta?: boolean;
|
1468 | emoji_packs_most_recent_available_time?: number;
|
1469 | emoji_use?: string;
|
1470 | emoji_use_org?: string;
|
1471 | enable_all_dms_view?: boolean;
|
1472 | enable_app_browser_view?: boolean;
|
1473 | enable_app_config_redesign?: boolean;
|
1474 | enable_channel_browser_view?: boolean;
|
1475 | enable_drafts_view?: boolean;
|
1476 | enable_file_browser_view?: boolean;
|
1477 | enable_file_browser_view_for_docs?: boolean;
|
1478 | enable_hq_view?: boolean;
|
1479 | enable_later_view?: boolean;
|
1480 | enable_media_captions?: boolean;
|
1481 | enable_mentions_and_reactions_view?: boolean;
|
1482 | enable_people_browser_view?: boolean;
|
1483 | enable_quip_file_browser_view?: boolean;
|
1484 | enable_react_emoji_picker?: boolean;
|
1485 | enable_reminders_view?: boolean;
|
1486 | enable_saved_items_view?: boolean;
|
1487 | enable_scheduled_view?: boolean;
|
1488 | enable_sent_view?: boolean;
|
1489 | enable_shortcuts_view?: boolean;
|
1490 | enable_slack_connect_view?: boolean;
|
1491 | enable_slack_connect_view_2?: number;
|
1492 | enable_streamline_view?: boolean;
|
1493 | enable_unread_view?: boolean;
|
1494 | ent_org_wide_channels_sidebar?: boolean;
|
1495 | enter_is_special_in_tbt?: boolean;
|
1496 | enterprise_mdm_custom_msg?: string;
|
1497 | enterprise_migration_seen?: boolean;
|
1498 | expand_inline_imgs?: boolean;
|
1499 | expand_internal_inline_imgs?: boolean;
|
1500 | expand_non_media_attachments?: boolean;
|
1501 | expand_snippets?: boolean;
|
1502 | f_key_search?: boolean;
|
1503 | failover_proxy_check_completed?: number;
|
1504 | file_picker_variant?: number;
|
1505 | first_seen_new_badge_in_more_menu_sidebar?: number;
|
1506 | first_seen_sent_page_in_sidebar?: number;
|
1507 | flannel_server_pool?: string;
|
1508 | folder_data?: string;
|
1509 | folders_enabled?: boolean;
|
1510 | frecency?: string;
|
1511 | frecency_ent_jumper?: string;
|
1512 | frecency_jumper?: string;
|
1513 | fuller_timestamps?: boolean;
|
1514 | graphic_emoticons?: boolean;
|
1515 | growls_enabled?: boolean;
|
1516 | growth_all_banners_prefs?: string;
|
1517 | growth_msg_limit_approaching_cta_count?: number;
|
1518 | growth_msg_limit_approaching_cta_ts?: number;
|
1519 | growth_msg_limit_long_reached_cta_count?: number;
|
1520 | growth_msg_limit_long_reached_cta_last_ts?: number;
|
1521 | growth_msg_limit_reached_cta_count?: number;
|
1522 | growth_msg_limit_reached_cta_last_ts?: number;
|
1523 | growth_msg_limit_sixty_day_banner_cta_count?: number;
|
1524 | growth_msg_limit_sixty_day_banner_cta_last_ts?: number;
|
1525 | has_acknowledged_shortcut_speedbump?: boolean;
|
1526 | has_created_channel?: boolean;
|
1527 | has_created_channel_section?: boolean;
|
1528 | has_dismissed_google_directory_coachmark?: boolean;
|
1529 | has_drafted_message?: boolean;
|
1530 | has_invited?: boolean;
|
1531 | has_joined_huddle?: boolean;
|
1532 | has_received_mention_or_reaction?: boolean;
|
1533 | has_received_threaded_message?: boolean;
|
1534 | has_recently_shared_a_channel?: boolean;
|
1535 | has_searched?: boolean;
|
1536 | has_sent_ten_messages?: number;
|
1537 | has_starred_item?: boolean;
|
1538 | has_uploaded?: boolean;
|
1539 | has_used_quickswitcher_shortcut?: boolean;
|
1540 | help_flexpane_clips_card_seen?: boolean;
|
1541 | help_flexpane_slack_connect_card_seen?: boolean;
|
1542 | help_menu_open_timestamp?: number;
|
1543 | help_modal_consult_banner_dismissed?: boolean;
|
1544 | help_modal_open_timestamp?: number;
|
1545 | hidden_users?: string;
|
1546 | hide_external_members_sharing_speed_bump?: boolean;
|
1547 | hide_hex_swatch?: boolean;
|
1548 | hide_user_group_info_pane?: boolean;
|
1549 | highlight_words?: string;
|
1550 | huddle_invite_sound?: string;
|
1551 | huddle_survey_last_seen?: string;
|
1552 | huddles_allow_smart_notif?: boolean;
|
1553 | huddles_cc_by_default?: boolean;
|
1554 | huddles_chime_new_endpoints_check_completed?: number;
|
1555 | huddles_disconnect_on_lock?: boolean;
|
1556 | huddles_global_mute?: boolean;
|
1557 | huddles_mini_panel?: boolean;
|
1558 | huddles_mute_by_default?: boolean;
|
1559 | huddles_play_music_when_last?: boolean;
|
1560 | huddles_reactions_play_sound?: boolean;
|
1561 | huddles_reactions_read_out_loud?: boolean;
|
1562 | huddles_set_status?: boolean;
|
1563 | huddles_show_shouty_rooster?: boolean;
|
1564 | huddles_variant?: number;
|
1565 | ia_details_coachmark_seen?: boolean;
|
1566 | ia_platform_actions_lab?: number;
|
1567 | ia_slackbot_survey_timestamp_48h?: number;
|
1568 | ia_slackbot_survey_timestamp_7d?: number;
|
1569 | ia_top_nav_theme?: string;
|
1570 | iap1_lab?: number;
|
1571 | identity_links_global_prefs?: string;
|
1572 | identity_links_prefs?: string;
|
1573 | in_interactive_mas_migration_flow?: boolean;
|
1574 | in_prod_surveys_enabled?: boolean;
|
1575 | inbox_views_workspace_filter?: string;
|
1576 | invite_accepted_notifications_muted?: boolean;
|
1577 | join_calls_device_settings?: string;
|
1578 | joiner_message_suggestion_dismissed?: boolean;
|
1579 | joiner_notifications_muted?: boolean;
|
1580 | jumbomoji?: boolean;
|
1581 | k_key_omnibox?: boolean;
|
1582 | k_key_omnibox_auto_hide_count?: number;
|
1583 | last_dismissed_scroll_search_tooltip_timestamp?: number;
|
1584 | last_seen_at_channel_warning?: number;
|
1585 | last_seen_sections_unreads_only_prompt_timestamp?: number;
|
1586 | last_snippet_type?: string;
|
1587 | lessons_enabled?: boolean;
|
1588 | load_lato_2?: boolean;
|
1589 | locale?: string;
|
1590 | locales_enabled?: LocalesEnabled;
|
1591 | loud_channels?: string;
|
1592 | loud_channels_set?: string;
|
1593 | ls_disabled?: boolean;
|
1594 | mac_ssb_bounce?: string;
|
1595 | mac_ssb_bullet?: boolean;
|
1596 | mark_msgs_read_immediately?: boolean;
|
1597 | media_muted?: boolean;
|
1598 | media_playback_speed?: number;
|
1599 | media_volume?: number;
|
1600 | mentions_exclude_at_channels?: boolean;
|
1601 | mentions_exclude_at_user_groups?: boolean;
|
1602 | mentions_exclude_reactions?: boolean;
|
1603 | message_navigation_toast_was_seen?: boolean;
|
1604 | messages_theme?: string;
|
1605 | mobile_channel_list_show_all_dms?: boolean;
|
1606 | mobile_channel_list_sort?: string;
|
1607 | msg_input_send_btn?: boolean;
|
1608 | msg_input_send_btn_auto_set?: boolean;
|
1609 | msg_input_sticky_composer?: boolean;
|
1610 | mute_sounds?: boolean;
|
1611 | muted_channels?: string;
|
1612 | mx_calendar_type?: string;
|
1613 | needs_initial_password_set?: boolean;
|
1614 | never_channels?: string;
|
1615 | new_msg_snd?: string;
|
1616 | newxp_seen_help_message?: number;
|
1617 | newxp_seen_last_message?: number;
|
1618 | newxp_suggested_channels?: string;
|
1619 | no_created_overlays?: boolean;
|
1620 | no_invites_widget_in_sidebar?: boolean;
|
1621 | no_joined_overlays?: boolean;
|
1622 | no_macelectron_banner?: boolean;
|
1623 | no_macssb1_banner?: boolean;
|
1624 | no_macssb2_banner?: boolean;
|
1625 | no_omnibox_in_channels?: boolean;
|
1626 | no_text_in_notifications?: boolean;
|
1627 | no_winssb1_banner?: boolean;
|
1628 | notification_center_filters?: string;
|
1629 | notifications_view?: string;
|
1630 | obey_inline_img_limit?: boolean;
|
1631 | onboarding_cancelled?: boolean;
|
1632 | onboarding_complete?: boolean;
|
1633 | onboarding_slackbot_conversation_step?: number;
|
1634 | onboarding_state?: number;
|
1635 | onboarding_tip_opt_out?: boolean;
|
1636 | open_quip_doc_in_flexpane?: boolean;
|
1637 | opened_slackbot_dm?: boolean;
|
1638 | overloaded_message_enabled?: boolean;
|
1639 | pagekeys_handled?: boolean;
|
1640 | phc_dismissed?: string;
|
1641 | phc_viewed?: string;
|
1642 | plain_text_mode?: boolean;
|
1643 | posts_formatting_guide?: boolean;
|
1644 | preferred_skin_tone?: string;
|
1645 | privacy_policy_seen?: boolean;
|
1646 | progressive_disclosure_state?: string;
|
1647 | prompted_for_email_disabling?: boolean;
|
1648 | purchaser?: boolean;
|
1649 | push_at_channel_suppressed_channels?: string;
|
1650 | push_dm_alert?: boolean;
|
1651 | push_everything?: boolean;
|
1652 | push_idle_wait?: number;
|
1653 | push_loud_channels?: string;
|
1654 | push_loud_channels_set?: string;
|
1655 | push_mention_alert?: boolean;
|
1656 | push_mention_channels?: string;
|
1657 | push_show_preview?: boolean;
|
1658 | push_sound?: string;
|
1659 | reached_all_dms_disclosure?: boolean;
|
1660 | reaction_notifications?: string;
|
1661 | reminder_notification_time?: string;
|
1662 | require_at?: boolean;
|
1663 | saved_searches?: string;
|
1664 | saved_view?: string;
|
1665 | scdm_trial_offer_banner?: string;
|
1666 | search_channel_sort?: string;
|
1667 | search_exclude_bots?: boolean;
|
1668 | search_exclude_channels?: string;
|
1669 | search_file_sort?: string;
|
1670 | search_hide_deactivated_users?: boolean;
|
1671 | search_hide_my_channels?: boolean;
|
1672 | search_only_current_team?: boolean;
|
1673 | search_only_my_channels?: boolean;
|
1674 | search_only_show_online?: boolean;
|
1675 | search_people_sort?: string;
|
1676 | search_sort?: string;
|
1677 | seen_a11y_pref_setup_coachmark?: boolean;
|
1678 | seen_administration_menu?: boolean;
|
1679 | seen_app_space_coachmark?: boolean;
|
1680 | seen_app_space_tutorial?: boolean;
|
1681 | seen_bookmarks_intro?: boolean;
|
1682 | seen_calls_interactive_coachmark?: boolean;
|
1683 | seen_channel_browser_admin_coachmark?: boolean;
|
1684 | seen_channel_email_tooltip?: boolean;
|
1685 | seen_channel_search?: boolean;
|
1686 | seen_connect_dm_coachmark?: boolean;
|
1687 | seen_connect_section_coachmark?: boolean;
|
1688 | seen_contextual_message_shortcuts_modal?: boolean;
|
1689 | seen_corporate_export_alert?: boolean;
|
1690 | seen_custom_status_badge?: boolean;
|
1691 | seen_custom_status_callout?: boolean;
|
1692 | seen_custom_status_expiration_badge?: boolean;
|
1693 | seen_domain_invite_reminder?: boolean;
|
1694 | seen_drafts_section_coachmark?: boolean;
|
1695 | seen_edit_mode?: boolean;
|
1696 | seen_edit_mode_edu?: boolean;
|
1697 | seen_emoji_pack_cta?: number;
|
1698 | seen_emoji_pack_dialog?: boolean;
|
1699 | seen_emoji_update_overlay_coachmark?: boolean;
|
1700 | seen_existing_install_coachmark?: boolean;
|
1701 | seen_first_install_coachmark?: boolean;
|
1702 | seen_floating_sidebar_coachmark?: boolean;
|
1703 | seen_gdrive_coachmark?: boolean;
|
1704 | seen_guest_admin_slackbot_announcement?: boolean;
|
1705 | seen_highlights_arrows_coachmark?: boolean;
|
1706 | seen_highlights_coachmark?: boolean;
|
1707 | seen_highlights_warm_welcome?: boolean;
|
1708 | seen_ia_education?: boolean;
|
1709 | seen_intl_channel_names_coachmark?: boolean;
|
1710 | seen_japanese_locale_change_message?: boolean;
|
1711 | seen_keyboard_shortcuts_coachmark?: boolean;
|
1712 | seen_link_unfurl_coachmark?: boolean;
|
1713 | seen_locale_change_message?: number;
|
1714 | seen_markdown_paste_shortcut?: number;
|
1715 | seen_markdown_paste_toast?: number;
|
1716 | seen_member_invite_reminder?: boolean;
|
1717 | seen_message_navigation_educational_toast?: boolean;
|
1718 | seen_name_tagging_coachmark?: boolean;
|
1719 | seen_new_badge_in_more_menu_sidebar?: boolean;
|
1720 | seen_new_search_ui?: boolean;
|
1721 | seen_onboarding_banner?: boolean;
|
1722 | seen_onboarding_channels?: boolean;
|
1723 | seen_onboarding_direct_messages?: boolean;
|
1724 | seen_onboarding_invites?: boolean;
|
1725 | seen_onboarding_private_groups?: boolean;
|
1726 | seen_onboarding_recent_mentions?: boolean;
|
1727 | seen_onboarding_search?: boolean;
|
1728 | seen_onboarding_slackbot_conversation?: boolean;
|
1729 | seen_onboarding_starred_items?: boolean;
|
1730 | seen_onboarding_start?: boolean;
|
1731 | seen_onboarding_synth_view?: boolean;
|
1732 | seen_onboarding_synth_view_count?: number;
|
1733 | seen_onboarding_synth_view_count_v2?: number;
|
1734 | seen_onboarding_synth_view_v2?: boolean;
|
1735 | seen_p3_locale_change_message_ko_kr?: number;
|
1736 | seen_people_search?: boolean;
|
1737 | seen_people_search_count?: number;
|
1738 | seen_quickswitcher_shortcut_tip_count?: number;
|
1739 | seen_sc_menu_coachmark?: boolean;
|
1740 | seen_sc_page?: boolean;
|
1741 | seen_sc_page_banner?: boolean;
|
1742 | seen_schedule_send_coachmark?: boolean;
|
1743 | seen_sections_unreads_only_prompt_count?: number;
|
1744 | seen_sent_page_in_sidebar?: boolean;
|
1745 | seen_shared_channels_coachmark?: boolean;
|
1746 | seen_shared_channels_opt_in_change_message?: boolean;
|
1747 | seen_shdep_slackbot_message?: boolean;
|
1748 | seen_single_emoji_msg?: boolean;
|
1749 | seen_sonic_deluxe_toast?: number;
|
1750 | seen_ssb_prompt?: boolean;
|
1751 | seen_threads_notification_banner?: boolean;
|
1752 | seen_toast_new_locale_launch?: string;
|
1753 | seen_toast_new_locale_launch_ts?: number;
|
1754 | seen_unread_view_coachmark?: boolean;
|
1755 | seen_welcome_2?: boolean;
|
1756 | seen_workflow_builder_deluxe_toast?: boolean;
|
1757 | seen_wysiwyg_deluxe_toast?: boolean;
|
1758 | separate_private_channels?: boolean;
|
1759 | separate_shared_channels?: boolean;
|
1760 | set_a11y_prefs_new_user?: boolean;
|
1761 | set_tz_automatically?: boolean;
|
1762 | shdep_promo_code_submitted?: boolean;
|
1763 | should_show_connect_section?: boolean;
|
1764 | should_show_contextual_help_for_conversation_navigation?: boolean;
|
1765 | should_show_contextual_help_for_jump_to_conversation?: boolean;
|
1766 | should_show_contextual_help_for_section_navigation?: boolean;
|
1767 | should_show_contextual_help_for_thread_navigation?: boolean;
|
1768 | should_show_unsend_message_confirmation?: boolean;
|
1769 | show_all_skin_tones?: boolean;
|
1770 | show_autocomplete_help?: number;
|
1771 | show_ent_onboarding?: boolean;
|
1772 | show_gov_slack_context_bar_banner?: boolean;
|
1773 | show_ia_tour_relaunch?: number;
|
1774 | show_jumper_scores?: boolean;
|
1775 | show_memory_instrument?: boolean;
|
1776 | show_quick_reactions?: boolean;
|
1777 | show_shared_channels_education_banner?: boolean;
|
1778 | show_sidebar_avatars?: boolean;
|
1779 | show_sidebar_quickswitcher_button?: boolean;
|
1780 | show_typing?: boolean;
|
1781 | sidebar_behavior?: string;
|
1782 | sidebar_pref_dismissed_tip?: boolean;
|
1783 | sidebar_theme?: string;
|
1784 | sidebar_theme_custom_values?: string;
|
1785 | slack_connect_invite_should_badge_sidebar?: boolean;
|
1786 | snippet_editor_wrap_long_lines?: boolean;
|
1787 | spaces_new_xp_banner_dismissed?: boolean;
|
1788 | ss_emojis?: boolean;
|
1789 | ssb_space_window?: string;
|
1790 | start_scroll_at_oldest?: boolean;
|
1791 | suggestions_request_id?: string;
|
1792 | sunset_interactive_message_views?: number;
|
1793 | suppress_external_invites_from_compose_warning?: boolean;
|
1794 | suppress_link_warning?: boolean;
|
1795 | suppress_thread_mention_warning?: boolean;
|
1796 | synth_view_prefs?: string;
|
1797 | tab_ui_return_selects?: boolean;
|
1798 | tasks_view?: string;
|
1799 | threads_everything?: boolean;
|
1800 | time24?: boolean;
|
1801 | tractor_enabled?: boolean;
|
1802 | tractor_experiment_group?: string;
|
1803 | two_factor_auth_enabled?: boolean;
|
1804 | tz?: string;
|
1805 | underline_links?: boolean;
|
1806 | up_to_browse_kb_shortcut?: boolean;
|
1807 | used_custom_status_kb_shortcut?: boolean;
|
1808 | user_colors?: string;
|
1809 | user_customized_quick_reactions_display_feature?: number;
|
1810 | user_customized_quick_reactions_has_customized?: boolean;
|
1811 | user_customized_quick_reactions_use_frequently_used_emoji?: boolean;
|
1812 | user_expectations_survey_last_trigger_attempt?: number;
|
1813 | webapp_spellcheck?: boolean;
|
1814 | welcome_message_hidden?: boolean;
|
1815 | welcome_place_state?: string;
|
1816 | whats_new_read?: number;
|
1817 | who_can_see_account_by_searching_email?: string;
|
1818 | who_can_share_contact_card?: string;
|
1819 | whocanseethis_dm_mpdm_badge?: boolean;
|
1820 | workflow_builder_coachmarks?: string;
|
1821 | workflow_builder_intro_modal_clicked_through?: boolean;
|
1822 | xws_dismissed_education?: boolean;
|
1823 | xws_seen_education?: number;
|
1824 | xws_sidebar_variant?: number;
|
1825 | }
|
1826 | export interface LocalesEnabled {
|
1827 | 'de-DE'?: string;
|
1828 | 'en-GB'?: string;
|
1829 | 'en-US'?: string;
|
1830 | 'es-ES'?: string;
|
1831 | 'es-LA'?: string;
|
1832 | 'fr-FR'?: string;
|
1833 | 'it-IT'?: string;
|
1834 | 'ja-JP'?: string;
|
1835 | 'ko-KR'?: string;
|
1836 | 'pt-BR'?: string;
|
1837 | 'ru-RU'?: string;
|
1838 | 'zh-CN'?: string;
|
1839 | 'zh-TW'?: string;
|
1840 | }
|
1841 | export interface Subteams {
|
1842 | all?: All[];
|
1843 | self?: string[];
|
1844 | }
|
1845 | export interface All {
|
1846 | auto_provision?: boolean;
|
1847 | channel_count?: number;
|
1848 | created_by?: string;
|
1849 | date_create?: number;
|
1850 | date_delete?: number;
|
1851 | date_update?: number;
|
1852 | description?: string;
|
1853 | enterprise_subteam_id?: string;
|
1854 | handle?: string;
|
1855 | id?: string;
|
1856 | is_external?: boolean;
|
1857 | is_subteam?: boolean;
|
1858 | is_usergroup?: boolean;
|
1859 | name?: string;
|
1860 | prefs?: AllPrefs;
|
1861 | team_id?: string;
|
1862 | updated_by?: string;
|
1863 | user_count?: number;
|
1864 | }
|
1865 | export interface AllPrefs {
|
1866 | channels?: string[];
|
1867 | groups?: Group[];
|
1868 | }
|
1869 | export interface Team {
|
1870 | avatar_base_url?: string;
|
1871 | date_create?: number;
|
1872 | domain?: string;
|
1873 | email_domain?: string;
|
1874 | icon?: Icon;
|
1875 | id?: string;
|
1876 | is_verified?: boolean;
|
1877 | limit_ts?: number;
|
1878 | messages_count?: number;
|
1879 | msg_edit_window_mins?: number;
|
1880 | name?: string;
|
1881 | onboarding_channel_id?: string;
|
1882 | over_storage_limit?: boolean;
|
1883 | plan?: string;
|
1884 | prefs?: TeamPrefs;
|
1885 | url?: string;
|
1886 | }
|
1887 | export interface Icon {
|
1888 | image_102?: string;
|
1889 | image_132?: string;
|
1890 | image_230?: string;
|
1891 | image_34?: string;
|
1892 | image_44?: string;
|
1893 | image_68?: string;
|
1894 | image_88?: string;
|
1895 | image_original?: string;
|
1896 | }
|
1897 | export interface TeamPrefs {
|
1898 | admin_customized_quick_reactions?: string[];
|
1899 | all_users_can_purchase?: boolean;
|
1900 | allow_admin_retention_override?: number;
|
1901 | allow_audio_clip_sharing_slack_connect?: boolean;
|
1902 | allow_audio_clips?: boolean;
|
1903 | allow_box_cfs?: boolean;
|
1904 | allow_calls?: boolean;
|
1905 | allow_calls_interactive_screen_sharing?: boolean;
|
1906 | allow_clip_downloads?: string;
|
1907 | allow_free_automated_trials?: boolean;
|
1908 | allow_huddles?: boolean;
|
1909 | allow_huddles_transcriptions?: boolean;
|
1910 | allow_huddles_video?: boolean;
|
1911 | allow_media_transcriptions?: boolean;
|
1912 | allow_message_deletion?: boolean;
|
1913 | allow_retention_override?: boolean;
|
1914 | allow_spaceship?: string;
|
1915 | allow_sponsored_slack_connections?: boolean;
|
1916 | allow_video_clip_sharing_slack_connect?: boolean;
|
1917 | allow_video_clips?: boolean;
|
1918 | app_dir_only?: boolean;
|
1919 | app_management_apps?: string[];
|
1920 | app_whitelist_enabled?: boolean;
|
1921 | auth_mode?: string;
|
1922 | block_file_download?: boolean;
|
1923 | box_app_installed?: boolean;
|
1924 | calls_apps?: CallsApps;
|
1925 | calls_locations?: string[];
|
1926 | can_accept_slack_connect_channel_invites?: boolean;
|
1927 | can_create_external_limited_invite?: boolean;
|
1928 | can_create_slack_connect_channel_invite?: boolean;
|
1929 | can_receive_shared_channels_invites?: boolean;
|
1930 | channel_email_addresses_enabled?: boolean;
|
1931 | compliance_export_start?: number;
|
1932 | content_review_enabled?: boolean;
|
1933 | created_with_google?: boolean;
|
1934 | custom_status_default_emoji?: string;
|
1935 | custom_status_presets?: Array<string[]>;
|
1936 | daily_prompts_enabled?: boolean;
|
1937 | default_channel_creation_enabled?: boolean;
|
1938 | default_channels?: string[];
|
1939 | default_create_private_channel?: boolean;
|
1940 | default_rxns?: string[];
|
1941 | disable_email_ingestion?: boolean;
|
1942 | disable_file_deleting?: boolean;
|
1943 | disable_file_editing?: boolean;
|
1944 | disable_file_uploads?: string;
|
1945 | disable_sidebar_connect_prompts?: string[];
|
1946 | disable_sidebar_install_prompts?: string[];
|
1947 | disallow_public_file_urls?: boolean;
|
1948 | discoverable?: string;
|
1949 | display_anniversary_celebration?: boolean;
|
1950 | display_default_phone?: boolean;
|
1951 | display_email_addresses?: boolean;
|
1952 | display_external_email_addresses?: boolean;
|
1953 | display_name_pronunciation?: boolean;
|
1954 | display_new_hire_celebration?: boolean;
|
1955 | display_pronouns?: boolean;
|
1956 | display_real_names?: boolean;
|
1957 | dm_retention_duration?: number;
|
1958 | dm_retention_redaction_duration?: number;
|
1959 | dm_retention_type?: number;
|
1960 | dnd_after_friday?: string;
|
1961 | dnd_after_monday?: string;
|
1962 | dnd_after_saturday?: string;
|
1963 | dnd_after_sunday?: string;
|
1964 | dnd_after_thursday?: string;
|
1965 | dnd_after_tuesday?: string;
|
1966 | dnd_after_wednesday?: string;
|
1967 | dnd_before_friday?: string;
|
1968 | dnd_before_monday?: string;
|
1969 | dnd_before_saturday?: string;
|
1970 | dnd_before_sunday?: string;
|
1971 | dnd_before_thursday?: string;
|
1972 | dnd_before_tuesday?: string;
|
1973 | dnd_before_wednesday?: string;
|
1974 | dnd_days?: string;
|
1975 | dnd_enabled?: boolean;
|
1976 | dnd_enabled_friday?: string;
|
1977 | dnd_enabled_monday?: string;
|
1978 | dnd_enabled_saturday?: string;
|
1979 | dnd_enabled_sunday?: string;
|
1980 | dnd_enabled_thursday?: string;
|
1981 | dnd_enabled_tuesday?: string;
|
1982 | dnd_enabled_wednesday?: string;
|
1983 | dnd_end_hour?: string;
|
1984 | dnd_start_hour?: string;
|
1985 | dnd_weekdays_off_allday?: boolean;
|
1986 | dropbox_legacy_picker?: boolean;
|
1987 | emoji_only_admins?: boolean;
|
1988 | enable_connect_dm_early_access?: boolean;
|
1989 | enable_domain_allowlist_for_cea?: boolean;
|
1990 | enable_info_barriers?: boolean;
|
1991 | enable_mpdm_to_private_channel_conversion?: boolean;
|
1992 | enable_shared_channels?: number;
|
1993 | enterprise_default_channels?: string[];
|
1994 | enterprise_has_corporate_exports?: boolean;
|
1995 | enterprise_intune_enabled?: boolean;
|
1996 | enterprise_mandatory_channels?: string[];
|
1997 | enterprise_mdm_date_enabled?: number;
|
1998 | enterprise_mdm_disable_file_download?: boolean;
|
1999 | enterprise_mdm_level?: number;
|
2000 | enterprise_mdm_token?: string;
|
2001 | enterprise_mobile_device_check?: boolean;
|
2002 | enterprise_team_creation_request?: EnterpriseTeamCreationRequest;
|
2003 | ext_audit_log_retention_duration?: number;
|
2004 | ext_audit_log_retention_type?: number;
|
2005 | file_limit_whitelisted?: boolean;
|
2006 | file_retention_duration?: number;
|
2007 | file_retention_type?: number;
|
2008 | filepicker_app_first_install?: boolean;
|
2009 | gdrive_enabled_team?: boolean;
|
2010 | gg_enabled?: boolean;
|
2011 | group_retention_duration?: number;
|
2012 | group_retention_type?: number;
|
2013 | has_compliance_export?: boolean;
|
2014 | has_hipaa_compliance?: boolean;
|
2015 | has_seen_partner_promo?: boolean;
|
2016 | hermes_has_accepted_tos?: boolean;
|
2017 | hermes_triggers_trippable_by_slack_connected_teams?: boolean;
|
2018 | hide_gsuite_invite_option?: boolean;
|
2019 | hide_referers?: boolean;
|
2020 | identity_links_prefs?: EnterpriseTeamCreationRequest;
|
2021 | invite_requests_enabled?: boolean;
|
2022 | invited_user_preset?: InvitedUserPreset;
|
2023 | invites_limit?: boolean;
|
2024 | invites_only_admins?: boolean;
|
2025 | joiner_notifications_enabled?: boolean;
|
2026 | loading_only_admins?: boolean;
|
2027 | locale?: string;
|
2028 | loud_channel_mentions_limit?: number;
|
2029 | magic_unfurls_enabled?: boolean;
|
2030 | member_analytics_disabled?: boolean;
|
2031 | ml_opt_out?: boolean;
|
2032 | mobile_passcode_timeout_in_seconds?: number;
|
2033 | mobile_session_duration?: number;
|
2034 | msg_edit_window_mins?: number;
|
2035 | notification_redaction_type?: string;
|
2036 | notify_pending_enabled?: boolean;
|
2037 | ntlm_credential_domains?: string;
|
2038 | onedrive_app_installed?: boolean;
|
2039 | onedrive_enabled_team?: boolean;
|
2040 | private_channel_membership_limit?: number;
|
2041 | private_retention_redaction_duration?: number;
|
2042 | public_retention_redaction_duration?: number;
|
2043 | received_esc_route_to_channel_awareness_message?: boolean;
|
2044 | retention_duration?: number;
|
2045 | retention_type?: number;
|
2046 | rich_previews_default?: string;
|
2047 | saml_enable?: boolean;
|
2048 | search_feedback_opt_out?: boolean;
|
2049 | self_serve_select?: boolean;
|
2050 | session_duration?: number;
|
2051 | session_duration_type?: number;
|
2052 | show_join_leave?: boolean;
|
2053 | show_legacy_paid_benefits_page?: boolean;
|
2054 | show_mobile_promos?: boolean;
|
2055 | sign_in_with_slack_default?: string;
|
2056 | sign_in_with_slack_disabled?: boolean;
|
2057 | single_user_exports?: boolean;
|
2058 | slack_connect_account_visibility?: string;
|
2059 | slack_connect_allowed_workspaces?: SlackConnectAllowedWorkspaces;
|
2060 | slack_connect_approval_type?: string;
|
2061 | slack_connect_dm_only_verified_orgs?: boolean;
|
2062 | slack_connect_file_upload_sharing_enabled?: boolean;
|
2063 | slackbot_responses_disabled?: boolean;
|
2064 | slackbot_responses_only_admins?: boolean;
|
2065 | spaceship_workspace_setting_visible?: boolean;
|
2066 | sso_disable_emails?: boolean;
|
2067 | sso_optional?: boolean;
|
2068 | sso_signup_restrictions?: number;
|
2069 | sso_sync_with_provider?: boolean;
|
2070 | stats_only_admins?: boolean;
|
2071 | subteams_auto_create_admin?: boolean;
|
2072 | subteams_auto_create_owner?: boolean;
|
2073 | thorn_safer_scan?: boolean;
|
2074 | two_factor_auth_required?: number;
|
2075 | uneditable_user_profile_fields?: string[];
|
2076 | use_browser_picker?: boolean;
|
2077 | uses_customized_custom_status_presets?: boolean;
|
2078 | warn_before_at_channel?: string;
|
2079 | warn_user_before_logout?: boolean;
|
2080 | warn_user_before_logout_desktop?: boolean;
|
2081 | warn_user_before_logout_mobile?: boolean;
|
2082 | welcome_place_enabled?: boolean;
|
2083 | who_can_accept_slack_connect_channel_invites?: SlackConnectAllowedWorkspaces;
|
2084 | who_can_archive_channels?: string;
|
2085 | who_can_at_channel?: string;
|
2086 | who_can_at_everyone?: string;
|
2087 | who_can_change_team_profile?: string;
|
2088 | who_can_create_channel_email_addresses?: SlackConnectAllowedWorkspaces;
|
2089 | who_can_create_channels?: string;
|
2090 | who_can_create_delete_user_groups?: string;
|
2091 | who_can_create_external_limited_invite?: SlackConnectAllowedWorkspaces;
|
2092 | who_can_create_groups?: string;
|
2093 | who_can_create_shared_channels?: string;
|
2094 | who_can_create_slack_connect_channel_invite?: SlackConnectAllowedWorkspaces;
|
2095 | who_can_create_workflows?: SlackConnectAllowedWorkspaces;
|
2096 | who_can_dm_anyone?: SlackConnectAllowedWorkspaces;
|
2097 | who_can_edit_user_groups?: string;
|
2098 | who_can_kick_channels?: string;
|
2099 | who_can_kick_groups?: string;
|
2100 | who_can_manage_channel_posting_prefs?: string;
|
2101 | who_can_manage_ext_shared_channels?: SlackConnectAllowedWorkspaces;
|
2102 | who_can_manage_guests?: SlackConnectAllowedWorkspaces;
|
2103 | who_can_manage_integrations?: SlackConnectAllowedWorkspaces;
|
2104 | who_can_manage_private_channels?: WhoCanManageP;
|
2105 | who_can_manage_private_channels_at_workspace_level?: WhoCanManageP;
|
2106 | who_can_manage_public_channels?: WhoCanManageP;
|
2107 | who_can_manage_shared_channels?: SlackConnectAllowedWorkspaces;
|
2108 | who_can_post_general?: string;
|
2109 | who_can_post_in_shared_channels?: SlackConnectAllowedWorkspaces;
|
2110 | who_can_request_ext_shared_channels?: SlackConnectAllowedWorkspaces;
|
2111 | who_can_review_flagged_content?: SlackConnectAllowedWorkspaces;
|
2112 | who_can_use_hermes?: WhoCanUseHermes;
|
2113 | who_can_view_message_activity?: SlackConnectAllowedWorkspaces;
|
2114 | workflow_builder_enabled?: boolean;
|
2115 | workflow_extension_steps_beta_opt_in?: boolean;
|
2116 | workflow_extension_steps_enabled?: boolean;
|
2117 | workflows_export_csv_enabled?: boolean;
|
2118 | workflows_webhook_trigger_enabled?: boolean;
|
2119 | }
|
2120 | export interface CallsApps {
|
2121 | audio?: string[];
|
2122 | video?: Video[];
|
2123 | }
|
2124 | export interface Video {
|
2125 | id?: string;
|
2126 | image?: string;
|
2127 | name?: string;
|
2128 | }
|
2129 | export interface EnterpriseTeamCreationRequest {
|
2130 | is_enabled?: boolean;
|
2131 | }
|
2132 | export interface InvitedUserPreset {
|
2133 | enable_invited_user?: boolean;
|
2134 | }
|
2135 | export interface SlackConnectAllowedWorkspaces {
|
2136 | type?: string[];
|
2137 | }
|
2138 | export interface WhoCanManageP {
|
2139 | type?: string[];
|
2140 | user?: string[];
|
2141 | }
|
2142 | export interface WhoCanUseHermes {
|
2143 | subteam?: string[];
|
2144 | type?: string[];
|
2145 | user?: string[];
|
2146 | }
|
2147 | export interface User {
|
2148 | color?: string;
|
2149 | deleted?: boolean;
|
2150 | id?: string;
|
2151 | is_admin?: boolean;
|
2152 | is_app_user?: boolean;
|
2153 | is_bot?: boolean;
|
2154 | is_email_confirmed?: boolean;
|
2155 | is_invited_user?: boolean;
|
2156 | is_owner?: boolean;
|
2157 | is_primary_owner?: boolean;
|
2158 | is_restricted?: boolean;
|
2159 | is_ultra_restricted?: boolean;
|
2160 | is_workflow_bot?: boolean;
|
2161 | name?: string;
|
2162 | presence?: string;
|
2163 | profile?: Profile;
|
2164 | real_name?: string;
|
2165 | team_id?: string;
|
2166 | tz?: string;
|
2167 | tz_label?: string;
|
2168 | tz_offset?: number;
|
2169 | updated?: number;
|
2170 | who_can_share_contact_card?: string;
|
2171 | }
|
2172 | export interface Profile {
|
2173 | always_active?: boolean;
|
2174 | api_app_id?: string;
|
2175 | avatar_hash?: string;
|
2176 | bot_id?: Id;
|
2177 | display_name?: string;
|
2178 | display_name_normalized?: string;
|
2179 | email?: string;
|
2180 | fields?: Fields;
|
2181 | first_name?: string;
|
2182 | guest_invited_by?: string;
|
2183 | huddle_state?: string;
|
2184 | huddle_state_expiration_ts?: number;
|
2185 | image_1024?: string;
|
2186 | image_192?: string;
|
2187 | image_24?: string;
|
2188 | image_32?: string;
|
2189 | image_48?: string;
|
2190 | image_512?: string;
|
2191 | image_72?: string;
|
2192 | image_original?: string;
|
2193 | is_custom_image?: boolean;
|
2194 | last_name?: string;
|
2195 | phone?: string;
|
2196 | pronouns?: string;
|
2197 | real_name?: string;
|
2198 | real_name_normalized?: string;
|
2199 | skype?: string;
|
2200 | status_emoji?: string;
|
2201 | status_emoji_display_info?: StatusEmojiDisplayInfo[];
|
2202 | status_expiration?: number;
|
2203 | status_text?: string;
|
2204 | status_text_canonical?: string;
|
2205 | team?: string;
|
2206 | title?: string;
|
2207 | }
|
2208 | export interface Fields {
|
2209 | Xf019LT13Z16?: Xf019LT13Z16;
|
2210 | }
|
2211 | export interface Xf019LT13Z16 {
|
2212 | alt?: string;
|
2213 | value?: string;
|
2214 | }
|
2215 | export interface StatusEmojiDisplayInfo {
|
2216 | display_alias?: string;
|
2217 | display_url?: string;
|
2218 | emoji_name?: string;
|
2219 | unicode?: string;
|
2220 | }
|
2221 |
|
\ | No newline at end of file |