@bubblelab/bubble-core 0.1.183 → 0.1.184

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.
Files changed (49) hide show
  1. package/dist/bubble-bundle.d.ts +63 -63
  2. package/dist/bubbles/service-bubble/agi-inc.d.ts +20 -20
  3. package/dist/bubbles/service-bubble/ai-agent.d.ts +12 -12
  4. package/dist/bubbles/service-bubble/ai-agent.d.ts.map +1 -1
  5. package/dist/bubbles/service-bubble/ai-agent.js.map +1 -1
  6. package/dist/bubbles/service-bubble/airtable.d.ts +28 -28
  7. package/dist/bubbles/service-bubble/apify/apify.d.ts +4 -4
  8. package/dist/bubbles/service-bubble/ashby/ashby.d.ts +112 -112
  9. package/dist/bubbles/service-bubble/attio/attio.d.ts +4 -4
  10. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +4 -4
  11. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +78 -78
  12. package/dist/bubbles/service-bubble/firecrawl.d.ts +180 -180
  13. package/dist/bubbles/service-bubble/github.d.ts +72 -72
  14. package/dist/bubbles/service-bubble/gmail.d.ts +68 -68
  15. package/dist/bubbles/service-bubble/google-calendar.d.ts +86 -86
  16. package/dist/bubbles/service-bubble/google-drive.d.ts +32 -32
  17. package/dist/bubbles/service-bubble/http.d.ts +8 -8
  18. package/dist/bubbles/service-bubble/jira/jira.d.ts +38 -38
  19. package/dist/bubbles/service-bubble/linear/linear.d.ts +1 -1
  20. package/dist/bubbles/service-bubble/notion/notion.d.ts +148 -148
  21. package/dist/bubbles/service-bubble/posthog/posthog.d.ts +4 -4
  22. package/dist/bubbles/service-bubble/sendsafely/sendsafely.d.ts +4 -4
  23. package/dist/bubbles/service-bubble/slack/slack.d.ts +147 -146
  24. package/dist/bubbles/service-bubble/slack/slack.d.ts.map +1 -1
  25. package/dist/bubbles/service-bubble/slack/slack.js +35 -8
  26. package/dist/bubbles/service-bubble/slack/slack.js.map +1 -1
  27. package/dist/bubbles/service-bubble/slack/slack.utils.d.ts +12 -0
  28. package/dist/bubbles/service-bubble/slack/slack.utils.d.ts.map +1 -1
  29. package/dist/bubbles/service-bubble/slack/slack.utils.js +132 -9
  30. package/dist/bubbles/service-bubble/slack/slack.utils.js.map +1 -1
  31. package/dist/bubbles/service-bubble/stripe/stripe.d.ts +15 -15
  32. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +2 -2
  33. package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +4 -4
  34. package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +10 -10
  35. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +46 -46
  36. package/dist/bubbles/tool-bubble/list-capabilities-tool.d.ts +8 -8
  37. package/dist/bubbles/tool-bubble/people-search-tool.d.ts +34 -34
  38. package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +10 -10
  39. package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
  40. package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +4 -4
  41. package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
  42. package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +8 -8
  43. package/dist/bubbles/tool-bubble/web-search-tool.d.ts +2 -2
  44. package/dist/bubbles/tool-bubble/yc-scraper-tool.d.ts +4 -4
  45. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +44 -44
  46. package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +16 -16
  47. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +40 -40
  48. package/dist/bubbles.json +1 -1
  49. package/package.json +2 -2
@@ -40,17 +40,17 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
40
40
  title?: string | undefined;
41
41
  text?: string | undefined;
42
42
  image_url?: string | undefined;
43
- fields?: {
44
- value: string;
45
- title: string;
46
- short?: boolean | undefined;
47
- }[] | undefined;
48
43
  color?: string | undefined;
49
44
  pretext?: string | undefined;
50
45
  author_name?: string | undefined;
51
46
  author_link?: string | undefined;
52
47
  author_icon?: string | undefined;
53
48
  title_link?: string | undefined;
49
+ fields?: {
50
+ value: string;
51
+ title: string;
52
+ short?: boolean | undefined;
53
+ }[] | undefined;
54
54
  thumb_url?: string | undefined;
55
55
  footer?: string | undefined;
56
56
  footer_icon?: string | undefined;
@@ -59,17 +59,17 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
59
59
  title?: string | undefined;
60
60
  text?: string | undefined;
61
61
  image_url?: string | undefined;
62
- fields?: {
63
- value: string;
64
- title: string;
65
- short?: boolean | undefined;
66
- }[] | undefined;
67
62
  color?: string | undefined;
68
63
  pretext?: string | undefined;
69
64
  author_name?: string | undefined;
70
65
  author_link?: string | undefined;
71
66
  author_icon?: string | undefined;
72
67
  title_link?: string | undefined;
68
+ fields?: {
69
+ value: string;
70
+ title: string;
71
+ short?: boolean | undefined;
72
+ }[] | undefined;
73
73
  thumb_url?: string | undefined;
74
74
  footer?: string | undefined;
75
75
  footer_icon?: string | undefined;
@@ -105,15 +105,15 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
105
105
  emoji?: boolean | undefined;
106
106
  text?: string | undefined;
107
107
  image_url?: string | undefined;
108
- verbatim?: boolean | undefined;
109
108
  alt_text?: string | undefined;
109
+ verbatim?: boolean | undefined;
110
110
  }, {
111
111
  type: "image" | "plain_text" | "mrkdwn";
112
112
  emoji?: boolean | undefined;
113
113
  text?: string | undefined;
114
114
  image_url?: string | undefined;
115
- verbatim?: boolean | undefined;
116
115
  alt_text?: string | undefined;
116
+ verbatim?: boolean | undefined;
117
117
  }>, "many">>;
