@bubblelab/bubble-core 0.1.24 → 0.1.25
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.
- package/dist/bubble-bundle.d.ts +73 -73
- package/dist/bubbles/service-bubble/agi-inc.d.ts +4 -4
- package/dist/bubbles/service-bubble/ai-agent.d.ts +12 -12
- package/dist/bubbles/service-bubble/airtable.d.ts +138 -138
- package/dist/bubbles/service-bubble/apify/apify.d.ts +4 -4
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +9 -9
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +405 -405
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +432 -432
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.js +15 -9
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.js.map +1 -1
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +8 -8
- package/dist/bubbles/service-bubble/firecrawl.d.ts +332 -332
- package/dist/bubbles/service-bubble/followupboss.d.ts +277 -277
- package/dist/bubbles/service-bubble/github.d.ts +132 -132
- package/dist/bubbles/service-bubble/gmail.d.ts +478 -478
- package/dist/bubbles/service-bubble/google-calendar.d.ts +112 -112
- package/dist/bubbles/service-bubble/google-drive.d.ts +38 -38
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +8 -8
- package/dist/bubbles/service-bubble/hello-world.d.ts +2 -2
- package/dist/bubbles/service-bubble/http.d.ts +16 -16
- package/dist/bubbles/service-bubble/insforge-db.d.ts +6 -6
- package/dist/bubbles/service-bubble/notion/notion.d.ts +1098 -1098
- package/dist/bubbles/service-bubble/postgresql.d.ts +6 -6
- package/dist/bubbles/service-bubble/resend.d.ts +12 -12
- package/dist/bubbles/service-bubble/slack/slack.d.ts +184 -184
- package/dist/bubbles/service-bubble/storage.d.ts +20 -20
- package/dist/bubbles/service-bubble/telegram.d.ts +1420 -1420
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +139 -139
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts.map +1 -1
- package/dist/bubbles/tool-bubble/company-enrichment-tool.js +27 -6
- package/dist/bubbles/tool-bubble/company-enrichment-tool.js.map +1 -1
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +36 -36
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +142 -142
- package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +161 -161
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts.map +1 -1
- package/dist/bubbles/tool-bubble/people-search-tool.js +31 -10
- package/dist/bubbles/tool-bubble/people-search-tool.js.map +1 -1
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +10 -10
- package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +28 -28
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +14 -14
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +10 -10
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +20 -20
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +38 -38
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +64 -64
- package/dist/bubbles.json +7 -7
- package/package.json +2 -2
|
@@ -23,12 +23,12 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
23
23
|
value: z.ZodString;
|
|
24
24
|
short: z.ZodOptional<z.ZodBoolean>;
|
|
25
25
|
}, "strip", z.ZodTypeAny, {
|
|
26
|
-
value: string;
|
|
27
26
|
title: string;
|
|
27
|
+
value: string;
|
|
28
28
|
short?: boolean | undefined;
|
|
29
29
|
}, {
|
|
30
|
-
value: string;
|
|
31
30
|
title: string;
|
|
31
|
+
value: string;
|
|
32
32
|
short?: boolean | undefined;
|
|
33
33
|
}>, "many">>;
|
|
34
34
|
image_url: z.ZodOptional<z.ZodString>;
|
|
@@ -38,12 +38,12 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
38
38
|
ts: z.ZodOptional<z.ZodNumber>;
|
|
39
39
|
}, "strip", z.ZodTypeAny, {
|
|
40
40
|
title?: string | undefined;
|
|
41
|
-
text?: string | undefined;
|
|
42
41
|
fields?: {
|
|
43
|
-
value: string;
|
|
44
42
|
title: string;
|
|
43
|
+
value: string;
|
|
45
44
|
short?: boolean | undefined;
|
|
46
45
|
}[] | undefined;
|
|
46
|
+
text?: string | undefined;
|
|
47
47
|
image_url?: string | undefined;
|
|
48
48
|
color?: string | undefined;
|
|
49
49
|
pretext?: string | undefined;
|
|
@@ -57,12 +57,12 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
57
57
|
ts?: number | undefined;
|
|
58
58
|
}, {
|
|
59
59
|
title?: string | undefined;
|
|
60
|
-
text?: string | undefined;
|
|
61
60
|
fields?: {
|
|
62
|
-
value: string;
|
|
63
61
|
title: string;
|
|
62
|
+
value: string;
|
|
64
63
|
short?: boolean | undefined;
|
|
65
64
|
}[] | undefined;
|
|
65
|
+
text?: string | undefined;
|
|
66
66
|
image_url?: string | undefined;
|
|
67
67
|
color?: string | undefined;
|
|
68
68
|
pretext?: string | undefined;
|
|
@@ -214,12 +214,12 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
214
214
|
icon_url?: string | undefined;
|
|
215
215
|
attachments?: {
|
|
216
216
|
title?: string | undefined;
|
|
217
|
-
text?: string | undefined;
|
|
218
217
|
fields?: {
|
|
219
|
-
value: string;
|
|
220
218
|
title: string;
|
|
219
|
+
value: string;
|
|
221
220
|
short?: boolean | undefined;
|
|
222
221
|
}[] | undefined;
|
|
222
|
+
text?: string | undefined;
|
|
223
223
|
image_url?: string | undefined;
|
|
224
224
|
color?: string | undefined;
|
|
225
225
|
pretext?: string | undefined;
|
|
@@ -284,12 +284,12 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
284
284
|
icon_url?: string | undefined;
|
|
285
285
|
attachments?: {
|
|
286
286
|
title?: string | undefined;
|
|
287
|
-
text?: string | undefined;
|
|
288
287
|
fields?: {
|
|
289
|
-
value: string;
|
|
290
288
|
title: string;
|
|
289
|
+
value: string;
|
|
291
290
|
short?: boolean | undefined;
|
|
292
291
|
}[] | undefined;
|
|
292
|
+
text?: string | undefined;
|
|
293
293
|
image_url?: string | undefined;
|
|
294
294
|
color?: string | undefined;
|
|
295
295
|
pretext?: string | undefined;
|
|
@@ -356,18 +356,18 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
356
356
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
357
357
|
}, "strip", z.ZodTypeAny, {
|
|
358
358
|
operation: "list_channels";
|
|
359
|
+
limit: number;
|
|
359
360
|
types: ("public_channel" | "private_channel" | "mpim" | "im")[];
|
|
360
361
|
exclude_archived: boolean;
|
|
361
|
-
limit: number;
|
|
362
362
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
363
363
|
cursor?: string | undefined;
|
|
364
364
|
}, {
|
|
365
365
|
operation: "list_channels";
|
|
366
366
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
367
|
+
cursor?: string | undefined;
|
|
368
|
+
limit?: number | undefined;
|
|
367
369
|
types?: ("public_channel" | "private_channel" | "mpim" | "im")[] | undefined;
|
|
368
370
|
exclude_archived?: boolean | undefined;
|
|
369
|
-
limit?: number | undefined;
|
|
370
|
-
cursor?: string | undefined;
|
|
371
371
|
}>, z.ZodObject<{
|
|
372
372
|
operation: z.ZodLiteral<"get_channel_info">;
|
|
373
373
|
channel: z.ZodString;
|
|
@@ -413,8 +413,8 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
413
413
|
}, {
|
|
414
414
|
operation: "list_users";
|
|
415
415
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
416
|
-
limit?: number | undefined;
|
|
417
416
|
cursor?: string | undefined;
|
|
417
|
+
limit?: number | undefined;
|
|
418
418
|
include_locale?: boolean | undefined;
|
|
419
419
|
}>, z.ZodObject<{
|
|
420
420
|
operation: z.ZodLiteral<"get_conversation_history">;
|
|
@@ -426,10 +426,10 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
426
426
|
cursor: z.ZodOptional<z.ZodString>;
|
|
427
427
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
428
428
|
}, "strip", z.ZodTypeAny, {
|
|
429
|
-
operation: "get_conversation_history";
|
|
430
429
|
inclusive: boolean;
|
|
431
|
-
|
|
430
|
+
operation: "get_conversation_history";
|
|
432
431
|
limit: number;
|
|
432
|
+
channel: string;
|
|
433
433
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
434
434
|
cursor?: string | undefined;
|
|
435
435
|
latest?: string | undefined;
|
|
@@ -439,8 +439,8 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
439
439
|
channel: string;
|
|
440
440
|
inclusive?: boolean | undefined;
|
|
441
441
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
442
|
-
limit?: number | undefined;
|
|
443
442
|
cursor?: string | undefined;
|
|
443
|
+
limit?: number | undefined;
|
|
444
444
|
latest?: string | undefined;
|
|
445
445
|
oldest?: string | undefined;
|
|
446
446
|
}>, z.ZodObject<{
|
|
@@ -454,11 +454,11 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
454
454
|
cursor: z.ZodOptional<z.ZodString>;
|
|
455
455
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
456
456
|
}, "strip", z.ZodTypeAny, {
|
|
457
|
-
operation: "get_thread_replies";
|
|
458
457
|
inclusive: boolean;
|
|
458
|
+
operation: "get_thread_replies";
|
|
459
|
+
limit: number;
|
|
459
460
|
ts: string;
|
|
460
461
|
channel: string;
|
|
461
|
-
limit: number;
|
|
462
462
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
463
463
|
cursor?: string | undefined;
|
|
464
464
|
latest?: string | undefined;
|
|
@@ -469,8 +469,8 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
469
469
|
channel: string;
|
|
470
470
|
inclusive?: boolean | undefined;
|
|
471
471
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
472
|
-
limit?: number | undefined;
|
|
473
472
|
cursor?: string | undefined;
|
|
473
|
+
limit?: number | undefined;
|
|
474
474
|
latest?: string | undefined;
|
|
475
475
|
oldest?: string | undefined;
|
|
476
476
|
}>, z.ZodObject<{
|
|
@@ -492,12 +492,12 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
492
492
|
value: z.ZodString;
|
|
493
493
|
short: z.ZodOptional<z.ZodBoolean>;
|
|
494
494
|
}, "strip", z.ZodTypeAny, {
|
|
495
|
-
value: string;
|
|
496
495
|
title: string;
|
|
496
|
+
value: string;
|
|
497
497
|
short?: boolean | undefined;
|
|
498
498
|
}, {
|
|
499
|
-
value: string;
|
|
500
499
|
title: string;
|
|
500
|
+
value: string;
|
|
501
501
|
short?: boolean | undefined;
|
|
502
502
|
}>, "many">>;
|
|
503
503
|
image_url: z.ZodOptional<z.ZodString>;
|
|
@@ -507,12 +507,12 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
507
507
|
ts: z.ZodOptional<z.ZodNumber>;
|
|
508
508
|
}, "strip", z.ZodTypeAny, {
|
|
509
509
|
title?: string | undefined;
|
|
510
|
-
text?: string | undefined;
|
|
511
510
|
fields?: {
|
|
512
|
-
value: string;
|
|
513
511
|
title: string;
|
|
512
|
+
value: string;
|
|
514
513
|
short?: boolean | undefined;
|
|
515
514
|
}[] | undefined;
|
|
515
|
+
text?: string | undefined;
|
|
516
516
|
image_url?: string | undefined;
|
|
517
517
|
color?: string | undefined;
|
|
518
518
|
pretext?: string | undefined;
|
|
@@ -526,12 +526,12 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
526
526
|
ts?: number | undefined;
|
|
527
527
|
}, {
|
|
528
528
|
title?: string | undefined;
|
|
529
|
-
text?: string | undefined;
|
|
530
529
|
fields?: {
|
|
531
|
-
value: string;
|
|
532
530
|
title: string;
|
|
531
|
+
value: string;
|
|
533
532
|
short?: boolean | undefined;
|
|
534
533
|
}[] | undefined;
|
|
534
|
+
text?: string | undefined;
|
|
535
535
|
image_url?: string | undefined;
|
|
536
536
|
color?: string | undefined;
|
|
537
537
|
pretext?: string | undefined;
|
|
@@ -674,12 +674,12 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
674
674
|
text?: string | undefined;
|
|
675
675
|
attachments?: {
|
|
676
676
|
title?: string | undefined;
|
|
677
|
-
text?: string | undefined;
|
|
678
677
|
fields?: {
|
|
679
|
-
value: string;
|
|
680
678
|
title: string;
|
|
679
|
+
value: string;
|
|
681
680
|
short?: boolean | undefined;
|
|
682
681
|
}[] | undefined;
|
|
682
|
+
text?: string | undefined;
|
|
683
683
|
image_url?: string | undefined;
|
|
684
684
|
color?: string | undefined;
|
|
685
685
|
pretext?: string | undefined;
|
|
@@ -741,12 +741,12 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
741
741
|
text?: string | undefined;
|
|
742
742
|
attachments?: {
|
|
743
743
|
title?: string | undefined;
|
|
744
|
-
text?: string | undefined;
|
|
745
744
|
fields?: {
|
|
746
|
-
value: string;
|
|
747
745
|
title: string;
|
|
746
|
+
value: string;
|
|
748
747
|
short?: boolean | undefined;
|
|
749
748
|
}[] | undefined;
|
|
749
|
+
text?: string | undefined;
|
|
750
750
|
image_url?: string | undefined;
|
|
751
751
|
color?: string | undefined;
|
|
752
752
|
pretext?: string | undefined;
|
|
@@ -822,14 +822,14 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
822
822
|
timestamp: z.ZodString;
|
|
823
823
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
824
824
|
}, "strip", z.ZodTypeAny, {
|
|
825
|
-
operation: "add_reaction";
|
|
826
825
|
name: string;
|
|
826
|
+
operation: "add_reaction";
|
|
827
827
|
channel: string;
|
|
828
828
|
timestamp: string;
|
|
829
829
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
830
830
|
}, {
|
|
831
|
-
operation: "add_reaction";
|
|
832
831
|
name: string;
|
|
832
|
+
operation: "add_reaction";
|
|
833
833
|
channel: string;
|
|
834
834
|
timestamp: string;
|
|
835
835
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -840,14 +840,14 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
840
840
|
timestamp: z.ZodString;
|
|
841
841
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
842
842
|
}, "strip", z.ZodTypeAny, {
|
|
843
|
-
operation: "remove_reaction";
|
|
844
843
|
name: string;
|
|
844
|
+
operation: "remove_reaction";
|
|
845
845
|
channel: string;
|
|
846
846
|
timestamp: string;
|
|
847
847
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
848
848
|
}, {
|
|
849
|
-
operation: "remove_reaction";
|
|
850
849
|
name: string;
|
|
850
|
+
operation: "remove_reaction";
|
|
851
851
|
channel: string;
|
|
852
852
|
timestamp: string;
|
|
853
853
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -878,8 +878,8 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
878
878
|
file_path: string;
|
|
879
879
|
title?: string | undefined;
|
|
880
880
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
881
|
-
filename?: string | undefined;
|
|
882
881
|
thread_ts?: string | undefined;
|
|
882
|
+
filename?: string | undefined;
|
|
883
883
|
initial_comment?: string | undefined;
|
|
884
884
|
}, {
|
|
885
885
|
operation: "upload_file";
|
|
@@ -887,8 +887,8 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
887
887
|
file_path: string;
|
|
888
888
|
title?: string | undefined;
|
|
889
889
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
890
|
-
filename?: string | undefined;
|
|
891
890
|
thread_ts?: string | undefined;
|
|
891
|
+
filename?: string | undefined;
|
|
892
892
|
initial_comment?: string | undefined;
|
|
893
893
|
}>, z.ZodObject<{
|
|
894
894
|
operation: z.ZodLiteral<"schedule_message">;
|
|
@@ -1156,12 +1156,12 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1156
1156
|
count: z.ZodNumber;
|
|
1157
1157
|
}, "strip", z.ZodTypeAny, {
|
|
1158
1158
|
name: string;
|
|
1159
|
-
users: string[];
|
|
1160
1159
|
count: number;
|
|
1160
|
+
users: string[];
|
|
1161
1161
|
}, {
|
|
1162
1162
|
name: string;
|
|
1163
|
-
users: string[];
|
|
1164
1163
|
count: number;
|
|
1164
|
+
users: string[];
|
|
1165
1165
|
}>, "many">>;
|
|
1166
1166
|
}, "strip", z.ZodTypeAny, {
|
|
1167
1167
|
type: string;
|
|
@@ -1185,8 +1185,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1185
1185
|
subscribed?: boolean | undefined;
|
|
1186
1186
|
reactions?: {
|
|
1187
1187
|
name: string;
|
|
1188
|
-
users: string[];
|
|
1189
1188
|
count: number;
|
|
1189
|
+
users: string[];
|
|
1190
1190
|
}[] | undefined;
|
|
1191
1191
|
}, {
|
|
1192
1192
|
type: string;
|
|
@@ -1210,8 +1210,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1210
1210
|
subscribed?: boolean | undefined;
|
|
1211
1211
|
reactions?: {
|
|
1212
1212
|
name: string;
|
|
1213
|
-
users: string[];
|
|
1214
1213
|
count: number;
|
|
1214
|
+
users: string[];
|
|
1215
1215
|
}[] | undefined;
|
|
1216
1216
|
}>>;
|
|
1217
1217
|
error: z.ZodString;
|
|
@@ -1243,8 +1243,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1243
1243
|
subscribed?: boolean | undefined;
|
|
1244
1244
|
reactions?: {
|
|
1245
1245
|
name: string;
|
|
1246
|
-
users: string[];
|
|
1247
1246
|
count: number;
|
|
1247
|
+
users: string[];
|
|
1248
1248
|
}[] | undefined;
|
|
1249
1249
|
} | undefined;
|
|
1250
1250
|
ts?: string | undefined;
|
|
@@ -1276,8 +1276,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1276
1276
|
subscribed?: boolean | undefined;
|
|
1277
1277
|
reactions?: {
|
|
1278
1278
|
name: string;
|
|
1279
|
-
users: string[];
|
|
1280
1279
|
count: number;
|
|
1280
|
+
users: string[];
|
|
1281
1281
|
}[] | undefined;
|
|
1282
1282
|
} | undefined;
|
|
1283
1283
|
ts?: string | undefined;
|
|
@@ -1732,6 +1732,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1732
1732
|
image_512: z.ZodOptional<z.ZodString>;
|
|
1733
1733
|
image_1024: z.ZodOptional<z.ZodString>;
|
|
1734
1734
|
}, "strip", z.ZodTypeAny, {
|
|
1735
|
+
first_name?: string | undefined;
|
|
1736
|
+
last_name?: string | undefined;
|
|
1735
1737
|
title?: string | undefined;
|
|
1736
1738
|
email?: string | undefined;
|
|
1737
1739
|
fields?: Record<string, unknown> | undefined;
|
|
@@ -1747,8 +1749,6 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1747
1749
|
avatar_hash?: string | undefined;
|
|
1748
1750
|
image_original?: string | undefined;
|
|
1749
1751
|
is_custom_image?: boolean | undefined;
|
|
1750
|
-
first_name?: string | undefined;
|
|
1751
|
-
last_name?: string | undefined;
|
|
1752
1752
|
image_24?: string | undefined;
|
|
1753
1753
|
image_32?: string | undefined;
|
|
1754
1754
|
image_48?: string | undefined;
|
|
@@ -1757,6 +1757,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1757
1757
|
image_512?: string | undefined;
|
|
1758
1758
|
image_1024?: string | undefined;
|
|
1759
1759
|
}, {
|
|
1760
|
+
first_name?: string | undefined;
|
|
1761
|
+
last_name?: string | undefined;
|
|
1760
1762
|
title?: string | undefined;
|
|
1761
1763
|
email?: string | undefined;
|
|
1762
1764
|
fields?: Record<string, unknown> | undefined;
|
|
@@ -1772,8 +1774,6 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1772
1774
|
avatar_hash?: string | undefined;
|
|
1773
1775
|
image_original?: string | undefined;
|
|
1774
1776
|
is_custom_image?: boolean | undefined;
|
|
1775
|
-
first_name?: string | undefined;
|
|
1776
|
-
last_name?: string | undefined;
|
|
1777
1777
|
image_24?: string | undefined;
|
|
1778
1778
|
image_32?: string | undefined;
|
|
1779
1779
|
image_48?: string | undefined;
|
|
@@ -1802,6 +1802,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1802
1802
|
tz_label?: string | undefined;
|
|
1803
1803
|
tz_offset?: number | undefined;
|
|
1804
1804
|
profile?: {
|
|
1805
|
+
first_name?: string | undefined;
|
|
1806
|
+
last_name?: string | undefined;
|
|
1805
1807
|
title?: string | undefined;
|
|
1806
1808
|
email?: string | undefined;
|
|
1807
1809
|
fields?: Record<string, unknown> | undefined;
|
|
@@ -1817,8 +1819,6 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1817
1819
|
avatar_hash?: string | undefined;
|
|
1818
1820
|
image_original?: string | undefined;
|
|
1819
1821
|
is_custom_image?: boolean | undefined;
|
|
1820
|
-
first_name?: string | undefined;
|
|
1821
|
-
last_name?: string | undefined;
|
|
1822
1822
|
image_24?: string | undefined;
|
|
1823
1823
|
image_32?: string | undefined;
|
|
1824
1824
|
image_48?: string | undefined;
|
|
@@ -1847,6 +1847,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1847
1847
|
tz_label?: string | undefined;
|
|
1848
1848
|
tz_offset?: number | undefined;
|
|
1849
1849
|
profile?: {
|
|
1850
|
+
first_name?: string | undefined;
|
|
1851
|
+
last_name?: string | undefined;
|
|
1850
1852
|
title?: string | undefined;
|
|
1851
1853
|
email?: string | undefined;
|
|
1852
1854
|
fields?: Record<string, unknown> | undefined;
|
|
@@ -1862,8 +1864,6 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1862
1864
|
avatar_hash?: string | undefined;
|
|
1863
1865
|
image_original?: string | undefined;
|
|
1864
1866
|
is_custom_image?: boolean | undefined;
|
|
1865
|
-
first_name?: string | undefined;
|
|
1866
|
-
last_name?: string | undefined;
|
|
1867
1867
|
image_24?: string | undefined;
|
|
1868
1868
|
image_32?: string | undefined;
|
|
1869
1869
|
image_48?: string | undefined;
|
|
@@ -1900,6 +1900,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1900
1900
|
tz_label?: string | undefined;
|
|
1901
1901
|
tz_offset?: number | undefined;
|
|
1902
1902
|
profile?: {
|
|
1903
|
+
first_name?: string | undefined;
|
|
1904
|
+
last_name?: string | undefined;
|
|
1903
1905
|
title?: string | undefined;
|
|
1904
1906
|
email?: string | undefined;
|
|
1905
1907
|
fields?: Record<string, unknown> | undefined;
|
|
@@ -1915,8 +1917,6 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1915
1917
|
avatar_hash?: string | undefined;
|
|
1916
1918
|
image_original?: string | undefined;
|
|
1917
1919
|
is_custom_image?: boolean | undefined;
|
|
1918
|
-
first_name?: string | undefined;
|
|
1919
|
-
last_name?: string | undefined;
|
|
1920
1920
|
image_24?: string | undefined;
|
|
1921
1921
|
image_32?: string | undefined;
|
|
1922
1922
|
image_48?: string | undefined;
|
|
@@ -1951,6 +1951,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1951
1951
|
tz_label?: string | undefined;
|
|
1952
1952
|
tz_offset?: number | undefined;
|
|
1953
1953
|
profile?: {
|
|
1954
|
+
first_name?: string | undefined;
|
|
1955
|
+
last_name?: string | undefined;
|
|
1954
1956
|
title?: string | undefined;
|
|
1955
1957
|
email?: string | undefined;
|
|
1956
1958
|
fields?: Record<string, unknown> | undefined;
|
|
@@ -1966,8 +1968,6 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1966
1968
|
avatar_hash?: string | undefined;
|
|
1967
1969
|
image_original?: string | undefined;
|
|
1968
1970
|
is_custom_image?: boolean | undefined;
|
|
1969
|
-
first_name?: string | undefined;
|
|
1970
|
-
last_name?: string | undefined;
|
|
1971
1971
|
image_24?: string | undefined;
|
|
1972
1972
|
image_32?: string | undefined;
|
|
1973
1973
|
image_48?: string | undefined;
|
|
@@ -2025,6 +2025,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2025
2025
|
image_512: z.ZodOptional<z.ZodString>;
|
|
2026
2026
|
image_1024: z.ZodOptional<z.ZodString>;
|
|
2027
2027
|
}, "strip", z.ZodTypeAny, {
|
|
2028
|
+
first_name?: string | undefined;
|
|
2029
|
+
last_name?: string | undefined;
|
|
2028
2030
|
title?: string | undefined;
|
|
2029
2031
|
email?: string | undefined;
|
|
2030
2032
|
fields?: Record<string, unknown> | undefined;
|
|
@@ -2040,8 +2042,6 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2040
2042
|
avatar_hash?: string | undefined;
|
|
2041
2043
|
image_original?: string | undefined;
|
|
2042
2044
|
is_custom_image?: boolean | undefined;
|
|
2043
|
-
first_name?: string | undefined;
|
|
2044
|
-
last_name?: string | undefined;
|
|
2045
2045
|
image_24?: string | undefined;
|
|
2046
2046
|
image_32?: string | undefined;
|
|
2047
2047
|
image_48?: string | undefined;
|
|
@@ -2050,6 +2050,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2050
2050
|
image_512?: string | undefined;
|
|
2051
2051
|
image_1024?: string | undefined;
|
|
2052
2052
|
}, {
|
|
2053
|
+
first_name?: string | undefined;
|
|
2054
|
+
last_name?: string | undefined;
|
|
2053
2055
|
title?: string | undefined;
|
|
2054
2056
|
email?: string | undefined;
|
|
2055
2057
|
fields?: Record<string, unknown> | undefined;
|
|
@@ -2065,8 +2067,6 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2065
2067
|
avatar_hash?: string | undefined;
|
|
2066
2068
|
image_original?: string | undefined;
|
|
2067
2069
|
is_custom_image?: boolean | undefined;
|
|
2068
|
-
first_name?: string | undefined;
|
|
2069
|
-
last_name?: string | undefined;
|
|
2070
2070
|
image_24?: string | undefined;
|
|
2071
2071
|
image_32?: string | undefined;
|
|
2072
2072
|
image_48?: string | undefined;
|
|
@@ -2095,6 +2095,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2095
2095
|
tz_label?: string | undefined;
|
|
2096
2096
|
tz_offset?: number | undefined;
|
|
2097
2097
|
profile?: {
|
|
2098
|
+
first_name?: string | undefined;
|
|
2099
|
+
last_name?: string | undefined;
|
|
2098
2100
|
title?: string | undefined;
|
|
2099
2101
|
email?: string | undefined;
|
|
2100
2102
|
fields?: Record<string, unknown> | undefined;
|
|
@@ -2110,8 +2112,6 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2110
2112
|
avatar_hash?: string | undefined;
|
|
2111
2113
|
image_original?: string | undefined;
|
|
2112
2114
|
is_custom_image?: boolean | undefined;
|
|
2113
|
-
first_name?: string | undefined;
|
|
2114
|
-
last_name?: string | undefined;
|
|
2115
2115
|
image_24?: string | undefined;
|
|
2116
2116
|
image_32?: string | undefined;
|
|
2117
2117
|
image_48?: string | undefined;
|
|
@@ -2140,6 +2140,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2140
2140
|
tz_label?: string | undefined;
|
|
2141
2141
|
tz_offset?: number | undefined;
|
|
2142
2142
|
profile?: {
|
|
2143
|
+
first_name?: string | undefined;
|
|
2144
|
+
last_name?: string | undefined;
|
|
2143
2145
|
title?: string | undefined;
|
|
2144
2146
|
email?: string | undefined;
|
|
2145
2147
|
fields?: Record<string, unknown> | undefined;
|
|
@@ -2155,8 +2157,6 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2155
2157
|
avatar_hash?: string | undefined;
|
|
2156
2158
|
image_original?: string | undefined;
|
|
2157
2159
|
is_custom_image?: boolean | undefined;
|
|
2158
|
-
first_name?: string | undefined;
|
|
2159
|
-
last_name?: string | undefined;
|
|
2160
2160
|
image_24?: string | undefined;
|
|
2161
2161
|
image_32?: string | undefined;
|
|
2162
2162
|
image_48?: string | undefined;
|
|
@@ -2203,6 +2203,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2203
2203
|
tz_label?: string | undefined;
|
|
2204
2204
|
tz_offset?: number | undefined;
|
|
2205
2205
|
profile?: {
|
|
2206
|
+
first_name?: string | undefined;
|
|
2207
|
+
last_name?: string | undefined;
|
|
2206
2208
|
title?: string | undefined;
|
|
2207
2209
|
email?: string | undefined;
|
|
2208
2210
|
fields?: Record<string, unknown> | undefined;
|
|
@@ -2218,8 +2220,6 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2218
2220
|
avatar_hash?: string | undefined;
|
|
2219
2221
|
image_original?: string | undefined;
|
|
2220
2222
|
is_custom_image?: boolean | undefined;
|
|
2221
|
-
first_name?: string | undefined;
|
|
2222
|
-
last_name?: string | undefined;
|
|
2223
2223
|
image_24?: string | undefined;
|
|
2224
2224
|
image_32?: string | undefined;
|
|
2225
2225
|
image_48?: string | undefined;
|
|
@@ -2257,6 +2257,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2257
2257
|
tz_label?: string | undefined;
|
|
2258
2258
|
tz_offset?: number | undefined;
|
|
2259
2259
|
profile?: {
|
|
2260
|
+
first_name?: string | undefined;
|
|
2261
|
+
last_name?: string | undefined;
|
|
2260
2262
|
title?: string | undefined;
|
|
2261
2263
|
email?: string | undefined;
|
|
2262
2264
|
fields?: Record<string, unknown> | undefined;
|
|
@@ -2272,8 +2274,6 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2272
2274
|
avatar_hash?: string | undefined;
|
|
2273
2275
|
image_original?: string | undefined;
|
|
2274
2276
|
is_custom_image?: boolean | undefined;
|
|
2275
|
-
first_name?: string | undefined;
|
|
2276
|
-
last_name?: string | undefined;
|
|
2277
2277
|
image_24?: string | undefined;
|
|
2278
2278
|
image_32?: string | undefined;
|
|
2279
2279
|
image_48?: string | undefined;
|
|
@@ -2325,12 +2325,12 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2325
2325
|
count: z.ZodNumber;
|
|
2326
2326
|
}, "strip", z.ZodTypeAny, {
|
|
2327
2327
|
name: string;
|
|
2328
|
-
users: string[];
|
|
2329
2328
|
count: number;
|
|
2329
|
+
users: string[];
|
|
2330
2330
|
}, {
|
|
2331
2331
|
name: string;
|
|
2332
|
-
users: string[];
|
|
2333
2332
|
count: number;
|
|
2333
|
+
users: string[];
|
|
2334
2334
|
}>, "many">>;
|
|
2335
2335
|
}, "strip", z.ZodTypeAny, {
|
|
2336
2336
|
type: string;
|
|
@@ -2354,8 +2354,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2354
2354
|
subscribed?: boolean | undefined;
|
|
2355
2355
|
reactions?: {
|
|
2356
2356
|
name: string;
|
|
2357
|
-
users: string[];
|
|
2358
2357
|
count: number;
|
|
2358
|
+
users: string[];
|
|
2359
2359
|
}[] | undefined;
|
|
2360
2360
|
}, {
|
|
2361
2361
|
type: string;
|
|
@@ -2379,8 +2379,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2379
2379
|
subscribed?: boolean | undefined;
|
|
2380
2380
|
reactions?: {
|
|
2381
2381
|
name: string;
|
|
2382
|
-
users: string[];
|
|
2383
2382
|
count: number;
|
|
2383
|
+
users: string[];
|
|
2384
2384
|
}[] | undefined;
|
|
2385
2385
|
}>, "many">>;
|
|
2386
2386
|
has_more: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2420,8 +2420,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2420
2420
|
subscribed?: boolean | undefined;
|
|
2421
2421
|
reactions?: {
|
|
2422
2422
|
name: string;
|
|
2423
|
-
users: string[];
|
|
2424
2423
|
count: number;
|
|
2424
|
+
users: string[];
|
|
2425
2425
|
}[] | undefined;
|
|
2426
2426
|
}[] | undefined;
|
|
2427
2427
|
response_metadata?: {
|
|
@@ -2455,8 +2455,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2455
2455
|
subscribed?: boolean | undefined;
|
|
2456
2456
|
reactions?: {
|
|
2457
2457
|
name: string;
|
|
2458
|
-
users: string[];
|
|
2459
2458
|
count: number;
|
|
2459
|
+
users: string[];
|
|
2460
2460
|
}[] | undefined;
|
|
2461
2461
|
}[] | undefined;
|
|
2462
2462
|
response_metadata?: {
|
|
@@ -2496,12 +2496,12 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2496
2496
|
count: z.ZodNumber;
|
|
2497
2497
|
}, "strip", z.ZodTypeAny, {
|
|
2498
2498
|
name: string;
|
|
2499
|
-
users: string[];
|
|
2500
2499
|
count: number;
|
|
2500
|
+
users: string[];
|
|
2501
2501
|
}, {
|
|
2502
2502
|
name: string;
|
|
2503
|
-
users: string[];
|
|
2504
2503
|
count: number;
|
|
2504
|
+
users: string[];
|
|
2505
2505
|
}>, "many">>;
|
|
2506
2506
|
}, "strip", z.ZodTypeAny, {
|
|
2507
2507
|
type: string;
|
|
@@ -2525,8 +2525,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2525
2525
|
subscribed?: boolean | undefined;
|
|
2526
2526
|
reactions?: {
|
|
2527
2527
|
name: string;
|
|
2528
|
-
users: string[];
|
|
2529
2528
|
count: number;
|
|
2529
|
+
users: string[];
|
|
2530
2530
|
}[] | undefined;
|
|
2531
2531
|
}, {
|
|
2532
2532
|
type: string;
|
|
@@ -2550,8 +2550,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2550
2550
|
subscribed?: boolean | undefined;
|
|
2551
2551
|
reactions?: {
|
|
2552
2552
|
name: string;
|
|
2553
|
-
users: string[];
|
|
2554
2553
|
count: number;
|
|
2554
|
+
users: string[];
|
|
2555
2555
|
}[] | undefined;
|
|
2556
2556
|
}>, "many">>;
|
|
2557
2557
|
has_more: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2591,8 +2591,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2591
2591
|
subscribed?: boolean | undefined;
|
|
2592
2592
|
reactions?: {
|
|
2593
2593
|
name: string;
|
|
2594
|
-
users: string[];
|
|
2595
2594
|
count: number;
|
|
2595
|
+
users: string[];
|
|
2596
2596
|
}[] | undefined;
|
|
2597
2597
|
}[] | undefined;
|
|
2598
2598
|
response_metadata?: {
|
|
@@ -2626,8 +2626,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2626
2626
|
subscribed?: boolean | undefined;
|
|
2627
2627
|
reactions?: {
|
|
2628
2628
|
name: string;
|
|
2629
|
-
users: string[];
|
|
2630
2629
|
count: number;
|
|
2630
|
+
users: string[];
|
|
2631
2631
|
}[] | undefined;
|
|
2632
2632
|
}[] | undefined;
|
|
2633
2633
|
response_metadata?: {
|
|
@@ -2670,12 +2670,12 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2670
2670
|
count: z.ZodNumber;
|
|
2671
2671
|
}, "strip", z.ZodTypeAny, {
|
|
2672
2672
|
name: string;
|
|
2673
|
-
users: string[];
|
|
2674
2673
|
count: number;
|
|
2674
|
+
users: string[];
|
|
2675
2675
|
}, {
|
|
2676
2676
|
name: string;
|
|
2677
|
-
users: string[];
|
|
2678
2677
|
count: number;
|
|
2678
|
+
users: string[];
|
|
2679
2679
|
}>, "many">>;
|
|
2680
2680
|
}, "strip", z.ZodTypeAny, {
|
|
2681
2681
|
type: string;
|
|
@@ -2699,8 +2699,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2699
2699
|
subscribed?: boolean | undefined;
|
|
2700
2700
|
reactions?: {
|
|
2701
2701
|
name: string;
|
|
2702
|
-
users: string[];
|
|
2703
2702
|
count: number;
|
|
2703
|
+
users: string[];
|
|
2704
2704
|
}[] | undefined;
|
|
2705
2705
|
}, {
|
|
2706
2706
|
type: string;
|
|
@@ -2724,8 +2724,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2724
2724
|
subscribed?: boolean | undefined;
|
|
2725
2725
|
reactions?: {
|
|
2726
2726
|
name: string;
|
|
2727
|
-
users: string[];
|
|
2728
2727
|
count: number;
|
|
2728
|
+
users: string[];
|
|
2729
2729
|
}[] | undefined;
|
|
2730
2730
|
}>>;
|
|
2731
2731
|
error: z.ZodString;
|
|
@@ -2757,8 +2757,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2757
2757
|
subscribed?: boolean | undefined;
|
|
2758
2758
|
reactions?: {
|
|
2759
2759
|
name: string;
|
|
2760
|
-
users: string[];
|
|
2761
2760
|
count: number;
|
|
2761
|
+
users: string[];
|
|
2762
2762
|
}[] | undefined;
|
|
2763
2763
|
} | undefined;
|
|
2764
2764
|
text?: string | undefined;
|
|
@@ -2791,8 +2791,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2791
2791
|
subscribed?: boolean | undefined;
|
|
2792
2792
|
reactions?: {
|
|
2793
2793
|
name: string;
|
|
2794
|
-
users: string[];
|
|
2795
2794
|
count: number;
|
|
2795
|
+
users: string[];
|
|
2796
2796
|
}[] | undefined;
|
|
2797
2797
|
} | undefined;
|
|
2798
2798
|
text?: string | undefined;
|
|
@@ -3164,9 +3164,7 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3164
3164
|
}, "strip", z.ZodTypeAny, {
|
|
3165
3165
|
name: string;
|
|
3166
3166
|
user: string;
|
|
3167
|
-
mode: string;
|
|
3168
3167
|
id: string;
|
|
3169
|
-
size: number;
|
|
3170
3168
|
username: string;
|
|
3171
3169
|
timestamp: number;
|
|
3172
3170
|
created: number;
|
|
@@ -3174,6 +3172,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3174
3172
|
filetype: string;
|
|
3175
3173
|
pretty_type: string;
|
|
3176
3174
|
editable: boolean;
|
|
3175
|
+
size: number;
|
|
3176
|
+
mode: string;
|
|
3177
3177
|
is_external: boolean;
|
|
3178
3178
|
external_type: string;
|
|
3179
3179
|
is_public: boolean;
|
|
@@ -3209,9 +3209,7 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3209
3209
|
}, {
|
|
3210
3210
|
name: string;
|
|
3211
3211
|
user: string;
|
|
3212
|
-
mode: string;
|
|
3213
3212
|
id: string;
|
|
3214
|
-
size: number;
|
|
3215
3213
|
username: string;
|
|
3216
3214
|
timestamp: number;
|
|
3217
3215
|
created: number;
|
|
@@ -3219,6 +3217,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3219
3217
|
filetype: string;
|
|
3220
3218
|
pretty_type: string;
|
|
3221
3219
|
editable: boolean;
|
|
3220
|
+
size: number;
|
|
3221
|
+
mode: string;
|
|
3222
3222
|
is_external: boolean;
|
|
3223
3223
|
external_type: string;
|
|
3224
3224
|
is_public: boolean;
|
|
@@ -3262,9 +3262,7 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3262
3262
|
file?: {
|
|
3263
3263
|
name: string;
|
|
3264
3264
|
user: string;
|
|
3265
|
-
mode: string;
|
|
3266
3265
|
id: string;
|
|
3267
|
-
size: number;
|
|
3268
3266
|
username: string;
|
|
3269
3267
|
timestamp: number;
|
|
3270
3268
|
created: number;
|
|
@@ -3272,6 +3270,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3272
3270
|
filetype: string;
|
|
3273
3271
|
pretty_type: string;
|
|
3274
3272
|
editable: boolean;
|
|
3273
|
+
size: number;
|
|
3274
|
+
mode: string;
|
|
3275
3275
|
is_external: boolean;
|
|
3276
3276
|
external_type: string;
|
|
3277
3277
|
is_public: boolean;
|
|
@@ -3313,9 +3313,7 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3313
3313
|
file?: {
|
|
3314
3314
|
name: string;
|
|
3315
3315
|
user: string;
|
|
3316
|
-
mode: string;
|
|
3317
3316
|
id: string;
|
|
3318
|
-
size: number;
|
|
3319
3317
|
username: string;
|
|
3320
3318
|
timestamp: number;
|
|
3321
3319
|
created: number;
|
|
@@ -3323,6 +3321,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3323
3321
|
filetype: string;
|
|
3324
3322
|
pretty_type: string;
|
|
3325
3323
|
editable: boolean;
|
|
3324
|
+
size: number;
|
|
3325
|
+
mode: string;
|
|
3326
3326
|
is_external: boolean;
|
|
3327
3327
|
external_type: string;
|
|
3328
3328
|
is_public: boolean;
|
|
@@ -3415,12 +3415,12 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3415
3415
|
value: z.ZodString;
|
|
3416
3416
|
short: z.ZodOptional<z.ZodBoolean>;
|
|
3417
3417
|
}, "strip", z.ZodTypeAny, {
|
|
3418
|
-
value: string;
|
|
3419
3418
|
title: string;
|
|
3419
|
+
value: string;
|
|
3420
3420
|
short?: boolean | undefined;
|
|
3421
3421
|
}, {
|
|
3422
|
-
value: string;
|
|
3423
3422
|
title: string;
|
|
3423
|
+
value: string;
|
|
3424
3424
|
short?: boolean | undefined;
|
|
3425
3425
|
}>, "many">>;
|
|
3426
3426
|
image_url: z.ZodOptional<z.ZodString>;
|
|
@@ -3430,12 +3430,12 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3430
3430
|
ts: z.ZodOptional<z.ZodNumber>;
|
|
3431
3431
|
}, "strip", z.ZodTypeAny, {
|
|
3432
3432
|
title?: string | undefined;
|
|
3433
|
-
text?: string | undefined;
|
|
3434
3433
|
fields?: {
|
|
3435
|
-
value: string;
|
|
3436
3434
|
title: string;
|
|
3435
|
+
value: string;
|
|
3437
3436
|
short?: boolean | undefined;
|
|
3438
3437
|
}[] | undefined;
|
|
3438
|
+
text?: string | undefined;
|
|
3439
3439
|
image_url?: string | undefined;
|
|
3440
3440
|
color?: string | undefined;
|
|
3441
3441
|
pretext?: string | undefined;
|
|
@@ -3449,12 +3449,12 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3449
3449
|
ts?: number | undefined;
|
|
3450
3450
|
}, {
|
|
3451
3451
|
title?: string | undefined;
|
|
3452
|
-
text?: string | undefined;
|
|
3453
3452
|
fields?: {
|
|
3454
|
-
value: string;
|
|
3455
3453
|
title: string;
|
|
3454
|
+
value: string;
|
|
3456
3455
|
short?: boolean | undefined;
|
|
3457
3456
|
}[] | undefined;
|
|
3457
|
+
text?: string | undefined;
|
|
3458
3458
|
image_url?: string | undefined;
|
|
3459
3459
|
color?: string | undefined;
|
|
3460
3460
|
pretext?: string | undefined;
|
|
@@ -3606,12 +3606,12 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3606
3606
|
icon_url?: string | undefined;
|
|
3607
3607
|
attachments?: {
|
|
3608
3608
|
title?: string | undefined;
|
|
3609
|
-
text?: string | undefined;
|
|
3610
3609
|
fields?: {
|
|
3611
|
-
value: string;
|
|
3612
3610
|
title: string;
|
|
3611
|
+
value: string;
|
|
3613
3612
|
short?: boolean | undefined;
|
|
3614
3613
|
}[] | undefined;
|
|
3614
|
+
text?: string | undefined;
|
|
3615
3615
|
image_url?: string | undefined;
|
|
3616
3616
|
color?: string | undefined;
|
|
3617
3617
|
pretext?: string | undefined;
|
|
@@ -3676,12 +3676,12 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3676
3676
|
icon_url?: string | undefined;
|
|
3677
3677
|
attachments?: {
|
|
3678
3678
|
title?: string | undefined;
|
|
3679
|
-
text?: string | undefined;
|
|
3680
3679
|
fields?: {
|
|
3681
|
-
value: string;
|
|
3682
3680
|
title: string;
|
|
3681
|
+
value: string;
|
|
3683
3682
|
short?: boolean | undefined;
|
|
3684
3683
|
}[] | undefined;
|
|
3684
|
+
text?: string | undefined;
|
|
3685
3685
|
image_url?: string | undefined;
|
|
3686
3686
|
color?: string | undefined;
|
|
3687
3687
|
pretext?: string | undefined;
|
|
@@ -3748,18 +3748,18 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3748
3748
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
3749
3749
|
}, "strip", z.ZodTypeAny, {
|
|
3750
3750
|
operation: "list_channels";
|
|
3751
|
+
limit: number;
|
|
3751
3752
|
types: ("public_channel" | "private_channel" | "mpim" | "im")[];
|
|
3752
3753
|
exclude_archived: boolean;
|
|
3753
|
-
limit: number;
|
|
3754
3754
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
3755
3755
|
cursor?: string | undefined;
|
|
3756
3756
|
}, {
|
|
3757
3757
|
operation: "list_channels";
|
|
3758
3758
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
3759
|
+
cursor?: string | undefined;
|
|
3760
|
+
limit?: number | undefined;
|
|
3759
3761
|
types?: ("public_channel" | "private_channel" | "mpim" | "im")[] | undefined;
|
|
3760
3762
|
exclude_archived?: boolean | undefined;
|
|
3761
|
-
limit?: number | undefined;
|
|
3762
|
-
cursor?: string | undefined;
|
|
3763
3763
|
}>, z.ZodObject<{
|
|
3764
3764
|
operation: z.ZodLiteral<"get_channel_info">;
|
|
3765
3765
|
channel: z.ZodString;
|
|
@@ -3805,8 +3805,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3805
3805
|
}, {
|
|
3806
3806
|
operation: "list_users";
|
|
3807
3807
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
3808
|
-
limit?: number | undefined;
|
|
3809
3808
|
cursor?: string | undefined;
|
|
3809
|
+
limit?: number | undefined;
|
|
3810
3810
|
include_locale?: boolean | undefined;
|
|
3811
3811
|
}>, z.ZodObject<{
|
|
3812
3812
|
operation: z.ZodLiteral<"get_conversation_history">;
|
|
@@ -3818,10 +3818,10 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3818
3818
|
cursor: z.ZodOptional<z.ZodString>;
|
|
3819
3819
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
3820
3820
|
}, "strip", z.ZodTypeAny, {
|
|
3821
|
-
operation: "get_conversation_history";
|
|
3822
3821
|
inclusive: boolean;
|
|
3823
|
-
|
|
3822
|
+
operation: "get_conversation_history";
|
|
3824
3823
|
limit: number;
|
|
3824
|
+
channel: string;
|
|
3825
3825
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
3826
3826
|
cursor?: string | undefined;
|
|
3827
3827
|
latest?: string | undefined;
|
|
@@ -3831,8 +3831,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3831
3831
|
channel: string;
|
|
3832
3832
|
inclusive?: boolean | undefined;
|
|
3833
3833
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
3834
|
-
limit?: number | undefined;
|
|
3835
3834
|
cursor?: string | undefined;
|
|
3835
|
+
limit?: number | undefined;
|
|
3836
3836
|
latest?: string | undefined;
|
|
3837
3837
|
oldest?: string | undefined;
|
|
3838
3838
|
}>, z.ZodObject<{
|
|
@@ -3846,11 +3846,11 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3846
3846
|
cursor: z.ZodOptional<z.ZodString>;
|
|
3847
3847
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
3848
3848
|
}, "strip", z.ZodTypeAny, {
|
|
3849
|
-
operation: "get_thread_replies";
|
|
3850
3849
|
inclusive: boolean;
|
|
3850
|
+
operation: "get_thread_replies";
|
|
3851
|
+
limit: number;
|
|
3851
3852
|
ts: string;
|
|
3852
3853
|
channel: string;
|
|
3853
|
-
limit: number;
|
|
3854
3854
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
3855
3855
|
cursor?: string | undefined;
|
|
3856
3856
|
latest?: string | undefined;
|
|
@@ -3861,8 +3861,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3861
3861
|
channel: string;
|
|
3862
3862
|
inclusive?: boolean | undefined;
|
|
3863
3863
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
3864
|
-
limit?: number | undefined;
|
|
3865
3864
|
cursor?: string | undefined;
|
|
3865
|
+
limit?: number | undefined;
|
|
3866
3866
|
latest?: string | undefined;
|
|
3867
3867
|
oldest?: string | undefined;
|
|
3868
3868
|
}>, z.ZodObject<{
|
|
@@ -3884,12 +3884,12 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3884
3884
|
value: z.ZodString;
|
|
3885
3885
|
short: z.ZodOptional<z.ZodBoolean>;
|
|
3886
3886
|
}, "strip", z.ZodTypeAny, {
|
|
3887
|
-
value: string;
|
|
3888
3887
|
title: string;
|
|
3888
|
+
value: string;
|
|
3889
3889
|
short?: boolean | undefined;
|
|
3890
3890
|
}, {
|
|
3891
|
-
value: string;
|
|
3892
3891
|
title: string;
|
|
3892
|
+
value: string;
|
|
3893
3893
|
short?: boolean | undefined;
|
|
3894
3894
|
}>, "many">>;
|
|
3895
3895
|
image_url: z.ZodOptional<z.ZodString>;
|
|
@@ -3899,12 +3899,12 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3899
3899
|
ts: z.ZodOptional<z.ZodNumber>;
|
|
3900
3900
|
}, "strip", z.ZodTypeAny, {
|
|
3901
3901
|
title?: string | undefined;
|
|
3902
|
-
text?: string | undefined;
|
|
3903
3902
|
fields?: {
|
|
3904
|
-
value: string;
|
|
3905
3903
|
title: string;
|
|
3904
|
+
value: string;
|
|
3906
3905
|
short?: boolean | undefined;
|
|
3907
3906
|
}[] | undefined;
|
|
3907
|
+
text?: string | undefined;
|
|
3908
3908
|
image_url?: string | undefined;
|
|
3909
3909
|
color?: string | undefined;
|
|
3910
3910
|
pretext?: string | undefined;
|
|
@@ -3918,12 +3918,12 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3918
3918
|
ts?: number | undefined;
|
|
3919
3919
|
}, {
|
|
3920
3920
|
title?: string | undefined;
|
|
3921
|
-
text?: string | undefined;
|
|
3922
3921
|
fields?: {
|
|
3923
|
-
value: string;
|
|
3924
3922
|
title: string;
|
|
3923
|
+
value: string;
|
|
3925
3924
|
short?: boolean | undefined;
|
|
3926
3925
|
}[] | undefined;
|
|
3926
|
+
text?: string | undefined;
|
|
3927
3927
|
image_url?: string | undefined;
|
|
3928
3928
|
color?: string | undefined;
|
|
3929
3929
|
pretext?: string | undefined;
|
|
@@ -4066,12 +4066,12 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4066
4066
|
text?: string | undefined;
|
|
4067
4067
|
attachments?: {
|
|
4068
4068
|
title?: string | undefined;
|
|
4069
|
-
text?: string | undefined;
|
|
4070
4069
|
fields?: {
|
|
4071
|
-
value: string;
|
|
4072
4070
|
title: string;
|
|
4071
|
+
value: string;
|
|
4073
4072
|
short?: boolean | undefined;
|
|
4074
4073
|
}[] | undefined;
|
|
4074
|
+
text?: string | undefined;
|
|
4075
4075
|
image_url?: string | undefined;
|
|
4076
4076
|
color?: string | undefined;
|
|
4077
4077
|
pretext?: string | undefined;
|
|
@@ -4133,12 +4133,12 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4133
4133
|
text?: string | undefined;
|
|
4134
4134
|
attachments?: {
|
|
4135
4135
|
title?: string | undefined;
|
|
4136
|
-
text?: string | undefined;
|
|
4137
4136
|
fields?: {
|
|
4138
|
-
value: string;
|
|
4139
4137
|
title: string;
|
|
4138
|
+
value: string;
|
|
4140
4139
|
short?: boolean | undefined;
|
|
4141
4140
|
}[] | undefined;
|
|
4141
|
+
text?: string | undefined;
|
|
4142
4142
|
image_url?: string | undefined;
|
|
4143
4143
|
color?: string | undefined;
|
|
4144
4144
|
pretext?: string | undefined;
|
|
@@ -4214,14 +4214,14 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4214
4214
|
timestamp: z.ZodString;
|
|
4215
4215
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
4216
4216
|
}, "strip", z.ZodTypeAny, {
|
|
4217
|
-
operation: "add_reaction";
|
|
4218
4217
|
name: string;
|
|
4218
|
+
operation: "add_reaction";
|
|
4219
4219
|
channel: string;
|
|
4220
4220
|
timestamp: string;
|
|
4221
4221
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4222
4222
|
}, {
|
|
4223
|
-
operation: "add_reaction";
|
|
4224
4223
|
name: string;
|
|
4224
|
+
operation: "add_reaction";
|
|
4225
4225
|
channel: string;
|
|
4226
4226
|
timestamp: string;
|
|
4227
4227
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -4232,14 +4232,14 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4232
4232
|
timestamp: z.ZodString;
|
|
4233
4233
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
4234
4234
|
}, "strip", z.ZodTypeAny, {
|
|
4235
|
-
operation: "remove_reaction";
|
|
4236
4235
|
name: string;
|
|
4236
|
+
operation: "remove_reaction";
|
|
4237
4237
|
channel: string;
|
|
4238
4238
|
timestamp: string;
|
|
4239
4239
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4240
4240
|
}, {
|
|
4241
|
-
operation: "remove_reaction";
|
|
4242
4241
|
name: string;
|
|
4242
|
+
operation: "remove_reaction";
|
|
4243
4243
|
channel: string;
|
|
4244
4244
|
timestamp: string;
|
|
4245
4245
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -4270,8 +4270,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4270
4270
|
file_path: string;
|
|
4271
4271
|
title?: string | undefined;
|
|
4272
4272
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4273
|
-
filename?: string | undefined;
|
|
4274
4273
|
thread_ts?: string | undefined;
|
|
4274
|
+
filename?: string | undefined;
|
|
4275
4275
|
initial_comment?: string | undefined;
|
|
4276
4276
|
}, {
|
|
4277
4277
|
operation: "upload_file";
|
|
@@ -4279,8 +4279,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4279
4279
|
file_path: string;
|
|
4280
4280
|
title?: string | undefined;
|
|
4281
4281
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4282
|
-
filename?: string | undefined;
|
|
4283
4282
|
thread_ts?: string | undefined;
|
|
4283
|
+
filename?: string | undefined;
|
|
4284
4284
|
initial_comment?: string | undefined;
|
|
4285
4285
|
}>, z.ZodObject<{
|
|
4286
4286
|
operation: z.ZodLiteral<"schedule_message">;
|
|
@@ -4548,12 +4548,12 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4548
4548
|
count: z.ZodNumber;
|
|
4549
4549
|
}, "strip", z.ZodTypeAny, {
|
|
4550
4550
|
name: string;
|
|
4551
|
-
users: string[];
|
|
4552
4551
|
count: number;
|
|
4552
|
+
users: string[];
|
|
4553
4553
|
}, {
|
|
4554
4554
|
name: string;
|
|
4555
|
-
users: string[];
|
|
4556
4555
|
count: number;
|
|
4556
|
+
users: string[];
|
|
4557
4557
|
}>, "many">>;
|
|
4558
4558
|
}, "strip", z.ZodTypeAny, {
|
|
4559
4559
|
type: string;
|
|
@@ -4577,8 +4577,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4577
4577
|
subscribed?: boolean | undefined;
|
|
4578
4578
|
reactions?: {
|
|
4579
4579
|
name: string;
|
|
4580
|
-
users: string[];
|
|
4581
4580
|
count: number;
|
|
4581
|
+
users: string[];
|
|
4582
4582
|
}[] | undefined;
|
|
4583
4583
|
}, {
|
|
4584
4584
|
type: string;
|
|
@@ -4602,8 +4602,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4602
4602
|
subscribed?: boolean | undefined;
|
|
4603
4603
|
reactions?: {
|
|
4604
4604
|
name: string;
|
|
4605
|
-
users: string[];
|
|
4606
4605
|
count: number;
|
|
4606
|
+
users: string[];
|
|
4607
4607
|
}[] | undefined;
|
|
4608
4608
|
}>>;
|
|
4609
4609
|
error: z.ZodString;
|
|
@@ -4635,8 +4635,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4635
4635
|
subscribed?: boolean | undefined;
|
|
4636
4636
|
reactions?: {
|
|
4637
4637
|
name: string;
|
|
4638
|
-
users: string[];
|
|
4639
4638
|
count: number;
|
|
4639
|
+
users: string[];
|
|
4640
4640
|
}[] | undefined;
|
|
4641
4641
|
} | undefined;
|
|
4642
4642
|
ts?: string | undefined;
|
|
@@ -4668,8 +4668,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4668
4668
|
subscribed?: boolean | undefined;
|
|
4669
4669
|
reactions?: {
|
|
4670
4670
|
name: string;
|
|
4671
|
-
users: string[];
|
|
4672
4671
|
count: number;
|
|
4672
|
+
users: string[];
|
|
4673
4673
|
}[] | undefined;
|
|
4674
4674
|
} | undefined;
|
|
4675
4675
|
ts?: string | undefined;
|
|
@@ -5124,6 +5124,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5124
5124
|
image_512: z.ZodOptional<z.ZodString>;
|
|
5125
5125
|
image_1024: z.ZodOptional<z.ZodString>;
|
|
5126
5126
|
}, "strip", z.ZodTypeAny, {
|
|
5127
|
+
first_name?: string | undefined;
|
|
5128
|
+
last_name?: string | undefined;
|
|
5127
5129
|
title?: string | undefined;
|
|
5128
5130
|
email?: string | undefined;
|
|
5129
5131
|
fields?: Record<string, unknown> | undefined;
|
|
@@ -5139,8 +5141,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5139
5141
|
avatar_hash?: string | undefined;
|
|
5140
5142
|
image_original?: string | undefined;
|
|
5141
5143
|
is_custom_image?: boolean | undefined;
|
|
5142
|
-
first_name?: string | undefined;
|
|
5143
|
-
last_name?: string | undefined;
|
|
5144
5144
|
image_24?: string | undefined;
|
|
5145
5145
|
image_32?: string | undefined;
|
|
5146
5146
|
image_48?: string | undefined;
|
|
@@ -5149,6 +5149,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5149
5149
|
image_512?: string | undefined;
|
|
5150
5150
|
image_1024?: string | undefined;
|
|
5151
5151
|
}, {
|
|
5152
|
+
first_name?: string | undefined;
|
|
5153
|
+
last_name?: string | undefined;
|
|
5152
5154
|
title?: string | undefined;
|
|
5153
5155
|
email?: string | undefined;
|
|
5154
5156
|
fields?: Record<string, unknown> | undefined;
|
|
@@ -5164,8 +5166,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5164
5166
|
avatar_hash?: string | undefined;
|
|
5165
5167
|
image_original?: string | undefined;
|
|
5166
5168
|
is_custom_image?: boolean | undefined;
|
|
5167
|
-
first_name?: string | undefined;
|
|
5168
|
-
last_name?: string | undefined;
|
|
5169
5169
|
image_24?: string | undefined;
|
|
5170
5170
|
image_32?: string | undefined;
|
|
5171
5171
|
image_48?: string | undefined;
|
|
@@ -5194,6 +5194,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5194
5194
|
tz_label?: string | undefined;
|
|
5195
5195
|
tz_offset?: number | undefined;
|
|
5196
5196
|
profile?: {
|
|
5197
|
+
first_name?: string | undefined;
|
|
5198
|
+
last_name?: string | undefined;
|
|
5197
5199
|
title?: string | undefined;
|
|
5198
5200
|
email?: string | undefined;
|
|
5199
5201
|
fields?: Record<string, unknown> | undefined;
|
|
@@ -5209,8 +5211,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5209
5211
|
avatar_hash?: string | undefined;
|
|
5210
5212
|
image_original?: string | undefined;
|
|
5211
5213
|
is_custom_image?: boolean | undefined;
|
|
5212
|
-
first_name?: string | undefined;
|
|
5213
|
-
last_name?: string | undefined;
|
|
5214
5214
|
image_24?: string | undefined;
|
|
5215
5215
|
image_32?: string | undefined;
|
|
5216
5216
|
image_48?: string | undefined;
|
|
@@ -5239,6 +5239,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5239
5239
|
tz_label?: string | undefined;
|
|
5240
5240
|
tz_offset?: number | undefined;
|
|
5241
5241
|
profile?: {
|
|
5242
|
+
first_name?: string | undefined;
|
|
5243
|
+
last_name?: string | undefined;
|
|
5242
5244
|
title?: string | undefined;
|
|
5243
5245
|
email?: string | undefined;
|
|
5244
5246
|
fields?: Record<string, unknown> | undefined;
|
|
@@ -5254,8 +5256,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5254
5256
|
avatar_hash?: string | undefined;
|
|
5255
5257
|
image_original?: string | undefined;
|
|
5256
5258
|
is_custom_image?: boolean | undefined;
|
|
5257
|
-
first_name?: string | undefined;
|
|
5258
|
-
last_name?: string | undefined;
|
|
5259
5259
|
image_24?: string | undefined;
|
|
5260
5260
|
image_32?: string | undefined;
|
|
5261
5261
|
image_48?: string | undefined;
|
|
@@ -5292,6 +5292,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5292
5292
|
tz_label?: string | undefined;
|
|
5293
5293
|
tz_offset?: number | undefined;
|
|
5294
5294
|
profile?: {
|
|
5295
|
+
first_name?: string | undefined;
|
|
5296
|
+
last_name?: string | undefined;
|
|
5295
5297
|
title?: string | undefined;
|
|
5296
5298
|
email?: string | undefined;
|
|
5297
5299
|
fields?: Record<string, unknown> | undefined;
|
|
@@ -5307,8 +5309,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5307
5309
|
avatar_hash?: string | undefined;
|
|
5308
5310
|
image_original?: string | undefined;
|
|
5309
5311
|
is_custom_image?: boolean | undefined;
|
|
5310
|
-
first_name?: string | undefined;
|
|
5311
|
-
last_name?: string | undefined;
|
|
5312
5312
|
image_24?: string | undefined;
|
|
5313
5313
|
image_32?: string | undefined;
|
|
5314
5314
|
image_48?: string | undefined;
|
|
@@ -5343,6 +5343,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5343
5343
|
tz_label?: string | undefined;
|
|
5344
5344
|
tz_offset?: number | undefined;
|
|
5345
5345
|
profile?: {
|
|
5346
|
+
first_name?: string | undefined;
|
|
5347
|
+
last_name?: string | undefined;
|
|
5346
5348
|
title?: string | undefined;
|
|
5347
5349
|
email?: string | undefined;
|
|
5348
5350
|
fields?: Record<string, unknown> | undefined;
|
|
@@ -5358,8 +5360,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5358
5360
|
avatar_hash?: string | undefined;
|
|
5359
5361
|
image_original?: string | undefined;
|
|
5360
5362
|
is_custom_image?: boolean | undefined;
|
|
5361
|
-
first_name?: string | undefined;
|
|
5362
|
-
last_name?: string | undefined;
|
|
5363
5363
|
image_24?: string | undefined;
|
|
5364
5364
|
image_32?: string | undefined;
|
|
5365
5365
|
image_48?: string | undefined;
|
|
@@ -5417,6 +5417,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5417
5417
|
image_512: z.ZodOptional<z.ZodString>;
|
|
5418
5418
|
image_1024: z.ZodOptional<z.ZodString>;
|
|
5419
5419
|
}, "strip", z.ZodTypeAny, {
|
|
5420
|
+
first_name?: string | undefined;
|
|
5421
|
+
last_name?: string | undefined;
|
|
5420
5422
|
title?: string | undefined;
|
|
5421
5423
|
email?: string | undefined;
|
|
5422
5424
|
fields?: Record<string, unknown> | undefined;
|
|
@@ -5432,8 +5434,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5432
5434
|
avatar_hash?: string | undefined;
|
|
5433
5435
|
image_original?: string | undefined;
|
|
5434
5436
|
is_custom_image?: boolean | undefined;
|
|
5435
|
-
first_name?: string | undefined;
|
|
5436
|
-
last_name?: string | undefined;
|
|
5437
5437
|
image_24?: string | undefined;
|
|
5438
5438
|
image_32?: string | undefined;
|
|
5439
5439
|
image_48?: string | undefined;
|
|
@@ -5442,6 +5442,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5442
5442
|
image_512?: string | undefined;
|
|
5443
5443
|
image_1024?: string | undefined;
|
|
5444
5444
|
}, {
|
|
5445
|
+
first_name?: string | undefined;
|
|
5446
|
+
last_name?: string | undefined;
|
|
5445
5447
|
title?: string | undefined;
|
|
5446
5448
|
email?: string | undefined;
|
|
5447
5449
|
fields?: Record<string, unknown> | undefined;
|
|
@@ -5457,8 +5459,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5457
5459
|
avatar_hash?: string | undefined;
|
|
5458
5460
|
image_original?: string | undefined;
|
|
5459
5461
|
is_custom_image?: boolean | undefined;
|
|
5460
|
-
first_name?: string | undefined;
|
|
5461
|
-
last_name?: string | undefined;
|
|
5462
5462
|
image_24?: string | undefined;
|
|
5463
5463
|
image_32?: string | undefined;
|
|
5464
5464
|
image_48?: string | undefined;
|
|
@@ -5487,6 +5487,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5487
5487
|
tz_label?: string | undefined;
|
|
5488
5488
|
tz_offset?: number | undefined;
|
|
5489
5489
|
profile?: {
|
|
5490
|
+
first_name?: string | undefined;
|
|
5491
|
+
last_name?: string | undefined;
|
|
5490
5492
|
title?: string | undefined;
|
|
5491
5493
|
email?: string | undefined;
|
|
5492
5494
|
fields?: Record<string, unknown> | undefined;
|
|
@@ -5502,8 +5504,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5502
5504
|
avatar_hash?: string | undefined;
|
|
5503
5505
|
image_original?: string | undefined;
|
|
5504
5506
|
is_custom_image?: boolean | undefined;
|
|
5505
|
-
first_name?: string | undefined;
|
|
5506
|
-
last_name?: string | undefined;
|
|
5507
5507
|
image_24?: string | undefined;
|
|
5508
5508
|
image_32?: string | undefined;
|
|
5509
5509
|
image_48?: string | undefined;
|
|
@@ -5532,6 +5532,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5532
5532
|
tz_label?: string | undefined;
|
|
5533
5533
|
tz_offset?: number | undefined;
|
|
5534
5534
|
profile?: {
|
|
5535
|
+
first_name?: string | undefined;
|
|
5536
|
+
last_name?: string | undefined;
|
|
5535
5537
|
title?: string | undefined;
|
|
5536
5538
|
email?: string | undefined;
|
|
5537
5539
|
fields?: Record<string, unknown> | undefined;
|
|
@@ -5547,8 +5549,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5547
5549
|
avatar_hash?: string | undefined;
|
|
5548
5550
|
image_original?: string | undefined;
|
|
5549
5551
|
is_custom_image?: boolean | undefined;
|
|
5550
|
-
first_name?: string | undefined;
|
|
5551
|
-
last_name?: string | undefined;
|
|
5552
5552
|
image_24?: string | undefined;
|
|
5553
5553
|
image_32?: string | undefined;
|
|
5554
5554
|
image_48?: string | undefined;
|
|
@@ -5595,6 +5595,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5595
5595
|
tz_label?: string | undefined;
|
|
5596
5596
|
tz_offset?: number | undefined;
|
|
5597
5597
|
profile?: {
|
|
5598
|
+
first_name?: string | undefined;
|
|
5599
|
+
last_name?: string | undefined;
|
|
5598
5600
|
title?: string | undefined;
|
|
5599
5601
|
email?: string | undefined;
|
|
5600
5602
|
fields?: Record<string, unknown> | undefined;
|
|
@@ -5610,8 +5612,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5610
5612
|
avatar_hash?: string | undefined;
|
|
5611
5613
|
image_original?: string | undefined;
|
|
5612
5614
|
is_custom_image?: boolean | undefined;
|
|
5613
|
-
first_name?: string | undefined;
|
|
5614
|
-
last_name?: string | undefined;
|
|
5615
5615
|
image_24?: string | undefined;
|
|
5616
5616
|
image_32?: string | undefined;
|
|
5617
5617
|
image_48?: string | undefined;
|
|
@@ -5649,6 +5649,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5649
5649
|
tz_label?: string | undefined;
|
|
5650
5650
|
tz_offset?: number | undefined;
|
|
5651
5651
|
profile?: {
|
|
5652
|
+
first_name?: string | undefined;
|
|
5653
|
+
last_name?: string | undefined;
|
|
5652
5654
|
title?: string | undefined;
|
|
5653
5655
|
email?: string | undefined;
|
|
5654
5656
|
fields?: Record<string, unknown> | undefined;
|
|
@@ -5664,8 +5666,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5664
5666
|
avatar_hash?: string | undefined;
|
|
5665
5667
|
image_original?: string | undefined;
|
|
5666
5668
|
is_custom_image?: boolean | undefined;
|
|
5667
|
-
first_name?: string | undefined;
|
|
5668
|
-
last_name?: string | undefined;
|
|
5669
5669
|
image_24?: string | undefined;
|
|
5670
5670
|
image_32?: string | undefined;
|
|
5671
5671
|
image_48?: string | undefined;
|
|
@@ -5717,12 +5717,12 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5717
5717
|
count: z.ZodNumber;
|
|
5718
5718
|
}, "strip", z.ZodTypeAny, {
|
|
5719
5719
|
name: string;
|
|
5720
|
-
users: string[];
|
|
5721
5720
|
count: number;
|
|
5721
|
+
users: string[];
|
|
5722
5722
|
}, {
|
|
5723
5723
|
name: string;
|
|
5724
|
-
users: string[];
|
|
5725
5724
|
count: number;
|
|
5725
|
+
users: string[];
|
|
5726
5726
|
}>, "many">>;
|
|
5727
5727
|
}, "strip", z.ZodTypeAny, {
|
|
5728
5728
|
type: string;
|
|
@@ -5746,8 +5746,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5746
5746
|
subscribed?: boolean | undefined;
|
|
5747
5747
|
reactions?: {
|
|
5748
5748
|
name: string;
|
|
5749
|
-
users: string[];
|
|
5750
5749
|
count: number;
|
|
5750
|
+
users: string[];
|
|
5751
5751
|
}[] | undefined;
|
|
5752
5752
|
}, {
|
|
5753
5753
|
type: string;
|
|
@@ -5771,8 +5771,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5771
5771
|
subscribed?: boolean | undefined;
|
|
5772
5772
|
reactions?: {
|
|
5773
5773
|
name: string;
|
|
5774
|
-
users: string[];
|
|
5775
5774
|
count: number;
|
|
5775
|
+
users: string[];
|
|
5776
5776
|
}[] | undefined;
|
|
5777
5777
|
}>, "many">>;
|
|
5778
5778
|
has_more: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -5812,8 +5812,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5812
5812
|
subscribed?: boolean | undefined;
|
|
5813
5813
|
reactions?: {
|
|
5814
5814
|
name: string;
|
|
5815
|
-
users: string[];
|
|
5816
5815
|
count: number;
|
|
5816
|
+
users: string[];
|
|
5817
5817
|
}[] | undefined;
|
|
5818
5818
|
}[] | undefined;
|
|
5819
5819
|
response_metadata?: {
|
|
@@ -5847,8 +5847,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5847
5847
|
subscribed?: boolean | undefined;
|
|
5848
5848
|
reactions?: {
|
|
5849
5849
|
name: string;
|
|
5850
|
-
users: string[];
|
|
5851
5850
|
count: number;
|
|
5851
|
+
users: string[];
|
|
5852
5852
|
}[] | undefined;
|
|
5853
5853
|
}[] | undefined;
|
|
5854
5854
|
response_metadata?: {
|
|
@@ -5888,12 +5888,12 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5888
5888
|
count: z.ZodNumber;
|
|
5889
5889
|
}, "strip", z.ZodTypeAny, {
|
|
5890
5890
|
name: string;
|
|
5891
|
-
users: string[];
|
|
5892
5891
|
count: number;
|
|
5892
|
+
users: string[];
|
|
5893
5893
|
}, {
|
|
5894
5894
|
name: string;
|
|
5895
|
-
users: string[];
|
|
5896
5895
|
count: number;
|
|
5896
|
+
users: string[];
|
|
5897
5897
|
}>, "many">>;
|
|
5898
5898
|
}, "strip", z.ZodTypeAny, {
|
|
5899
5899
|
type: string;
|
|
@@ -5917,8 +5917,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5917
5917
|
subscribed?: boolean | undefined;
|
|
5918
5918
|
reactions?: {
|
|
5919
5919
|
name: string;
|
|
5920
|
-
users: string[];
|
|
5921
5920
|
count: number;
|
|
5921
|
+
users: string[];
|
|
5922
5922
|
}[] | undefined;
|
|
5923
5923
|
}, {
|
|
5924
5924
|
type: string;
|
|
@@ -5942,8 +5942,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5942
5942
|
subscribed?: boolean | undefined;
|
|
5943
5943
|
reactions?: {
|
|
5944
5944
|
name: string;
|
|
5945
|
-
users: string[];
|
|
5946
5945
|
count: number;
|
|
5946
|
+
users: string[];
|
|
5947
5947
|
}[] | undefined;
|
|
5948
5948
|
}>, "many">>;
|
|
5949
5949
|
has_more: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -5983,8 +5983,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5983
5983
|
subscribed?: boolean | undefined;
|
|
5984
5984
|
reactions?: {
|
|
5985
5985
|
name: string;
|
|
5986
|
-
users: string[];
|
|
5987
5986
|
count: number;
|
|
5987
|
+
users: string[];
|
|
5988
5988
|
}[] | undefined;
|
|
5989
5989
|
}[] | undefined;
|
|
5990
5990
|
response_metadata?: {
|
|
@@ -6018,8 +6018,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6018
6018
|
subscribed?: boolean | undefined;
|
|
6019
6019
|
reactions?: {
|
|
6020
6020
|
name: string;
|
|
6021
|
-
users: string[];
|
|
6022
6021
|
count: number;
|
|
6022
|
+
users: string[];
|
|
6023
6023
|
}[] | undefined;
|
|
6024
6024
|
}[] | undefined;
|
|
6025
6025
|
response_metadata?: {
|
|
@@ -6062,12 +6062,12 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6062
6062
|
count: z.ZodNumber;
|
|
6063
6063
|
}, "strip", z.ZodTypeAny, {
|
|
6064
6064
|
name: string;
|
|
6065
|
-
users: string[];
|
|
6066
6065
|
count: number;
|
|
6066
|
+
users: string[];
|
|
6067
6067
|
}, {
|
|
6068
6068
|
name: string;
|
|
6069
|
-
users: string[];
|
|
6070
6069
|
count: number;
|
|
6070
|
+
users: string[];
|
|
6071
6071
|
}>, "many">>;
|
|
6072
6072
|
}, "strip", z.ZodTypeAny, {
|
|
6073
6073
|
type: string;
|
|
@@ -6091,8 +6091,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6091
6091
|
subscribed?: boolean | undefined;
|
|
6092
6092
|
reactions?: {
|
|
6093
6093
|
name: string;
|
|
6094
|
-
users: string[];
|
|
6095
6094
|
count: number;
|
|
6095
|
+
users: string[];
|
|
6096
6096
|
}[] | undefined;
|
|
6097
6097
|
}, {
|
|
6098
6098
|
type: string;
|
|
@@ -6116,8 +6116,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6116
6116
|
subscribed?: boolean | undefined;
|
|
6117
6117
|
reactions?: {
|
|
6118
6118
|
name: string;
|
|
6119
|
-
users: string[];
|
|
6120
6119
|
count: number;
|
|
6120
|
+
users: string[];
|
|
6121
6121
|
}[] | undefined;
|
|
6122
6122
|
}>>;
|
|
6123
6123
|
error: z.ZodString;
|
|
@@ -6149,8 +6149,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6149
6149
|
subscribed?: boolean | undefined;
|
|
6150
6150
|
reactions?: {
|
|
6151
6151
|
name: string;
|
|
6152
|
-
users: string[];
|
|
6153
6152
|
count: number;
|
|
6153
|
+
users: string[];
|
|
6154
6154
|
}[] | undefined;
|
|
6155
6155
|
} | undefined;
|
|
6156
6156
|
text?: string | undefined;
|
|
@@ -6183,8 +6183,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6183
6183
|
subscribed?: boolean | undefined;
|
|
6184
6184
|
reactions?: {
|
|
6185
6185
|
name: string;
|
|
6186
|
-
users: string[];
|
|
6187
6186
|
count: number;
|
|
6187
|
+
users: string[];
|
|
6188
6188
|
}[] | undefined;
|
|
6189
6189
|
} | undefined;
|
|
6190
6190
|
text?: string | undefined;
|
|
@@ -6556,9 +6556,7 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6556
6556
|
}, "strip", z.ZodTypeAny, {
|
|
6557
6557
|
name: string;
|
|
6558
6558
|
user: string;
|
|
6559
|
-
mode: string;
|
|
6560
6559
|
id: string;
|
|
6561
|
-
size: number;
|
|
6562
6560
|
username: string;
|
|
6563
6561
|
timestamp: number;
|
|
6564
6562
|
created: number;
|
|
@@ -6566,6 +6564,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6566
6564
|
filetype: string;
|
|
6567
6565
|
pretty_type: string;
|
|
6568
6566
|
editable: boolean;
|
|
6567
|
+
size: number;
|
|
6568
|
+
mode: string;
|
|
6569
6569
|
is_external: boolean;
|
|
6570
6570
|
external_type: string;
|
|
6571
6571
|
is_public: boolean;
|
|
@@ -6601,9 +6601,7 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6601
6601
|
}, {
|
|
6602
6602
|
name: string;
|
|
6603
6603
|
user: string;
|
|
6604
|
-
mode: string;
|
|
6605
6604
|
id: string;
|
|
6606
|
-
size: number;
|
|
6607
6605
|
username: string;
|
|
6608
6606
|
timestamp: number;
|
|
6609
6607
|
created: number;
|
|
@@ -6611,6 +6609,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6611
6609
|
filetype: string;
|
|
6612
6610
|
pretty_type: string;
|
|
6613
6611
|
editable: boolean;
|
|
6612
|
+
size: number;
|
|
6613
|
+
mode: string;
|
|
6614
6614
|
is_external: boolean;
|
|
6615
6615
|
external_type: string;
|
|
6616
6616
|
is_public: boolean;
|
|
@@ -6654,9 +6654,7 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6654
6654
|
file?: {
|
|
6655
6655
|
name: string;
|
|
6656
6656
|
user: string;
|
|
6657
|
-
mode: string;
|
|
6658
6657
|
id: string;
|
|
6659
|
-
size: number;
|
|
6660
6658
|
username: string;
|
|
6661
6659
|
timestamp: number;
|
|
6662
6660
|
created: number;
|
|
@@ -6664,6 +6662,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6664
6662
|
filetype: string;
|
|
6665
6663
|
pretty_type: string;
|
|
6666
6664
|
editable: boolean;
|
|
6665
|
+
size: number;
|
|
6666
|
+
mode: string;
|
|
6667
6667
|
is_external: boolean;
|
|
6668
6668
|
external_type: string;
|
|
6669
6669
|
is_public: boolean;
|
|
@@ -6705,9 +6705,7 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6705
6705
|
file?: {
|
|
6706
6706
|
name: string;
|
|
6707
6707
|
user: string;
|
|
6708
|
-
mode: string;
|
|
6709
6708
|
id: string;
|
|
6710
|
-
size: number;
|
|
6711
6709
|
username: string;
|
|
6712
6710
|
timestamp: number;
|
|
6713
6711
|
created: number;
|
|
@@ -6715,6 +6713,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6715
6713
|
filetype: string;
|
|
6716
6714
|
pretty_type: string;
|
|
6717
6715
|
editable: boolean;
|
|
6716
|
+
size: number;
|
|
6717
|
+
mode: string;
|
|
6718
6718
|
is_external: boolean;
|
|
6719
6719
|
external_type: string;
|
|
6720
6720
|
is_public: boolean;
|