@bubblelab/bubble-core 0.1.78 → 0.1.79
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 +74 -74
- package/dist/bubbles/service-bubble/ai-agent.d.ts +56 -56
- package/dist/bubbles/service-bubble/airtable.d.ts +92 -92
- package/dist/bubbles/service-bubble/apify/apify.d.ts +10 -10
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +2 -2
- package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +2 -2
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +4 -4
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +8 -8
- package/dist/bubbles/service-bubble/firecrawl.d.ts +242 -242
- package/dist/bubbles/service-bubble/followupboss.d.ts +4 -4
- package/dist/bubbles/service-bubble/github.d.ts +40 -40
- package/dist/bubbles/service-bubble/gmail.d.ts +124 -124
- package/dist/bubbles/service-bubble/http.d.ts +8 -8
- package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
- package/dist/bubbles/service-bubble/jira/jira.d.ts +8 -8
- package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +10 -10
- package/dist/bubbles/service-bubble/notion/notion.d.ts +453 -453
- 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 +286 -286
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +4 -4
- package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +4 -4
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +2 -2
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.schema.d.ts +2 -2
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/chart-js-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/code-edit-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +52 -52
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +10 -10
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/tool-template.d.ts +8 -8
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +36 -36
- package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +10 -10
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +18 -18
- package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +18 -18
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +30 -30
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +20 -20
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +24 -24
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +128 -128
- package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +10 -10
- package/dist/bubbles.json +29 -9
- package/package.json +2 -2
|
@@ -39,12 +39,12 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
39
39
|
}, "strip", z.ZodTypeAny, {
|
|
40
40
|
title?: string | undefined;
|
|
41
41
|
text?: string | undefined;
|
|
42
|
+
image_url?: string | undefined;
|
|
42
43
|
fields?: {
|
|
43
44
|
value: string;
|
|
44
45
|
title: string;
|
|
45
46
|
short?: boolean | undefined;
|
|
46
47
|
}[] | undefined;
|
|
47
|
-
image_url?: string | undefined;
|
|
48
48
|
color?: string | undefined;
|
|
49
49
|
pretext?: string | undefined;
|
|
50
50
|
author_name?: string | undefined;
|
|
@@ -58,12 +58,12 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
58
58
|
}, {
|
|
59
59
|
title?: string | undefined;
|
|
60
60
|
text?: string | undefined;
|
|
61
|
+
image_url?: string | undefined;
|
|
61
62
|
fields?: {
|
|
62
63
|
value: string;
|
|
63
64
|
title: string;
|
|
64
65
|
short?: boolean | undefined;
|
|
65
66
|
}[] | undefined;
|
|
66
|
-
image_url?: string | undefined;
|
|
67
67
|
color?: string | undefined;
|
|
68
68
|
pretext?: string | undefined;
|
|
69
69
|
author_name?: string | undefined;
|
|
@@ -104,16 +104,16 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
104
104
|
type: "image" | "plain_text" | "mrkdwn";
|
|
105
105
|
emoji?: boolean | undefined;
|
|
106
106
|
text?: string | undefined;
|
|
107
|
+
image_url?: string | undefined;
|
|
107
108
|
verbatim?: boolean | undefined;
|
|
108
109
|
alt_text?: string | undefined;
|
|
109
|
-
image_url?: string | undefined;
|
|
110
110
|
}, {
|
|
111
111
|
type: "image" | "plain_text" | "mrkdwn";
|
|
112
112
|
emoji?: boolean | undefined;
|
|
113
113
|
text?: string | undefined;
|
|
114
|
+
image_url?: string | undefined;
|
|
114
115
|
verbatim?: boolean | undefined;
|
|
115
116
|
alt_text?: string | undefined;
|
|
116
|
-
image_url?: string | undefined;
|
|
117
117
|
}>, "many">>;
|
|
118
118
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
119
119
|
type: z.ZodString;
|
|
@@ -144,16 +144,16 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
144
144
|
type: "image" | "plain_text" | "mrkdwn";
|
|
145
145
|
emoji?: boolean | undefined;
|
|
146
146
|
text?: string | undefined;
|
|
147
|
+
image_url?: string | undefined;
|
|
147
148
|
verbatim?: boolean | undefined;
|
|
148
149
|
alt_text?: string | undefined;
|
|
149
|
-
image_url?: string | undefined;
|
|
150
150
|
}, {
|
|
151
151
|
type: "image" | "plain_text" | "mrkdwn";
|
|
152
152
|
emoji?: boolean | undefined;
|
|
153
153
|
text?: string | undefined;
|
|
154
|
+
image_url?: string | undefined;
|
|
154
155
|
verbatim?: boolean | undefined;
|
|
155
156
|
alt_text?: string | undefined;
|
|
156
|
-
image_url?: string | undefined;
|
|
157
157
|
}>, "many">>;
|
|
158
158
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
159
159
|
type: z.ZodString;
|
|
@@ -184,16 +184,16 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
184
184
|
type: "image" | "plain_text" | "mrkdwn";
|
|
185
185
|
emoji?: boolean | undefined;
|
|
186
186
|
text?: string | undefined;
|
|
187
|
+
image_url?: string | undefined;
|
|
187
188
|
verbatim?: boolean | undefined;
|
|
188
189
|
alt_text?: string | undefined;
|
|
189
|
-
image_url?: string | undefined;
|
|
190
190
|
}, {
|
|
191
191
|
type: "image" | "plain_text" | "mrkdwn";
|
|
192
192
|
emoji?: boolean | undefined;
|
|
193
193
|
text?: string | undefined;
|
|
194
|
+
image_url?: string | undefined;
|
|
194
195
|
verbatim?: boolean | undefined;
|
|
195
196
|
alt_text?: string | undefined;
|
|
196
|
-
image_url?: string | undefined;
|
|
197
197
|
}>, "many">>;
|
|
198
198
|
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
199
199
|
thread_ts: z.ZodOptional<z.ZodString>;
|
|
@@ -209,6 +209,29 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
209
209
|
unfurl_links: boolean;
|
|
210
210
|
unfurl_media: boolean;
|
|
211
211
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
212
|
+
username?: string | undefined;
|
|
213
|
+
icon_emoji?: string | undefined;
|
|
214
|
+
icon_url?: string | undefined;
|
|
215
|
+
attachments?: {
|
|
216
|
+
title?: string | undefined;
|
|
217
|
+
text?: string | undefined;
|
|
218
|
+
image_url?: string | undefined;
|
|
219
|
+
fields?: {
|
|
220
|
+
value: string;
|
|
221
|
+
title: string;
|
|
222
|
+
short?: boolean | undefined;
|
|
223
|
+
}[] | undefined;
|
|
224
|
+
color?: string | undefined;
|
|
225
|
+
pretext?: string | undefined;
|
|
226
|
+
author_name?: string | undefined;
|
|
227
|
+
author_link?: string | undefined;
|
|
228
|
+
author_icon?: string | undefined;
|
|
229
|
+
title_link?: string | undefined;
|
|
230
|
+
thumb_url?: string | undefined;
|
|
231
|
+
footer?: string | undefined;
|
|
232
|
+
footer_icon?: string | undefined;
|
|
233
|
+
ts?: number | undefined;
|
|
234
|
+
}[] | undefined;
|
|
212
235
|
blocks?: z.objectOutputType<{
|
|
213
236
|
type: z.ZodString;
|
|
214
237
|
text: z.ZodOptional<z.ZodObject<{
|
|
@@ -238,30 +261,36 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
238
261
|
type: "image" | "plain_text" | "mrkdwn";
|
|
239
262
|
emoji?: boolean | undefined;
|
|
240
263
|
text?: string | undefined;
|
|
264
|
+
image_url?: string | undefined;
|
|
241
265
|
verbatim?: boolean | undefined;
|
|
242
266
|
alt_text?: string | undefined;
|
|
243
|
-
image_url?: string | undefined;
|
|
244
267
|
}, {
|
|
245
268
|
type: "image" | "plain_text" | "mrkdwn";
|
|
246
269
|
emoji?: boolean | undefined;
|
|
247
270
|
text?: string | undefined;
|
|
271
|
+
image_url?: string | undefined;
|
|
248
272
|
verbatim?: boolean | undefined;
|
|
249
273
|
alt_text?: string | undefined;
|
|
250
|
-
image_url?: string | undefined;
|
|
251
274
|
}>, "many">>;
|
|
252
275
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
276
|
+
thread_ts?: string | undefined;
|
|
277
|
+
}, {
|
|
278
|
+
text: string;
|
|
279
|
+
operation: "send_message";
|
|
280
|
+
channel: string;
|
|
281
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
253
282
|
username?: string | undefined;
|
|
254
283
|
icon_emoji?: string | undefined;
|
|
255
284
|
icon_url?: string | undefined;
|
|
256
285
|
attachments?: {
|
|
257
286
|
title?: string | undefined;
|
|
258
287
|
text?: string | undefined;
|
|
288
|
+
image_url?: string | undefined;
|
|
259
289
|
fields?: {
|
|
260
290
|
value: string;
|
|
261
291
|
title: string;
|
|
262
292
|
short?: boolean | undefined;
|
|
263
293
|
}[] | undefined;
|
|
264
|
-
image_url?: string | undefined;
|
|
265
294
|
color?: string | undefined;
|
|
266
295
|
pretext?: string | undefined;
|
|
267
296
|
author_name?: string | undefined;
|
|
@@ -273,12 +302,6 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
273
302
|
footer_icon?: string | undefined;
|
|
274
303
|
ts?: number | undefined;
|
|
275
304
|
}[] | undefined;
|
|
276
|
-
thread_ts?: string | undefined;
|
|
277
|
-
}, {
|
|
278
|
-
text: string;
|
|
279
|
-
operation: "send_message";
|
|
280
|
-
channel: string;
|
|
281
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
282
305
|
blocks?: z.objectInputType<{
|
|
283
306
|
type: z.ZodString;
|
|
284
307
|
text: z.ZodOptional<z.ZodObject<{
|
|
@@ -308,41 +331,18 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
308
331
|
type: "image" | "plain_text" | "mrkdwn";
|
|
309
332
|
emoji?: boolean | undefined;
|
|
310
333
|
text?: string | undefined;
|
|
334
|
+
image_url?: string | undefined;
|
|
311
335
|
verbatim?: boolean | undefined;
|
|
312
336
|
alt_text?: string | undefined;
|
|
313
|
-
image_url?: string | undefined;
|
|
314
337
|
}, {
|
|
315
338
|
type: "image" | "plain_text" | "mrkdwn";
|
|
316
339
|
emoji?: boolean | undefined;
|
|
317
340
|
text?: string | undefined;
|
|
341
|
+
image_url?: string | undefined;
|
|
318
342
|
verbatim?: boolean | undefined;
|
|
319
343
|
alt_text?: string | undefined;
|
|
320
|
-
image_url?: string | undefined;
|
|
321
344
|
}>, "many">>;
|
|
322
345
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
323
|
-
username?: string | undefined;
|
|
324
|
-
icon_emoji?: string | undefined;
|
|
325
|
-
icon_url?: string | undefined;
|
|
326
|
-
attachments?: {
|
|
327
|
-
title?: string | undefined;
|
|
328
|
-
text?: string | undefined;
|
|
329
|
-
fields?: {
|
|
330
|
-
value: string;
|
|
331
|
-
title: string;
|
|
332
|
-
short?: boolean | undefined;
|
|
333
|
-
}[] | undefined;
|
|
334
|
-
image_url?: string | undefined;
|
|
335
|
-
color?: string | undefined;
|
|
336
|
-
pretext?: string | undefined;
|
|
337
|
-
author_name?: string | undefined;
|
|
338
|
-
author_link?: string | undefined;
|
|
339
|
-
author_icon?: string | undefined;
|
|
340
|
-
title_link?: string | undefined;
|
|
341
|
-
thumb_url?: string | undefined;
|
|
342
|
-
footer?: string | undefined;
|
|
343
|
-
footer_icon?: string | undefined;
|
|
344
|
-
ts?: number | undefined;
|
|
345
|
-
}[] | undefined;
|
|
346
346
|
thread_ts?: string | undefined;
|
|
347
347
|
reply_broadcast?: boolean | undefined;
|
|
348
348
|
unfurl_links?: boolean | undefined;
|
|
@@ -508,12 +508,12 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
508
508
|
}, "strip", z.ZodTypeAny, {
|
|
509
509
|
title?: string | undefined;
|
|
510
510
|
text?: string | undefined;
|
|
511
|
+
image_url?: string | undefined;
|
|
511
512
|
fields?: {
|
|
512
513
|
value: string;
|
|
513
514
|
title: string;
|
|
514
515
|
short?: boolean | undefined;
|
|
515
516
|
}[] | undefined;
|
|
516
|
-
image_url?: string | undefined;
|
|
517
517
|
color?: string | undefined;
|
|
518
518
|
pretext?: string | undefined;
|
|
519
519
|
author_name?: string | undefined;
|
|
@@ -527,12 +527,12 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
527
527
|
}, {
|
|
528
528
|
title?: string | undefined;
|
|
529
529
|
text?: string | undefined;
|
|
530
|
+
image_url?: string | undefined;
|
|
530
531
|
fields?: {
|
|
531
532
|
value: string;
|
|
532
533
|
title: string;
|
|
533
534
|
short?: boolean | undefined;
|
|
534
535
|
}[] | undefined;
|
|
535
|
-
image_url?: string | undefined;
|
|
536
536
|
color?: string | undefined;
|
|
537
537
|
pretext?: string | undefined;
|
|
538
538
|
author_name?: string | undefined;
|
|
@@ -573,16 +573,16 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
573
573
|
type: "image" | "plain_text" | "mrkdwn";
|
|
574
574
|
emoji?: boolean | undefined;
|
|
575
575
|
text?: string | undefined;
|
|
576
|
+
image_url?: string | undefined;
|
|
576
577
|
verbatim?: boolean | undefined;
|
|
577
578
|
alt_text?: string | undefined;
|
|
578
|
-
image_url?: string | undefined;
|
|
579
579
|
}, {
|
|
580
580
|
type: "image" | "plain_text" | "mrkdwn";
|
|
581
581
|
emoji?: boolean | undefined;
|
|
582
582
|
text?: string | undefined;
|
|
583
|
+
image_url?: string | undefined;
|
|
583
584
|
verbatim?: boolean | undefined;
|
|
584
585
|
alt_text?: string | undefined;
|
|
585
|
-
image_url?: string | undefined;
|
|
586
586
|
}>, "many">>;
|
|
587
587
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
588
588
|
type: z.ZodString;
|
|
@@ -613,16 +613,16 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
613
613
|
type: "image" | "plain_text" | "mrkdwn";
|
|
614
614
|
emoji?: boolean | undefined;
|
|
615
615
|
text?: string | undefined;
|
|
616
|
+
image_url?: string | undefined;
|
|
616
617
|
verbatim?: boolean | undefined;
|
|
617
618
|
alt_text?: string | undefined;
|
|
618
|
-
image_url?: string | undefined;
|
|
619
619
|
}, {
|
|
620
620
|
type: "image" | "plain_text" | "mrkdwn";
|
|
621
621
|
emoji?: boolean | undefined;
|
|
622
622
|
text?: string | undefined;
|
|
623
|
+
image_url?: string | undefined;
|
|
623
624
|
verbatim?: boolean | undefined;
|
|
624
625
|
alt_text?: string | undefined;
|
|
625
|
-
image_url?: string | undefined;
|
|
626
626
|
}>, "many">>;
|
|
627
627
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
628
628
|
type: z.ZodString;
|
|
@@ -653,16 +653,16 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
653
653
|
type: "image" | "plain_text" | "mrkdwn";
|
|
654
654
|
emoji?: boolean | undefined;
|
|
655
655
|
text?: string | undefined;
|
|
656
|
+
image_url?: string | undefined;
|
|
656
657
|
verbatim?: boolean | undefined;
|
|
657
658
|
alt_text?: string | undefined;
|
|
658
|
-
image_url?: string | undefined;
|
|
659
659
|
}, {
|
|
660
660
|
type: "image" | "plain_text" | "mrkdwn";
|
|
661
661
|
emoji?: boolean | undefined;
|
|
662
662
|
text?: string | undefined;
|
|
663
|
+
image_url?: string | undefined;
|
|
663
664
|
verbatim?: boolean | undefined;
|
|
664
665
|
alt_text?: string | undefined;
|
|
665
|
-
image_url?: string | undefined;
|
|
666
666
|
}>, "many">>;
|
|
667
667
|
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
668
668
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
@@ -672,6 +672,26 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
672
672
|
channel: string;
|
|
673
673
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
674
674
|
text?: string | undefined;
|
|
675
|
+
attachments?: {
|
|
676
|
+
title?: string | undefined;
|
|
677
|
+
text?: string | undefined;
|
|
678
|
+
image_url?: string | undefined;
|
|
679
|
+
fields?: {
|
|
680
|
+
value: string;
|
|
681
|
+
title: string;
|
|
682
|
+
short?: boolean | undefined;
|
|
683
|
+
}[] | undefined;
|
|
684
|
+
color?: string | undefined;
|
|
685
|
+
pretext?: string | undefined;
|
|
686
|
+
author_name?: string | undefined;
|
|
687
|
+
author_link?: string | undefined;
|
|
688
|
+
author_icon?: string | undefined;
|
|
689
|
+
title_link?: string | undefined;
|
|
690
|
+
thumb_url?: string | undefined;
|
|
691
|
+
footer?: string | undefined;
|
|
692
|
+
footer_icon?: string | undefined;
|
|
693
|
+
ts?: number | undefined;
|
|
694
|
+
}[] | undefined;
|
|
675
695
|
blocks?: z.objectOutputType<{
|
|
676
696
|
type: z.ZodString;
|
|
677
697
|
text: z.ZodOptional<z.ZodObject<{
|
|
@@ -701,27 +721,33 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
701
721
|
type: "image" | "plain_text" | "mrkdwn";
|
|
702
722
|
emoji?: boolean | undefined;
|
|
703
723
|
text?: string | undefined;
|
|
724
|
+
image_url?: string | undefined;
|
|
704
725
|
verbatim?: boolean | undefined;
|
|
705
726
|
alt_text?: string | undefined;
|
|
706
|
-
image_url?: string | undefined;
|
|
707
727
|
}, {
|
|
708
728
|
type: "image" | "plain_text" | "mrkdwn";
|
|
709
729
|
emoji?: boolean | undefined;
|
|
710
730
|
text?: string | undefined;
|
|
731
|
+
image_url?: string | undefined;
|
|
711
732
|
verbatim?: boolean | undefined;
|
|
712
733
|
alt_text?: string | undefined;
|
|
713
|
-
image_url?: string | undefined;
|
|
714
734
|
}>, "many">>;
|
|
715
735
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
736
|
+
}, {
|
|
737
|
+
ts: string;
|
|
738
|
+
operation: "update_message";
|
|
739
|
+
channel: string;
|
|
740
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
741
|
+
text?: string | undefined;
|
|
716
742
|
attachments?: {
|
|
717
743
|
title?: string | undefined;
|
|
718
744
|
text?: string | undefined;
|
|
745
|
+
image_url?: string | undefined;
|
|
719
746
|
fields?: {
|
|
720
747
|
value: string;
|
|
721
748
|
title: string;
|
|
722
749
|
short?: boolean | undefined;
|
|
723
750
|
}[] | undefined;
|
|
724
|
-
image_url?: string | undefined;
|
|
725
751
|
color?: string | undefined;
|
|
726
752
|
pretext?: string | undefined;
|
|
727
753
|
author_name?: string | undefined;
|
|
@@ -733,12 +759,6 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
733
759
|
footer_icon?: string | undefined;
|
|
734
760
|
ts?: number | undefined;
|
|
735
761
|
}[] | undefined;
|
|
736
|
-
}, {
|
|
737
|
-
ts: string;
|
|
738
|
-
operation: "update_message";
|
|
739
|
-
channel: string;
|
|
740
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
741
|
-
text?: string | undefined;
|
|
742
762
|
blocks?: z.objectInputType<{
|
|
743
763
|
type: z.ZodString;
|
|
744
764
|
text: z.ZodOptional<z.ZodObject<{
|
|
@@ -768,38 +788,18 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
768
788
|
type: "image" | "plain_text" | "mrkdwn";
|
|
769
789
|
emoji?: boolean | undefined;
|
|
770
790
|
text?: string | undefined;
|
|
791
|
+
image_url?: string | undefined;
|
|
771
792
|
verbatim?: boolean | undefined;
|
|
772
793
|
alt_text?: string | undefined;
|
|
773
|
-
image_url?: string | undefined;
|
|
774
794
|
}, {
|
|
775
795
|
type: "image" | "plain_text" | "mrkdwn";
|
|
776
796
|
emoji?: boolean | undefined;
|
|
777
797
|
text?: string | undefined;
|
|
798
|
+
image_url?: string | undefined;
|
|
778
799
|
verbatim?: boolean | undefined;
|
|
779
800
|
alt_text?: string | undefined;
|
|
780
|
-
image_url?: string | undefined;
|
|
781
801
|
}>, "many">>;
|
|
782
802
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
783
|
-
attachments?: {
|
|
784
|
-
title?: string | undefined;
|
|
785
|
-
text?: string | undefined;
|
|
786
|
-
fields?: {
|
|
787
|
-
value: string;
|
|
788
|
-
title: string;
|
|
789
|
-
short?: boolean | undefined;
|
|
790
|
-
}[] | undefined;
|
|
791
|
-
image_url?: string | undefined;
|
|
792
|
-
color?: string | undefined;
|
|
793
|
-
pretext?: string | undefined;
|
|
794
|
-
author_name?: string | undefined;
|
|
795
|
-
author_link?: string | undefined;
|
|
796
|
-
author_icon?: string | undefined;
|
|
797
|
-
title_link?: string | undefined;
|
|
798
|
-
thumb_url?: string | undefined;
|
|
799
|
-
footer?: string | undefined;
|
|
800
|
-
footer_icon?: string | undefined;
|
|
801
|
-
ts?: number | undefined;
|
|
802
|
-
}[] | undefined;
|
|
803
803
|
}>, z.ZodObject<{
|
|
804
804
|
operation: z.ZodLiteral<"delete_message">;
|
|
805
805
|
channel: z.ZodString;
|
|
@@ -925,16 +925,16 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
925
925
|
type: "image" | "plain_text" | "mrkdwn";
|
|
926
926
|
emoji?: boolean | undefined;
|
|
927
927
|
text?: string | undefined;
|
|
928
|
+
image_url?: string | undefined;
|
|
928
929
|
verbatim?: boolean | undefined;
|
|
929
930
|
alt_text?: string | undefined;
|
|
930
|
-
image_url?: string | undefined;
|
|
931
931
|
}, {
|
|
932
932
|
type: "image" | "plain_text" | "mrkdwn";
|
|
933
933
|
emoji?: boolean | undefined;
|
|
934
934
|
text?: string | undefined;
|
|
935
|
+
image_url?: string | undefined;
|
|
935
936
|
verbatim?: boolean | undefined;
|
|
936
937
|
alt_text?: string | undefined;
|
|
937
|
-
image_url?: string | undefined;
|
|
938
938
|
}>, "many">>;
|
|
939
939
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
940
940
|
type: z.ZodString;
|
|
@@ -965,16 +965,16 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
965
965
|
type: "image" | "plain_text" | "mrkdwn";
|
|
966
966
|
emoji?: boolean | undefined;
|
|
967
967
|
text?: string | undefined;
|
|
968
|
+
image_url?: string | undefined;
|
|
968
969
|
verbatim?: boolean | undefined;
|
|
969
970
|
alt_text?: string | undefined;
|
|
970
|
-
image_url?: string | undefined;
|
|
971
971
|
}, {
|
|
972
972
|
type: "image" | "plain_text" | "mrkdwn";
|
|
973
973
|
emoji?: boolean | undefined;
|
|
974
974
|
text?: string | undefined;
|
|
975
|
+
image_url?: string | undefined;
|
|
975
976
|
verbatim?: boolean | undefined;
|
|
976
977
|
alt_text?: string | undefined;
|
|
977
|
-
image_url?: string | undefined;
|
|
978
978
|
}>, "many">>;
|
|
979
979
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
980
980
|
type: z.ZodString;
|
|
@@ -1005,16 +1005,16 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1005
1005
|
type: "image" | "plain_text" | "mrkdwn";
|
|
1006
1006
|
emoji?: boolean | undefined;
|
|
1007
1007
|
text?: string | undefined;
|
|
1008
|
+
image_url?: string | undefined;
|
|
1008
1009
|
verbatim?: boolean | undefined;
|
|
1009
1010
|
alt_text?: string | undefined;
|
|
1010
|
-
image_url?: string | undefined;
|
|
1011
1011
|
}, {
|
|
1012
1012
|
type: "image" | "plain_text" | "mrkdwn";
|
|
1013
1013
|
emoji?: boolean | undefined;
|
|
1014
1014
|
text?: string | undefined;
|
|
1015
|
+
image_url?: string | undefined;
|
|
1015
1016
|
verbatim?: boolean | undefined;
|
|
1016
1017
|
alt_text?: string | undefined;
|
|
1017
|
-
image_url?: string | undefined;
|
|
1018
1018
|
}>, "many">>;
|
|
1019
1019
|
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
1020
1020
|
unfurl_links: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
@@ -1057,16 +1057,16 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1057
1057
|
type: "image" | "plain_text" | "mrkdwn";
|
|
1058
1058
|
emoji?: boolean | undefined;
|
|
1059
1059
|
text?: string | undefined;
|
|
1060
|
+
image_url?: string | undefined;
|
|
1060
1061
|
verbatim?: boolean | undefined;
|
|
1061
1062
|
alt_text?: string | undefined;
|
|
1062
|
-
image_url?: string | undefined;
|
|
1063
1063
|
}, {
|
|
1064
1064
|
type: "image" | "plain_text" | "mrkdwn";
|
|
1065
1065
|
emoji?: boolean | undefined;
|
|
1066
1066
|
text?: string | undefined;
|
|
1067
|
+
image_url?: string | undefined;
|
|
1067
1068
|
verbatim?: boolean | undefined;
|
|
1068
1069
|
alt_text?: string | undefined;
|
|
1069
|
-
image_url?: string | undefined;
|
|
1070
1070
|
}>, "many">>;
|
|
1071
1071
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
1072
1072
|
thread_ts?: string | undefined;
|
|
@@ -1105,16 +1105,16 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1105
1105
|
type: "image" | "plain_text" | "mrkdwn";
|
|
1106
1106
|
emoji?: boolean | undefined;
|
|
1107
1107
|
text?: string | undefined;
|
|
1108
|
+
image_url?: string | undefined;
|
|
1108
1109
|
verbatim?: boolean | undefined;
|
|
1109
1110
|
alt_text?: string | undefined;
|
|
1110
|
-
image_url?: string | undefined;
|
|
1111
1111
|
}, {
|
|
1112
1112
|
type: "image" | "plain_text" | "mrkdwn";
|
|
1113
1113
|
emoji?: boolean | undefined;
|
|
1114
1114
|
text?: string | undefined;
|
|
1115
|
+
image_url?: string | undefined;
|
|
1115
1116
|
verbatim?: boolean | undefined;
|
|
1116
1117
|
alt_text?: string | undefined;
|
|
1117
|
-
image_url?: string | undefined;
|
|
1118
1118
|
}>, "many">>;
|
|
1119
1119
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
1120
1120
|
thread_ts?: string | undefined;
|
|
@@ -1165,12 +1165,12 @@ 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
|
-
blocks?: unknown[] | undefined;
|
|
1170
1168
|
user?: string | undefined;
|
|
1169
|
+
text?: string | undefined;
|
|
1171
1170
|
ts?: string | undefined;
|
|
1172
1171
|
username?: string | undefined;
|
|
1173
1172
|
attachments?: unknown[] | undefined;
|
|
1173
|
+
blocks?: unknown[] | undefined;
|
|
1174
1174
|
thread_ts?: string | undefined;
|
|
1175
1175
|
bot_id?: string | undefined;
|
|
1176
1176
|
bot_profile?: {
|
|
@@ -1190,12 +1190,12 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1190
1190
|
}[] | undefined;
|
|
1191
1191
|
}, {
|
|
1192
1192
|
type: string;
|
|
1193
|
-
text?: string | undefined;
|
|
1194
|
-
blocks?: unknown[] | undefined;
|
|
1195
1193
|
user?: string | undefined;
|
|
1194
|
+
text?: string | undefined;
|
|
1196
1195
|
ts?: string | undefined;
|
|
1197
1196
|
username?: string | undefined;
|
|
1198
1197
|
attachments?: unknown[] | undefined;
|
|
1198
|
+
blocks?: unknown[] | undefined;
|
|
1199
1199
|
thread_ts?: string | undefined;
|
|
1200
1200
|
bot_id?: string | undefined;
|
|
1201
1201
|
bot_profile?: {
|
|
@@ -1223,12 +1223,12 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1223
1223
|
ok: boolean;
|
|
1224
1224
|
message?: {
|
|
1225
1225
|
type: string;
|
|
1226
|
-
text?: string | undefined;
|
|
1227
|
-
blocks?: unknown[] | undefined;
|
|
1228
1226
|
user?: string | undefined;
|
|
1227
|
+
text?: string | undefined;
|
|
1229
1228
|
ts?: string | undefined;
|
|
1230
1229
|
username?: string | undefined;
|
|
1231
1230
|
attachments?: unknown[] | undefined;
|
|
1231
|
+
blocks?: unknown[] | undefined;
|
|
1232
1232
|
thread_ts?: string | undefined;
|
|
1233
1233
|
bot_id?: string | undefined;
|
|
1234
1234
|
bot_profile?: {
|
|
@@ -1256,12 +1256,12 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
1256
1256
|
ok: boolean;
|
|
1257
1257
|
message?: {
|
|
1258
1258
|
type: string;
|
|
1259
|
-
text?: string | undefined;
|
|
1260
|
-
blocks?: unknown[] | undefined;
|
|
1261
1259
|
user?: string | undefined;
|
|
1260
|
+
text?: string | undefined;
|
|
1262
1261
|
ts?: string | undefined;
|
|
1263
1262
|
username?: string | undefined;
|
|
1264
1263
|
attachments?: unknown[] | undefined;
|
|
1264
|
+
blocks?: unknown[] | undefined;
|
|
1265
1265
|
thread_ts?: string | undefined;
|
|
1266
1266
|
bot_id?: string | undefined;
|
|
1267
1267
|
bot_profile?: {
|
|
@@ -2334,12 +2334,12 @@ 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
|
-
blocks?: unknown[] | undefined;
|
|
2339
2337
|
user?: string | undefined;
|
|
2338
|
+
text?: string | undefined;
|
|
2340
2339
|
ts?: string | undefined;
|
|
2341
2340
|
username?: string | undefined;
|
|
2342
2341
|
attachments?: unknown[] | undefined;
|
|
2342
|
+
blocks?: unknown[] | undefined;
|
|
2343
2343
|
thread_ts?: string | undefined;
|
|
2344
2344
|
bot_id?: string | undefined;
|
|
2345
2345
|
bot_profile?: {
|
|
@@ -2359,12 +2359,12 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2359
2359
|
}[] | undefined;
|
|
2360
2360
|
}, {
|
|
2361
2361
|
type: string;
|
|
2362
|
-
text?: string | undefined;
|
|
2363
|
-
blocks?: unknown[] | undefined;
|
|
2364
2362
|
user?: string | undefined;
|
|
2363
|
+
text?: string | undefined;
|
|
2365
2364
|
ts?: string | undefined;
|
|
2366
2365
|
username?: string | undefined;
|
|
2367
2366
|
attachments?: unknown[] | undefined;
|
|
2367
|
+
blocks?: unknown[] | undefined;
|
|
2368
2368
|
thread_ts?: string | undefined;
|
|
2369
2369
|
bot_id?: string | undefined;
|
|
2370
2370
|
bot_profile?: {
|
|
@@ -2398,14 +2398,17 @@ 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
|
-
blocks?: unknown[] | undefined;
|
|
2405
2406
|
user?: string | undefined;
|
|
2407
|
+
text?: string | undefined;
|
|
2406
2408
|
ts?: string | undefined;
|
|
2407
2409
|
username?: string | undefined;
|
|
2408
2410
|
attachments?: unknown[] | undefined;
|
|
2411
|
+
blocks?: unknown[] | undefined;
|
|
2409
2412
|
thread_ts?: string | undefined;
|
|
2410
2413
|
bot_id?: string | undefined;
|
|
2411
2414
|
bot_profile?: {
|
|
@@ -2424,23 +2427,23 @@ 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
|
-
blocks?: unknown[] | undefined;
|
|
2440
2441
|
user?: string | undefined;
|
|
2442
|
+
text?: string | undefined;
|
|
2441
2443
|
ts?: string | undefined;
|
|
2442
2444
|
username?: string | undefined;
|
|
2443
2445
|
attachments?: unknown[] | undefined;
|
|
2446
|
+
blocks?: unknown[] | undefined;
|
|
2444
2447
|
thread_ts?: string | undefined;
|
|
2445
2448
|
bot_id?: string | undefined;
|
|
2446
2449
|
bot_profile?: {
|
|
@@ -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,12 +2505,12 @@ 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
|
-
blocks?: unknown[] | undefined;
|
|
2510
2508
|
user?: string | undefined;
|
|
2509
|
+
text?: string | undefined;
|
|
2511
2510
|
ts?: string | undefined;
|
|
2512
2511
|
username?: string | undefined;
|
|
2513
2512
|
attachments?: unknown[] | undefined;
|
|
2513
|
+
blocks?: unknown[] | undefined;
|
|
2514
2514
|
thread_ts?: string | undefined;
|
|
2515
2515
|
bot_id?: string | undefined;
|
|
2516
2516
|
bot_profile?: {
|
|
@@ -2530,12 +2530,12 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2530
2530
|
}[] | undefined;
|
|
2531
2531
|
}, {
|
|
2532
2532
|
type: string;
|
|
2533
|
-
text?: string | undefined;
|
|
2534
|
-
blocks?: unknown[] | undefined;
|
|
2535
2533
|
user?: string | undefined;
|
|
2534
|
+
text?: string | undefined;
|
|
2536
2535
|
ts?: string | undefined;
|
|
2537
2536
|
username?: string | undefined;
|
|
2538
2537
|
attachments?: unknown[] | undefined;
|
|
2538
|
+
blocks?: unknown[] | undefined;
|
|
2539
2539
|
thread_ts?: string | undefined;
|
|
2540
2540
|
bot_id?: string | undefined;
|
|
2541
2541
|
bot_profile?: {
|
|
@@ -2569,14 +2569,17 @@ 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
|
-
blocks?: unknown[] | undefined;
|
|
2576
2577
|
user?: string | undefined;
|
|
2578
|
+
text?: string | undefined;
|
|
2577
2579
|
ts?: string | undefined;
|
|
2578
2580
|
username?: string | undefined;
|
|
2579
2581
|
attachments?: unknown[] | undefined;
|
|
2582
|
+
blocks?: unknown[] | undefined;
|
|
2580
2583
|
thread_ts?: string | undefined;
|
|
2581
2584
|
bot_id?: string | undefined;
|
|
2582
2585
|
bot_profile?: {
|
|
@@ -2595,23 +2598,23 @@ 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
|
-
blocks?: unknown[] | undefined;
|
|
2611
2612
|
user?: string | undefined;
|
|
2613
|
+
text?: string | undefined;
|
|
2612
2614
|
ts?: string | undefined;
|
|
2613
2615
|
username?: string | undefined;
|
|
2614
2616
|
attachments?: unknown[] | undefined;
|
|
2617
|
+
blocks?: unknown[] | undefined;
|
|
2615
2618
|
thread_ts?: string | undefined;
|
|
2616
2619
|
bot_id?: string | undefined;
|
|
2617
2620
|
bot_profile?: {
|
|
@@ -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,12 +2679,12 @@ 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
|
-
blocks?: unknown[] | undefined;
|
|
2684
2682
|
user?: string | undefined;
|
|
2683
|
+
text?: string | undefined;
|
|
2685
2684
|
ts?: string | undefined;
|
|
2686
2685
|
username?: string | undefined;
|
|
2687
2686
|
attachments?: unknown[] | undefined;
|
|
2687
|
+
blocks?: unknown[] | undefined;
|
|
2688
2688
|
thread_ts?: string | undefined;
|
|
2689
2689
|
bot_id?: string | undefined;
|
|
2690
2690
|
bot_profile?: {
|
|
@@ -2704,12 +2704,12 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2704
2704
|
}[] | undefined;
|
|
2705
2705
|
}, {
|
|
2706
2706
|
type: string;
|
|
2707
|
-
text?: string | undefined;
|
|
2708
|
-
blocks?: unknown[] | undefined;
|
|
2709
2707
|
user?: string | undefined;
|
|
2708
|
+
text?: string | undefined;
|
|
2710
2709
|
ts?: string | undefined;
|
|
2711
2710
|
username?: string | undefined;
|
|
2712
2711
|
attachments?: unknown[] | undefined;
|
|
2712
|
+
blocks?: unknown[] | undefined;
|
|
2713
2713
|
thread_ts?: string | undefined;
|
|
2714
2714
|
bot_id?: string | undefined;
|
|
2715
2715
|
bot_profile?: {
|
|
@@ -2737,12 +2737,12 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2737
2737
|
ok: boolean;
|
|
2738
2738
|
message?: {
|
|
2739
2739
|
type: string;
|
|
2740
|
-
text?: string | undefined;
|
|
2741
|
-
blocks?: unknown[] | 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;
|
|
2745
|
+
blocks?: unknown[] | undefined;
|
|
2746
2746
|
thread_ts?: string | undefined;
|
|
2747
2747
|
bot_id?: string | undefined;
|
|
2748
2748
|
bot_profile?: {
|
|
@@ -2771,12 +2771,12 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
2771
2771
|
ok: boolean;
|
|
2772
2772
|
message?: {
|
|
2773
2773
|
type: string;
|
|
2774
|
-
text?: string | undefined;
|
|
2775
|
-
blocks?: unknown[] | 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;
|
|
2779
|
+
blocks?: unknown[] | undefined;
|
|
2780
2780
|
thread_ts?: string | undefined;
|
|
2781
2781
|
bot_id?: string | undefined;
|
|
2782
2782
|
bot_profile?: {
|
|
@@ -3163,9 +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
|
-
size: number;
|
|
3168
3166
|
id: string;
|
|
3167
|
+
user: string;
|
|
3169
3168
|
username: string;
|
|
3170
3169
|
timestamp: number;
|
|
3171
3170
|
created: number;
|
|
@@ -3173,6 +3172,7 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3173
3172
|
filetype: string;
|
|
3174
3173
|
pretty_type: string;
|
|
3175
3174
|
editable: boolean;
|
|
3175
|
+
size: number;
|
|
3176
3176
|
mode: string;
|
|
3177
3177
|
is_external: boolean;
|
|
3178
3178
|
external_type: string;
|
|
@@ -3208,9 +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
|
-
size: number;
|
|
3213
3211
|
id: string;
|
|
3212
|
+
user: string;
|
|
3214
3213
|
username: string;
|
|
3215
3214
|
timestamp: number;
|
|
3216
3215
|
created: number;
|
|
@@ -3218,6 +3217,7 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3218
3217
|
filetype: string;
|
|
3219
3218
|
pretty_type: string;
|
|
3220
3219
|
editable: boolean;
|
|
3220
|
+
size: number;
|
|
3221
3221
|
mode: string;
|
|
3222
3222
|
is_external: boolean;
|
|
3223
3223
|
external_type: string;
|
|
@@ -3261,9 +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
|
-
size: number;
|
|
3266
3264
|
id: string;
|
|
3265
|
+
user: string;
|
|
3267
3266
|
username: string;
|
|
3268
3267
|
timestamp: number;
|
|
3269
3268
|
created: number;
|
|
@@ -3271,6 +3270,7 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3271
3270
|
filetype: string;
|
|
3272
3271
|
pretty_type: string;
|
|
3273
3272
|
editable: boolean;
|
|
3273
|
+
size: number;
|
|
3274
3274
|
mode: string;
|
|
3275
3275
|
is_external: boolean;
|
|
3276
3276
|
external_type: string;
|
|
@@ -3312,9 +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
|
-
size: number;
|
|
3317
3315
|
id: string;
|
|
3316
|
+
user: string;
|
|
3318
3317
|
username: string;
|
|
3319
3318
|
timestamp: number;
|
|
3320
3319
|
created: number;
|
|
@@ -3322,6 +3321,7 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
|
|
|
3322
3321
|
filetype: string;
|
|
3323
3322
|
pretty_type: string;
|
|
3324
3323
|
editable: boolean;
|
|
3324
|
+
size: number;
|
|
3325
3325
|
mode: string;
|
|
3326
3326
|
is_external: boolean;
|
|
3327
3327
|
external_type: string;
|
|
@@ -3431,12 +3431,12 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3431
3431
|
}, "strip", z.ZodTypeAny, {
|
|
3432
3432
|
title?: string | undefined;
|
|
3433
3433
|
text?: string | undefined;
|
|
3434
|
+
image_url?: string | undefined;
|
|
3434
3435
|
fields?: {
|
|
3435
3436
|
value: string;
|
|
3436
3437
|
title: string;
|
|
3437
3438
|
short?: boolean | undefined;
|
|
3438
3439
|
}[] | undefined;
|
|
3439
|
-
image_url?: string | undefined;
|
|
3440
3440
|
color?: string | undefined;
|
|
3441
3441
|
pretext?: string | undefined;
|
|
3442
3442
|
author_name?: string | undefined;
|
|
@@ -3450,12 +3450,12 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3450
3450
|
}, {
|
|
3451
3451
|
title?: string | undefined;
|
|
3452
3452
|
text?: string | undefined;
|
|
3453
|
+
image_url?: string | undefined;
|
|
3453
3454
|
fields?: {
|
|
3454
3455
|
value: string;
|
|
3455
3456
|
title: string;
|
|
3456
3457
|
short?: boolean | undefined;
|
|
3457
3458
|
}[] | undefined;
|
|
3458
|
-
image_url?: string | undefined;
|
|
3459
3459
|
color?: string | undefined;
|
|
3460
3460
|
pretext?: string | undefined;
|
|
3461
3461
|
author_name?: string | undefined;
|
|
@@ -3496,16 +3496,16 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3496
3496
|
type: "image" | "plain_text" | "mrkdwn";
|
|
3497
3497
|
emoji?: boolean | undefined;
|
|
3498
3498
|
text?: string | undefined;
|
|
3499
|
+
image_url?: string | undefined;
|
|
3499
3500
|
verbatim?: boolean | undefined;
|
|
3500
3501
|
alt_text?: string | undefined;
|
|
3501
|
-
image_url?: string | undefined;
|
|
3502
3502
|
}, {
|
|
3503
3503
|
type: "image" | "plain_text" | "mrkdwn";
|
|
3504
3504
|
emoji?: boolean | undefined;
|
|
3505
3505
|
text?: string | undefined;
|
|
3506
|
+
image_url?: string | undefined;
|
|
3506
3507
|
verbatim?: boolean | undefined;
|
|
3507
3508
|
alt_text?: string | undefined;
|
|
3508
|
-
image_url?: string | undefined;
|
|
3509
3509
|
}>, "many">>;
|
|
3510
3510
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
3511
3511
|
type: z.ZodString;
|
|
@@ -3536,16 +3536,16 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3536
3536
|
type: "image" | "plain_text" | "mrkdwn";
|
|
3537
3537
|
emoji?: boolean | undefined;
|
|
3538
3538
|
text?: string | undefined;
|
|
3539
|
+
image_url?: string | undefined;
|
|
3539
3540
|
verbatim?: boolean | undefined;
|
|
3540
3541
|
alt_text?: string | undefined;
|
|
3541
|
-
image_url?: string | undefined;
|
|
3542
3542
|
}, {
|
|
3543
3543
|
type: "image" | "plain_text" | "mrkdwn";
|
|
3544
3544
|
emoji?: boolean | undefined;
|
|
3545
3545
|
text?: string | undefined;
|
|
3546
|
+
image_url?: string | undefined;
|
|
3546
3547
|
verbatim?: boolean | undefined;
|
|
3547
3548
|
alt_text?: string | undefined;
|
|
3548
|
-
image_url?: string | undefined;
|
|
3549
3549
|
}>, "many">>;
|
|
3550
3550
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
3551
3551
|
type: z.ZodString;
|
|
@@ -3576,16 +3576,16 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3576
3576
|
type: "image" | "plain_text" | "mrkdwn";
|
|
3577
3577
|
emoji?: boolean | undefined;
|
|
3578
3578
|
text?: string | undefined;
|
|
3579
|
+
image_url?: string | undefined;
|
|
3579
3580
|
verbatim?: boolean | undefined;
|
|
3580
3581
|
alt_text?: string | undefined;
|
|
3581
|
-
image_url?: string | undefined;
|
|
3582
3582
|
}, {
|
|
3583
3583
|
type: "image" | "plain_text" | "mrkdwn";
|
|
3584
3584
|
emoji?: boolean | undefined;
|
|
3585
3585
|
text?: string | undefined;
|
|
3586
|
+
image_url?: string | undefined;
|
|
3586
3587
|
verbatim?: boolean | undefined;
|
|
3587
3588
|
alt_text?: string | undefined;
|
|
3588
|
-
image_url?: string | undefined;
|
|
3589
3589
|
}>, "many">>;
|
|
3590
3590
|
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
3591
3591
|
thread_ts: z.ZodOptional<z.ZodString>;
|
|
@@ -3601,6 +3601,29 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3601
3601
|
unfurl_links: boolean;
|
|
3602
3602
|
unfurl_media: boolean;
|
|
3603
3603
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
3604
|
+
username?: string | undefined;
|
|
3605
|
+
icon_emoji?: string | undefined;
|
|
3606
|
+
icon_url?: string | undefined;
|
|
3607
|
+
attachments?: {
|
|
3608
|
+
title?: string | undefined;
|
|
3609
|
+
text?: string | undefined;
|
|
3610
|
+
image_url?: string | undefined;
|
|
3611
|
+
fields?: {
|
|
3612
|
+
value: string;
|
|
3613
|
+
title: string;
|
|
3614
|
+
short?: boolean | undefined;
|
|
3615
|
+
}[] | undefined;
|
|
3616
|
+
color?: string | undefined;
|
|
3617
|
+
pretext?: string | undefined;
|
|
3618
|
+
author_name?: string | undefined;
|
|
3619
|
+
author_link?: string | undefined;
|
|
3620
|
+
author_icon?: string | undefined;
|
|
3621
|
+
title_link?: string | undefined;
|
|
3622
|
+
thumb_url?: string | undefined;
|
|
3623
|
+
footer?: string | undefined;
|
|
3624
|
+
footer_icon?: string | undefined;
|
|
3625
|
+
ts?: number | undefined;
|
|
3626
|
+
}[] | undefined;
|
|
3604
3627
|
blocks?: z.objectOutputType<{
|
|
3605
3628
|
type: z.ZodString;
|
|
3606
3629
|
text: z.ZodOptional<z.ZodObject<{
|
|
@@ -3630,30 +3653,36 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3630
3653
|
type: "image" | "plain_text" | "mrkdwn";
|
|
3631
3654
|
emoji?: boolean | undefined;
|
|
3632
3655
|
text?: string | undefined;
|
|
3656
|
+
image_url?: string | undefined;
|
|
3633
3657
|
verbatim?: boolean | undefined;
|
|
3634
3658
|
alt_text?: string | undefined;
|
|
3635
|
-
image_url?: string | undefined;
|
|
3636
3659
|
}, {
|
|
3637
3660
|
type: "image" | "plain_text" | "mrkdwn";
|
|
3638
3661
|
emoji?: boolean | undefined;
|
|
3639
3662
|
text?: string | undefined;
|
|
3663
|
+
image_url?: string | undefined;
|
|
3640
3664
|
verbatim?: boolean | undefined;
|
|
3641
3665
|
alt_text?: string | undefined;
|
|
3642
|
-
image_url?: string | undefined;
|
|
3643
3666
|
}>, "many">>;
|
|
3644
3667
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
3668
|
+
thread_ts?: string | undefined;
|
|
3669
|
+
}, {
|
|
3670
|
+
text: string;
|
|
3671
|
+
operation: "send_message";
|
|
3672
|
+
channel: string;
|
|
3673
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
3645
3674
|
username?: string | undefined;
|
|
3646
3675
|
icon_emoji?: string | undefined;
|
|
3647
3676
|
icon_url?: string | undefined;
|
|
3648
3677
|
attachments?: {
|
|
3649
3678
|
title?: string | undefined;
|
|
3650
3679
|
text?: string | undefined;
|
|
3680
|
+
image_url?: string | undefined;
|
|
3651
3681
|
fields?: {
|
|
3652
3682
|
value: string;
|
|
3653
3683
|
title: string;
|
|
3654
3684
|
short?: boolean | undefined;
|
|
3655
3685
|
}[] | undefined;
|
|
3656
|
-
image_url?: string | undefined;
|
|
3657
3686
|
color?: string | undefined;
|
|
3658
3687
|
pretext?: string | undefined;
|
|
3659
3688
|
author_name?: string | undefined;
|
|
@@ -3665,12 +3694,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3665
3694
|
footer_icon?: string | undefined;
|
|
3666
3695
|
ts?: number | undefined;
|
|
3667
3696
|
}[] | undefined;
|
|
3668
|
-
thread_ts?: string | undefined;
|
|
3669
|
-
}, {
|
|
3670
|
-
text: string;
|
|
3671
|
-
operation: "send_message";
|
|
3672
|
-
channel: string;
|
|
3673
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
3674
3697
|
blocks?: z.objectInputType<{
|
|
3675
3698
|
type: z.ZodString;
|
|
3676
3699
|
text: z.ZodOptional<z.ZodObject<{
|
|
@@ -3700,41 +3723,18 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3700
3723
|
type: "image" | "plain_text" | "mrkdwn";
|
|
3701
3724
|
emoji?: boolean | undefined;
|
|
3702
3725
|
text?: string | undefined;
|
|
3726
|
+
image_url?: string | undefined;
|
|
3703
3727
|
verbatim?: boolean | undefined;
|
|
3704
3728
|
alt_text?: string | undefined;
|
|
3705
|
-
image_url?: string | undefined;
|
|
3706
3729
|
}, {
|
|
3707
3730
|
type: "image" | "plain_text" | "mrkdwn";
|
|
3708
3731
|
emoji?: boolean | undefined;
|
|
3709
3732
|
text?: string | undefined;
|
|
3733
|
+
image_url?: string | undefined;
|
|
3710
3734
|
verbatim?: boolean | undefined;
|
|
3711
3735
|
alt_text?: string | undefined;
|
|
3712
|
-
image_url?: string | undefined;
|
|
3713
3736
|
}>, "many">>;
|
|
3714
3737
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
3715
|
-
username?: string | undefined;
|
|
3716
|
-
icon_emoji?: string | undefined;
|
|
3717
|
-
icon_url?: string | undefined;
|
|
3718
|
-
attachments?: {
|
|
3719
|
-
title?: string | undefined;
|
|
3720
|
-
text?: string | undefined;
|
|
3721
|
-
fields?: {
|
|
3722
|
-
value: string;
|
|
3723
|
-
title: string;
|
|
3724
|
-
short?: boolean | undefined;
|
|
3725
|
-
}[] | undefined;
|
|
3726
|
-
image_url?: string | undefined;
|
|
3727
|
-
color?: string | undefined;
|
|
3728
|
-
pretext?: string | undefined;
|
|
3729
|
-
author_name?: string | undefined;
|
|
3730
|
-
author_link?: string | undefined;
|
|
3731
|
-
author_icon?: string | undefined;
|
|
3732
|
-
title_link?: string | undefined;
|
|
3733
|
-
thumb_url?: string | undefined;
|
|
3734
|
-
footer?: string | undefined;
|
|
3735
|
-
footer_icon?: string | undefined;
|
|
3736
|
-
ts?: number | undefined;
|
|
3737
|
-
}[] | undefined;
|
|
3738
3738
|
thread_ts?: string | undefined;
|
|
3739
3739
|
reply_broadcast?: boolean | undefined;
|
|
3740
3740
|
unfurl_links?: boolean | undefined;
|
|
@@ -3900,12 +3900,12 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3900
3900
|
}, "strip", z.ZodTypeAny, {
|
|
3901
3901
|
title?: string | undefined;
|
|
3902
3902
|
text?: string | undefined;
|
|
3903
|
+
image_url?: string | undefined;
|
|
3903
3904
|
fields?: {
|
|
3904
3905
|
value: string;
|
|
3905
3906
|
title: string;
|
|
3906
3907
|
short?: boolean | undefined;
|
|
3907
3908
|
}[] | undefined;
|
|
3908
|
-
image_url?: string | undefined;
|
|
3909
3909
|
color?: string | undefined;
|
|
3910
3910
|
pretext?: string | undefined;
|
|
3911
3911
|
author_name?: string | undefined;
|
|
@@ -3919,12 +3919,12 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3919
3919
|
}, {
|
|
3920
3920
|
title?: string | undefined;
|
|
3921
3921
|
text?: string | undefined;
|
|
3922
|
+
image_url?: string | undefined;
|
|
3922
3923
|
fields?: {
|
|
3923
3924
|
value: string;
|
|
3924
3925
|
title: string;
|
|
3925
3926
|
short?: boolean | undefined;
|
|
3926
3927
|
}[] | undefined;
|
|
3927
|
-
image_url?: string | undefined;
|
|
3928
3928
|
color?: string | undefined;
|
|
3929
3929
|
pretext?: string | undefined;
|
|
3930
3930
|
author_name?: string | undefined;
|
|
@@ -3965,16 +3965,16 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
3965
3965
|
type: "image" | "plain_text" | "mrkdwn";
|
|
3966
3966
|
emoji?: boolean | undefined;
|
|
3967
3967
|
text?: string | undefined;
|
|
3968
|
+
image_url?: string | undefined;
|
|
3968
3969
|
verbatim?: boolean | undefined;
|
|
3969
3970
|
alt_text?: string | undefined;
|
|
3970
|
-
image_url?: string | undefined;
|
|
3971
3971
|
}, {
|
|
3972
3972
|
type: "image" | "plain_text" | "mrkdwn";
|
|
3973
3973
|
emoji?: boolean | undefined;
|
|
3974
3974
|
text?: string | undefined;
|
|
3975
|
+
image_url?: string | undefined;
|
|
3975
3976
|
verbatim?: boolean | undefined;
|
|
3976
3977
|
alt_text?: string | undefined;
|
|
3977
|
-
image_url?: string | undefined;
|
|
3978
3978
|
}>, "many">>;
|
|
3979
3979
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
3980
3980
|
type: z.ZodString;
|
|
@@ -4005,16 +4005,16 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4005
4005
|
type: "image" | "plain_text" | "mrkdwn";
|
|
4006
4006
|
emoji?: boolean | undefined;
|
|
4007
4007
|
text?: string | undefined;
|
|
4008
|
+
image_url?: string | undefined;
|
|
4008
4009
|
verbatim?: boolean | undefined;
|
|
4009
4010
|
alt_text?: string | undefined;
|
|
4010
|
-
image_url?: string | undefined;
|
|
4011
4011
|
}, {
|
|
4012
4012
|
type: "image" | "plain_text" | "mrkdwn";
|
|
4013
4013
|
emoji?: boolean | undefined;
|
|
4014
4014
|
text?: string | undefined;
|
|
4015
|
+
image_url?: string | undefined;
|
|
4015
4016
|
verbatim?: boolean | undefined;
|
|
4016
4017
|
alt_text?: string | undefined;
|
|
4017
|
-
image_url?: string | undefined;
|
|
4018
4018
|
}>, "many">>;
|
|
4019
4019
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
4020
4020
|
type: z.ZodString;
|
|
@@ -4045,16 +4045,16 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4045
4045
|
type: "image" | "plain_text" | "mrkdwn";
|
|
4046
4046
|
emoji?: boolean | undefined;
|
|
4047
4047
|
text?: string | undefined;
|
|
4048
|
+
image_url?: string | undefined;
|
|
4048
4049
|
verbatim?: boolean | undefined;
|
|
4049
4050
|
alt_text?: string | undefined;
|
|
4050
|
-
image_url?: string | undefined;
|
|
4051
4051
|
}, {
|
|
4052
4052
|
type: "image" | "plain_text" | "mrkdwn";
|
|
4053
4053
|
emoji?: boolean | undefined;
|
|
4054
4054
|
text?: string | undefined;
|
|
4055
|
+
image_url?: string | undefined;
|
|
4055
4056
|
verbatim?: boolean | undefined;
|
|
4056
4057
|
alt_text?: string | undefined;
|
|
4057
|
-
image_url?: string | undefined;
|
|
4058
4058
|
}>, "many">>;
|
|
4059
4059
|
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
4060
4060
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
@@ -4064,6 +4064,26 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4064
4064
|
channel: string;
|
|
4065
4065
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4066
4066
|
text?: string | undefined;
|
|
4067
|
+
attachments?: {
|
|
4068
|
+
title?: string | undefined;
|
|
4069
|
+
text?: string | undefined;
|
|
4070
|
+
image_url?: string | undefined;
|
|
4071
|
+
fields?: {
|
|
4072
|
+
value: string;
|
|
4073
|
+
title: string;
|
|
4074
|
+
short?: boolean | undefined;
|
|
4075
|
+
}[] | undefined;
|
|
4076
|
+
color?: string | undefined;
|
|
4077
|
+
pretext?: string | undefined;
|
|
4078
|
+
author_name?: string | undefined;
|
|
4079
|
+
author_link?: string | undefined;
|
|
4080
|
+
author_icon?: string | undefined;
|
|
4081
|
+
title_link?: string | undefined;
|
|
4082
|
+
thumb_url?: string | undefined;
|
|
4083
|
+
footer?: string | undefined;
|
|
4084
|
+
footer_icon?: string | undefined;
|
|
4085
|
+
ts?: number | undefined;
|
|
4086
|
+
}[] | undefined;
|
|
4067
4087
|
blocks?: z.objectOutputType<{
|
|
4068
4088
|
type: z.ZodString;
|
|
4069
4089
|
text: z.ZodOptional<z.ZodObject<{
|
|
@@ -4093,27 +4113,33 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4093
4113
|
type: "image" | "plain_text" | "mrkdwn";
|
|
4094
4114
|
emoji?: boolean | undefined;
|
|
4095
4115
|
text?: string | undefined;
|
|
4116
|
+
image_url?: string | undefined;
|
|
4096
4117
|
verbatim?: boolean | undefined;
|
|
4097
4118
|
alt_text?: string | undefined;
|
|
4098
|
-
image_url?: string | undefined;
|
|
4099
4119
|
}, {
|
|
4100
4120
|
type: "image" | "plain_text" | "mrkdwn";
|
|
4101
4121
|
emoji?: boolean | undefined;
|
|
4102
4122
|
text?: string | undefined;
|
|
4123
|
+
image_url?: string | undefined;
|
|
4103
4124
|
verbatim?: boolean | undefined;
|
|
4104
4125
|
alt_text?: string | undefined;
|
|
4105
|
-
image_url?: string | undefined;
|
|
4106
4126
|
}>, "many">>;
|
|
4107
4127
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
4128
|
+
}, {
|
|
4129
|
+
ts: string;
|
|
4130
|
+
operation: "update_message";
|
|
4131
|
+
channel: string;
|
|
4132
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4133
|
+
text?: string | undefined;
|
|
4108
4134
|
attachments?: {
|
|
4109
4135
|
title?: string | undefined;
|
|
4110
4136
|
text?: string | undefined;
|
|
4137
|
+
image_url?: string | undefined;
|
|
4111
4138
|
fields?: {
|
|
4112
4139
|
value: string;
|
|
4113
4140
|
title: string;
|
|
4114
4141
|
short?: boolean | undefined;
|
|
4115
4142
|
}[] | undefined;
|
|
4116
|
-
image_url?: string | undefined;
|
|
4117
4143
|
color?: string | undefined;
|
|
4118
4144
|
pretext?: string | undefined;
|
|
4119
4145
|
author_name?: string | undefined;
|
|
@@ -4125,12 +4151,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4125
4151
|
footer_icon?: string | undefined;
|
|
4126
4152
|
ts?: number | undefined;
|
|
4127
4153
|
}[] | undefined;
|
|
4128
|
-
}, {
|
|
4129
|
-
ts: string;
|
|
4130
|
-
operation: "update_message";
|
|
4131
|
-
channel: string;
|
|
4132
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4133
|
-
text?: string | undefined;
|
|
4134
4154
|
blocks?: z.objectInputType<{
|
|
4135
4155
|
type: z.ZodString;
|
|
4136
4156
|
text: z.ZodOptional<z.ZodObject<{
|
|
@@ -4160,38 +4180,18 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4160
4180
|
type: "image" | "plain_text" | "mrkdwn";
|
|
4161
4181
|
emoji?: boolean | undefined;
|
|
4162
4182
|
text?: string | undefined;
|
|
4183
|
+
image_url?: string | undefined;
|
|
4163
4184
|
verbatim?: boolean | undefined;
|
|
4164
4185
|
alt_text?: string | undefined;
|
|
4165
|
-
image_url?: string | undefined;
|
|
4166
4186
|
}, {
|
|
4167
4187
|
type: "image" | "plain_text" | "mrkdwn";
|
|
4168
4188
|
emoji?: boolean | undefined;
|
|
4169
4189
|
text?: string | undefined;
|
|
4190
|
+
image_url?: string | undefined;
|
|
4170
4191
|
verbatim?: boolean | undefined;
|
|
4171
4192
|
alt_text?: string | undefined;
|
|
4172
|
-
image_url?: string | undefined;
|
|
4173
4193
|
}>, "many">>;
|
|
4174
4194
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
4175
|
-
attachments?: {
|
|
4176
|
-
title?: string | undefined;
|
|
4177
|
-
text?: string | undefined;
|
|
4178
|
-
fields?: {
|
|
4179
|
-
value: string;
|
|
4180
|
-
title: string;
|
|
4181
|
-
short?: boolean | undefined;
|
|
4182
|
-
}[] | undefined;
|
|
4183
|
-
image_url?: string | undefined;
|
|
4184
|
-
color?: string | undefined;
|
|
4185
|
-
pretext?: string | undefined;
|
|
4186
|
-
author_name?: string | undefined;
|
|
4187
|
-
author_link?: string | undefined;
|
|
4188
|
-
author_icon?: string | undefined;
|
|
4189
|
-
title_link?: string | undefined;
|
|
4190
|
-
thumb_url?: string | undefined;
|
|
4191
|
-
footer?: string | undefined;
|
|
4192
|
-
footer_icon?: string | undefined;
|
|
4193
|
-
ts?: number | undefined;
|
|
4194
|
-
}[] | undefined;
|
|
4195
4195
|
}>, z.ZodObject<{
|
|
4196
4196
|
operation: z.ZodLiteral<"delete_message">;
|
|
4197
4197
|
channel: z.ZodString;
|
|
@@ -4317,16 +4317,16 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4317
4317
|
type: "image" | "plain_text" | "mrkdwn";
|
|
4318
4318
|
emoji?: boolean | undefined;
|
|
4319
4319
|
text?: string | undefined;
|
|
4320
|
+
image_url?: string | undefined;
|
|
4320
4321
|
verbatim?: boolean | undefined;
|
|
4321
4322
|
alt_text?: string | undefined;
|
|
4322
|
-
image_url?: string | undefined;
|
|
4323
4323
|
}, {
|
|
4324
4324
|
type: "image" | "plain_text" | "mrkdwn";
|
|
4325
4325
|
emoji?: boolean | undefined;
|
|
4326
4326
|
text?: string | undefined;
|
|
4327
|
+
image_url?: string | undefined;
|
|
4327
4328
|
verbatim?: boolean | undefined;
|
|
4328
4329
|
alt_text?: string | undefined;
|
|
4329
|
-
image_url?: string | undefined;
|
|
4330
4330
|
}>, "many">>;
|
|
4331
4331
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
4332
4332
|
type: z.ZodString;
|
|
@@ -4357,16 +4357,16 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4357
4357
|
type: "image" | "plain_text" | "mrkdwn";
|
|
4358
4358
|
emoji?: boolean | undefined;
|
|
4359
4359
|
text?: string | undefined;
|
|
4360
|
+
image_url?: string | undefined;
|
|
4360
4361
|
verbatim?: boolean | undefined;
|
|
4361
4362
|
alt_text?: string | undefined;
|
|
4362
|
-
image_url?: string | undefined;
|
|
4363
4363
|
}, {
|
|
4364
4364
|
type: "image" | "plain_text" | "mrkdwn";
|
|
4365
4365
|
emoji?: boolean | undefined;
|
|
4366
4366
|
text?: string | undefined;
|
|
4367
|
+
image_url?: string | undefined;
|
|
4367
4368
|
verbatim?: boolean | undefined;
|
|
4368
4369
|
alt_text?: string | undefined;
|
|
4369
|
-
image_url?: string | undefined;
|
|
4370
4370
|
}>, "many">>;
|
|
4371
4371
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
4372
4372
|
type: z.ZodString;
|
|
@@ -4397,16 +4397,16 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4397
4397
|
type: "image" | "plain_text" | "mrkdwn";
|
|
4398
4398
|
emoji?: boolean | undefined;
|
|
4399
4399
|
text?: string | undefined;
|
|
4400
|
+
image_url?: string | undefined;
|
|
4400
4401
|
verbatim?: boolean | undefined;
|
|
4401
4402
|
alt_text?: string | undefined;
|
|
4402
|
-
image_url?: string | undefined;
|
|
4403
4403
|
}, {
|
|
4404
4404
|
type: "image" | "plain_text" | "mrkdwn";
|
|
4405
4405
|
emoji?: boolean | undefined;
|
|
4406
4406
|
text?: string | undefined;
|
|
4407
|
+
image_url?: string | undefined;
|
|
4407
4408
|
verbatim?: boolean | undefined;
|
|
4408
4409
|
alt_text?: string | undefined;
|
|
4409
|
-
image_url?: string | undefined;
|
|
4410
4410
|
}>, "many">>;
|
|
4411
4411
|
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
4412
4412
|
unfurl_links: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
@@ -4449,16 +4449,16 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4449
4449
|
type: "image" | "plain_text" | "mrkdwn";
|
|
4450
4450
|
emoji?: boolean | undefined;
|
|
4451
4451
|
text?: string | undefined;
|
|
4452
|
+
image_url?: string | undefined;
|
|
4452
4453
|
verbatim?: boolean | undefined;
|
|
4453
4454
|
alt_text?: string | undefined;
|
|
4454
|
-
image_url?: string | undefined;
|
|
4455
4455
|
}, {
|
|
4456
4456
|
type: "image" | "plain_text" | "mrkdwn";
|
|
4457
4457
|
emoji?: boolean | undefined;
|
|
4458
4458
|
text?: string | undefined;
|
|
4459
|
+
image_url?: string | undefined;
|
|
4459
4460
|
verbatim?: boolean | undefined;
|
|
4460
4461
|
alt_text?: string | undefined;
|
|
4461
|
-
image_url?: string | undefined;
|
|
4462
4462
|
}>, "many">>;
|
|
4463
4463
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
4464
4464
|
thread_ts?: string | undefined;
|
|
@@ -4497,16 +4497,16 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4497
4497
|
type: "image" | "plain_text" | "mrkdwn";
|
|
4498
4498
|
emoji?: boolean | undefined;
|
|
4499
4499
|
text?: string | undefined;
|
|
4500
|
+
image_url?: string | undefined;
|
|
4500
4501
|
verbatim?: boolean | undefined;
|
|
4501
4502
|
alt_text?: string | undefined;
|
|
4502
|
-
image_url?: string | undefined;
|
|
4503
4503
|
}, {
|
|
4504
4504
|
type: "image" | "plain_text" | "mrkdwn";
|
|
4505
4505
|
emoji?: boolean | undefined;
|
|
4506
4506
|
text?: string | undefined;
|
|
4507
|
+
image_url?: string | undefined;
|
|
4507
4508
|
verbatim?: boolean | undefined;
|
|
4508
4509
|
alt_text?: string | undefined;
|
|
4509
|
-
image_url?: string | undefined;
|
|
4510
4510
|
}>, "many">>;
|
|
4511
4511
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
4512
4512
|
thread_ts?: string | undefined;
|
|
@@ -4557,12 +4557,12 @@ 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
|
-
blocks?: unknown[] | undefined;
|
|
4562
4560
|
user?: string | undefined;
|
|
4561
|
+
text?: string | undefined;
|
|
4563
4562
|
ts?: string | undefined;
|
|
4564
4563
|
username?: string | undefined;
|
|
4565
4564
|
attachments?: unknown[] | undefined;
|
|
4565
|
+
blocks?: unknown[] | undefined;
|
|
4566
4566
|
thread_ts?: string | undefined;
|
|
4567
4567
|
bot_id?: string | undefined;
|
|
4568
4568
|
bot_profile?: {
|
|
@@ -4582,12 +4582,12 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
4582
4582
|
}[] | undefined;
|
|
4583
4583
|
}, {
|
|
4584
4584
|
type: string;
|
|
4585
|
-
text?: string | undefined;
|
|
4586
|
-
blocks?: unknown[] | undefined;
|
|
4587
4585
|
user?: string | undefined;
|
|
4586
|
+
text?: string | undefined;
|
|
4588
4587
|
ts?: string | undefined;
|
|
4589
4588
|
username?: string | undefined;
|
|
4590
4589
|
attachments?: unknown[] | undefined;
|
|
4590
|
+
blocks?: unknown[] | undefined;
|
|
4591
4591
|
thread_ts?: string | undefined;
|
|
4592
4592
|
bot_id?: string | undefined;
|
|
4593
4593
|
bot_profile?: {
|
|
@@ -4615,12 +4615,12 @@ 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
|
-
blocks?: unknown[] | undefined;
|
|
4620
4618
|
user?: string | undefined;
|
|
4619
|
+
text?: string | undefined;
|
|
4621
4620
|
ts?: string | undefined;
|
|
4622
4621
|
username?: string | undefined;
|
|
4623
4622
|
attachments?: unknown[] | undefined;
|
|
4623
|
+
blocks?: unknown[] | undefined;
|
|
4624
4624
|
thread_ts?: string | undefined;
|
|
4625
4625
|
bot_id?: string | undefined;
|
|
4626
4626
|
bot_profile?: {
|
|
@@ -4648,12 +4648,12 @@ 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
|
-
blocks?: unknown[] | undefined;
|
|
4653
4651
|
user?: string | undefined;
|
|
4652
|
+
text?: string | undefined;
|
|
4654
4653
|
ts?: string | undefined;
|
|
4655
4654
|
username?: string | undefined;
|
|
4656
4655
|
attachments?: unknown[] | undefined;
|
|
4656
|
+
blocks?: unknown[] | undefined;
|
|
4657
4657
|
thread_ts?: string | undefined;
|
|
4658
4658
|
bot_id?: string | undefined;
|
|
4659
4659
|
bot_profile?: {
|
|
@@ -5726,12 +5726,12 @@ 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
|
-
blocks?: unknown[] | undefined;
|
|
5731
5729
|
user?: string | undefined;
|
|
5730
|
+
text?: string | undefined;
|
|
5732
5731
|
ts?: string | undefined;
|
|
5733
5732
|
username?: string | undefined;
|
|
5734
5733
|
attachments?: unknown[] | undefined;
|
|
5734
|
+
blocks?: unknown[] | undefined;
|
|
5735
5735
|
thread_ts?: string | undefined;
|
|
5736
5736
|
bot_id?: string | undefined;
|
|
5737
5737
|
bot_profile?: {
|
|
@@ -5751,12 +5751,12 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5751
5751
|
}[] | undefined;
|
|
5752
5752
|
}, {
|
|
5753
5753
|
type: string;
|
|
5754
|
-
text?: string | undefined;
|
|
5755
|
-
blocks?: unknown[] | undefined;
|
|
5756
5754
|
user?: string | undefined;
|
|
5755
|
+
text?: string | undefined;
|
|
5757
5756
|
ts?: string | undefined;
|
|
5758
5757
|
username?: string | undefined;
|
|
5759
5758
|
attachments?: unknown[] | undefined;
|
|
5759
|
+
blocks?: unknown[] | undefined;
|
|
5760
5760
|
thread_ts?: string | undefined;
|
|
5761
5761
|
bot_id?: string | undefined;
|
|
5762
5762
|
bot_profile?: {
|
|
@@ -5790,14 +5790,17 @@ 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
|
-
blocks?: unknown[] | undefined;
|
|
5797
5798
|
user?: string | undefined;
|
|
5799
|
+
text?: string | undefined;
|
|
5798
5800
|
ts?: string | undefined;
|
|
5799
5801
|
username?: string | undefined;
|
|
5800
5802
|
attachments?: unknown[] | undefined;
|
|
5803
|
+
blocks?: unknown[] | undefined;
|
|
5801
5804
|
thread_ts?: string | undefined;
|
|
5802
5805
|
bot_id?: string | undefined;
|
|
5803
5806
|
bot_profile?: {
|
|
@@ -5816,23 +5819,23 @@ 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
|
-
blocks?: unknown[] | undefined;
|
|
5832
5833
|
user?: string | undefined;
|
|
5834
|
+
text?: string | undefined;
|
|
5833
5835
|
ts?: string | undefined;
|
|
5834
5836
|
username?: string | undefined;
|
|
5835
5837
|
attachments?: unknown[] | undefined;
|
|
5838
|
+
blocks?: unknown[] | undefined;
|
|
5836
5839
|
thread_ts?: string | undefined;
|
|
5837
5840
|
bot_id?: string | undefined;
|
|
5838
5841
|
bot_profile?: {
|
|
@@ -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,12 +5897,12 @@ 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
|
-
blocks?: unknown[] | undefined;
|
|
5902
5900
|
user?: string | undefined;
|
|
5901
|
+
text?: string | undefined;
|
|
5903
5902
|
ts?: string | undefined;
|
|
5904
5903
|
username?: string | undefined;
|
|
5905
5904
|
attachments?: unknown[] | undefined;
|
|
5905
|
+
blocks?: unknown[] | undefined;
|
|
5906
5906
|
thread_ts?: string | undefined;
|
|
5907
5907
|
bot_id?: string | undefined;
|
|
5908
5908
|
bot_profile?: {
|
|
@@ -5922,12 +5922,12 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
5922
5922
|
}[] | undefined;
|
|
5923
5923
|
}, {
|
|
5924
5924
|
type: string;
|
|
5925
|
-
text?: string | undefined;
|
|
5926
|
-
blocks?: unknown[] | undefined;
|
|
5927
5925
|
user?: string | undefined;
|
|
5926
|
+
text?: string | undefined;
|
|
5928
5927
|
ts?: string | undefined;
|
|
5929
5928
|
username?: string | undefined;
|
|
5930
5929
|
attachments?: unknown[] | undefined;
|
|
5930
|
+
blocks?: unknown[] | undefined;
|
|
5931
5931
|
thread_ts?: string | undefined;
|
|
5932
5932
|
bot_id?: string | undefined;
|
|
5933
5933
|
bot_profile?: {
|
|
@@ -5961,14 +5961,17 @@ 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
|
-
blocks?: unknown[] | undefined;
|
|
5968
5969
|
user?: string | undefined;
|
|
5970
|
+
text?: string | undefined;
|
|
5969
5971
|
ts?: string | undefined;
|
|
5970
5972
|
username?: string | undefined;
|
|
5971
5973
|
attachments?: unknown[] | undefined;
|
|
5974
|
+
blocks?: unknown[] | undefined;
|
|
5972
5975
|
thread_ts?: string | undefined;
|
|
5973
5976
|
bot_id?: string | undefined;
|
|
5974
5977
|
bot_profile?: {
|
|
@@ -5987,23 +5990,23 @@ 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
|
-
blocks?: unknown[] | undefined;
|
|
6003
6004
|
user?: string | undefined;
|
|
6005
|
+
text?: string | undefined;
|
|
6004
6006
|
ts?: string | undefined;
|
|
6005
6007
|
username?: string | undefined;
|
|
6006
6008
|
attachments?: unknown[] | undefined;
|
|
6009
|
+
blocks?: unknown[] | undefined;
|
|
6007
6010
|
thread_ts?: string | undefined;
|
|
6008
6011
|
bot_id?: string | undefined;
|
|
6009
6012
|
bot_profile?: {
|
|
@@ -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,12 +6071,12 @@ 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
|
-
blocks?: unknown[] | undefined;
|
|
6076
6074
|
user?: string | undefined;
|
|
6075
|
+
text?: string | undefined;
|
|
6077
6076
|
ts?: string | undefined;
|
|
6078
6077
|
username?: string | undefined;
|
|
6079
6078
|
attachments?: unknown[] | undefined;
|
|
6079
|
+
blocks?: unknown[] | undefined;
|
|
6080
6080
|
thread_ts?: string | undefined;
|
|
6081
6081
|
bot_id?: string | undefined;
|
|
6082
6082
|
bot_profile?: {
|
|
@@ -6096,12 +6096,12 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6096
6096
|
}[] | undefined;
|
|
6097
6097
|
}, {
|
|
6098
6098
|
type: string;
|
|
6099
|
-
text?: string | undefined;
|
|
6100
|
-
blocks?: unknown[] | undefined;
|
|
6101
6099
|
user?: string | undefined;
|
|
6100
|
+
text?: string | undefined;
|
|
6102
6101
|
ts?: string | undefined;
|
|
6103
6102
|
username?: string | undefined;
|
|
6104
6103
|
attachments?: unknown[] | undefined;
|
|
6104
|
+
blocks?: unknown[] | undefined;
|
|
6105
6105
|
thread_ts?: string | undefined;
|
|
6106
6106
|
bot_id?: string | undefined;
|
|
6107
6107
|
bot_profile?: {
|
|
@@ -6129,12 +6129,12 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6129
6129
|
ok: boolean;
|
|
6130
6130
|
message?: {
|
|
6131
6131
|
type: string;
|
|
6132
|
-
text?: string | undefined;
|
|
6133
|
-
blocks?: unknown[] | 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;
|
|
6137
|
+
blocks?: unknown[] | undefined;
|
|
6138
6138
|
thread_ts?: string | undefined;
|
|
6139
6139
|
bot_id?: string | undefined;
|
|
6140
6140
|
bot_profile?: {
|
|
@@ -6163,12 +6163,12 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6163
6163
|
ok: boolean;
|
|
6164
6164
|
message?: {
|
|
6165
6165
|
type: string;
|
|
6166
|
-
text?: string | undefined;
|
|
6167
|
-
blocks?: unknown[] | 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;
|
|
6171
|
+
blocks?: unknown[] | undefined;
|
|
6172
6172
|
thread_ts?: string | undefined;
|
|
6173
6173
|
bot_id?: string | undefined;
|
|
6174
6174
|
bot_profile?: {
|
|
@@ -6555,9 +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
|
-
size: number;
|
|
6560
6558
|
id: string;
|
|
6559
|
+
user: string;
|
|
6561
6560
|
username: string;
|
|
6562
6561
|
timestamp: number;
|
|
6563
6562
|
created: number;
|
|
@@ -6565,6 +6564,7 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6565
6564
|
filetype: string;
|
|
6566
6565
|
pretty_type: string;
|
|
6567
6566
|
editable: boolean;
|
|
6567
|
+
size: number;
|
|
6568
6568
|
mode: string;
|
|
6569
6569
|
is_external: boolean;
|
|
6570
6570
|
external_type: string;
|
|
@@ -6600,9 +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
|
-
size: number;
|
|
6605
6603
|
id: string;
|
|
6604
|
+
user: string;
|
|
6606
6605
|
username: string;
|
|
6607
6606
|
timestamp: number;
|
|
6608
6607
|
created: number;
|
|
@@ -6610,6 +6609,7 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6610
6609
|
filetype: string;
|
|
6611
6610
|
pretty_type: string;
|
|
6612
6611
|
editable: boolean;
|
|
6612
|
+
size: number;
|
|
6613
6613
|
mode: string;
|
|
6614
6614
|
is_external: boolean;
|
|
6615
6615
|
external_type: string;
|
|
@@ -6653,9 +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
|
-
size: number;
|
|
6658
6656
|
id: string;
|
|
6657
|
+
user: string;
|
|
6659
6658
|
username: string;
|
|
6660
6659
|
timestamp: number;
|
|
6661
6660
|
created: number;
|
|
@@ -6663,6 +6662,7 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6663
6662
|
filetype: string;
|
|
6664
6663
|
pretty_type: string;
|
|
6665
6664
|
editable: boolean;
|
|
6665
|
+
size: number;
|
|
6666
6666
|
mode: string;
|
|
6667
6667
|
is_external: boolean;
|
|
6668
6668
|
external_type: string;
|
|
@@ -6704,9 +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
|
-
size: number;
|
|
6709
6707
|
id: string;
|
|
6708
|
+
user: string;
|
|
6710
6709
|
username: string;
|
|
6711
6710
|
timestamp: number;
|
|
6712
6711
|
created: number;
|
|
@@ -6714,6 +6713,7 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
|
|
|
6714
6713
|
filetype: string;
|
|
6715
6714
|
pretty_type: string;
|
|
6716
6715
|
editable: boolean;
|
|
6716
|
+
size: number;
|
|
6717
6717
|
mode: string;
|
|
6718
6718
|
is_external: boolean;
|
|
6719
6719
|
external_type: string;
|