118
118
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
119
119
  type: z.ZodString;
@@ -145,15 +145,15 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
145
145
  emoji?: boolean | undefined;
146
146
  text?: string | undefined;
147
147
  image_url?: string | undefined;
148
- verbatim?: boolean | undefined;
149
148
  alt_text?: string | undefined;
149
+ verbatim?: boolean | undefined;
150
150
  }, {
151
151
  type: "image" | "plain_text" | "mrkdwn";
152
152
  emoji?: boolean | undefined;
153
153
  text?: string | undefined;
154
154
  image_url?: string | undefined;
155
- verbatim?: boolean | undefined;
156
155
  alt_text?: string | undefined;
156
+ verbatim?: boolean | undefined;
157
157
  }>, "many">>;
158
158
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
159
159
  type: z.ZodString;
@@ -185,15 +185,15 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
185
185
  emoji?: boolean | undefined;
186
186
  text?: string | undefined;
187
187
  image_url?: string | undefined;
188
- verbatim?: boolean | undefined;
189
188
  alt_text?: string | undefined;
189
+ verbatim?: boolean | undefined;
190
190
  }, {
191
191
  type: "image" | "plain_text" | "mrkdwn";
192
192
  emoji?: boolean | undefined;
193
193
  text?: string | undefined;
194
194
  image_url?: string | undefined;
195
- verbatim?: boolean | undefined;
196
195
  alt_text?: string | undefined;
196
+ verbatim?: boolean | undefined;
197
197
  }>, "many">>;
198
198
  }, z.ZodTypeAny, "passthrough">>, "many">>;
199
199
  thread_ts: z.ZodOptional<z.ZodString>;
@@ -216,17 +216,17 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
216
216
  title?: string | undefined;
217
217
  text?: string | undefined;
218
218
  image_url?: string | undefined;
219
- fields?: {
220
- value: string;
221
- title: string;
222
- short?: boolean | undefined;
223
- }[] | undefined;
224
219
  color?: string | undefined;
225
220
  pretext?: string | undefined;
226
221
  author_name?: string | undefined;
227
222
  author_link?: string | undefined;
228
223
  author_icon?: string | undefined;
229
224
  title_link?: string | undefined;
225
+ fields?: {
226
+ value: string;
227
+ title: string;
228
+ short?: boolean | undefined;
229
+ }[] | undefined;
230
230
  thumb_url?: string | undefined;
231
231
  footer?: string | undefined;
232
232
  footer_icon?: string | undefined;
@@ -262,15 +262,15 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
262
262
  emoji?: boolean | undefined;
263
263
  text?: string | undefined;
264
264
  image_url?: string | undefined;
265
- verbatim?: boolean | undefined;
266
265
  alt_text?: string | undefined;
266
+ verbatim?: boolean | undefined;
267
267
  }, {
268
268
  type: "image" | "plain_text" | "mrkdwn";
269
269
  emoji?: boolean | undefined;
270
270
  text?: string | undefined;
271
271
  image_url?: string | undefined;
272
- verbatim?: boolean | undefined;
273
272
  alt_text?: string | undefined;
273
+ verbatim?: boolean | undefined;
274
274
  }>, "many">>;
275
275
  }, z.ZodTypeAny, "passthrough">[] | undefined;
276
276
  thread_ts?: string | undefined;
@@ -286,17 +286,17 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
286
286
  title?: string | undefined;
287
287
  text?: string | undefined;
288
288
  image_url?: string | undefined;
289
- fields?: {
290
- value: string;
291
- title: string;
292
- short?: boolean | undefined;
293
- }[] | undefined;
294
289
  color?: string | undefined;
295
290
  pretext?: string | undefined;
296
291
  author_name?: string | undefined;
297
292
  author_link?: string | undefined;
298
293
  author_icon?: string | undefined;
299
294
  title_link?: string | undefined;
295
+ fields?: {
296
+ value: string;
297
+ title: string;
298
+ short?: boolean | undefined;
299
+ }[] | undefined;
300
300
  thumb_url?: string | undefined;
301
301
  footer?: string | undefined;
302
302
  footer_icon?: string | undefined;
@@ -332,15 +332,15 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
332
332
  emoji?: boolean | undefined;
333
333
  text?: string | undefined;
334
334
  image_url?: string | undefined;
335
- verbatim?: boolean | undefined;
336
335
  alt_text?: string | undefined;
336
+ verbatim?: boolean | undefined;
337
337
  }, {
338
338
  type: "image" | "plain_text" | "mrkdwn";
339
339
  emoji?: boolean | undefined;
340
340
  text?: string | undefined;
341
341
  image_url?: string | undefined;
342
- verbatim?: boolean | undefined;
343
342
  alt_text?: string | undefined;
343
+ verbatim?: boolean | undefined;
344
344
  }>, "many">>;
345
345
  }, z.ZodTypeAny, "passthrough">[] | undefined;
346
346
  thread_ts?: string | undefined;
@@ -355,16 +355,16 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
355
355
  cursor: z.ZodOptional<z.ZodString>;
