@bubblelab/bubble-core 0.1.74 → 0.1.76
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 +88 -88
- package/dist/bubbles/service-bubble/ai-agent.d.ts +32 -32
- package/dist/bubbles/service-bubble/airtable.d.ts +76 -76
- package/dist/bubbles/service-bubble/airtable.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/airtable.js +3 -1
- package/dist/bubbles/service-bubble/airtable.js.map +1 -1
- package/dist/bubbles/service-bubble/apify/apify.d.ts +18 -18
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +112 -112
- package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +38 -38
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +2 -2
- package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +78 -78
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +82 -82
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +42 -42
- package/dist/bubbles/service-bubble/firecrawl.d.ts +250 -250
- package/dist/bubbles/service-bubble/followupboss.d.ts +4 -4
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.schema.d.ts +46 -46
- package/dist/bubbles/service-bubble/github.d.ts +44 -44
- package/dist/bubbles/service-bubble/gmail.d.ts +104 -104
- package/dist/bubbles/service-bubble/google-drive.d.ts +36 -36
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.d.ts +52 -52
- package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
- package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +62 -62
- package/dist/bubbles/service-bubble/notion/notion.d.ts +304 -304
- package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
- package/dist/bubbles/service-bubble/resend.d.ts +4 -4
- package/dist/bubbles/service-bubble/slack/slack.d.ts +320 -320
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +9 -9
- package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +78 -78
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.schema.d.ts +28 -28
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.schema.d.ts +4 -4
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +301 -301
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +60 -60
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +106 -106
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +20 -20
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +12 -12
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +28 -28
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +56 -56
- package/dist/bubbles.json +3 -2
- package/package.json +2 -2
|
@@ -37,8 +37,8 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
37
37
|
footer_icon: z.ZodOptional<z.ZodString>;
|
|
38
38
|
ts: z.ZodOptional<z.ZodNumber>;
|
|
39
39
|
}, "strip", z.ZodTypeAny, {
|
|
40
|
-
text?: string | undefined;
|
|
41
40
|
title?: string | undefined;
|
|
41
|
+
text?: string | undefined;
|
|
42
42
|
image_url?: string | undefined;
|
|
43
43
|
fields?: {
|
|
44
44
|
value: string;
|
|
@@ -56,8 +56,8 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
56
56
|
footer_icon?: string | undefined;
|
|
57
57
|
ts?: number | undefined;
|
|
58
58
|
}, {
|
|
59
|
-
text?: string | undefined;
|
|
60
59
|
title?: string | undefined;
|
|
60
|
+
text?: string | undefined;
|
|
61
61
|
image_url?: string | undefined;
|
|
62
62
|
fields?: {
|
|
63
63
|
value: string;
|
|
@@ -101,16 +101,16 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
101
101
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
102
102
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
103
103
|
}, "strip", z.ZodTypeAny, {
|
|
104
|
-
type: "
|
|
105
|
-
text?: string | undefined;
|
|
104
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
106
105
|
emoji?: boolean | undefined;
|
|
106
|
+
text?: string | undefined;
|
|
107
107
|
image_url?: string | undefined;
|
|
108
108
|
verbatim?: boolean | undefined;
|
|
109
109
|
alt_text?: string | undefined;
|
|
110
110
|
}, {
|
|
111
|
-
type: "
|
|
112
|
-
text?: string | undefined;
|
|
111
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
113
112
|
emoji?: boolean | undefined;
|
|
113
|
+
text?: string | undefined;
|
|
114
114
|
image_url?: string | undefined;
|
|
115
115
|
verbatim?: boolean | undefined;
|
|
116
116
|
alt_text?: string | undefined;
|
|
@@ -141,16 +141,16 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
141
141
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
142
142
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
143
143
|
}, "strip", z.ZodTypeAny, {
|
|
144
|
-
type: "
|
|
145
|
-
text?: string | undefined;
|
|
144
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
146
145
|
emoji?: boolean | undefined;
|
|
146
|
+
text?: string | undefined;
|
|
147
147
|
image_url?: string | undefined;
|
|
148
148
|
verbatim?: boolean | undefined;
|
|
149
149
|
alt_text?: string | undefined;
|
|
150
150
|
}, {
|
|
151
|
-
type: "
|
|
152
|
-
text?: string | undefined;
|
|
151
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
153
152
|
emoji?: boolean | undefined;
|
|
153
|
+
text?: string | undefined;
|
|
154
154
|
image_url?: string | undefined;
|
|
155
155
|
verbatim?: boolean | undefined;
|
|
156
156
|
alt_text?: string | undefined;
|
|
@@ -181,16 +181,16 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
181
181
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
182
182
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
183
183
|
}, "strip", z.ZodTypeAny, {
|
|
184
|
-
type: "
|
|
185
|
-
text?: string | undefined;
|
|
184
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
186
185
|
emoji?: boolean | undefined;
|
|
186
|
+
text?: string | undefined;
|
|
187
187
|
image_url?: string | undefined;
|
|
188
188
|
verbatim?: boolean | undefined;
|
|
189
189
|
alt_text?: string | undefined;
|
|
190
190
|
}, {
|
|
191
|
-
type: "
|
|
192
|
-
text?: string | undefined;
|
|
191
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
193
192
|
emoji?: boolean | undefined;
|
|
193
|
+
text?: string | undefined;
|
|
194
194
|
image_url?: string | undefined;
|
|
195
195
|
verbatim?: boolean | undefined;
|
|
196
196
|
alt_text?: string | undefined;
|
|
@@ -213,8 +213,8 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
213
213
|
icon_emoji?: string | undefined;
|
|
214
214
|
icon_url?: string | undefined;
|
|
215
215
|
attachments?: {
|
|
216
|
-
text?: string | undefined;
|
|
217
216
|
title?: string | undefined;
|
|
217
|
+
text?: string | undefined;
|
|
218
218
|
image_url?: string | undefined;
|
|
219
219
|
fields?: {
|
|
220
220
|
value: string;
|
|
@@ -258,16 +258,16 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
258
258
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
259
259
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
260
260
|
}, "strip", z.ZodTypeAny, {
|
|
261
|
-
type: "
|
|
262
|
-
text?: string | undefined;
|
|
261
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
263
262
|
emoji?: boolean | undefined;
|
|
263
|
+
text?: string | undefined;
|
|
264
264
|
image_url?: string | undefined;
|
|
265
265
|
verbatim?: boolean | undefined;
|
|
266
266
|
alt_text?: string | undefined;
|
|
267
267
|
}, {
|
|
268
|
-
type: "
|
|
269
|
-
text?: string | undefined;
|
|
268
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
270
269
|
emoji?: boolean | undefined;
|
|
270
|
+
text?: string | undefined;
|
|
271
271
|
image_url?: string | undefined;
|
|
272
272
|
verbatim?: boolean | undefined;
|
|
273
273
|
alt_text?: string | undefined;
|
|
@@ -283,8 +283,8 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
283
283
|
icon_emoji?: string | undefined;
|
|
284
284
|
icon_url?: string | undefined;
|
|
285
285
|
attachments?: {
|
|
286
|
-
text?: string | undefined;
|
|
287
286
|
title?: string | undefined;
|
|
287
|
+
text?: string | undefined;
|
|
288
288
|
image_url?: string | undefined;
|
|
289
289
|
fields?: {
|
|
290
290
|
value: string;
|
|
@@ -328,16 +328,16 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
328
328
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
329
329
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
330
330
|
}, "strip", z.ZodTypeAny, {
|
|
331
|
-
type: "
|
|
332
|
-
text?: string | undefined;
|
|
331
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
333
332
|
emoji?: boolean | undefined;
|
|
333
|
+
text?: string | undefined;
|
|
334
334
|
image_url?: string | undefined;
|
|
335
335
|
verbatim?: boolean | undefined;
|
|
336
336
|
alt_text?: string | undefined;
|
|
337
337
|
}, {
|
|
338
|
-
type: "
|
|
339
|
-
text?: string | undefined;
|
|
338
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
340
339
|
emoji?: boolean | undefined;
|
|
340
|
+
text?: string | undefined;
|
|
341
341
|
image_url?: string | undefined;
|
|
342
342
|
verbatim?: boolean | undefined;
|
|
343
343
|
alt_text?: string | undefined;
|
|
@@ -506,8 +506,8 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
506
506
|
footer_icon: z.ZodOptional<z.ZodString>;
|
|
507
507
|
ts: z.ZodOptional<z.ZodNumber>;
|
|
508
508
|
}, "strip", z.ZodTypeAny, {
|
|
509
|
-
text?: string | undefined;
|
|
510
509
|
title?: string | undefined;
|
|
510
|
+
text?: string | undefined;
|
|
511
511
|
image_url?: string | undefined;
|
|
512
512
|
fields?: {
|
|
513
513
|
value: string;
|
|
@@ -525,8 +525,8 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
525
525
|
footer_icon?: string | undefined;
|
|
526
526
|
ts?: number | undefined;
|
|
527
527
|
}, {
|
|
528
|
-
text?: string | undefined;
|
|
529
528
|
title?: string | undefined;
|
|
529
|
+
text?: string | undefined;
|
|
530
530
|
image_url?: string | undefined;
|
|
531
531
|
fields?: {
|
|
532
532
|
value: string;
|
|
@@ -570,16 +570,16 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
570
570
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
571
571
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
572
572
|
}, "strip", z.ZodTypeAny, {
|
|
573
|
-
type: "
|
|
574
|
-
text?: string | undefined;
|
|
573
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
575
574
|
emoji?: boolean | undefined;
|
|
575
|
+
text?: string | undefined;
|
|
576
576
|
image_url?: string | undefined;
|
|
577
577
|
verbatim?: boolean | undefined;
|
|
578
578
|
alt_text?: string | undefined;
|
|
579
579
|
}, {
|
|
580
|
-
type: "
|
|
581
|
-
text?: string | undefined;
|
|
580
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
582
581
|
emoji?: boolean | undefined;
|
|
582
|
+
text?: string | undefined;
|
|
583
583
|
image_url?: string | undefined;
|
|
584
584
|
verbatim?: boolean | undefined;
|
|
585
585
|
alt_text?: string | undefined;
|
|
@@ -610,16 +610,16 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
610
610
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
611
611
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
612
612
|
}, "strip", z.ZodTypeAny, {
|
|
613
|
-
type: "
|
|
614
|
-
text?: string | undefined;
|
|
613
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
615
614
|
emoji?: boolean | undefined;
|
|
615
|
+
text?: string | undefined;
|
|
616
616
|
image_url?: string | undefined;
|
|
617
617
|
verbatim?: boolean | undefined;
|
|
618
618
|
alt_text?: string | undefined;
|
|
619
619
|
}, {
|
|
620
|
-
type: "
|
|
621
|
-
text?: string | undefined;
|
|
620
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
622
621
|
emoji?: boolean | undefined;
|
|
622
|
+
text?: string | undefined;
|
|
623
623
|
image_url?: string | undefined;
|
|
624
624
|
verbatim?: boolean | undefined;
|
|
625
625
|
alt_text?: string | undefined;
|
|
@@ -650,16 +650,16 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
650
650
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
651
651
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
652
652
|
}, "strip", z.ZodTypeAny, {
|
|
653
|
-
type: "
|
|
654
|
-
text?: string | undefined;
|
|
653
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
655
654
|
emoji?: boolean | undefined;
|
|
655
|
+
text?: string | undefined;
|
|
656
656
|
image_url?: string | undefined;
|
|
657
657
|
verbatim?: boolean | undefined;
|
|
658
658
|
alt_text?: string | undefined;
|
|
659
659
|
}, {
|
|
660
|
-
type: "
|
|
661
|
-
text?: string | undefined;
|
|
660
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
662
661
|
emoji?: boolean | undefined;
|
|
662
|
+
text?: string | undefined;
|
|
663
663
|
image_url?: string | undefined;
|
|
664
664
|
verbatim?: boolean | undefined;
|
|
665
665
|
alt_text?: string | undefined;
|
|
@@ -670,11 +670,11 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
670
670
|
ts: string;
|
|
671
671
|
operation: "update_message";
|
|
672
672
|
channel: string;
|
|
673
|
-
text?: string | undefined;
|
|
674
673
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
674
|
+
text?: string | undefined;
|
|
675
675
|
attachments?: {
|
|
676
|
-
text?: string | undefined;
|
|
677
676
|
title?: string | undefined;
|
|
677
|
+
text?: string | undefined;
|
|
678
678
|
image_url?: string | undefined;
|
|
679
679
|
fields?: {
|
|
680
680
|
value: string;
|
|
@@ -718,16 +718,16 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
718
718
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
719
719
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
720
720
|
}, "strip", z.ZodTypeAny, {
|
|
721
|
-
type: "
|
|
722
|
-
text?: string | undefined;
|
|
721
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
723
722
|
emoji?: boolean | undefined;
|
|
723
|
+
text?: string | undefined;
|
|
724
724
|
image_url?: string | undefined;
|
|
725
725
|
verbatim?: boolean | undefined;
|
|
726
726
|
alt_text?: string | undefined;
|
|
727
727
|
}, {
|
|
728
|
-
type: "
|
|
729
|
-
text?: string | undefined;
|
|
728
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
730
729
|
emoji?: boolean | undefined;
|
|
730
|
+
text?: string | undefined;
|
|
731
731
|
image_url?: string | undefined;
|
|
732
732
|
verbatim?: boolean | undefined;
|
|
733
733
|
alt_text?: string | undefined;
|
|
@@ -737,11 +737,11 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
737
737
|
ts: string;
|
|
738
738
|
operation: "update_message";
|
|
739
739
|
channel: string;
|
|
740
|
-
text?: string | undefined;
|
|
741
740
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
741
|
+
text?: string | undefined;
|
|
742
742
|
attachments?: {
|
|
743
|
-
text?: string | undefined;
|
|
744
743
|
title?: string | undefined;
|
|
744
|
+
text?: string | undefined;
|
|
745
745
|
image_url?: string | undefined;
|
|
746
746
|
fields?: {
|
|
747
747
|
value: string;
|
|
@@ -785,16 +785,16 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
785
785
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
786
786
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
787
787
|
}, "strip", z.ZodTypeAny, {
|
|
788
|
-
type: "
|
|
789
|
-
text?: string | undefined;
|
|
788
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
790
789
|
emoji?: boolean | undefined;
|
|
790
|
+
text?: string | undefined;
|
|
791
791
|
image_url?: string | undefined;
|
|
792
792
|
verbatim?: boolean | undefined;
|
|
793
793
|
alt_text?: string | undefined;
|
|
794
794
|
}, {
|
|
795
|
-
type: "
|
|
796
|
-
text?: string | undefined;
|
|
795
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
797
796
|
emoji?: boolean | undefined;
|
|
797
|
+
text?: string | undefined;
|
|
798
798
|
image_url?: string | undefined;
|
|
799
799
|
verbatim?: boolean | undefined;
|
|
800
800
|
alt_text?: string | undefined;
|
|
@@ -922,16 +922,16 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
922
922
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
923
923
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
924
924
|
}, "strip", z.ZodTypeAny, {
|
|
925
|
-
type: "
|
|
926
|
-
text?: string | undefined;
|
|
925
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
927
926
|
emoji?: boolean | undefined;
|
|
927
|
+
text?: string | undefined;
|
|
928
928
|
image_url?: string | undefined;
|
|
929
929
|
verbatim?: boolean | undefined;
|
|
930
930
|
alt_text?: string | undefined;
|
|
931
931
|
}, {
|
|
932
|
-
type: "
|
|
933
|
-
text?: string | undefined;
|
|
932
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
934
933
|
emoji?: boolean | undefined;
|
|
934
|
+
text?: string | undefined;
|
|
935
935
|
image_url?: string | undefined;
|
|
936
936
|
verbatim?: boolean | undefined;
|
|
937
937
|
alt_text?: string | undefined;
|
|
@@ -962,16 +962,16 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
962
962
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
963
963
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
964
964
|
}, "strip", z.ZodTypeAny, {
|
|
965
|
-
type: "
|
|
966
|
-
text?: string | undefined;
|
|
965
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
967
966
|
emoji?: boolean | undefined;
|
|
967
|
+
text?: string | undefined;
|
|
968
968
|
image_url?: string | undefined;
|
|
969
969
|
verbatim?: boolean | undefined;
|
|
970
970
|
alt_text?: string | undefined;
|
|
971
971
|
}, {
|
|
972
|
-
type: "
|
|
973
|
-
text?: string | undefined;
|
|
972
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
974
973
|
emoji?: boolean | undefined;
|
|
974
|
+
text?: string | undefined;
|
|
975
975
|
image_url?: string | undefined;
|
|
976
976
|
verbatim?: boolean | undefined;
|
|
977
977
|
alt_text?: string | undefined;
|
|
@@ -1002,16 +1002,16 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1002
1002
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
1003
1003
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
1004
1004
|
}, "strip", z.ZodTypeAny, {
|
|
1005
|
-
type: "
|
|
1006
|
-
text?: string | undefined;
|
|
1005
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
1007
1006
|
emoji?: boolean | undefined;
|
|
1007
|
+
text?: string | undefined;
|
|
1008
1008
|
image_url?: string | undefined;
|
|
1009
1009
|
verbatim?: boolean | undefined;
|
|
1010
1010
|
alt_text?: string | undefined;
|
|
1011
1011
|
}, {
|
|
1012
|
-
type: "
|
|
1013
|
-
text?: string | undefined;
|
|
1012
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
1014
1013
|
emoji?: boolean | undefined;
|
|
1014
|
+
text?: string | undefined;
|
|
1015
1015
|
image_url?: string | undefined;
|
|
1016
1016
|
verbatim?: boolean | undefined;
|
|
1017
1017
|
alt_text?: string | undefined;
|
|
@@ -1054,16 +1054,16 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1054
1054
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
1055
1055
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
1056
1056
|
}, "strip", z.ZodTypeAny, {
|
|
1057
|
-
type: "
|
|
1058
|
-
text?: string | undefined;
|
|
1057
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
1059
1058
|
emoji?: boolean | undefined;
|
|
1059
|
+
text?: string | undefined;
|
|
1060
1060
|
image_url?: string | undefined;
|
|
1061
1061
|
verbatim?: boolean | undefined;
|
|
1062
1062
|
alt_text?: string | undefined;
|
|
1063
1063
|
}, {
|
|
1064
|
-
type: "
|
|
1065
|
-
text?: string | undefined;
|
|
1064
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
1066
1065
|
emoji?: boolean | undefined;
|
|
1066
|
+
text?: string | undefined;
|
|
1067
1067
|
image_url?: string | undefined;
|
|
1068
1068
|
verbatim?: boolean | undefined;
|
|
1069
1069
|
alt_text?: string | undefined;
|
|
@@ -1102,16 +1102,16 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1102
1102
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
1103
1103
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
1104
1104
|
}, "strip", z.ZodTypeAny, {
|
|
1105
|
-
type: "
|
|
1106
|
-
text?: string | undefined;
|
|
1105
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
1107
1106
|
emoji?: boolean | undefined;
|
|
1107
|
+
text?: string | undefined;
|
|
1108
1108
|
image_url?: string | undefined;
|
|
1109
1109
|
verbatim?: boolean | undefined;
|
|
1110
1110
|
alt_text?: string | undefined;
|
|
1111
1111
|
}, {
|
|
1112
|
-
type: "
|
|
1113
|
-
text?: string | undefined;
|
|
1112
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
1114
1113
|
emoji?: boolean | undefined;
|
|
1114
|
+
text?: string | undefined;
|
|
1115
1115
|
image_url?: string | undefined;
|
|
1116
1116
|
verbatim?: boolean | undefined;
|
|
1117
1117
|
alt_text?: string | undefined;
|
|
@@ -1165,8 +1165,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1165
1165
|
}>, "many">>;
|
|
1166
1166
|
}, "strip", z.ZodTypeAny, {
|
|
1167
1167
|
type: string;
|
|
1168
|
-
text?: string | undefined;
|
|
1169
1168
|
user?: string | undefined;
|
|
1169
|
+
text?: string | undefined;
|
|
1170
1170
|
ts?: string | undefined;
|
|
1171
1171
|
username?: string | undefined;
|
|
1172
1172
|
attachments?: unknown[] | undefined;
|
|
@@ -1190,8 +1190,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1190
1190
|
}[] | undefined;
|
|
1191
1191
|
}, {
|
|
1192
1192
|
type: string;
|
|
1193
|
-
text?: string | undefined;
|
|
1194
1193
|
user?: string | undefined;
|
|
1194
|
+
text?: string | undefined;
|
|
1195
1195
|
ts?: string | undefined;
|
|
1196
1196
|
username?: string | undefined;
|
|
1197
1197
|
attachments?: unknown[] | undefined;
|
|
@@ -1223,8 +1223,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1223
1223
|
ok: boolean;
|
|
1224
1224
|
message?: {
|
|
1225
1225
|
type: string;
|
|
1226
|
-
text?: string | undefined;
|
|
1227
1226
|
user?: string | undefined;
|
|
1227
|
+
text?: string | undefined;
|
|
1228
1228
|
ts?: string | undefined;
|
|
1229
1229
|
username?: string | undefined;
|
|
1230
1230
|
attachments?: unknown[] | undefined;
|
|
@@ -1256,8 +1256,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1256
1256
|
ok: boolean;
|
|
1257
1257
|
message?: {
|
|
1258
1258
|
type: string;
|
|
1259
|
-
text?: string | undefined;
|
|
1260
1259
|
user?: string | undefined;
|
|
1260
|
+
text?: string | undefined;
|
|
1261
1261
|
ts?: string | undefined;
|
|
1262
1262
|
username?: string | undefined;
|
|
1263
1263
|
attachments?: unknown[] | undefined;
|
|
@@ -1794,13 +1794,6 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1794
1794
|
}, "strip", z.ZodTypeAny, {
|
|
1795
1795
|
name: string;
|
|
1796
1796
|
id: string;
|
|
1797
|
-
color?: string | undefined;
|
|
1798
|
-
team_id?: string | undefined;
|
|
1799
|
-
deleted?: boolean | undefined;
|
|
1800
|
-
real_name?: string | undefined;
|
|
1801
|
-
tz?: string | undefined;
|
|
1802
|
-
tz_label?: string | undefined;
|
|
1803
|
-
tz_offset?: number | undefined;
|
|
1804
1797
|
profile?: {
|
|
1805
1798
|
title?: string | undefined;
|
|
1806
1799
|
email?: string | undefined;
|
|
@@ -1827,6 +1820,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1827
1820
|
image_512?: string | undefined;
|
|
1828
1821
|
image_1024?: string | undefined;
|
|
1829
1822
|
} | undefined;
|
|
1823
|
+
color?: string | undefined;
|
|
1824
|
+
team_id?: string | undefined;
|
|
1825
|
+
deleted?: boolean | undefined;
|
|
1826
|
+
real_name?: string | undefined;
|
|
1827
|
+
tz?: string | undefined;
|
|
1828
|
+
tz_label?: string | undefined;
|
|
1829
|
+
tz_offset?: number | undefined;
|
|
1830
1830
|
is_admin?: boolean | undefined;
|
|
1831
1831
|
is_owner?: boolean | undefined;
|
|
1832
1832
|
is_primary_owner?: boolean | undefined;
|
|
@@ -1839,13 +1839,6 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1839
1839
|
}, {
|
|
1840
1840
|
name: string;
|
|
1841
1841
|
id: string;
|
|
1842
|
-
color?: string | undefined;
|
|
1843
|
-
team_id?: string | undefined;
|
|
1844
|
-
deleted?: boolean | undefined;
|
|
1845
|
-
real_name?: string | undefined;
|
|
1846
|
-
tz?: string | undefined;
|
|
1847
|
-
tz_label?: string | undefined;
|
|
1848
|
-
tz_offset?: number | undefined;
|
|
1849
1842
|
profile?: {
|
|
1850
1843
|
title?: string | undefined;
|
|
1851
1844
|
email?: string | undefined;
|
|
@@ -1872,6 +1865,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1872
1865
|
image_512?: string | undefined;
|
|
1873
1866
|
image_1024?: string | undefined;
|
|
1874
1867
|
} | undefined;
|
|
1868
|
+
color?: string | undefined;
|
|
1869
|
+
team_id?: string | undefined;
|
|
1870
|
+
deleted?: boolean | undefined;
|
|
1871
|
+
real_name?: string | undefined;
|
|
1872
|
+
tz?: string | undefined;
|
|
1873
|
+
tz_label?: string | undefined;
|
|
1874
|
+
tz_offset?: number | undefined;
|
|
1875
1875
|
is_admin?: boolean | undefined;
|
|
1876
1876
|
is_owner?: boolean | undefined;
|
|
1877
1877
|
is_primary_owner?: boolean | undefined;
|
|
@@ -1892,13 +1892,6 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1892
1892
|
user?: {
|
|
1893
1893
|
name: string;
|
|
1894
1894
|
id: string;
|
|
1895
|
-
color?: string | undefined;
|
|
1896
|
-
team_id?: string | undefined;
|
|
1897
|
-
deleted?: boolean | undefined;
|
|
1898
|
-
real_name?: string | undefined;
|
|
1899
|
-
tz?: string | undefined;
|
|
1900
|
-
tz_label?: string | undefined;
|
|
1901
|
-
tz_offset?: number | undefined;
|
|
1902
1895
|
profile?: {
|
|
1903
1896
|
title?: string | undefined;
|
|
1904
1897
|
email?: string | undefined;
|
|
@@ -1925,6 +1918,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1925
1918
|
image_512?: string | undefined;
|
|
1926
1919
|
image_1024?: string | undefined;
|
|
1927
1920
|
} | undefined;
|
|
1921
|
+
color?: string | undefined;
|
|
1922
|
+
team_id?: string | undefined;
|
|
1923
|
+
deleted?: boolean | undefined;
|
|
1924
|
+
real_name?: string | undefined;
|
|
1925
|
+
tz?: string | undefined;
|
|
1926
|
+
tz_label?: string | undefined;
|
|
1927
|
+
tz_offset?: number | undefined;
|
|
1928
1928
|
is_admin?: boolean | undefined;
|
|
1929
1929
|
is_owner?: boolean | undefined;
|
|
1930
1930
|
is_primary_owner?: boolean | undefined;
|
|
@@ -1943,13 +1943,6 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1943
1943
|
user?: {
|
|
1944
1944
|
name: string;
|
|
1945
1945
|
id: string;
|
|
1946
|
-
color?: string | undefined;
|
|
1947
|
-
team_id?: string | undefined;
|
|
1948
|
-
deleted?: boolean | undefined;
|
|
1949
|
-
real_name?: string | undefined;
|
|
1950
|
-
tz?: string | undefined;
|
|
1951
|
-
tz_label?: string | undefined;
|
|
1952
|
-
tz_offset?: number | undefined;
|
|
1953
1946
|
profile?: {
|
|
1954
1947
|
title?: string | undefined;
|
|
1955
1948
|
email?: string | undefined;
|
|
@@ -1976,6 +1969,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1976
1969
|
image_512?: string | undefined;
|
|
1977
1970
|
image_1024?: string | undefined;
|
|
1978
1971
|
} | undefined;
|
|
1972
|
+
color?: string | undefined;
|
|
1973
|
+
team_id?: string | undefined;
|
|
1974
|
+
deleted?: boolean | undefined;
|
|
1975
|
+
real_name?: string | undefined;
|
|
1976
|
+
tz?: string | undefined;
|
|
1977
|
+
tz_label?: string | undefined;
|
|
1978
|
+
tz_offset?: number | undefined;
|
|
1979
1979
|
is_admin?: boolean | undefined;
|
|
1980
1980
|
is_owner?: boolean | undefined;
|
|
1981
1981
|
is_primary_owner?: boolean | undefined;
|
|
@@ -2087,13 +2087,6 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2087
2087
|
}, "strip", z.ZodTypeAny, {
|
|
2088
2088
|
name: string;
|
|
2089
2089
|
id: string;
|
|
2090
|
-
color?: string | undefined;
|
|
2091
|
-
team_id?: string | undefined;
|
|
2092
|
-
deleted?: boolean | undefined;
|
|
2093
|
-
real_name?: string | undefined;
|
|
2094
|
-
tz?: string | undefined;
|
|
2095
|
-
tz_label?: string | undefined;
|
|
2096
|
-
tz_offset?: number | undefined;
|
|
2097
2090
|
profile?: {
|
|
2098
2091
|
title?: string | undefined;
|
|
2099
2092
|
email?: string | undefined;
|
|
@@ -2120,6 +2113,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2120
2113
|
image_512?: string | undefined;
|
|
2121
2114
|
image_1024?: string | undefined;
|
|
2122
2115
|
} | undefined;
|
|
2116
|
+
color?: string | undefined;
|
|
2117
|
+
team_id?: string | undefined;
|
|
2118
|
+
deleted?: boolean | undefined;
|
|
2119
|
+
real_name?: string | undefined;
|
|
2120
|
+
tz?: string | undefined;
|
|
2121
|
+
tz_label?: string | undefined;
|
|
2122
|
+
tz_offset?: number | undefined;
|
|
2123
2123
|
is_admin?: boolean | undefined;
|
|
2124
2124
|
is_owner?: boolean | undefined;
|
|
2125
2125
|
is_primary_owner?: boolean | undefined;
|
|
@@ -2132,13 +2132,6 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2132
2132
|
}, {
|
|
2133
2133
|
name: string;
|
|
2134
2134
|
id: string;
|
|
2135
|
-
color?: string | undefined;
|
|
2136
|
-
team_id?: string | undefined;
|
|
2137
|
-
deleted?: boolean | undefined;
|
|
2138
|
-
real_name?: string | undefined;
|
|
2139
|
-
tz?: string | undefined;
|
|
2140
|
-
tz_label?: string | undefined;
|
|
2141
|
-
tz_offset?: number | undefined;
|
|
2142
2135
|
profile?: {
|
|
2143
2136
|
title?: string | undefined;
|
|
2144
2137
|
email?: string | undefined;
|
|
@@ -2165,6 +2158,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2165
2158
|
image_512?: string | undefined;
|
|
2166
2159
|
image_1024?: string | undefined;
|
|
2167
2160
|
} | undefined;
|
|
2161
|
+
color?: string | undefined;
|
|
2162
|
+
team_id?: string | undefined;
|
|
2163
|
+
deleted?: boolean | undefined;
|
|
2164
|
+
real_name?: string | undefined;
|
|
2165
|
+
tz?: string | undefined;
|
|
2166
|
+
tz_label?: string | undefined;
|
|
2167
|
+
tz_offset?: number | undefined;
|
|
2168
2168
|
is_admin?: boolean | undefined;
|
|
2169
2169
|
is_owner?: boolean | undefined;
|
|
2170
2170
|
is_primary_owner?: boolean | undefined;
|
|
@@ -2195,13 +2195,6 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2195
2195
|
members?: {
|
|
2196
2196
|
name: string;
|
|
2197
2197
|
id: string;
|
|
2198
|
-
color?: string | undefined;
|
|
2199
|
-
team_id?: string | undefined;
|
|
2200
|
-
deleted?: boolean | undefined;
|
|
2201
|
-
real_name?: string | undefined;
|
|
2202
|
-
tz?: string | undefined;
|
|
2203
|
-
tz_label?: string | undefined;
|
|
2204
|
-
tz_offset?: number | undefined;
|
|
2205
2198
|
profile?: {
|
|
2206
2199
|
title?: string | undefined;
|
|
2207
2200
|
email?: string | undefined;
|
|
@@ -2228,6 +2221,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2228
2221
|
image_512?: string | undefined;
|
|
2229
2222
|
image_1024?: string | undefined;
|
|
2230
2223
|
} | undefined;
|
|
2224
|
+
color?: string | undefined;
|
|
2225
|
+
team_id?: string | undefined;
|
|
2226
|
+
deleted?: boolean | undefined;
|
|
2227
|
+
real_name?: string | undefined;
|
|
2228
|
+
tz?: string | undefined;
|
|
2229
|
+
tz_label?: string | undefined;
|
|
2230
|
+
tz_offset?: number | undefined;
|
|
2231
2231
|
is_admin?: boolean | undefined;
|
|
2232
2232
|
is_owner?: boolean | undefined;
|
|
2233
2233
|
is_primary_owner?: boolean | undefined;
|
|
@@ -2249,13 +2249,6 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2249
2249
|
members?: {
|
|
2250
2250
|
name: string;
|
|
2251
2251
|
id: string;
|
|
2252
|
-
color?: string | undefined;
|
|
2253
|
-
team_id?: string | undefined;
|
|
2254
|
-
deleted?: boolean | undefined;
|
|
2255
|
-
real_name?: string | undefined;
|
|
2256
|
-
tz?: string | undefined;
|
|
2257
|
-
tz_label?: string | undefined;
|
|
2258
|
-
tz_offset?: number | undefined;
|
|
2259
2252
|
profile?: {
|
|
2260
2253
|
title?: string | undefined;
|
|
2261
2254
|
email?: string | undefined;
|
|
@@ -2282,6 +2275,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2282
2275
|
image_512?: string | undefined;
|
|
2283
2276
|
image_1024?: string | undefined;
|
|
2284
2277
|
} | undefined;
|
|
2278
|
+
color?: string | undefined;
|
|
2279
|
+
team_id?: string | undefined;
|
|
2280
|
+
deleted?: boolean | undefined;
|
|
2281
|
+
real_name?: string | undefined;
|
|
2282
|
+
tz?: string | undefined;
|
|
2283
|
+
tz_label?: string | undefined;
|
|
2284
|
+
tz_offset?: number | undefined;
|
|
2285
2285
|
is_admin?: boolean | undefined;
|
|
2286
2286
|
is_owner?: boolean | undefined;
|
|
2287
2287
|
is_primary_owner?: boolean | undefined;
|
|
@@ -2334,8 +2334,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2334
2334
|
}>, "many">>;
|
|
2335
2335
|
}, "strip", z.ZodTypeAny, {
|
|
2336
2336
|
type: string;
|
|
2337
|
-
text?: string | undefined;
|
|
2338
2337
|
user?: string | undefined;
|
|
2338
|
+
text?: string | undefined;
|
|
2339
2339
|
ts?: string | undefined;
|
|
2340
2340
|
username?: string | undefined;
|
|
2341
2341
|
attachments?: unknown[] | undefined;
|
|
@@ -2359,8 +2359,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2359
2359
|
}[] | undefined;
|
|
2360
2360
|
}, {
|
|
2361
2361
|
type: string;
|
|
2362
|
-
text?: string | undefined;
|
|
2363
2362
|
user?: string | undefined;
|
|
2363
|
+
text?: string | undefined;
|
|
2364
2364
|
ts?: string | undefined;
|
|
2365
2365
|
username?: string | undefined;
|
|
2366
2366
|
attachments?: unknown[] | undefined;
|
|
@@ -2398,10 +2398,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2398
2398
|
success: boolean;
|
|
2399
2399
|
operation: "get_conversation_history";
|
|
2400
2400
|
ok: boolean;
|
|
2401
|
+
response_metadata?: {
|
|
2402
|
+
next_cursor: string;
|
|
2403
|
+
} | undefined;
|
|
2401
2404
|
messages?: {
|
|
2402
2405
|
type: string;
|
|
2403
|
-
text?: string | undefined;
|
|
2404
2406
|
user?: string | undefined;
|
|
2407
|
+
text?: string | undefined;
|
|
2405
2408
|
ts?: string | undefined;
|
|
2406
2409
|
username?: string | undefined;
|
|
2407
2410
|
attachments?: unknown[] | undefined;
|
|
@@ -2424,19 +2427,19 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2424
2427
|
count: number;
|
|
2425
2428
|
}[] | undefined;
|
|
2426
2429
|
}[] | undefined;
|
|
2427
|
-
response_metadata?: {
|
|
2428
|
-
next_cursor: string;
|
|
2429
|
-
} | undefined;
|
|
2430
2430
|
has_more?: boolean | undefined;
|
|
2431
2431
|
}, {
|
|
2432
2432
|
error: string;
|
|
2433
2433
|
success: boolean;
|
|
2434
2434
|
operation: "get_conversation_history";
|
|
2435
2435
|
ok: boolean;
|
|
2436
|
+
response_metadata?: {
|
|
2437
|
+
next_cursor: string;
|
|
2438
|
+
} | undefined;
|
|
2436
2439
|
messages?: {
|
|
2437
2440
|
type: string;
|
|
2438
|
-
text?: string | undefined;
|
|
2439
2441
|
user?: string | undefined;
|
|
2442
|
+
text?: string | undefined;
|
|
2440
2443
|
ts?: string | undefined;
|
|
2441
2444
|
username?: string | undefined;
|
|
2442
2445
|
attachments?: unknown[] | undefined;
|
|
@@ -2459,9 +2462,6 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2459
2462
|
count: number;
|
|
2460
2463
|
}[] | undefined;
|
|
2461
2464
|
}[] | undefined;
|
|
2462
|
-
response_metadata?: {
|
|
2463
|
-
next_cursor: string;
|
|
2464
|
-
} | undefined;
|
|
2465
2465
|
has_more?: boolean | undefined;
|
|
2466
2466
|
}>, z.ZodObject<{
|
|
2467
2467
|
operation: z.ZodLiteral<"get_thread_replies">;
|
|
@@ -2505,8 +2505,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2505
2505
|
}>, "many">>;
|
|
2506
2506
|
}, "strip", z.ZodTypeAny, {
|
|
2507
2507
|
type: string;
|
|
2508
|
-
text?: string | undefined;
|
|
2509
2508
|
user?: string | undefined;
|
|
2509
|
+
text?: string | undefined;
|
|
2510
2510
|
ts?: string | undefined;
|
|
2511
2511
|
username?: string | undefined;
|
|
2512
2512
|
attachments?: unknown[] | undefined;
|
|
@@ -2530,8 +2530,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2530
2530
|
}[] | undefined;
|
|
2531
2531
|
}, {
|
|
2532
2532
|
type: string;
|
|
2533
|
-
text?: string | undefined;
|
|
2534
2533
|
user?: string | undefined;
|
|
2534
|
+
text?: string | undefined;
|
|
2535
2535
|
ts?: string | undefined;
|
|
2536
2536
|
username?: string | undefined;
|
|
2537
2537
|
attachments?: unknown[] | undefined;
|
|
@@ -2569,10 +2569,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2569
2569
|
success: boolean;
|
|
2570
2570
|
operation: "get_thread_replies";
|
|
2571
2571
|
ok: boolean;
|
|
2572
|
+
response_metadata?: {
|
|
2573
|
+
next_cursor: string;
|
|
2574
|
+
} | undefined;
|
|
2572
2575
|
messages?: {
|
|
2573
2576
|
type: string;
|
|
2574
|
-
text?: string | undefined;
|
|
2575
2577
|
user?: string | undefined;
|
|
2578
|
+
text?: string | undefined;
|
|
2576
2579
|
ts?: string | undefined;
|
|
2577
2580
|
username?: string | undefined;
|
|
2578
2581
|
attachments?: unknown[] | undefined;
|
|
@@ -2595,19 +2598,19 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2595
2598
|
count: number;
|
|
2596
2599
|
}[] | undefined;
|
|
2597
2600
|
}[] | undefined;
|
|
2598
|
-
response_metadata?: {
|
|
2599
|
-
next_cursor: string;
|
|
2600
|
-
} | undefined;
|
|
2601
2601
|
has_more?: boolean | undefined;
|
|
2602
2602
|
}, {
|
|
2603
2603
|
error: string;
|
|
2604
2604
|
success: boolean;
|
|
2605
2605
|
operation: "get_thread_replies";
|
|
2606
2606
|
ok: boolean;
|
|
2607
|
+
response_metadata?: {
|
|
2608
|
+
next_cursor: string;
|
|
2609
|
+
} | undefined;
|
|
2607
2610
|
messages?: {
|
|
2608
2611
|
type: string;
|
|
2609
|
-
text?: string | undefined;
|
|
2610
2612
|
user?: string | undefined;
|
|
2613
|
+
text?: string | undefined;
|
|
2611
2614
|
ts?: string | undefined;
|
|
2612
2615
|
username?: string | undefined;
|
|
2613
2616
|
attachments?: unknown[] | undefined;
|
|
@@ -2630,9 +2633,6 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2630
2633
|
count: number;
|
|
2631
2634
|
}[] | undefined;
|
|
2632
2635
|
}[] | undefined;
|
|
2633
|
-
response_metadata?: {
|
|
2634
|
-
next_cursor: string;
|
|
2635
|
-
} | undefined;
|
|
2636
2636
|
has_more?: boolean | undefined;
|
|
2637
2637
|
}>, z.ZodObject<{
|
|
2638
2638
|
operation: z.ZodLiteral<"update_message">;
|
|
@@ -2679,8 +2679,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2679
2679
|
}>, "many">>;
|
|
2680
2680
|
}, "strip", z.ZodTypeAny, {
|
|
2681
2681
|
type: string;
|
|
2682
|
-
text?: string | undefined;
|
|
2683
2682
|
user?: string | undefined;
|
|
2683
|
+
text?: string | undefined;
|
|
2684
2684
|
ts?: string | undefined;
|
|
2685
2685
|
username?: string | undefined;
|
|
2686
2686
|
attachments?: unknown[] | undefined;
|
|
@@ -2704,8 +2704,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2704
2704
|
}[] | undefined;
|
|
2705
2705
|
}, {
|
|
2706
2706
|
type: string;
|
|
2707
|
-
text?: string | undefined;
|
|
2708
2707
|
user?: string | undefined;
|
|
2708
|
+
text?: string | undefined;
|
|
2709
2709
|
ts?: string | undefined;
|
|
2710
2710
|
username?: string | undefined;
|
|
2711
2711
|
attachments?: unknown[] | undefined;
|
|
@@ -2735,11 +2735,10 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2735
2735
|
success: boolean;
|
|
2736
2736
|
operation: "update_message";
|
|
2737
2737
|
ok: boolean;
|
|
2738
|
-
text?: string | undefined;
|
|
2739
2738
|
message?: {
|
|
2740
2739
|
type: string;
|
|
2741
|
-
text?: string | undefined;
|
|
2742
2740
|
user?: string | undefined;
|
|
2741
|
+
text?: string | undefined;
|
|
2743
2742
|
ts?: string | undefined;
|
|
2744
2743
|
username?: string | undefined;
|
|
2745
2744
|
attachments?: unknown[] | undefined;
|
|
@@ -2762,6 +2761,7 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2762
2761
|
count: number;
|
|
2763
2762
|
}[] | undefined;
|
|
2764
2763
|
} | undefined;
|
|
2764
|
+
text?: string | undefined;
|
|
2765
2765
|
ts?: string | undefined;
|
|
2766
2766
|
channel?: string | undefined;
|
|
2767
2767
|
}, {
|
|
@@ -2769,11 +2769,10 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2769
2769
|
success: boolean;
|
|
2770
2770
|
operation: "update_message";
|
|
2771
2771
|
ok: boolean;
|
|
2772
|
-
text?: string | undefined;
|
|
2773
2772
|
message?: {
|
|
2774
2773
|
type: string;
|
|
2775
|
-
text?: string | undefined;
|
|
2776
2774
|
user?: string | undefined;
|
|
2775
|
+
text?: string | undefined;
|
|
2777
2776
|
ts?: string | undefined;
|
|
2778
2777
|
username?: string | undefined;
|
|
2779
2778
|
attachments?: unknown[] | undefined;
|
|
@@ -2796,6 +2795,7 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2796
2795
|
count: number;
|
|
2797
2796
|
}[] | undefined;
|
|
2798
2797
|
} | undefined;
|
|
2798
|
+
text?: string | undefined;
|
|
2799
2799
|
ts?: string | undefined;
|
|
2800
2800
|
channel?: string | undefined;
|
|
2801
2801
|
}>, z.ZodObject<{
|
|
@@ -3163,8 +3163,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3163
3163
|
has_rich_preview: z.ZodOptional<z.ZodBoolean>;
|
|
3164
3164
|
}, "strip", z.ZodTypeAny, {
|
|
3165
3165
|
name: string;
|
|
3166
|
-
user: string;
|
|
3167
3166
|
id: string;
|
|
3167
|
+
user: string;
|
|
3168
3168
|
username: string;
|
|
3169
3169
|
timestamp: number;
|
|
3170
3170
|
created: number;
|
|
@@ -3208,8 +3208,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3208
3208
|
has_rich_preview?: boolean | undefined;
|
|
3209
3209
|
}, {
|
|
3210
3210
|
name: string;
|
|
3211
|
-
user: string;
|
|
3212
3211
|
id: string;
|
|
3212
|
+
user: string;
|
|
3213
3213
|
username: string;
|
|
3214
3214
|
timestamp: number;
|
|
3215
3215
|
created: number;
|
|
@@ -3261,8 +3261,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3261
3261
|
ok: boolean;
|
|
3262
3262
|
file?: {
|
|
3263
3263
|
name: string;
|
|
3264
|
-
user: string;
|
|
3265
3264
|
id: string;
|
|
3265
|
+
user: string;
|
|
3266
3266
|
username: string;
|
|
3267
3267
|
timestamp: number;
|
|
3268
3268
|
created: number;
|
|
@@ -3312,8 +3312,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3312
3312
|
ok: boolean;
|
|
3313
3313
|
file?: {
|
|
3314
3314
|
name: string;
|
|
3315
|
-
user: string;
|
|
3316
3315
|
id: string;
|
|
3316
|
+
user: string;
|
|
3317
3317
|
username: string;
|
|
3318
3318
|
timestamp: number;
|
|
3319
3319
|
created: number;
|
|
@@ -3429,8 +3429,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3429
3429
|
footer_icon: z.ZodOptional<z.ZodString>;
|
|
3430
3430
|
ts: z.ZodOptional<z.ZodNumber>;
|
|
3431
3431
|
}, "strip", z.ZodTypeAny, {
|
|
3432
|
-
text?: string | undefined;
|
|
3433
3432
|
title?: string | undefined;
|
|
3433
|
+
text?: string | undefined;
|
|
3434
3434
|
image_url?: string | undefined;
|
|
3435
3435
|
fields?: {
|
|
3436
3436
|
value: string;
|
|
@@ -3448,8 +3448,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3448
3448
|
footer_icon?: string | undefined;
|
|
3449
3449
|
ts?: number | undefined;
|
|
3450
3450
|
}, {
|
|
3451
|
-
text?: string | undefined;
|
|
3452
3451
|
title?: string | undefined;
|
|
3452
|
+
text?: string | undefined;
|
|
3453
3453
|
image_url?: string | undefined;
|
|
3454
3454
|
fields?: {
|
|
3455
3455
|
value: string;
|
|
@@ -3493,16 +3493,16 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3493
3493
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
3494
3494
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
3495
3495
|
}, "strip", z.ZodTypeAny, {
|
|
3496
|
-
type: "
|
|
3497
|
-
text?: string | undefined;
|
|
3496
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
3498
3497
|
emoji?: boolean | undefined;
|
|
3498
|
+
text?: string | undefined;
|
|
3499
3499
|
image_url?: string | undefined;
|
|
3500
3500
|
verbatim?: boolean | undefined;
|
|
3501
3501
|
alt_text?: string | undefined;
|
|
3502
3502
|
}, {
|
|
3503
|
-
type: "
|
|
3504
|
-
text?: string | undefined;
|
|
3503
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
3505
3504
|
emoji?: boolean | undefined;
|
|
3505
|
+
text?: string | undefined;
|
|
3506
3506
|
image_url?: string | undefined;
|
|
3507
3507
|
verbatim?: boolean | undefined;
|
|
3508
3508
|
alt_text?: string | undefined;
|
|
@@ -3533,16 +3533,16 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3533
3533
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
3534
3534
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
3535
3535
|
}, "strip", z.ZodTypeAny, {
|
|
3536
|
-
type: "
|
|
3537
|
-
text?: string | undefined;
|
|
3536
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
3538
3537
|
emoji?: boolean | undefined;
|
|
3538
|
+
text?: string | undefined;
|
|
3539
3539
|
image_url?: string | undefined;
|
|
3540
3540
|
verbatim?: boolean | undefined;
|
|
3541
3541
|
alt_text?: string | undefined;
|
|
3542
3542
|
}, {
|
|
3543
|
-
type: "
|
|
3544
|
-
text?: string | undefined;
|
|
3543
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
3545
3544
|
emoji?: boolean | undefined;
|
|
3545
|
+
text?: string | undefined;
|
|
3546
3546
|
image_url?: string | undefined;
|
|
3547
3547
|
verbatim?: boolean | undefined;
|
|
3548
3548
|
alt_text?: string | undefined;
|
|
@@ -3573,16 +3573,16 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3573
3573
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
3574
3574
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
3575
3575
|
}, "strip", z.ZodTypeAny, {
|
|
3576
|
-
type: "
|
|
3577
|
-
text?: string | undefined;
|
|
3576
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
3578
3577
|
emoji?: boolean | undefined;
|
|
3578
|
+
text?: string | undefined;
|
|
3579
3579
|
image_url?: string | undefined;
|
|
3580
3580
|
verbatim?: boolean | undefined;
|
|
3581
3581
|
alt_text?: string | undefined;
|
|
3582
3582
|
}, {
|
|
3583
|
-
type: "
|
|
3584
|
-
text?: string | undefined;
|
|
3583
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
3585
3584
|
emoji?: boolean | undefined;
|
|
3585
|
+
text?: string | undefined;
|
|
3586
3586
|
image_url?: string | undefined;
|
|
3587
3587
|
verbatim?: boolean | undefined;
|
|
3588
3588
|
alt_text?: string | undefined;
|
|
@@ -3605,8 +3605,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3605
3605
|
icon_emoji?: string | undefined;
|
|
3606
3606
|
icon_url?: string | undefined;
|
|
3607
3607
|
attachments?: {
|
|
3608
|
-
text?: string | undefined;
|
|
3609
3608
|
title?: string | undefined;
|
|
3609
|
+
text?: string | undefined;
|
|
3610
3610
|
image_url?: string | undefined;
|
|
3611
3611
|
fields?: {
|
|
3612
3612
|
value: string;
|
|
@@ -3650,16 +3650,16 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3650
3650
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
3651
3651
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
3652
3652
|
}, "strip", z.ZodTypeAny, {
|
|
3653
|
-
type: "
|
|
3654
|
-
text?: string | undefined;
|
|
3653
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
3655
3654
|
emoji?: boolean | undefined;
|
|
3655
|
+
text?: string | undefined;
|
|
3656
3656
|
image_url?: string | undefined;
|
|
3657
3657
|
verbatim?: boolean | undefined;
|
|
3658
3658
|
alt_text?: string | undefined;
|
|
3659
3659
|
}, {
|
|
3660
|
-
type: "
|
|
3661
|
-
text?: string | undefined;
|
|
3660
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
3662
3661
|
emoji?: boolean | undefined;
|
|
3662
|
+
text?: string | undefined;
|
|
3663
3663
|
image_url?: string | undefined;
|
|
3664
3664
|
verbatim?: boolean | undefined;
|
|
3665
3665
|
alt_text?: string | undefined;
|
|
@@ -3675,8 +3675,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3675
3675
|
icon_emoji?: string | undefined;
|
|
3676
3676
|
icon_url?: string | undefined;
|
|
3677
3677
|
attachments?: {
|
|
3678
|
-
text?: string | undefined;
|
|
3679
3678
|
title?: string | undefined;
|
|
3679
|
+
text?: string | undefined;
|
|
3680
3680
|
image_url?: string | undefined;
|
|
3681
3681
|
fields?: {
|
|
3682
3682
|
value: string;
|
|
@@ -3720,16 +3720,16 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3720
3720
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
3721
3721
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
3722
3722
|
}, "strip", z.ZodTypeAny, {
|
|
3723
|
-
type: "
|
|
3724
|
-
text?: string | undefined;
|
|
3723
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
3725
3724
|
emoji?: boolean | undefined;
|
|
3725
|
+
text?: string | undefined;
|
|
3726
3726
|
image_url?: string | undefined;
|
|
3727
3727
|
verbatim?: boolean | undefined;
|
|
3728
3728
|
alt_text?: string | undefined;
|
|
3729
3729
|
}, {
|
|
3730
|
-
type: "
|
|
3731
|
-
text?: string | undefined;
|
|
3730
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
3732
3731
|
emoji?: boolean | undefined;
|
|
3732
|
+
text?: string | undefined;
|
|
3733
3733
|
image_url?: string | undefined;
|
|
3734
3734
|
verbatim?: boolean | undefined;
|
|
3735
3735
|
alt_text?: string | undefined;
|
|
@@ -3898,8 +3898,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3898
3898
|
footer_icon: z.ZodOptional<z.ZodString>;
|
|
3899
3899
|
ts: z.ZodOptional<z.ZodNumber>;
|
|
3900
3900
|
}, "strip", z.ZodTypeAny, {
|
|
3901
|
-
text?: string | undefined;
|
|
3902
3901
|
title?: string | undefined;
|
|
3902
|
+
text?: string | undefined;
|
|
3903
3903
|
image_url?: string | undefined;
|
|
3904
3904
|
fields?: {
|
|
3905
3905
|
value: string;
|
|
@@ -3917,8 +3917,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3917
3917
|
footer_icon?: string | undefined;
|
|
3918
3918
|
ts?: number | undefined;
|
|
3919
3919
|
}, {
|
|
3920
|
-
text?: string | undefined;
|
|
3921
3920
|
title?: string | undefined;
|
|
3921
|
+
text?: string | undefined;
|
|
3922
3922
|
image_url?: string | undefined;
|
|
3923
3923
|
fields?: {
|
|
3924
3924
|
value: string;
|
|
@@ -3962,16 +3962,16 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3962
3962
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
3963
3963
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
3964
3964
|
}, "strip", z.ZodTypeAny, {
|
|
3965
|
-
type: "
|
|
3966
|
-
text?: string | undefined;
|
|
3965
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
3967
3966
|
emoji?: boolean | undefined;
|
|
3967
|
+
text?: string | undefined;
|
|
3968
3968
|
image_url?: string | undefined;
|
|
3969
3969
|
verbatim?: boolean | undefined;
|
|
3970
3970
|
alt_text?: string | undefined;
|
|
3971
3971
|
}, {
|
|
3972
|
-
type: "
|
|
3973
|
-
text?: string | undefined;
|
|
3972
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
3974
3973
|
emoji?: boolean | undefined;
|
|
3974
|
+
text?: string | undefined;
|
|
3975
3975
|
image_url?: string | undefined;
|
|
3976
3976
|
verbatim?: boolean | undefined;
|
|
3977
3977
|
alt_text?: string | undefined;
|
|
@@ -4002,16 +4002,16 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4002
4002
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
4003
4003
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
4004
4004
|
}, "strip", z.ZodTypeAny, {
|
|
4005
|
-
type: "
|
|
4006
|
-
text?: string | undefined;
|
|
4005
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
4007
4006
|
emoji?: boolean | undefined;
|
|
4007
|
+
text?: string | undefined;
|
|
4008
4008
|
image_url?: string | undefined;
|
|
4009
4009
|
verbatim?: boolean | undefined;
|
|
4010
4010
|
alt_text?: string | undefined;
|
|
4011
4011
|
}, {
|
|
4012
|
-
type: "
|
|
4013
|
-
text?: string | undefined;
|
|
4012
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
4014
4013
|
emoji?: boolean | undefined;
|
|
4014
|
+
text?: string | undefined;
|
|
4015
4015
|
image_url?: string | undefined;
|
|
4016
4016
|
verbatim?: boolean | undefined;
|
|
4017
4017
|
alt_text?: string | undefined;
|
|
@@ -4042,16 +4042,16 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4042
4042
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
4043
4043
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
4044
4044
|
}, "strip", z.ZodTypeAny, {
|
|
4045
|
-
type: "
|
|
4046
|
-
text?: string | undefined;
|
|
4045
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
4047
4046
|
emoji?: boolean | undefined;
|
|
4047
|
+
text?: string | undefined;
|
|
4048
4048
|
image_url?: string | undefined;
|
|
4049
4049
|
verbatim?: boolean | undefined;
|
|
4050
4050
|
alt_text?: string | undefined;
|
|
4051
4051
|
}, {
|
|
4052
|
-
type: "
|
|
4053
|
-
text?: string | undefined;
|
|
4052
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
4054
4053
|
emoji?: boolean | undefined;
|
|
4054
|
+
text?: string | undefined;
|
|
4055
4055
|
image_url?: string | undefined;
|
|
4056
4056
|
verbatim?: boolean | undefined;
|
|
4057
4057
|
alt_text?: string | undefined;
|
|
@@ -4062,11 +4062,11 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4062
4062
|
ts: string;
|
|
4063
4063
|
operation: "update_message";
|
|
4064
4064
|
channel: string;
|
|
4065
|
-
text?: string | undefined;
|
|
4066
4065
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4066
|
+
text?: string | undefined;
|
|
4067
4067
|
attachments?: {
|
|
4068
|
-
text?: string | undefined;
|
|
4069
4068
|
title?: string | undefined;
|
|
4069
|
+
text?: string | undefined;
|
|
4070
4070
|
image_url?: string | undefined;
|
|
4071
4071
|
fields?: {
|
|
4072
4072
|
value: string;
|
|
@@ -4110,16 +4110,16 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4110
4110
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
4111
4111
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
4112
4112
|
}, "strip", z.ZodTypeAny, {
|
|
4113
|
-
type: "
|
|
4114
|
-
text?: string | undefined;
|
|
4113
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
4115
4114
|
emoji?: boolean | undefined;
|
|
4115
|
+
text?: string | undefined;
|
|
4116
4116
|
image_url?: string | undefined;
|
|
4117
4117
|
verbatim?: boolean | undefined;
|
|
4118
4118
|
alt_text?: string | undefined;
|
|
4119
4119
|
}, {
|
|
4120
|
-
type: "
|
|
4121
|
-
text?: string | undefined;
|
|
4120
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
4122
4121
|
emoji?: boolean | undefined;
|
|
4122
|
+
text?: string | undefined;
|
|
4123
4123
|
image_url?: string | undefined;
|
|
4124
4124
|
verbatim?: boolean | undefined;
|
|
4125
4125
|
alt_text?: string | undefined;
|
|
@@ -4129,11 +4129,11 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4129
4129
|
ts: string;
|
|
4130
4130
|
operation: "update_message";
|
|
4131
4131
|
channel: string;
|
|
4132
|
-
text?: string | undefined;
|
|
4133
4132
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4133
|
+
text?: string | undefined;
|
|
4134
4134
|
attachments?: {
|
|
4135
|
-
text?: string | undefined;
|
|
4136
4135
|
title?: string | undefined;
|
|
4136
|
+
text?: string | undefined;
|
|
4137
4137
|
image_url?: string | undefined;
|
|
4138
4138
|
fields?: {
|
|
4139
4139
|
value: string;
|
|
@@ -4177,16 +4177,16 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4177
4177
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
4178
4178
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
4179
4179
|
}, "strip", z.ZodTypeAny, {
|
|
4180
|
-
type: "
|
|
4181
|
-
text?: string | undefined;
|
|
4180
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
4182
4181
|
emoji?: boolean | undefined;
|
|
4182
|
+
text?: string | undefined;
|
|
4183
4183
|
image_url?: string | undefined;
|
|
4184
4184
|
verbatim?: boolean | undefined;
|
|
4185
4185
|
alt_text?: string | undefined;
|
|
4186
4186
|
}, {
|
|
4187
|
-
type: "
|
|
4188
|
-
text?: string | undefined;
|
|
4187
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
4189
4188
|
emoji?: boolean | undefined;
|
|
4189
|
+
text?: string | undefined;
|
|
4190
4190
|
image_url?: string | undefined;
|
|
4191
4191
|
verbatim?: boolean | undefined;
|
|
4192
4192
|
alt_text?: string | undefined;
|
|
@@ -4314,16 +4314,16 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4314
4314
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
4315
4315
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
4316
4316
|
}, "strip", z.ZodTypeAny, {
|
|
4317
|
-
type: "
|
|
4318
|
-
text?: string | undefined;
|
|
4317
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
4319
4318
|
emoji?: boolean | undefined;
|
|
4319
|
+
text?: string | undefined;
|
|
4320
4320
|
image_url?: string | undefined;
|
|
4321
4321
|
verbatim?: boolean | undefined;
|
|
4322
4322
|
alt_text?: string | undefined;
|
|
4323
4323
|
}, {
|
|
4324
|
-
type: "
|
|
4325
|
-
text?: string | undefined;
|
|
4324
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
4326
4325
|
emoji?: boolean | undefined;
|
|
4326
|
+
text?: string | undefined;
|
|
4327
4327
|
image_url?: string | undefined;
|
|
4328
4328
|
verbatim?: boolean | undefined;
|
|
4329
4329
|
alt_text?: string | undefined;
|
|
@@ -4354,16 +4354,16 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4354
4354
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
4355
4355
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
4356
4356
|
}, "strip", z.ZodTypeAny, {
|
|
4357
|
-
type: "
|
|
4358
|
-
text?: string | undefined;
|
|
4357
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
4359
4358
|
emoji?: boolean | undefined;
|
|
4359
|
+
text?: string | undefined;
|
|
4360
4360
|
image_url?: string | undefined;
|
|
4361
4361
|
verbatim?: boolean | undefined;
|
|
4362
4362
|
alt_text?: string | undefined;
|
|
4363
4363
|
}, {
|
|
4364
|
-
type: "
|
|
4365
|
-
text?: string | undefined;
|
|
4364
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
4366
4365
|
emoji?: boolean | undefined;
|
|
4366
|
+
text?: string | undefined;
|
|
4367
4367
|
image_url?: string | undefined;
|
|
4368
4368
|
verbatim?: boolean | undefined;
|
|
4369
4369
|
alt_text?: string | undefined;
|
|
@@ -4394,16 +4394,16 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4394
4394
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
4395
4395
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
4396
4396
|
}, "strip", z.ZodTypeAny, {
|
|
4397
|
-
type: "
|
|
4398
|
-
text?: string | undefined;
|
|
4397
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
4399
4398
|
emoji?: boolean | undefined;
|
|
4399
|
+
text?: string | undefined;
|
|
4400
4400
|
image_url?: string | undefined;
|
|
4401
4401
|
verbatim?: boolean | undefined;
|
|
4402
4402
|
alt_text?: string | undefined;
|
|
4403
4403
|
}, {
|
|
4404
|
-
type: "
|
|
4405
|
-
text?: string | undefined;
|
|
4404
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
4406
4405
|
emoji?: boolean | undefined;
|
|
4406
|
+
text?: string | undefined;
|
|
4407
4407
|
image_url?: string | undefined;
|
|
4408
4408
|
verbatim?: boolean | undefined;
|
|
4409
4409
|
alt_text?: string | undefined;
|
|
@@ -4446,16 +4446,16 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4446
4446
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
4447
4447
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
4448
4448
|
}, "strip", z.ZodTypeAny, {
|
|
4449
|
-
type: "
|
|
4450
|
-
text?: string | undefined;
|
|
4449
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
4451
4450
|
emoji?: boolean | undefined;
|
|
4451
|
+
text?: string | undefined;
|
|
4452
4452
|
image_url?: string | undefined;
|
|
4453
4453
|
verbatim?: boolean | undefined;
|
|
4454
4454
|
alt_text?: string | undefined;
|
|
4455
4455
|
}, {
|
|
4456
|
-
type: "
|
|
4457
|
-
text?: string | undefined;
|
|
4456
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
4458
4457
|
emoji?: boolean | undefined;
|
|
4458
|
+
text?: string | undefined;
|
|
4459
4459
|
image_url?: string | undefined;
|
|
4460
4460
|
verbatim?: boolean | undefined;
|
|
4461
4461
|
alt_text?: string | undefined;
|
|
@@ -4494,16 +4494,16 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4494
4494
|
emoji: z.ZodOptional<z.ZodBoolean>;
|
|
4495
4495
|
verbatim: z.ZodOptional<z.ZodBoolean>;
|
|
4496
4496
|
}, "strip", z.ZodTypeAny, {
|
|
4497
|
-
type: "
|
|
4498
|
-
text?: string | undefined;
|
|
4497
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
4499
4498
|
emoji?: boolean | undefined;
|
|
4499
|
+
text?: string | undefined;
|
|
4500
4500
|
image_url?: string | undefined;
|
|
4501
4501
|
verbatim?: boolean | undefined;
|
|
4502
4502
|
alt_text?: string | undefined;
|
|
4503
4503
|
}, {
|
|
4504
|
-
type: "
|
|
4505
|
-
text?: string | undefined;
|
|
4504
|
+
type: "image" | "plain_text" | "mrkdwn";
|
|
4506
4505
|
emoji?: boolean | undefined;
|
|
4506
|
+
text?: string | undefined;
|
|
4507
4507
|
image_url?: string | undefined;
|
|
4508
4508
|
verbatim?: boolean | undefined;
|
|
4509
4509
|
alt_text?: string | undefined;
|
|
@@ -4557,8 +4557,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4557
4557
|
}>, "many">>;
|
|
4558
4558
|
}, "strip", z.ZodTypeAny, {
|
|
4559
4559
|
type: string;
|
|
4560
|
-
text?: string | undefined;
|
|
4561
4560
|
user?: string | undefined;
|
|
4561
|
+
text?: string | undefined;
|
|
4562
4562
|
ts?: string | undefined;
|
|
4563
4563
|
username?: string | undefined;
|
|
4564
4564
|
attachments?: unknown[] | undefined;
|
|
@@ -4582,8 +4582,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4582
4582
|
}[] | undefined;
|
|
4583
4583
|
}, {
|
|
4584
4584
|
type: string;
|
|
4585
|
-
text?: string | undefined;
|
|
4586
4585
|
user?: string | undefined;
|
|
4586
|
+
text?: string | undefined;
|
|
4587
4587
|
ts?: string | undefined;
|
|
4588
4588
|
username?: string | undefined;
|
|
4589
4589
|
attachments?: unknown[] | undefined;
|
|
@@ -4615,8 +4615,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4615
4615
|
ok: boolean;
|
|
4616
4616
|
message?: {
|
|
4617
4617
|
type: string;
|
|
4618
|
-
text?: string | undefined;
|
|
4619
4618
|
user?: string | undefined;
|
|
4619
|
+
text?: string | undefined;
|
|
4620
4620
|
ts?: string | undefined;
|
|
4621
4621
|
username?: string | undefined;
|
|
4622
4622
|
attachments?: unknown[] | undefined;
|
|
@@ -4648,8 +4648,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4648
4648
|
ok: boolean;
|
|
4649
4649
|
message?: {
|
|
4650
4650
|
type: string;
|
|
4651
|
-
text?: string | undefined;
|
|
4652
4651
|
user?: string | undefined;
|
|
4652
|
+
text?: string | undefined;
|
|
4653
4653
|
ts?: string | undefined;
|
|
4654
4654
|
username?: string | undefined;
|
|
4655
4655
|
attachments?: unknown[] | undefined;
|
|
@@ -5186,13 +5186,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5186
5186
|
}, "strip", z.ZodTypeAny, {
|
|
5187
5187
|
name: string;
|
|
5188
5188
|
id: string;
|
|
5189
|
-
color?: string | undefined;
|
|
5190
|
-
team_id?: string | undefined;
|
|
5191
|
-
deleted?: boolean | undefined;
|
|
5192
|
-
real_name?: string | undefined;
|
|
5193
|
-
tz?: string | undefined;
|
|
5194
|
-
tz_label?: string | undefined;
|
|
5195
|
-
tz_offset?: number | undefined;
|
|
5196
5189
|
profile?: {
|
|
5197
5190
|
title?: string | undefined;
|
|
5198
5191
|
email?: string | undefined;
|
|
@@ -5219,6 +5212,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5219
5212
|
image_512?: string | undefined;
|
|
5220
5213
|
image_1024?: string | undefined;
|
|
5221
5214
|
} | undefined;
|
|
5215
|
+
color?: string | undefined;
|
|
5216
|
+
team_id?: string | undefined;
|
|
5217
|
+
deleted?: boolean | undefined;
|
|
5218
|
+
real_name?: string | undefined;
|
|
5219
|
+
tz?: string | undefined;
|
|
5220
|
+
tz_label?: string | undefined;
|
|
5221
|
+
tz_offset?: number | undefined;
|
|
5222
5222
|
is_admin?: boolean | undefined;
|
|
5223
5223
|
is_owner?: boolean | undefined;
|
|
5224
5224
|
is_primary_owner?: boolean | undefined;
|
|
@@ -5231,13 +5231,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5231
5231
|
}, {
|
|
5232
5232
|
name: string;
|
|
5233
5233
|
id: string;
|
|
5234
|
-
color?: string | undefined;
|
|
5235
|
-
team_id?: string | undefined;
|
|
5236
|
-
deleted?: boolean | undefined;
|
|
5237
|
-
real_name?: string | undefined;
|
|
5238
|
-
tz?: string | undefined;
|
|
5239
|
-
tz_label?: string | undefined;
|
|
5240
|
-
tz_offset?: number | undefined;
|
|
5241
5234
|
profile?: {
|
|
5242
5235
|
title?: string | undefined;
|
|
5243
5236
|
email?: string | undefined;
|
|
@@ -5264,6 +5257,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5264
5257
|
image_512?: string | undefined;
|
|
5265
5258
|
image_1024?: string | undefined;
|
|
5266
5259
|
} | undefined;
|
|
5260
|
+
color?: string | undefined;
|
|
5261
|
+
team_id?: string | undefined;
|
|
5262
|
+
deleted?: boolean | undefined;
|
|
5263
|
+
real_name?: string | undefined;
|
|
5264
|
+
tz?: string | undefined;
|
|
5265
|
+
tz_label?: string | undefined;
|
|
5266
|
+
tz_offset?: number | undefined;
|
|
5267
5267
|
is_admin?: boolean | undefined;
|
|
5268
5268
|
is_owner?: boolean | undefined;
|
|
5269
5269
|
is_primary_owner?: boolean | undefined;
|
|
@@ -5284,13 +5284,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5284
5284
|
user?: {
|
|
5285
5285
|
name: string;
|
|
5286
5286
|
id: string;
|
|
5287
|
-
color?: string | undefined;
|
|
5288
|
-
team_id?: string | undefined;
|
|
5289
|
-
deleted?: boolean | undefined;
|
|
5290
|
-
real_name?: string | undefined;
|
|
5291
|
-
tz?: string | undefined;
|
|
5292
|
-
tz_label?: string | undefined;
|
|
5293
|
-
tz_offset?: number | undefined;
|
|
5294
5287
|
profile?: {
|
|
5295
5288
|
title?: string | undefined;
|
|
5296
5289
|
email?: string | undefined;
|
|
@@ -5317,6 +5310,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5317
5310
|
image_512?: string | undefined;
|
|
5318
5311
|
image_1024?: string | undefined;
|
|
5319
5312
|
} | undefined;
|
|
5313
|
+
color?: string | undefined;
|
|
5314
|
+
team_id?: string | undefined;
|
|
5315
|
+
deleted?: boolean | undefined;
|
|
5316
|
+
real_name?: string | undefined;
|
|
5317
|
+
tz?: string | undefined;
|
|
5318
|
+
tz_label?: string | undefined;
|
|
5319
|
+
tz_offset?: number | undefined;
|
|
5320
5320
|
is_admin?: boolean | undefined;
|
|
5321
5321
|
is_owner?: boolean | undefined;
|
|
5322
5322
|
is_primary_owner?: boolean | undefined;
|
|
@@ -5335,13 +5335,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5335
5335
|
user?: {
|
|
5336
5336
|
name: string;
|
|
5337
5337
|
id: string;
|
|
5338
|
-
color?: string | undefined;
|
|
5339
|
-
team_id?: string | undefined;
|
|
5340
|
-
deleted?: boolean | undefined;
|
|
5341
|
-
real_name?: string | undefined;
|
|
5342
|
-
tz?: string | undefined;
|
|
5343
|
-
tz_label?: string | undefined;
|
|
5344
|
-
tz_offset?: number | undefined;
|
|
5345
5338
|
profile?: {
|
|
5346
5339
|
title?: string | undefined;
|
|
5347
5340
|
email?: string | undefined;
|
|
@@ -5368,6 +5361,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5368
5361
|
image_512?: string | undefined;
|
|
5369
5362
|
image_1024?: string | undefined;
|
|
5370
5363
|
} | undefined;
|
|
5364
|
+
color?: string | undefined;
|
|
5365
|
+
team_id?: string | undefined;
|
|
5366
|
+
deleted?: boolean | undefined;
|
|
5367
|
+
real_name?: string | undefined;
|
|
5368
|
+
tz?: string | undefined;
|
|
5369
|
+
tz_label?: string | undefined;
|
|
5370
|
+
tz_offset?: number | undefined;
|
|
5371
5371
|
is_admin?: boolean | undefined;
|
|
5372
5372
|
is_owner?: boolean | undefined;
|
|
5373
5373
|
is_primary_owner?: boolean | undefined;
|
|
@@ -5479,13 +5479,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5479
5479
|
}, "strip", z.ZodTypeAny, {
|
|
5480
5480
|
name: string;
|
|
5481
5481
|
id: string;
|
|
5482
|
-
color?: string | undefined;
|
|
5483
|
-
team_id?: string | undefined;
|
|
5484
|
-
deleted?: boolean | undefined;
|
|
5485
|
-
real_name?: string | undefined;
|
|
5486
|
-
tz?: string | undefined;
|
|
5487
|
-
tz_label?: string | undefined;
|
|
5488
|
-
tz_offset?: number | undefined;
|
|
5489
5482
|
profile?: {
|
|
5490
5483
|
title?: string | undefined;
|
|
5491
5484
|
email?: string | undefined;
|
|
@@ -5512,6 +5505,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5512
5505
|
image_512?: string | undefined;
|
|
5513
5506
|
image_1024?: string | undefined;
|
|
5514
5507
|
} | undefined;
|
|
5508
|
+
color?: string | undefined;
|
|
5509
|
+
team_id?: string | undefined;
|
|
5510
|
+
deleted?: boolean | undefined;
|
|
5511
|
+
real_name?: string | undefined;
|
|
5512
|
+
tz?: string | undefined;
|
|
5513
|
+
tz_label?: string | undefined;
|
|
5514
|
+
tz_offset?: number | undefined;
|
|
5515
5515
|
is_admin?: boolean | undefined;
|
|
5516
5516
|
is_owner?: boolean | undefined;
|
|
5517
5517
|
is_primary_owner?: boolean | undefined;
|
|
@@ -5524,13 +5524,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5524
5524
|
}, {
|
|
5525
5525
|
name: string;
|
|
5526
5526
|
id: string;
|
|
5527
|
-
color?: string | undefined;
|
|
5528
|
-
team_id?: string | undefined;
|
|
5529
|
-
deleted?: boolean | undefined;
|
|
5530
|
-
real_name?: string | undefined;
|
|
5531
|
-
tz?: string | undefined;
|
|
5532
|
-
tz_label?: string | undefined;
|
|
5533
|
-
tz_offset?: number | undefined;
|
|
5534
5527
|
profile?: {
|
|
5535
5528
|
title?: string | undefined;
|
|
5536
5529
|
email?: string | undefined;
|
|
@@ -5557,6 +5550,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5557
5550
|
image_512?: string | undefined;
|
|
5558
5551
|
image_1024?: string | undefined;
|
|
5559
5552
|
} | undefined;
|
|
5553
|
+
color?: string | undefined;
|
|
5554
|
+
team_id?: string | undefined;
|
|
5555
|
+
deleted?: boolean | undefined;
|
|
5556
|
+
real_name?: string | undefined;
|
|
5557
|
+
tz?: string | undefined;
|
|
5558
|
+
tz_label?: string | undefined;
|
|
5559
|
+
tz_offset?: number | undefined;
|
|
5560
5560
|
is_admin?: boolean | undefined;
|
|
5561
5561
|
is_owner?: boolean | undefined;
|
|
5562
5562
|
is_primary_owner?: boolean | undefined;
|
|
@@ -5587,13 +5587,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5587
5587
|
members?: {
|
|
5588
5588
|
name: string;
|
|
5589
5589
|
id: string;
|
|
5590
|
-
color?: string | undefined;
|
|
5591
|
-
team_id?: string | undefined;
|
|
5592
|
-
deleted?: boolean | undefined;
|
|
5593
|
-
real_name?: string | undefined;
|
|
5594
|
-
tz?: string | undefined;
|
|
5595
|
-
tz_label?: string | undefined;
|
|
5596
|
-
tz_offset?: number | undefined;
|
|
5597
5590
|
profile?: {
|
|
5598
5591
|
title?: string | undefined;
|
|
5599
5592
|
email?: string | undefined;
|
|
@@ -5620,6 +5613,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5620
5613
|
image_512?: string | undefined;
|
|
5621
5614
|
image_1024?: string | undefined;
|
|
5622
5615
|
} | undefined;
|
|
5616
|
+
color?: string | undefined;
|
|
5617
|
+
team_id?: string | undefined;
|
|
5618
|
+
deleted?: boolean | undefined;
|
|
5619
|
+
real_name?: string | undefined;
|
|
5620
|
+
tz?: string | undefined;
|
|
5621
|
+
tz_label?: string | undefined;
|
|
5622
|
+
tz_offset?: number | undefined;
|
|
5623
5623
|
is_admin?: boolean | undefined;
|
|
5624
5624
|
is_owner?: boolean | undefined;
|
|
5625
5625
|
is_primary_owner?: boolean | undefined;
|
|
@@ -5641,13 +5641,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5641
5641
|
members?: {
|
|
5642
5642
|
name: string;
|
|
5643
5643
|
id: string;
|
|
5644
|
-
color?: string | undefined;
|
|
5645
|
-
team_id?: string | undefined;
|
|
5646
|
-
deleted?: boolean | undefined;
|
|
5647
|
-
real_name?: string | undefined;
|
|
5648
|
-
tz?: string | undefined;
|
|
5649
|
-
tz_label?: string | undefined;
|
|
5650
|
-
tz_offset?: number | undefined;
|
|
5651
5644
|
profile?: {
|
|
5652
5645
|
title?: string | undefined;
|
|
5653
5646
|
email?: string | undefined;
|
|
@@ -5674,6 +5667,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5674
5667
|
image_512?: string | undefined;
|
|
5675
5668
|
image_1024?: string | undefined;
|
|
5676
5669
|
} | undefined;
|
|
5670
|
+
color?: string | undefined;
|
|
5671
|
+
team_id?: string | undefined;
|
|
5672
|
+
deleted?: boolean | undefined;
|
|
5673
|
+
real_name?: string | undefined;
|
|
5674
|
+
tz?: string | undefined;
|
|
5675
|
+
tz_label?: string | undefined;
|
|
5676
|
+
tz_offset?: number | undefined;
|
|
5677
5677
|
is_admin?: boolean | undefined;
|
|
5678
5678
|
is_owner?: boolean | undefined;
|
|
5679
5679
|
is_primary_owner?: boolean | undefined;
|
|
@@ -5726,8 +5726,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5726
5726
|
}>, "many">>;
|
|
5727
5727
|
}, "strip", z.ZodTypeAny, {
|
|
5728
5728
|
type: string;
|
|
5729
|
-
text?: string | undefined;
|
|
5730
5729
|
user?: string | undefined;
|
|
5730
|
+
text?: string | undefined;
|
|
5731
5731
|
ts?: string | undefined;
|
|
5732
5732
|
username?: string | undefined;
|
|
5733
5733
|
attachments?: unknown[] | undefined;
|
|
@@ -5751,8 +5751,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5751
5751
|
}[] | undefined;
|
|
5752
5752
|
}, {
|
|
5753
5753
|
type: string;
|
|
5754
|
-
text?: string | undefined;
|
|
5755
5754
|
user?: string | undefined;
|
|
5755
|
+
text?: string | undefined;
|
|
5756
5756
|
ts?: string | undefined;
|
|
5757
5757
|
username?: string | undefined;
|
|
5758
5758
|
attachments?: unknown[] | undefined;
|
|
@@ -5790,10 +5790,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5790
5790
|
success: boolean;
|
|
5791
5791
|
operation: "get_conversation_history";
|
|
5792
5792
|
ok: boolean;
|
|
5793
|
+
response_metadata?: {
|
|
5794
|
+
next_cursor: string;
|
|
5795
|
+
} | undefined;
|
|
5793
5796
|
messages?: {
|
|
5794
5797
|
type: string;
|
|
5795
|
-
text?: string | undefined;
|
|
5796
5798
|
user?: string | undefined;
|
|
5799
|
+
text?: string | undefined;
|
|
5797
5800
|
ts?: string | undefined;
|
|
5798
5801
|
username?: string | undefined;
|
|
5799
5802
|
attachments?: unknown[] | undefined;
|
|
@@ -5816,19 +5819,19 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5816
5819
|
count: number;
|
|
5817
5820
|
}[] | undefined;
|
|
5818
5821
|
}[] | undefined;
|
|
5819
|
-
response_metadata?: {
|
|
5820
|
-
next_cursor: string;
|
|
5821
|
-
} | undefined;
|
|
5822
5822
|
has_more?: boolean | undefined;
|
|
5823
5823
|
}, {
|
|
5824
5824
|
error: string;
|
|
5825
5825
|
success: boolean;
|
|
5826
5826
|
operation: "get_conversation_history";
|
|
5827
5827
|
ok: boolean;
|
|
5828
|
+
response_metadata?: {
|
|
5829
|
+
next_cursor: string;
|
|
5830
|
+
} | undefined;
|
|
5828
5831
|
messages?: {
|
|
5829
5832
|
type: string;
|
|
5830
|
-
text?: string | undefined;
|
|
5831
5833
|
user?: string | undefined;
|
|
5834
|
+
text?: string | undefined;
|
|
5832
5835
|
ts?: string | undefined;
|
|
5833
5836
|
username?: string | undefined;
|
|
5834
5837
|
attachments?: unknown[] | undefined;
|
|
@@ -5851,9 +5854,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5851
5854
|
count: number;
|
|
5852
5855
|
}[] | undefined;
|
|
5853
5856
|
}[] | undefined;
|
|
5854
|
-
response_metadata?: {
|
|
5855
|
-
next_cursor: string;
|
|
5856
|
-
} | undefined;
|
|
5857
5857
|
has_more?: boolean | undefined;
|
|
5858
5858
|
}>, z.ZodObject<{
|
|
5859
5859
|
operation: z.ZodLiteral<"get_thread_replies">;
|
|
@@ -5897,8 +5897,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5897
5897
|
}>, "many">>;
|
|
5898
5898
|
}, "strip", z.ZodTypeAny, {
|
|
5899
5899
|
type: string;
|
|
5900
|
-
text?: string | undefined;
|
|
5901
5900
|
user?: string | undefined;
|
|
5901
|
+
text?: string | undefined;
|
|
5902
5902
|
ts?: string | undefined;
|
|
5903
5903
|
username?: string | undefined;
|
|
5904
5904
|
attachments?: unknown[] | undefined;
|
|
@@ -5922,8 +5922,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5922
5922
|
}[] | undefined;
|
|
5923
5923
|
}, {
|
|
5924
5924
|
type: string;
|
|
5925
|
-
text?: string | undefined;
|
|
5926
5925
|
user?: string | undefined;
|
|
5926
|
+
text?: string | undefined;
|
|
5927
5927
|
ts?: string | undefined;
|
|
5928
5928
|
username?: string | undefined;
|
|
5929
5929
|
attachments?: unknown[] | undefined;
|
|
@@ -5961,10 +5961,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5961
5961
|
success: boolean;
|
|
5962
5962
|
operation: "get_thread_replies";
|
|
5963
5963
|
ok: boolean;
|
|
5964
|
+
response_metadata?: {
|
|
5965
|
+
next_cursor: string;
|
|
5966
|
+
} | undefined;
|
|
5964
5967
|
messages?: {
|
|
5965
5968
|
type: string;
|
|
5966
|
-
text?: string | undefined;
|
|
5967
5969
|
user?: string | undefined;
|
|
5970
|
+
text?: string | undefined;
|
|
5968
5971
|
ts?: string | undefined;
|
|
5969
5972
|
username?: string | undefined;
|
|
5970
5973
|
attachments?: unknown[] | undefined;
|
|
@@ -5987,19 +5990,19 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5987
5990
|
count: number;
|
|
5988
5991
|
}[] | undefined;
|
|
5989
5992
|
}[] | undefined;
|
|
5990
|
-
response_metadata?: {
|
|
5991
|
-
next_cursor: string;
|
|
5992
|
-
} | undefined;
|
|
5993
5993
|
has_more?: boolean | undefined;
|
|
5994
5994
|
}, {
|
|
5995
5995
|
error: string;
|
|
5996
5996
|
success: boolean;
|
|
5997
5997
|
operation: "get_thread_replies";
|
|
5998
5998
|
ok: boolean;
|
|
5999
|
+
response_metadata?: {
|
|
6000
|
+
next_cursor: string;
|
|
6001
|
+
} | undefined;
|
|
5999
6002
|
messages?: {
|
|
6000
6003
|
type: string;
|
|
6001
|
-
text?: string | undefined;
|
|
6002
6004
|
user?: string | undefined;
|
|
6005
|
+
text?: string | undefined;
|
|
6003
6006
|
ts?: string | undefined;
|
|
6004
6007
|
username?: string | undefined;
|
|
6005
6008
|
attachments?: unknown[] | undefined;
|
|
@@ -6022,9 +6025,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6022
6025
|
count: number;
|
|
6023
6026
|
}[] | undefined;
|
|
6024
6027
|
}[] | undefined;
|
|
6025
|
-
response_metadata?: {
|
|
6026
|
-
next_cursor: string;
|
|
6027
|
-
} | undefined;
|
|
6028
6028
|
has_more?: boolean | undefined;
|
|
6029
6029
|
}>, z.ZodObject<{
|
|
6030
6030
|
operation: z.ZodLiteral<"update_message">;
|
|
@@ -6071,8 +6071,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6071
6071
|
}>, "many">>;
|
|
6072
6072
|
}, "strip", z.ZodTypeAny, {
|
|
6073
6073
|
type: string;
|
|
6074
|
-
text?: string | undefined;
|
|
6075
6074
|
user?: string | undefined;
|
|
6075
|
+
text?: string | undefined;
|
|
6076
6076
|
ts?: string | undefined;
|
|
6077
6077
|
username?: string | undefined;
|
|
6078
6078
|
attachments?: unknown[] | undefined;
|
|
@@ -6096,8 +6096,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6096
6096
|
}[] | undefined;
|
|
6097
6097
|
}, {
|
|
6098
6098
|
type: string;
|
|
6099
|
-
text?: string | undefined;
|
|
6100
6099
|
user?: string | undefined;
|
|
6100
|
+
text?: string | undefined;
|
|
6101
6101
|
ts?: string | undefined;
|
|
6102
6102
|
username?: string | undefined;
|
|
6103
6103
|
attachments?: unknown[] | undefined;
|
|
@@ -6127,11 +6127,10 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6127
6127
|
success: boolean;
|
|
6128
6128
|
operation: "update_message";
|
|
6129
6129
|
ok: boolean;
|
|
6130
|
-
text?: string | undefined;
|
|
6131
6130
|
message?: {
|
|
6132
6131
|
type: string;
|
|
6133
|
-
text?: string | undefined;
|
|
6134
6132
|
user?: string | undefined;
|
|
6133
|
+
text?: string | undefined;
|
|
6135
6134
|
ts?: string | undefined;
|
|
6136
6135
|
username?: string | undefined;
|
|
6137
6136
|
attachments?: unknown[] | undefined;
|
|
@@ -6154,6 +6153,7 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6154
6153
|
count: number;
|
|
6155
6154
|
}[] | undefined;
|
|
6156
6155
|
} | undefined;
|
|
6156
|
+
text?: string | undefined;
|
|
6157
6157
|
ts?: string | undefined;
|
|
6158
6158
|
channel?: string | undefined;
|
|
6159
6159
|
}, {
|
|
@@ -6161,11 +6161,10 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6161
6161
|
success: boolean;
|
|
6162
6162
|
operation: "update_message";
|
|
6163
6163
|
ok: boolean;
|
|
6164
|
-
text?: string | undefined;
|
|
6165
6164
|
message?: {
|
|
6166
6165
|
type: string;
|
|
6167
|
-
text?: string | undefined;
|
|
6168
6166
|
user?: string | undefined;
|
|
6167
|
+
text?: string | undefined;
|
|
6169
6168
|
ts?: string | undefined;
|
|
6170
6169
|
username?: string | undefined;
|
|
6171
6170
|
attachments?: unknown[] | undefined;
|
|
@@ -6188,6 +6187,7 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6188
6187
|
count: number;
|
|
6189
6188
|
}[] | undefined;
|
|
6190
6189
|
} | undefined;
|
|
6190
|
+
text?: string | undefined;
|
|
6191
6191
|
ts?: string | undefined;
|
|
6192
6192
|
channel?: string | undefined;
|
|
6193
6193
|
}>, z.ZodObject<{
|
|
@@ -6555,8 +6555,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6555
6555
|
has_rich_preview: z.ZodOptional<z.ZodBoolean>;
|
|
6556
6556
|
}, "strip", z.ZodTypeAny, {
|
|
6557
6557
|
name: string;
|
|
6558
|
-
user: string;
|
|
6559
6558
|
id: string;
|
|
6559
|
+
user: string;
|
|
6560
6560
|
username: string;
|
|
6561
6561
|
timestamp: number;
|
|
6562
6562
|
created: number;
|
|
@@ -6600,8 +6600,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6600
6600
|
has_rich_preview?: boolean | undefined;
|
|
6601
6601
|
}, {
|
|
6602
6602
|
name: string;
|
|
6603
|
-
user: string;
|
|
6604
6603
|
id: string;
|
|
6604
|
+
user: string;
|
|
6605
6605
|
username: string;
|
|
6606
6606
|
timestamp: number;
|
|
6607
6607
|
created: number;
|
|
@@ -6653,8 +6653,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6653
6653
|
ok: boolean;
|
|
6654
6654
|
file?: {
|
|
6655
6655
|
name: string;
|
|
6656
|
-
user: string;
|
|
6657
6656
|
id: string;
|
|
6657
|
+
user: string;
|
|
6658
6658
|
username: string;
|
|
6659
6659
|
timestamp: number;
|
|
6660
6660
|
created: number;
|
|
@@ -6704,8 +6704,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6704
6704
|
ok: boolean;
|
|
6705
6705
|
file?: {
|
|
6706
6706
|
name: string;
|
|
6707
|
-
user: string;
|
|
6708
6707
|
id: string;
|
|
6708
|
+
user: string;
|
|
6709
6709
|
username: string;
|
|
6710
6710
|
timestamp: number;
|
|
6711
6711
|
created: number;
|