356
356
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
357
357
  }, "strip", z.ZodTypeAny, {
358
- types: ("public_channel" | "private_channel" | "mpim" | "im")[];
359
358
  operation: "list_channels";
359
+ types: ("public_channel" | "private_channel" | "mpim" | "im")[];
360
360
  exclude_archived: boolean;
361
361
  limit: number;
362
362
  credentials?: Partial<Record<CredentialType, string>> | undefined;
363
363
  cursor?: string | undefined;
364
364
  }, {
365
365
  operation: "list_channels";
366
- types?: ("public_channel" | "private_channel" | "mpim" | "im")[] | undefined;
367
366
  credentials?: Partial<Record<CredentialType, string>> | undefined;
367
+ types?: ("public_channel" | "private_channel" | "mpim" | "im")[] | undefined;
368
368
  exclude_archived?: boolean | undefined;
369
369
  limit?: number | undefined;
370
370
  cursor?: string | undefined;
@@ -509,17 +509,17 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
509
509
  title?: string | undefined;
510
510
  text?: string | undefined;
511
511
  image_url?: string | undefined;
512
- fields?: {
513
- value: string;
514
- title: string;
515
- short?: boolean | undefined;
516
- }[] | undefined;
517
512
  color?: string | undefined;
518
513
  pretext?: string | undefined;
519
514
  author_name?: string | undefined;
520
515
  author_link?: string | undefined;
521
516
  author_icon?: string | undefined;
522
517
  title_link?: string | undefined;
518
+ fields?: {
519
+ value: string;
520
+ title: string;
521
+ short?: boolean | undefined;
522
+ }[] | undefined;
523
523
  thumb_url?: string | undefined;
524
524
  footer?: string | undefined;
525
525
  footer_icon?: string | undefined;
@@ -528,17 +528,17 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
528
528
  title?: string | undefined;
529
529
  text?: string | undefined;
530
530
  image_url?: string | undefined;
531
- fields?: {
532
- value: string;
533
- title: string;
534
- short?: boolean | undefined;
535
- }[] | undefined;
536
531
  color?: string | undefined;
537
532
  pretext?: string | undefined;
538
533
  author_name?: string | undefined;
539
534
  author_link?: string | undefined;
540
535
  author_icon?: string | undefined;
541
536
  title_link?: string | undefined;
537
+ fields?: {
538
+ value: string;
539
+ title: string;
540
+ short?: boolean | undefined;
541
+ }[] | undefined;
542
542
  thumb_url?: string | undefined;
543
543
  footer?: string | undefined;
544
544
  footer_icon?: string | undefined;
@@ -574,15 +574,15 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
574
574
  emoji?: boolean | undefined;
575
575
  text?: string | undefined;
576
576
  image_url?: string | undefined;
577
- verbatim?: boolean | undefined;
578
577
  alt_text?: string | undefined;
578
+ verbatim?: boolean | undefined;
579
579
  }, {
580
580
  type: "image" | "plain_text" | "mrkdwn";
581
581
  emoji?: boolean | undefined;
582
582
  text?: string | undefined;
583
583
  image_url?: string | undefined;
584
- verbatim?: boolean | undefined;
585
584
  alt_text?: string | undefined;
585
+ verbatim?: boolean | undefined;
586
586
  }>, "many">>;
587
587
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
588
588
  type: z.ZodString;
@@ -614,15 +614,15 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
614
614
  emoji?: boolean | undefined;
615
615
  text?: string | undefined;
616
616
  image_url?: string | undefined;
617
- verbatim?: boolean | undefined;
618
617
  alt_text?: string | undefined;
618
+ verbatim?: boolean | undefined;
619
619
  }, {
620
620
  type: "image" | "plain_text" | "mrkdwn";
621
621
  emoji?: boolean | undefined;
622
622
  text?: string | undefined;
623
623
  image_url?: string | undefined;
624
- verbatim?: boolean | undefined;
625
624
  alt_text?: string | undefined;
625
+ verbatim?: boolean | undefined;
626
626
  }>, "many">>;
627
627
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
628
628
  type: z.ZodString;
@@ -654,15 +654,15 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
654
654
  emoji?: boolean | undefined;
655
655
  text?: string | undefined;
656
656
  image_url?: string | undefined;
657
- verbatim?: boolean | undefined;
658
657
  alt_text?: string | undefined;
658
+ verbatim?: boolean | undefined;
659
659
  }, {
660
660
  type: "image" | "plain_text" | "mrkdwn";
661
661
  emoji?: boolean | undefined;
662
662
  text?: string | undefined;
663
663
  image_url?: string | undefined;
664
- verbatim?: boolean | undefined;
665
664
  alt_text?: string | undefined;
665
+ verbatim?: boolean | undefined;
666
666
  }>, "many">>;
667
667
  }, z.ZodTypeAny, "passthrough">>, "many">>;
668
668
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
@@ -676,17 +676,17 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
676
676
  title?: string | undefined;
677
677
  text?: string | undefined;
678
678
  image_url?: string | undefined;
679
- fields?: {
680
- value: string;
681
- title: string;
682
- short?: boolean | undefined;
683
- }[] | undefined;
684
679
  color?: string | undefined;
685
680
  pretext?: string | undefined;
686
681
  author_name?: string | undefined;
687
682
  author_link?: string | undefined;
688
683
  author_icon?: string | undefined;
689
684
  title_link?: string | undefined;
685
+ fields?: {
686
+ value: string;
687
+ title: string;
688
+ short?: boolean | undefined;
689
+ }[] | undefined;
690
690
  thumb_url?: string | undefined;
691
691
  footer?: string | undefined;
692
692
  footer_icon?: string | undefined;
@@ -722,15 +722,15 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
722
722
  emoji?: boolean | undefined;
723
723
  text?: string | undefined;
724
724
  image_url?: string | undefined;
725
- verbatim?: boolean | undefined;
726
725
  alt_text?: string | undefined;
726
+ verbatim?: boolean | undefined;
727
727
  }, {
728
728
  type: "image" | "plain_text" | "mrkdwn";
729
729
  emoji?: boolean | undefined;
730
730
  text?: string | undefined;
731
731
  image_url?: string | undefined;
732
- verbatim?: boolean | undefined;
733
732
  alt_text?: string | undefined;
733
+ verbatim?: boolean | undefined;
734
734
  }>, "many">>;
735
735
  }, z.ZodTypeAny, "passthrough">[] | undefined;
736
736
  }, {
@@ -743,17 +743,17 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
743
743
  title?: string | undefined;
744
744
  text?: string | undefined;
745
745
  image_url?: string | undefined;
746
- fields?: {
747
- value: string;
748
- title: string;
749
- short?: boolean | undefined;
750
- }[] | undefined;
751
746
  color?: string | undefined;
752
747
  pretext?: string | undefined;
753
748
  author_name?: string | undefined;
754
749
  author_link?: string | undefined;
755
750
  author_icon?: string | undefined;
756
751
  title_link?: string | undefined;
752
+ fields?: {
753
+ value: string;
754
+ title: string;
755
+ short?: boolean | undefined;
756
+ }[] | undefined;
757
757
  thumb_url?: string | undefined;
758
758
  footer?: string | undefined;
759
759
  footer_icon?: string | undefined;
@@ -789,15 +789,15 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
789
789
  emoji?: boolean | undefined;
790
790
  text?: string | undefined;
791
791
  image_url?: string | undefined;
792
- verbatim?: boolean | undefined;
793
792
  alt_text?: string | undefined;
793
+ verbatim?: boolean | undefined;
794
794
  }, {
795
795
  type: "image" | "plain_text" | "mrkdwn";
796
796
  emoji?: boolean | undefined;
797
797
  text?: string | undefined;
798
798
  image_url?: string | undefined;
799
- verbatim?: boolean | undefined;
800
799
  alt_text?: string | undefined;
800
+ verbatim?: boolean | undefined;
801
801
  }>, "many">>;
802
802
  }, z.ZodTypeAny, "passthrough">[] | undefined;
803
803
  }>, z.ZodObject<{
@@ -929,15 +929,15 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
929
929
  emoji?: boolean | undefined;
930
930
  text?: string | undefined;
931
931
  image_url?: string | undefined;
932
- verbatim?: boolean | undefined;
933
932
  alt_text?: string | undefined;
933
+ verbatim?: boolean | undefined;
934
934
  }, {
935
935
  type: "image" | "plain_text" | "mrkdwn";
936
936
  emoji?: boolean | undefined;
937
937
  text?: string | undefined;
938
938
  image_url?: string | undefined;
939
- verbatim?: boolean | undefined;
940
939
  alt_text?: string | undefined;
940
+ verbatim?: boolean | undefined;
941
941
  }>, "many">>;
942
942
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
943
943
  type: z.ZodString;
@@ -969,15 +969,15 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
969
969
  emoji?: boolean | undefined;
970
970
  text?: string | undefined;
971
971
  image_url?: string | undefined;
972
- verbatim?: boolean | undefined;
973
972
  alt_text?: string | undefined;
973
+ verbatim?: boolean | undefined;
974
974
  }, {
975
975
  type: "image" | "plain_text" | "mrkdwn";
976
976
  emoji?: boolean | undefined;
977
977
  text?: string | undefined;
978
978
  image_url?: string | undefined;
979
- verbatim?: boolean | undefined;
980
979
  alt_text?: string | undefined;
980
+ verbatim?: boolean | undefined;
981
981
  }>, "many">>;
982
982
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
983
983
  type: z.ZodString;
@@ -1009,15 +1009,15 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1009
1009
  emoji?: boolean | undefined;
1010
1010
  text?: string | undefined;
1011
1011
  image_url?: string | undefined;
1012
- verbatim?: boolean | undefined;
1013
1012
  alt_text?: string | undefined;
1013
+ verbatim?: boolean | undefined;
1014
1014
  }, {
1015
1015
  type: "image" | "plain_text" | "mrkdwn";
1016
1016
  emoji?: boolean | undefined;
1017
1017
  text?: string | undefined;
1018
1018
  image_url?: string | undefined;
1019
- verbatim?: boolean | undefined;
1020
1019
  alt_text?: string | undefined;
1020
+ verbatim?: boolean | undefined;
1021
1021
  }>, "many">>;
1022
1022
  }, z.ZodTypeAny, "passthrough">>, "many">>;
1023
1023
  unfurl_links: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
@@ -1061,15 +1061,15 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1061
1061
  emoji?: boolean | undefined;
1062
1062
  text?: string | undefined;
1063
1063
  image_url?: string | undefined;
1064
- verbatim?: boolean | undefined;
1065
1064
  alt_text?: string | undefined;
1065
+ verbatim?: boolean | undefined;
1066
1066
  }, {
1067
1067
  type: "image" | "plain_text" | "mrkdwn";
1068
1068
  emoji?: boolean | undefined;
1069
1069
  text?: string | undefined;
1070
1070
  image_url?: string | undefined;
1071
- verbatim?: boolean | undefined;
1072
1071
  alt_text?: string | undefined;
1072
+ verbatim?: boolean | undefined;
1073
1073
  }>, "many">>;
1074
1074
  }, z.ZodTypeAny, "passthrough">[] | undefined;
1075
1075
  thread_ts?: string | undefined;
@@ -1109,15 +1109,15 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1109
1109
  emoji?: boolean | undefined;
1110
1110
  text?: string | undefined;
1111
1111
  image_url?: string | undefined;
1112
- verbatim?: boolean | undefined;
1113
1112
  alt_text?: string | undefined;
1113
+ verbatim?: boolean | undefined;
1114
1114
  }, {
1115
1115
  type: "image" | "plain_text" | "mrkdwn";
1116
1116
  emoji?: boolean | undefined;
1117
1117
  text?: string | undefined;
1118
1118
  image_url?: string | undefined;
1119
- verbatim?: boolean | undefined;
1120
1119
  alt_text?: string | undefined;
1120
+ verbatim?: boolean | undefined;
1121
1121
  }>, "many">>;
1122
1122
  }, z.ZodTypeAny, "passthrough">[] | undefined;
1123
1123
  thread_ts?: string | undefined;
@@ -4055,17 +4055,17 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4055
4055
  title?: string | undefined;
4056
4056
  text?: string | undefined;
4057
4057
  image_url?: string | undefined;
4058
- fields?: {
4059
- value: string;
4060
- title: string;
4061
- short?: boolean | undefined;
4062
- }[] | undefined;
4063
4058
  color?: string | undefined;
4064
4059
  pretext?: string | undefined;
4065
4060
  author_name?: string | undefined;
4066
4061
  author_link?: string | undefined;
4067
4062
  author_icon?: string | undefined;
4068
4063
  title_link?: string | undefined;
4064
+ fields?: {
4065
+ value: string;
4066
+ title: string;
4067
+ short?: boolean | undefined;
4068
+ }[] | undefined;
4069
4069
  thumb_url?: string | undefined;
4070
4070
  footer?: string | undefined;
4071
4071
  footer_icon?: string | undefined;
@@ -4074,17 +4074,17 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4074
4074
  title?: string | undefined;
4075
4075
  text?: string | undefined;
4076
4076
  image_url?: string | undefined;
4077
- fields?: {
4078
- value: string;
4079
- title: string;
4080
- short?: boolean | undefined;
4081
- }[] | undefined;
4082
4077
  color?: string | undefined;
4083
4078
  pretext?: string | undefined;
4084
4079
  author_name?: string | undefined;
4085
4080
  author_link?: string | undefined;
4086
4081
  author_icon?: string | undefined;
4087
4082
  title_link?: string | undefined;
4083
+ fields?: {
4084
+ value: string;
4085
+ title: string;
4086
+ short?: boolean | undefined;
4087
+ }[] | undefined;
4088
4088
  thumb_url?: string | undefined;
4089
4089
  footer?: string | undefined;
4090
4090
  footer_icon?: string | undefined;
@@ -4120,15 +4120,15 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4120
4120
  emoji?: boolean | undefined;
4121
4121
  text?: string | undefined;
4122
4122
  image_url?: string | undefined;
4123
- verbatim?: boolean | undefined;
4124
4123
  alt_text?: string | undefined;
4124
+ verbatim?: boolean | undefined;
4125
4125
  }, {
4126
4126
  type: "image" | "plain_text" | "mrkdwn";
4127
4127
  emoji?: boolean | undefined;
4128
4128
  text?: string | undefined;
4129
4129
  image_url?: string | undefined;
4130
- verbatim?: boolean | undefined;
4131
4130
  alt_text?: string | undefined;
4131
+ verbatim?: boolean | undefined;
4132
4132
  }>, "many">>;
4133
4133
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
4134
4134
  type: z.ZodString;
@@ -4160,15 +4160,15 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4160
4160
  emoji?: boolean | undefined;
4161
4161
  text?: string | undefined;
4162
4162
  image_url?: string | undefined;
4163
- verbatim?: boolean | undefined;
4164
4163
  alt_text?: string | undefined;
4164
+ verbatim?: boolean | undefined;
4165
4165
  }, {
4166
4166
  type: "image" | "plain_text" | "mrkdwn";
4167
4167
  emoji?: boolean | undefined;
4168
4168
  text?: string | undefined;
4169
4169
  image_url?: string | undefined;
4170
- verbatim?: boolean | undefined;
4171
4170
  alt_text?: string | undefined;
4171
+ verbatim?: boolean | undefined;
4172
4172
  }>, "many">>;
4173
4173
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
4174
4174
  type: z.ZodString;
@@ -4200,15 +4200,15 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4200
4200
  emoji?: boolean | undefined;
4201
4201
  text?: string | undefined;
4202
4202
  image_url?: string | undefined;
4203
- verbatim?: boolean | undefined;
4204
4203
  alt_text?: string | undefined;
4204
+ verbatim?: boolean | undefined;
4205
4205
  }, {
4206
4206
  type: "image" | "plain_text" | "mrkdwn";
4207
4207
  emoji?: boolean | undefined;
4208
4208
  text?: string | undefined;
4209
4209
  image_url?: string | undefined;
4210
- verbatim?: boolean | undefined;
4211
4210
  alt_text?: string | undefined;
4211
+ verbatim?: boolean | undefined;
4212
4212
  }>, "many">>;
4213
4213
  }, z.ZodTypeAny, "passthrough">>, "many">>;
4214
4214
  thread_ts: z.ZodOptional<z.ZodString>;
@@ -4231,17 +4231,17 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4231
4231
  title?: string | undefined;
4232
4232
  text?: string | undefined;
4233
4233
  image_url?: string | undefined;
4234
- fields?: {
4235
- value: string;
4236
- title: string;
4237
- short?: boolean | undefined;
4238
- }[] | undefined;
4239
4234
  color?: string | undefined;
4240
4235
  pretext?: string | undefined;
4241
4236
  author_name?: string | undefined;
4242
4237
  author_link?: string | undefined;
4243
4238
  author_icon?: string | undefined;
4244
4239
  title_link?: string | undefined;
4240
+ fields?: {
4241
+ value: string;
4242
+ title: string;
4243
+ short?: boolean | undefined;
4244
+ }[] | undefined;
4245
4245
  thumb_url?: string | undefined;
4246
4246
  footer?: string | undefined;
4247
4247
  footer_icon?: string | undefined;
@@ -4277,15 +4277,15 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4277
4277
  emoji?: boolean | undefined;
4278
4278
  text?: string | undefined;
4279
4279
  image_url?: string | undefined;
4280
- verbatim?: boolean | undefined;
4281
4280
  alt_text?: string | undefined;
4281
+ verbatim?: boolean | undefined;
4282
4282
  }, {
4283
4283
  type: "image" | "plain_text" | "mrkdwn";
4284
4284
  emoji?: boolean | undefined;
4285
4285
  text?: string | undefined;
4286
4286
  image_url?: string | undefined;
4287
- verbatim?: boolean | undefined;
4288
4287
  alt_text?: string | undefined;
4288
+ verbatim?: boolean | undefined;
4289
4289
  }>, "many">>;
4290
4290
  }, z.ZodTypeAny, "passthrough">[] | undefined;
4291
4291
  thread_ts?: string | undefined;
@@ -4301,17 +4301,17 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4301
4301
  title?: string | undefined;
4302
4302
  text?: string | undefined;
4303
4303
  image_url?: string | undefined;
4304
- fields?: {
4305
- value: string;
4306
- title: string;
4307
- short?: boolean | undefined;
4308
- }[] | undefined;
4309
4304
  color?: string | undefined;
4310
4305
  pretext?: string | undefined;
4311
4306
  author_name?: string | undefined;
4312
4307
  author_link?: string | undefined;
4313
4308
  author_icon?: string | undefined;
4314
4309
  title_link?: string | undefined;
4310
+ fields?: {
4311
+ value: string;
4312
+ title: string;
4313
+ short?: boolean | undefined;
4314
+ }[] | undefined;
4315
4315
  thumb_url?: string | undefined;
4316
4316
  footer?: string | undefined;
4317
4317
  footer_icon?: string | undefined;
@@ -4347,15 +4347,15 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4347
4347
  emoji?: boolean | undefined;
4348
4348
  text?: string | undefined;
4349
4349
  image_url?: string | undefined;
4350
- verbatim?: boolean | undefined;
4351
4350
  alt_text?: string | undefined;
4351
+ verbatim?: boolean | undefined;
4352
4352
  }, {
4353
4353
  type: "image" | "plain_text" | "mrkdwn";
4354
4354
  emoji?: boolean | undefined;
4355
4355
  text?: string | undefined;
4356
4356
  image_url?: string | undefined;
4357
- verbatim?: boolean | undefined;
4358
4357
  alt_text?: string | undefined;
4358
+ verbatim?: boolean | undefined;
4359
4359
  }>, "many">>;
4360
4360
  }, z.ZodTypeAny, "passthrough">[] | undefined;
4361
4361
  thread_ts?: string | undefined;
@@ -4370,16 +4370,16 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4370
4370
  cursor: z.ZodOptional<z.ZodString>;
4371
4371
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
4372
4372
  }, "strip", z.ZodTypeAny, {
4373
- types: ("public_channel" | "private_channel" | "mpim" | "im")[];
4374
4373
  operation: "list_channels";
4374
+ types: ("public_channel" | "private_channel" | "mpim" | "im")[];
4375
4375
  exclude_archived: boolean;
4376
4376
  limit: number;
4377
4377
  credentials?: Partial<Record<CredentialType, string>> | undefined;
4378
4378
  cursor?: string | undefined;
4379
4379
  }, {
4380
4380
  operation: "list_channels";
4381
- types?: ("public_channel" | "private_channel" | "mpim" | "im")[] | undefined;
4382
4381
  credentials?: Partial<Record<CredentialType, string>> | undefined;
4382
+ types?: ("public_channel" | "private_channel" | "mpim" | "im")[] | undefined;
4383
4383
  exclude_archived?: boolean | undefined;
4384
4384
  limit?: number | undefined;
4385
4385
  cursor?: string | undefined;
@@ -4524,17 +4524,17 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4524
4524
  title?: string | undefined;
4525
4525
  text?: string | undefined;
4526
4526
  image_url?: string | undefined;
4527
- fields?: {
4528
- value: string;
4529
- title: string;
4530
- short?: boolean | undefined;
4531
- }[] | undefined;
4532
4527
  color?: string | undefined;
4533
4528
  pretext?: string | undefined;
4534
4529
  author_name?: string | undefined;
4535
4530
  author_link?: string | undefined;
4536
4531
  author_icon?: string | undefined;
4537
4532
  title_link?: string | undefined;
4533
+ fields?: {
4534
+ value: string;
4535
+ title: string;
4536
+ short?: boolean | undefined;
4537
+ }[] | undefined;
4538
4538
  thumb_url?: string | undefined;
4539
4539
  footer?: string | undefined;
4540
4540
  footer_icon?: string | undefined;
@@ -4543,17 +4543,17 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4543
4543
  title?: string | undefined;
4544
4544
  text?: string | undefined;
4545
4545
  image_url?: string | undefined;
4546
- fields?: {
4547
- value: string;
4548
- title: string;
4549
- short?: boolean | undefined;
4550
- }[] | undefined;
4551
4546
  color?: string | undefined;
4552
4547
  pretext?: string | undefined;
4553
4548
  author_name?: string | undefined;
4554
4549
  author_link?: string | undefined;
4555
4550
  author_icon?: string | undefined;
4556
4551
  title_link?: string | undefined;
4552
+ fields?: {
4553
+ value: string;
4554
+ title: string;
4555
+ short?: boolean | undefined;
4556
+ }[] | undefined;
4557
4557
  thumb_url?: string | undefined;
4558
4558
  footer?: string | undefined;
4559
4559
  footer_icon?: string | undefined;
@@ -4589,15 +4589,15 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4589
4589
  emoji?: boolean | undefined;
4590
4590
  text?: string | undefined;
4591
4591
  image_url?: string | undefined;
4592
- verbatim?: boolean | undefined;
4593
4592
  alt_text?: string | undefined;
4593
+ verbatim?: boolean | undefined;
4594
4594
  }, {
4595
4595
  type: "image" | "plain_text" | "mrkdwn";
4596
4596
  emoji?: boolean | undefined;
4597
4597
  text?: string | undefined;
4598
4598
  image_url?: string | undefined;
4599
- verbatim?: boolean | undefined;
4600
4599
  alt_text?: string | undefined;
4600
+ verbatim?: boolean | undefined;
4601
4601
  }>, "many">>;
4602
4602
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
4603
4603
  type: z.ZodString;
@@ -4629,15 +4629,15 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4629
4629
  emoji?: boolean | undefined;
4630
4630
  text?: string | undefined;
4631
4631
  image_url?: string | undefined;
4632
- verbatim?: boolean | undefined;
4633
4632
  alt_text?: string | undefined;
4633
+ verbatim?: boolean | undefined;
4634
4634
  }, {
4635
4635
  type: "image" | "plain_text" | "mrkdwn";
4636
4636
  emoji?: boolean | undefined;
4637
4637
  text?: string | undefined;
4638
4638
  image_url?: string | undefined;
4639
- verbatim?: boolean | undefined;
4640
4639
  alt_text?: string | undefined;
4640
+ verbatim?: boolean | undefined;
4641
4641
  }>, "many">>;
4642
4642
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
4643
4643
  type: z.ZodString;
@@ -4669,15 +4669,15 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4669
4669
  emoji?: boolean | undefined;
4670
4670
  text?: string | undefined;
4671
4671
  image_url?: string | undefined;
4672
- verbatim?: boolean | undefined;
4673
4672
  alt_text?: string | undefined;
4673
+ verbatim?: boolean | undefined;
4674
4674
  }, {
4675
4675
  type: "image" | "plain_text" | "mrkdwn";
4676
4676
  emoji?: boolean | undefined;
4677
4677
  text?: string | undefined;
4678
4678
  image_url?: string | undefined;
4679
- verbatim?: boolean | undefined;
4680
4679
  alt_text?: string | undefined;
4680
+ verbatim?: boolean | undefined;
4681
4681
  }>, "many">>;
4682
4682
  }, z.ZodTypeAny, "passthrough">>, "many">>;
4683
4683
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
@@ -4691,17 +4691,17 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4691
4691
  title?: string | undefined;
4692
4692
  text?: string | undefined;
4693
4693
  image_url?: string | undefined;
4694
- fields?: {
4695
- value: string;
4696
- title: string;
4697
- short?: boolean | undefined;
4698
- }[] | undefined;
4699
4694
  color?: string | undefined;
4700
4695
  pretext?: string | undefined;
4701
4696
  author_name?: string | undefined;
4702
4697
  author_link?: string | undefined;
4703
4698
  author_icon?: string | undefined;
4704
4699
  title_link?: string | undefined;
4700
+ fields?: {
4701
+ value: string;
4702
+ title: string;
4703
+ short?: boolean | undefined;
4704
+ }[] | undefined;
4705
4705
  thumb_url?: string | undefined;
4706
4706
  footer?: string | undefined;
4707
4707
  footer_icon?: string | undefined;
@@ -4737,15 +4737,15 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4737
4737
  emoji?: boolean | undefined;
4738
4738
  text?: string | undefined;
4739
4739
  image_url?: string | undefined;
4740
- verbatim?: boolean | undefined;
4741
4740
  alt_text?: string | undefined;
4741
+ verbatim?: boolean | undefined;
4742
4742
  }, {
4743
4743
  type: "image" | "plain_text" | "mrkdwn";
4744
4744
  emoji?: boolean | undefined;
4745
4745
  text?: string | undefined;
4746
4746
  image_url?: string | undefined;
4747
- verbatim?: boolean | undefined;
4748
4747
  alt_text?: string | undefined;
4748
+ verbatim?: boolean | undefined;
4749
4749
  }>, "many">>;
4750
4750
  }, z.ZodTypeAny, "passthrough">[] | undefined;
4751
4751
  }, {
@@ -4758,17 +4758,17 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4758
4758
  title?: string | undefined;
4759
4759
  text?: string | undefined;
4760
4760
  image_url?: string | undefined;
4761
- fields?: {
4762
- value: string;
4763
- title: string;
4764
- short?: boolean | undefined;
4765
- }[] | undefined;
4766
4761
  color?: string | undefined;
4767
4762
  pretext?: string | undefined;
4768
4763
  author_name?: string | undefined;
4769
4764
  author_link?: string | undefined;
4770
4765
  author_icon?: string | undefined;
4771
4766
  title_link?: string | undefined;
4767
+ fields?: {
4768
+ value: string;
4769
+ title: string;
4770
+ short?: boolean | undefined;
4771
+ }[] | undefined;
4772
4772
  thumb_url?: string | undefined;
4773
4773
  footer?: string | undefined;
4774
4774
  footer_icon?: string | undefined;
@@ -4804,15 +4804,15 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4804
4804
  emoji?: boolean | undefined;
4805
4805
  text?: string | undefined;
4806
4806
  image_url?: string | undefined;
4807
- verbatim?: boolean | undefined;
4808
4807
  alt_text?: string | undefined;
4808
+ verbatim?: boolean | undefined;
4809
4809
  }, {
4810
4810
  type: "image" | "plain_text" | "mrkdwn";
4811
4811
  emoji?: boolean | undefined;
4812
4812
  text?: string | undefined;
4813
4813
  image_url?: string | undefined;
4814
- verbatim?: boolean | undefined;
4815
4814
  alt_text?: string | undefined;
4815
+ verbatim?: boolean | undefined;
4816
4816
  }>, "many">>;
4817
4817
  }, z.ZodTypeAny, "passthrough">[] | undefined;
4818
4818
  }>, z.ZodObject<{
@@ -4944,15 +4944,15 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4944
4944
  emoji?: boolean | undefined;
4945
4945
  text?: string | undefined;
4946
4946
  image_url?: string | undefined;
4947
- verbatim?: boolean | undefined;
4948
4947
  alt_text?: string | undefined;
4948
+ verbatim?: boolean | undefined;
4949
4949
  }, {
4950
4950
  type: "image" | "plain_text" | "mrkdwn";
4951
4951
  emoji?: boolean | undefined;
4952
4952
  text?: string | undefined;
4953
4953
  image_url?: string | undefined;
4954
- verbatim?: boolean | undefined;
4955
4954
  alt_text?: string | undefined;
4955
+ verbatim?: boolean | undefined;
4956
4956
  }>, "many">>;
4957
4957
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
4958
4958
  type: z.ZodString;
@@ -4984,15 +4984,15 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4984
4984
  emoji?: boolean | undefined;
4985
4985
  text?: string | undefined;
4986
4986
  image_url?: string | undefined;
4987
- verbatim?: boolean | undefined;
4988
4987
  alt_text?: string | undefined;
4988
+ verbatim?: boolean | undefined;
4989
4989
  }, {
4990
4990
  type: "image" | "plain_text" | "mrkdwn";
4991
4991
  emoji?: boolean | undefined;
4992
4992
  text?: string | undefined;
4993
4993
  image_url?: string | undefined;
4994
- verbatim?: boolean | undefined;
4995
4994
  alt_text?: string | undefined;
4995
+ verbatim?: boolean | undefined;
4996
4996
  }>, "many">>;
4997
4997
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
4998
4998
  type: z.ZodString;
@@ -5024,15 +5024,15 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5024
5024
  emoji?: boolean | undefined;
5025
5025
  text?: string | undefined;
5026
5026
  image_url?: string | undefined;
5027
- verbatim?: boolean | undefined;
5028
5027
  alt_text?: string | undefined;
5028
+ verbatim?: boolean | undefined;
5029
5029
  }, {
5030
5030
  type: "image" | "plain_text" | "mrkdwn";
5031
5031
  emoji?: boolean | undefined;
5032
5032
  text?: string | undefined;
5033
5033
  image_url?: string | undefined;
5034
- verbatim?: boolean | undefined;
5035
5034
  alt_text?: string | undefined;
5035
+ verbatim?: boolean | undefined;
5036
5036
  }>, "many">>;
5037
5037
  }, z.ZodTypeAny, "passthrough">>, "many">>;
5038
5038
  unfurl_links: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
@@ -5076,15 +5076,15 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5076
5076
  emoji?: boolean | undefined;
5077
5077
  text?: string | undefined;
5078
5078
  image_url?: string | undefined;
5079
- verbatim?: boolean | undefined;
5080
5079
  alt_text?: string | undefined;
5080
+ verbatim?: boolean | undefined;
5081
5081
  }, {
5082
5082
  type: "image" | "plain_text" | "mrkdwn";
5083
5083
  emoji?: boolean | undefined;
5084
5084
  text?: string | undefined;
5085
5085
  image_url?: string | undefined;
5086
- verbatim?: boolean | undefined;
5087
5086
  alt_text?: string | undefined;
5087
+ verbatim?: boolean | undefined;
5088
5088
  }>, "many">>;
5089
5089
  }, z.ZodTypeAny, "passthrough">[] | undefined;
5090
5090
  thread_ts?: string | undefined;
@@ -5124,15 +5124,15 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5124
5124
  emoji?: boolean | undefined;
5125
5125
  text?: string | undefined;
5126
5126
  image_url?: string | undefined;
5127
- verbatim?: boolean | undefined;
5128
5127
  alt_text?: string | undefined;
5128
+ verbatim?: boolean | undefined;
5129
5129
  }, {
5130
5130
  type: "image" | "plain_text" | "mrkdwn";
5131
5131
  emoji?: boolean | undefined;
5132
5132
  text?: string | undefined;
5133
5133
  image_url?: string | undefined;
5134
- verbatim?: boolean | undefined;
5135
5134
  alt_text?: string | undefined;
5135
+ verbatim?: boolean | undefined;
5136
5136
  }>, "many">>;
5137
5137
  }, z.ZodTypeAny, "passthrough">[] | undefined;
5138
5138
  thread_ts?: string | undefined;
@@ -8040,8 +8040,9 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
8040
8040
  private static buildFooterBlocks;
8041
8041
  private sendMessage;
8042
8042
  /**
8043
- * Sends a message with blocks split into multiple messages when exceeding Slack's 50 block limit.
8044
- * Subsequent chunks are sent as thread replies to the first message.
8043
+ * Sends a message with blocks split into multiple messages.
8044
+ * Used when exceeding Slack's 50 block limit or when multiple table blocks
8045
+ * need separate messages. Subsequent chunks are sent as thread replies.
8045
8046
  */
8046
8047
  private sendMessageWithBlockChunks;
8047
8048
  private listChannels;