@bubblelab/bubble-core 0.1.19 → 0.1.20

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 (60) hide show
  1. package/dist/bubble-bundle.d.ts +70 -70
  2. package/dist/bubbles/service-bubble/agi-inc.d.ts +140 -140
  3. package/dist/bubbles/service-bubble/ai-agent.d.ts +58 -58
  4. package/dist/bubbles/service-bubble/airtable.d.ts +106 -106
  5. package/dist/bubbles/service-bubble/apify/apify.d.ts +8 -8
  6. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +47 -47
  7. package/dist/bubbles/service-bubble/eleven-labs.d.ts +52 -52
  8. package/dist/bubbles/service-bubble/firecrawl.d.ts +730 -730
  9. package/dist/bubbles/service-bubble/followupboss.d.ts +282 -282
  10. package/dist/bubbles/service-bubble/github.d.ts +196 -196
  11. package/dist/bubbles/service-bubble/gmail.d.ts +632 -632
  12. package/dist/bubbles/service-bubble/google-calendar.d.ts +1148 -346
  13. package/dist/bubbles/service-bubble/google-calendar.d.ts.map +1 -1
  14. package/dist/bubbles/service-bubble/google-calendar.js +51 -9
  15. package/dist/bubbles/service-bubble/google-calendar.js.map +1 -1
  16. package/dist/bubbles/service-bubble/google-drive.d.ts +259 -114
  17. package/dist/bubbles/service-bubble/google-drive.d.ts.map +1 -1
  18. package/dist/bubbles/service-bubble/google-drive.js +95 -0
  19. package/dist/bubbles/service-bubble/google-drive.js.map +1 -1
  20. package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +52 -52
  21. package/dist/bubbles/service-bubble/hello-world.d.ts +8 -8
  22. package/dist/bubbles/service-bubble/http.d.ts +16 -16
  23. package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
  24. package/dist/bubbles/service-bubble/notion/notion.d.ts +987 -987
  25. package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
  26. package/dist/bubbles/service-bubble/resend.d.ts +40 -40
  27. package/dist/bubbles/service-bubble/slack/slack.d.ts +314 -314
  28. package/dist/bubbles/service-bubble/storage.d.ts +40 -40
  29. package/dist/bubbles/service-bubble/telegram.d.ts +1591 -1591
  30. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +30 -30
  31. package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +16 -16
  32. package/dist/bubbles/tool-bubble/chart-js-tool.d.ts +20 -20
  33. package/dist/bubbles/tool-bubble/code-edit-tool.d.ts +8 -8
  34. package/dist/bubbles/tool-bubble/get-bubble-details-tool.d.ts +4 -4
  35. package/dist/bubbles/tool-bubble/get-trigger-detail-tool.d.ts +4 -4
  36. package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +20 -20
  37. package/dist/bubbles/tool-bubble/instagram-tool.d.ts +18 -18
  38. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +70 -70
  39. package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +4 -4
  40. package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +24 -24
  41. package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
  42. package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +12 -12
  43. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +20 -20
  44. package/dist/bubbles/tool-bubble/tool-template.d.ts +4 -4
  45. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +68 -68
  46. package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +18 -18
  47. package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
  48. package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +4 -4
  49. package/dist/bubbles/tool-bubble/web-search-tool.d.ts +10 -10
  50. package/dist/bubbles/tool-bubble/youtube-tool.d.ts +32 -32
  51. package/dist/bubbles/workflow-bubble/database-analyzer.workflow.d.ts +4 -4
  52. package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +28 -28
  53. package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +8 -8
  54. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +106 -106
  55. package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +16 -16
  56. package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +32 -32
  57. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +92 -92
  58. package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +8 -8
  59. package/dist/bubbles.json +3 -3
  60. package/package.json +2 -2
@@ -38,6 +38,11 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
38
38
  ts: z.ZodOptional<z.ZodNumber>;
39
39
  }, "strip", z.ZodTypeAny, {
40
40
  title?: string | undefined;
41
+ fields?: {
42
+ value: string;
43
+ title: string;
44
+ short?: boolean | undefined;
45
+ }[] | undefined;
41
46
  text?: string | undefined;
42
47
  color?: string | undefined;
43
48
  pretext?: string | undefined;
@@ -45,11 +50,6 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
45
50
  author_link?: string | undefined;
46
51
  author_icon?: string | undefined;
47
52
  title_link?: string | undefined;
48
- fields?: {
49
- value: string;
50
- title: string;
51
- short?: boolean | undefined;
52
- }[] | undefined;
53
53
  image_url?: string | undefined;
54
54
  thumb_url?: string | undefined;
55
55
  footer?: string | undefined;
@@ -57,6 +57,11 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
57
57
  ts?: number | undefined;
58
58
  }, {
59
59
  title?: string | undefined;
60
+ fields?: {
61
+ value: string;
62
+ title: string;
63
+ short?: boolean | undefined;
64
+ }[] | undefined;
60
65
  text?: string | undefined;
61
66
  color?: string | undefined;
62
67
  pretext?: string | undefined;
@@ -64,11 +69,6 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
64
69
  author_link?: string | undefined;
65
70
  author_icon?: string | undefined;
66
71
  title_link?: string | undefined;
67
- fields?: {
68
- value: string;
69
- title: string;
70
- short?: boolean | undefined;
71
- }[] | undefined;
72
72
  image_url?: string | undefined;
73
73
  thumb_url?: string | undefined;
74
74
  footer?: string | undefined;
@@ -102,16 +102,16 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
102
102
  verbatim: z.ZodOptional<z.ZodBoolean>;
103
103
  }, "strip", z.ZodTypeAny, {
104
104
  type: "plain_text" | "mrkdwn" | "image";
105
+ emoji?: boolean | undefined;
105
106
  text?: string | undefined;
106
107
  image_url?: string | undefined;
107
- emoji?: boolean | undefined;
108
108
  verbatim?: boolean | undefined;
109
109
  alt_text?: string | undefined;
110
110
  }, {
111
111
  type: "plain_text" | "mrkdwn" | "image";
112
+ emoji?: boolean | undefined;
112
113
  text?: string | undefined;
113
114
  image_url?: string | undefined;
114
- emoji?: boolean | undefined;
115
115
  verbatim?: boolean | undefined;
116
116
  alt_text?: string | undefined;
117
117
  }>, "many">>;
@@ -142,16 +142,16 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
142
142
  verbatim: z.ZodOptional<z.ZodBoolean>;
143
143
  }, "strip", z.ZodTypeAny, {
144
144
  type: "plain_text" | "mrkdwn" | "image";
145
+ emoji?: boolean | undefined;
145
146
  text?: string | undefined;
146
147
  image_url?: string | undefined;
147
- emoji?: boolean | undefined;
148
148
  verbatim?: boolean | undefined;
149
149
  alt_text?: string | undefined;
150
150
  }, {
151
151
  type: "plain_text" | "mrkdwn" | "image";
152
+ emoji?: boolean | undefined;
152
153
  text?: string | undefined;
153
154
  image_url?: string | undefined;
154
- emoji?: boolean | undefined;
155
155
  verbatim?: boolean | undefined;
156
156
  alt_text?: string | undefined;
157
157
  }>, "many">>;
@@ -182,16 +182,16 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
182
182
  verbatim: z.ZodOptional<z.ZodBoolean>;
183
183
  }, "strip", z.ZodTypeAny, {
184
184
  type: "plain_text" | "mrkdwn" | "image";
185
+ emoji?: boolean | undefined;
185
186
  text?: string | undefined;
186
187
  image_url?: string | undefined;
187
- emoji?: boolean | undefined;
188
188
  verbatim?: boolean | undefined;
189
189
  alt_text?: string | undefined;
190
190
  }, {
191
191
  type: "plain_text" | "mrkdwn" | "image";
192
+ emoji?: boolean | undefined;
192
193
  text?: string | undefined;
193
194
  image_url?: string | undefined;
194
- emoji?: boolean | undefined;
195
195
  verbatim?: boolean | undefined;
196
196
  alt_text?: string | undefined;
197
197
  }>, "many">>;
@@ -208,11 +208,17 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
208
208
  reply_broadcast: boolean;
209
209
  unfurl_links: boolean;
210
210
  unfurl_media: boolean;
211
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
211
212
  username?: string | undefined;
212
213
  icon_emoji?: string | undefined;
213
214
  icon_url?: string | undefined;
214
215
  attachments?: {
215
216
  title?: string | undefined;
217
+ fields?: {
218
+ value: string;
219
+ title: string;
220
+ short?: boolean | undefined;
221
+ }[] | undefined;
216
222
  text?: string | undefined;
217
223
  color?: string | undefined;
218
224
  pretext?: string | undefined;
@@ -220,11 +226,6 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
220
226
  author_link?: string | undefined;
221
227
  author_icon?: string | undefined;
222
228
  title_link?: string | undefined;
223
- fields?: {
224
- value: string;
225
- title: string;
226
- short?: boolean | undefined;
227
- }[] | undefined;
228
229
  image_url?: string | undefined;
229
230
  thumb_url?: string | undefined;
230
231
  footer?: string | undefined;
@@ -258,31 +259,36 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
258
259
  verbatim: z.ZodOptional<z.ZodBoolean>;
259
260
  }, "strip", z.ZodTypeAny, {
260
261
  type: "plain_text" | "mrkdwn" | "image";
262
+ emoji?: boolean | undefined;
261
263
  text?: string | undefined;
262
264
  image_url?: string | undefined;
263
- emoji?: boolean | undefined;
264
265
  verbatim?: boolean | undefined;
265
266
  alt_text?: string | undefined;
266
267
  }, {
267
268
  type: "plain_text" | "mrkdwn" | "image";
269
+ emoji?: boolean | undefined;
268
270
  text?: string | undefined;
269
271
  image_url?: string | undefined;
270
- emoji?: boolean | undefined;
271
272
  verbatim?: boolean | undefined;
272
273
  alt_text?: string | undefined;
273
274
  }>, "many">>;
274
275
  }, z.ZodTypeAny, "passthrough">[] | undefined;
275
276
  thread_ts?: string | undefined;
276
- credentials?: Partial<Record<CredentialType, string>> | undefined;
277
277
  }, {
278
278
  operation: "send_message";
279
279
  channel: string;
280
280
  text: string;
281
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
281
282
  username?: string | undefined;
282
283
  icon_emoji?: string | undefined;
283
284
  icon_url?: string | undefined;
284
285
  attachments?: {
285
286
  title?: string | undefined;
287
+ fields?: {
288
+ value: string;
289
+ title: string;
290
+ short?: boolean | undefined;
291
+ }[] | undefined;
286
292
  text?: string | undefined;
287
293
  color?: string | undefined;
288
294
  pretext?: string | undefined;
@@ -290,11 +296,6 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
290
296
  author_link?: string | undefined;
291
297
  author_icon?: string | undefined;
292
298
  title_link?: string | undefined;
293
- fields?: {
294
- value: string;
295
- title: string;
296
- short?: boolean | undefined;
297
- }[] | undefined;
298
299
  image_url?: string | undefined;
299
300
  thumb_url?: string | undefined;
300
301
  footer?: string | undefined;
@@ -328,23 +329,22 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
328
329
  verbatim: z.ZodOptional<z.ZodBoolean>;
329
330
  }, "strip", z.ZodTypeAny, {
330
331
  type: "plain_text" | "mrkdwn" | "image";
332
+ emoji?: boolean | undefined;
331
333
  text?: string | undefined;
332
334
  image_url?: string | undefined;
333
- emoji?: boolean | undefined;
334
335
  verbatim?: boolean | undefined;
335
336
  alt_text?: string | undefined;
336
337
  }, {
337
338
  type: "plain_text" | "mrkdwn" | "image";
339
+ emoji?: boolean | undefined;
338
340
  text?: string | undefined;
339
341
  image_url?: string | undefined;
340
- emoji?: boolean | undefined;
341
342
  verbatim?: boolean | undefined;
342
343
  alt_text?: string | undefined;
343
344
  }>, "many">>;
344
345
  }, z.ZodTypeAny, "passthrough">[] | undefined;
345
346
  thread_ts?: string | undefined;
346
347
  reply_broadcast?: boolean | undefined;
347
- credentials?: Partial<Record<CredentialType, string>> | undefined;
348
348
  unfurl_links?: boolean | undefined;
349
349
  unfurl_media?: boolean | undefined;
350
350
  }>, z.ZodObject<{
@@ -426,8 +426,8 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
426
426
  cursor: z.ZodOptional<z.ZodString>;
427
427
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
428
428
  }, "strip", z.ZodTypeAny, {
429
- operation: "get_conversation_history";
430
429
  inclusive: boolean;
430
+ operation: "get_conversation_history";
431
431
  channel: string;
432
432
  limit: number;
433
433
  credentials?: Partial<Record<CredentialType, string>> | undefined;
@@ -454,8 +454,8 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
454
454
  cursor: z.ZodOptional<z.ZodString>;
455
455
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
456
456
  }, "strip", z.ZodTypeAny, {
457
- operation: "get_thread_replies";
458
457
  inclusive: boolean;
458
+ operation: "get_thread_replies";
459
459
  channel: string;
460
460
  ts: string;
461
461
  limit: number;
@@ -507,6 +507,11 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
507
507
  ts: z.ZodOptional<z.ZodNumber>;
508
508
  }, "strip", z.ZodTypeAny, {
509
509
  title?: string | undefined;
510
+ fields?: {
511
+ value: string;
512
+ title: string;
513
+ short?: boolean | undefined;
514
+ }[] | undefined;
510
515
  text?: string | undefined;
511
516
  color?: string | undefined;
512
517
  pretext?: string | undefined;
@@ -514,11 +519,6 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
514
519
  author_link?: string | undefined;
515
520
  author_icon?: string | undefined;
516
521
  title_link?: string | undefined;
517
- fields?: {
518
- value: string;
519
- title: string;
520
- short?: boolean | undefined;
521
- }[] | undefined;
522
522
  image_url?: string | undefined;
523
523
  thumb_url?: string | undefined;
524
524
  footer?: string | undefined;
@@ -526,6 +526,11 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
526
526
  ts?: number | undefined;
527
527
  }, {
528
528
  title?: string | undefined;
529
+ fields?: {
530
+ value: string;
531
+ title: string;
532
+ short?: boolean | undefined;
533
+ }[] | undefined;
529
534
  text?: string | undefined;
530
535
  color?: string | undefined;
531
536
  pretext?: string | undefined;
@@ -533,11 +538,6 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
533
538
  author_link?: string | undefined;
534
539
  author_icon?: string | undefined;
535
540
  title_link?: string | undefined;
536
- fields?: {
537
- value: string;
538
- title: string;
539
- short?: boolean | undefined;
540
- }[] | undefined;
541
541
  image_url?: string | undefined;
542
542
  thumb_url?: string | undefined;
543
543
  footer?: string | undefined;
@@ -571,16 +571,16 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
571
571
  verbatim: z.ZodOptional<z.ZodBoolean>;
572
572
  }, "strip", z.ZodTypeAny, {
573
573
  type: "plain_text" | "mrkdwn" | "image";
574
+ emoji?: boolean | undefined;
574
575
  text?: string | undefined;
575
576
  image_url?: string | undefined;
576
- emoji?: boolean | undefined;
577
577
  verbatim?: boolean | undefined;
578
578
  alt_text?: string | undefined;
579
579
  }, {
580
580
  type: "plain_text" | "mrkdwn" | "image";
581
+ emoji?: boolean | undefined;
581
582
  text?: string | undefined;
582
583
  image_url?: string | undefined;
583
- emoji?: boolean | undefined;
584
584
  verbatim?: boolean | undefined;
585
585
  alt_text?: string | undefined;
586
586
  }>, "many">>;
@@ -611,16 +611,16 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
611
611
  verbatim: z.ZodOptional<z.ZodBoolean>;
612
612
  }, "strip", z.ZodTypeAny, {
613
613
  type: "plain_text" | "mrkdwn" | "image";
614
+ emoji?: boolean | undefined;
614
615
  text?: string | undefined;
615
616
  image_url?: string | undefined;
616
- emoji?: boolean | undefined;
617
617
  verbatim?: boolean | undefined;
618
618
  alt_text?: string | undefined;
619
619
  }, {
620
620
  type: "plain_text" | "mrkdwn" | "image";
621
+ emoji?: boolean | undefined;
621
622
  text?: string | undefined;
622
623
  image_url?: string | undefined;
623
- emoji?: boolean | undefined;
624
624
  verbatim?: boolean | undefined;
625
625
  alt_text?: string | undefined;
626
626
  }>, "many">>;
@@ -651,16 +651,16 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
651
651
  verbatim: z.ZodOptional<z.ZodBoolean>;
652
652
  }, "strip", z.ZodTypeAny, {
653
653
  type: "plain_text" | "mrkdwn" | "image";
654
+ emoji?: boolean | undefined;
654
655
  text?: string | undefined;
655
656
  image_url?: string | undefined;
656
- emoji?: boolean | undefined;
657
657
  verbatim?: boolean | undefined;
658
658
  alt_text?: string | undefined;
659
659
  }, {
660
660
  type: "plain_text" | "mrkdwn" | "image";
661
+ emoji?: boolean | undefined;
661
662
  text?: string | undefined;
662
663
  image_url?: string | undefined;
663
- emoji?: boolean | undefined;
664
664
  verbatim?: boolean | undefined;
665
665
  alt_text?: string | undefined;
666
666
  }>, "many">>;
@@ -670,9 +670,15 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
670
670
  operation: "update_message";
671
671
  channel: string;
672
672
  ts: string;
673
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
673
674
  text?: string | undefined;
674
675
  attachments?: {
675
676
  title?: string | undefined;
677
+ fields?: {
678
+ value: string;
679
+ title: string;
680
+ short?: boolean | undefined;
681
+ }[] | undefined;
676
682
  text?: string | undefined;
677
683
  color?: string | undefined;
678
684
  pretext?: string | undefined;
@@ -680,11 +686,6 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
680
686
  author_link?: string | undefined;
681
687
  author_icon?: string | undefined;
682
688
  title_link?: string | undefined;
683
- fields?: {
684
- value: string;
685
- title: string;
686
- short?: boolean | undefined;
687
- }[] | undefined;
688
689
  image_url?: string | undefined;
689
690
  thumb_url?: string | undefined;
690
691
  footer?: string | undefined;
@@ -718,28 +719,33 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
718
719
  verbatim: z.ZodOptional<z.ZodBoolean>;
719
720
  }, "strip", z.ZodTypeAny, {
720
721
  type: "plain_text" | "mrkdwn" | "image";
722
+ emoji?: boolean | undefined;
721
723
  text?: string | undefined;
722
724
  image_url?: string | undefined;
723
- emoji?: boolean | undefined;
724
725
  verbatim?: boolean | undefined;
725
726
  alt_text?: string | undefined;
726
727
  }, {
727
728
  type: "plain_text" | "mrkdwn" | "image";
729
+ emoji?: boolean | undefined;
728
730
  text?: string | undefined;
729
731
  image_url?: string | undefined;
730
- emoji?: boolean | undefined;
731
732
  verbatim?: boolean | undefined;
732
733
  alt_text?: string | undefined;
733
734
  }>, "many">>;
734
735
  }, z.ZodTypeAny, "passthrough">[] | undefined;
735
- credentials?: Partial<Record<CredentialType, string>> | undefined;
736
736
  }, {
737
737
  operation: "update_message";
738
738
  channel: string;
739
739
  ts: string;
740
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
740
741
  text?: string | undefined;
741
742
  attachments?: {
742
743
  title?: string | undefined;
744
+ fields?: {
745
+ value: string;
746
+ title: string;
747
+ short?: boolean | undefined;
748
+ }[] | undefined;
743
749
  text?: string | undefined;
744
750
  color?: string | undefined;
745
751
  pretext?: string | undefined;
@@ -747,11 +753,6 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
747
753
  author_link?: string | undefined;
748
754
  author_icon?: string | undefined;
749
755
  title_link?: string | undefined;
750
- fields?: {
751
- value: string;
752
- title: string;
753
- short?: boolean | undefined;
754
- }[] | undefined;
755
756
  image_url?: string | undefined;
756
757
  thumb_url?: string | undefined;
757
758
  footer?: string | undefined;
@@ -785,21 +786,20 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
785
786
  verbatim: z.ZodOptional<z.ZodBoolean>;
786
787
  }, "strip", z.ZodTypeAny, {
787
788
  type: "plain_text" | "mrkdwn" | "image";
789
+ emoji?: boolean | undefined;
788
790
  text?: string | undefined;
789
791
  image_url?: string | undefined;
790
- emoji?: boolean | undefined;
791
792
  verbatim?: boolean | undefined;
792
793
  alt_text?: string | undefined;
793
794
  }, {
794
795
  type: "plain_text" | "mrkdwn" | "image";
796
+ emoji?: boolean | undefined;
795
797
  text?: string | undefined;
796
798
  image_url?: string | undefined;
797
- emoji?: boolean | undefined;
798
799
  verbatim?: boolean | undefined;
799
800
  alt_text?: string | undefined;
800
801
  }>, "many">>;
801
802
  }, z.ZodTypeAny, "passthrough">[] | undefined;
802
- credentials?: Partial<Record<CredentialType, string>> | undefined;
803
803
  }>, z.ZodObject<{
804
804
  operation: z.ZodLiteral<"delete_message">;
805
805
  channel: z.ZodString;
@@ -822,15 +822,15 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
822
822
  timestamp: z.ZodString;
823
823
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
824
824
  }, "strip", z.ZodTypeAny, {
825
+ name: string;
825
826
  operation: "add_reaction";
826
827
  channel: string;
827
- name: string;
828
828
  timestamp: string;
829
829
  credentials?: Partial<Record<CredentialType, string>> | undefined;
830
830
  }, {
831
+ name: string;
831
832
  operation: "add_reaction";
832
833
  channel: string;
833
- name: string;
834
834
  timestamp: string;
835
835
  credentials?: Partial<Record<CredentialType, string>> | undefined;
836
836
  }>, z.ZodObject<{
@@ -840,15 +840,15 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
840
840
  timestamp: z.ZodString;
841
841
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
842
842
  }, "strip", z.ZodTypeAny, {
843
+ name: string;
843
844
  operation: "remove_reaction";
844
845
  channel: string;
845
- name: string;
846
846
  timestamp: string;
847
847
  credentials?: Partial<Record<CredentialType, string>> | undefined;
848
848
  }, {
849
+ name: string;
849
850
  operation: "remove_reaction";
850
851
  channel: string;
851
- name: string;
852
852
  timestamp: string;
853
853
  credentials?: Partial<Record<CredentialType, string>> | undefined;
854
854
  }>, z.ZodObject<{
@@ -877,8 +877,8 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
877
877
  channel: string;
878
878
  file_path: string;
879
879
  title?: string | undefined;
880
- thread_ts?: string | undefined;
881
880
  credentials?: Partial<Record<CredentialType, string>> | undefined;
881
+ thread_ts?: string | undefined;
882
882
  filename?: string | undefined;
883
883
  initial_comment?: string | undefined;
884
884
  }, {
@@ -886,8 +886,8 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
886
886
  channel: string;
887
887
  file_path: string;
888
888
  title?: string | undefined;
889
- thread_ts?: string | undefined;
890
889
  credentials?: Partial<Record<CredentialType, string>> | undefined;
890
+ thread_ts?: string | undefined;
891
891
  filename?: string | undefined;
892
892
  initial_comment?: string | undefined;
893
893
  }>, z.ZodObject<{
@@ -923,16 +923,16 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
923
923
  verbatim: z.ZodOptional<z.ZodBoolean>;
924
924
  }, "strip", z.ZodTypeAny, {
925
925
  type: "plain_text" | "mrkdwn" | "image";
926
+ emoji?: boolean | undefined;
926
927
  text?: string | undefined;
927
928
  image_url?: string | undefined;
928
- emoji?: boolean | undefined;
929
929
  verbatim?: boolean | undefined;
930
930
  alt_text?: string | undefined;
931
931
  }, {
932
932
  type: "plain_text" | "mrkdwn" | "image";
933
+ emoji?: boolean | undefined;
933
934
  text?: string | undefined;
934
935
  image_url?: string | undefined;
935
- emoji?: boolean | undefined;
936
936
  verbatim?: boolean | undefined;
937
937
  alt_text?: string | undefined;
938
938
  }>, "many">>;
@@ -963,16 +963,16 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
963
963
  verbatim: z.ZodOptional<z.ZodBoolean>;
964
964
  }, "strip", z.ZodTypeAny, {
965
965
  type: "plain_text" | "mrkdwn" | "image";
966
+ emoji?: boolean | undefined;
966
967
  text?: string | undefined;
967
968
  image_url?: string | undefined;
968
- emoji?: boolean | undefined;
969
969
  verbatim?: boolean | undefined;
970
970
  alt_text?: string | undefined;
971
971
  }, {
972
972
  type: "plain_text" | "mrkdwn" | "image";
973
+ emoji?: boolean | undefined;
973
974
  text?: string | undefined;
974
975
  image_url?: string | undefined;
975
- emoji?: boolean | undefined;
976
976
  verbatim?: boolean | undefined;
977
977
  alt_text?: string | undefined;
978
978
  }>, "many">>;
@@ -1003,16 +1003,16 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1003
1003
  verbatim: z.ZodOptional<z.ZodBoolean>;
1004
1004
  }, "strip", z.ZodTypeAny, {
1005
1005
  type: "plain_text" | "mrkdwn" | "image";
1006
+ emoji?: boolean | undefined;
1006
1007
  text?: string | undefined;
1007
1008
  image_url?: string | undefined;
1008
- emoji?: boolean | undefined;
1009
1009
  verbatim?: boolean | undefined;
1010
1010
  alt_text?: string | undefined;
1011
1011
  }, {
1012
1012
  type: "plain_text" | "mrkdwn" | "image";
1013
+ emoji?: boolean | undefined;
1013
1014
  text?: string | undefined;
1014
1015
  image_url?: string | undefined;
1015
- emoji?: boolean | undefined;
1016
1016
  verbatim?: boolean | undefined;
1017
1017
  alt_text?: string | undefined;
1018
1018
  }>, "many">>;
@@ -1027,6 +1027,7 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1027
1027
  unfurl_links: boolean;
1028
1028
  unfurl_media: boolean;
1029
1029
  post_at: number;
1030
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
1030
1031
  blocks?: z.objectOutputType<{
1031
1032
  type: z.ZodString;
1032
1033
  text: z.ZodOptional<z.ZodObject<{
@@ -1054,27 +1055,27 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1054
1055
  verbatim: z.ZodOptional<z.ZodBoolean>;
1055
1056
  }, "strip", z.ZodTypeAny, {
1056
1057
  type: "plain_text" | "mrkdwn" | "image";
1058
+ emoji?: boolean | undefined;
1057
1059
  text?: string | undefined;
1058
1060
  image_url?: string | undefined;
1059
- emoji?: boolean | undefined;
1060
1061
  verbatim?: boolean | undefined;
1061
1062
  alt_text?: string | undefined;
1062
1063
  }, {
1063
1064
  type: "plain_text" | "mrkdwn" | "image";
1065
+ emoji?: boolean | undefined;
1064
1066
  text?: string | undefined;
1065
1067
  image_url?: string | undefined;
1066
- emoji?: boolean | undefined;
1067
1068
  verbatim?: boolean | undefined;
1068
1069
  alt_text?: string | undefined;
1069
1070
  }>, "many">>;
1070
1071
  }, z.ZodTypeAny, "passthrough">[] | undefined;
1071
1072
  thread_ts?: string | undefined;
1072
- credentials?: Partial<Record<CredentialType, string>> | undefined;
1073
1073
  }, {
1074
1074
  operation: "schedule_message";
1075
1075
  channel: string;
1076
1076
  text: string;
1077
1077
  post_at: number;
1078
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
1078
1079
  blocks?: z.objectInputType<{
1079
1080
  type: z.ZodString;
1080
1081
  text: z.ZodOptional<z.ZodObject<{
@@ -1102,22 +1103,21 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1102
1103
  verbatim: z.ZodOptional<z.ZodBoolean>;
1103
1104
  }, "strip", z.ZodTypeAny, {
1104
1105
  type: "plain_text" | "mrkdwn" | "image";
1106
+ emoji?: boolean | undefined;
1105
1107
  text?: string | undefined;
1106
1108
  image_url?: string | undefined;
1107
- emoji?: boolean | undefined;
1108
1109
  verbatim?: boolean | undefined;
1109
1110
  alt_text?: string | undefined;
1110
1111
  }, {
1111
1112
  type: "plain_text" | "mrkdwn" | "image";
1113
+ emoji?: boolean | undefined;
1112
1114
  text?: string | undefined;
1113
1115
  image_url?: string | undefined;
1114
- emoji?: boolean | undefined;
1115
1116
  verbatim?: boolean | undefined;
1116
1117
  alt_text?: string | undefined;
1117
1118
  }>, "many">>;
1118
1119
  }, z.ZodTypeAny, "passthrough">[] | undefined;
1119
1120
  thread_ts?: string | undefined;
1120
- credentials?: Partial<Record<CredentialType, string>> | undefined;
1121
1121
  unfurl_links?: boolean | undefined;
1122
1122
  unfurl_media?: boolean | undefined;
1123
1123
  }>]>;
@@ -1217,10 +1217,10 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1217
1217
  error: z.ZodString;
1218
1218
  success: z.ZodBoolean;
1219
1219
  }, "strip", z.ZodTypeAny, {
1220
+ success: boolean;
1221
+ error: string;
1220
1222
  operation: "send_message";
1221
1223
  ok: boolean;
1222
- error: string;
1223
- success: boolean;
1224
1224
  message?: {
1225
1225
  type: string;
1226
1226
  text?: string | undefined;
@@ -1250,10 +1250,10 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1250
1250
  channel?: string | undefined;
1251
1251
  ts?: string | undefined;
1252
1252
  }, {
1253
+ success: boolean;
1254
+ error: string;
1253
1255
  operation: "send_message";
1254
1256
  ok: boolean;
1255
- error: string;
1256
- success: boolean;
1257
1257
  message?: {
1258
1258
  type: string;
1259
1259
  text?: string | undefined;
@@ -1411,10 +1411,10 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1411
1411
  error: z.ZodString;
1412
1412
  success: z.ZodBoolean;
1413
1413
  }, "strip", z.ZodTypeAny, {
1414
+ success: boolean;
1415
+ error: string;
1414
1416
  operation: "list_channels";
1415
1417
  ok: boolean;
1416
- error: string;
1417
- success: boolean;
1418
1418
  channels?: {
1419
1419
  name: string;
1420
1420
  id: string;
@@ -1453,10 +1453,10 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1453
1453
  next_cursor: string;
1454
1454
  } | undefined;
1455
1455
  }, {
1456
+ success: boolean;
1457
+ error: string;
1456
1458
  operation: "list_channels";
1457
1459
  ok: boolean;
1458
- error: string;
1459
- success: boolean;
1460
1460
  channels?: {
1461
1461
  name: string;
1462
1462
  id: string;
@@ -1616,10 +1616,10 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1616
1616
  error: z.ZodString;
1617
1617
  success: z.ZodBoolean;
1618
1618
  }, "strip", z.ZodTypeAny, {
1619
+ success: boolean;
1620
+ error: string;
1619
1621
  operation: "get_channel_info";
1620
1622
  ok: boolean;
1621
- error: string;
1622
- success: boolean;
1623
1623
  channel?: {
1624
1624
  name: string;
1625
1625
  id: string;
@@ -1655,10 +1655,10 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1655
1655
  num_members?: number | undefined;
1656
1656
  } | undefined;
1657
1657
  }, {
1658
+ success: boolean;
1659
+ error: string;
1658
1660
  operation: "get_channel_info";
1659
1661
  ok: boolean;
1660
- error: string;
1661
- success: boolean;
1662
1662
  channel?: {
1663
1663
  name: string;
1664
1664
  id: string;
@@ -1733,8 +1733,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1733
1733
  image_1024: z.ZodOptional<z.ZodString>;
1734
1734
  }, "strip", z.ZodTypeAny, {
1735
1735
  title?: string | undefined;
1736
- fields?: Record<string, unknown> | undefined;
1737
1736
  email?: string | undefined;
1737
+ fields?: Record<string, unknown> | undefined;
1738
1738
  real_name?: string | undefined;
1739
1739
  phone?: string | undefined;
1740
1740
  skype?: string | undefined;
@@ -1758,8 +1758,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1758
1758
  image_1024?: string | undefined;
1759
1759
  }, {
1760
1760
  title?: string | undefined;
1761
- fields?: Record<string, unknown> | undefined;
1762
1761
  email?: string | undefined;
1762
+ fields?: Record<string, unknown> | undefined;
1763
1763
  real_name?: string | undefined;
1764
1764
  phone?: string | undefined;
1765
1765
  skype?: string | undefined;
@@ -1803,8 +1803,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1803
1803
  tz_offset?: number | undefined;
1804
1804
  profile?: {
1805
1805
  title?: string | undefined;
1806
- fields?: Record<string, unknown> | undefined;
1807
1806
  email?: string | undefined;
1807
+ fields?: Record<string, unknown> | undefined;
1808
1808
  real_name?: string | undefined;
1809
1809
  phone?: string | undefined;
1810
1810
  skype?: string | undefined;
@@ -1848,8 +1848,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1848
1848
  tz_offset?: number | undefined;
1849
1849
  profile?: {
1850
1850
  title?: string | undefined;
1851
- fields?: Record<string, unknown> | undefined;
1852
1851
  email?: string | undefined;
1852
+ fields?: Record<string, unknown> | undefined;
1853
1853
  real_name?: string | undefined;
1854
1854
  phone?: string | undefined;
1855
1855
  skype?: string | undefined;
@@ -1885,10 +1885,10 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1885
1885
  error: z.ZodString;
1886
1886
  success: z.ZodBoolean;
1887
1887
  }, "strip", z.ZodTypeAny, {
1888
+ success: boolean;
1889
+ error: string;
1888
1890
  operation: "get_user_info";
1889
1891
  ok: boolean;
1890
- error: string;
1891
- success: boolean;
1892
1892
  user?: {
1893
1893
  name: string;
1894
1894
  id: string;
@@ -1901,8 +1901,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1901
1901
  tz_offset?: number | undefined;
1902
1902
  profile?: {
1903
1903
  title?: string | undefined;
1904
- fields?: Record<string, unknown> | undefined;
1905
1904
  email?: string | undefined;
1905
+ fields?: Record<string, unknown> | undefined;
1906
1906
  real_name?: string | undefined;
1907
1907
  phone?: string | undefined;
1908
1908
  skype?: string | undefined;
@@ -1936,10 +1936,10 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1936
1936
  has_2fa?: boolean | undefined;
1937
1937
  } | undefined;
1938
1938
  }, {
1939
+ success: boolean;
1940
+ error: string;
1939
1941
  operation: "get_user_info";
1940
1942
  ok: boolean;
1941
- error: string;
1942
- success: boolean;
1943
1943
  user?: {
1944
1944
  name: string;
1945
1945
  id: string;
@@ -1952,8 +1952,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1952
1952
  tz_offset?: number | undefined;
1953
1953
  profile?: {
1954
1954
  title?: string | undefined;
1955
- fields?: Record<string, unknown> | undefined;
1956
1955
  email?: string | undefined;
1956
+ fields?: Record<string, unknown> | undefined;
1957
1957
  real_name?: string | undefined;
1958
1958
  phone?: string | undefined;
1959
1959
  skype?: string | undefined;
@@ -2026,8 +2026,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2026
2026
  image_1024: z.ZodOptional<z.ZodString>;
2027
2027
  }, "strip", z.ZodTypeAny, {
2028
2028
  title?: string | undefined;
2029
- fields?: Record<string, unknown> | undefined;
2030
2029
  email?: string | undefined;
2030
+ fields?: Record<string, unknown> | undefined;
2031
2031
  real_name?: string | undefined;
2032
2032
  phone?: string | undefined;
2033
2033
  skype?: string | undefined;
@@ -2051,8 +2051,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2051
2051
  image_1024?: string | undefined;
2052
2052
  }, {
2053
2053
  title?: string | undefined;
2054
- fields?: Record<string, unknown> | undefined;
2055
2054
  email?: string | undefined;
2055
+ fields?: Record<string, unknown> | undefined;
2056
2056
  real_name?: string | undefined;
2057
2057
  phone?: string | undefined;
2058
2058
  skype?: string | undefined;
@@ -2096,8 +2096,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2096
2096
  tz_offset?: number | undefined;
2097
2097
  profile?: {
2098
2098
  title?: string | undefined;
2099
- fields?: Record<string, unknown> | undefined;
2100
2099
  email?: string | undefined;
2100
+ fields?: Record<string, unknown> | undefined;
2101
2101
  real_name?: string | undefined;
2102
2102
  phone?: string | undefined;
2103
2103
  skype?: string | undefined;
@@ -2141,8 +2141,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2141
2141
  tz_offset?: number | undefined;
2142
2142
  profile?: {
2143
2143
  title?: string | undefined;
2144
- fields?: Record<string, unknown> | undefined;
2145
2144
  email?: string | undefined;
2145
+ fields?: Record<string, unknown> | undefined;
2146
2146
  real_name?: string | undefined;
2147
2147
  phone?: string | undefined;
2148
2148
  skype?: string | undefined;
@@ -2185,10 +2185,10 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2185
2185
  error: z.ZodString;
2186
2186
  success: z.ZodBoolean;
2187
2187
  }, "strip", z.ZodTypeAny, {
2188
+ success: boolean;
2189
+ error: string;
2188
2190
  operation: "list_users";
2189
2191
  ok: boolean;
2190
- error: string;
2191
- success: boolean;
2192
2192
  response_metadata?: {
2193
2193
  next_cursor: string;
2194
2194
  } | undefined;
@@ -2204,8 +2204,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2204
2204
  tz_offset?: number | undefined;
2205
2205
  profile?: {
2206
2206
  title?: string | undefined;
2207
- fields?: Record<string, unknown> | undefined;
2208
2207
  email?: string | undefined;
2208
+ fields?: Record<string, unknown> | undefined;
2209
2209
  real_name?: string | undefined;
2210
2210
  phone?: string | undefined;
2211
2211
  skype?: string | undefined;
@@ -2239,10 +2239,10 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2239
2239
  has_2fa?: boolean | undefined;
2240
2240
  }[] | undefined;
2241
2241
  }, {
2242
+ success: boolean;
2243
+ error: string;
2242
2244
  operation: "list_users";
2243
2245
  ok: boolean;
2244
- error: string;
2245
- success: boolean;
2246
2246
  response_metadata?: {
2247
2247
  next_cursor: string;
2248
2248
  } | undefined;
@@ -2258,8 +2258,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2258
2258
  tz_offset?: number | undefined;
2259
2259
  profile?: {
2260
2260
  title?: string | undefined;
2261
- fields?: Record<string, unknown> | undefined;
2262
2261
  email?: string | undefined;
2262
+ fields?: Record<string, unknown> | undefined;
2263
2263
  real_name?: string | undefined;
2264
2264
  phone?: string | undefined;
2265
2265
  skype?: string | undefined;
@@ -2394,10 +2394,10 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2394
2394
  error: z.ZodString;
2395
2395
  success: z.ZodBoolean;
2396
2396
  }, "strip", z.ZodTypeAny, {
2397
+ success: boolean;
2398
+ error: string;
2397
2399
  operation: "get_conversation_history";
2398
2400
  ok: boolean;
2399
- error: string;
2400
- success: boolean;
2401
2401
  response_metadata?: {
2402
2402
  next_cursor: string;
2403
2403
  } | undefined;
@@ -2429,10 +2429,10 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2429
2429
  }[] | undefined;
2430
2430
  has_more?: boolean | undefined;
2431
2431
  }, {
2432
+ success: boolean;
2433
+ error: string;
2432
2434
  operation: "get_conversation_history";
2433
2435
  ok: boolean;
2434
- error: string;
2435
- success: boolean;
2436
2436
  response_metadata?: {
2437
2437
  next_cursor: string;
2438
2438
  } | undefined;
@@ -2565,10 +2565,10 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2565
2565
  error: z.ZodString;
2566
2566
  success: z.ZodBoolean;
2567
2567
  }, "strip", z.ZodTypeAny, {
2568
+ success: boolean;
2569
+ error: string;
2568
2570
  operation: "get_thread_replies";
2569
2571
  ok: boolean;
2570
- error: string;
2571
- success: boolean;
2572
2572
  response_metadata?: {
2573
2573
  next_cursor: string;
2574
2574
  } | undefined;
@@ -2600,10 +2600,10 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2600
2600
  }[] | undefined;
2601
2601
  has_more?: boolean | undefined;
2602
2602
  }, {
2603
+ success: boolean;
2604
+ error: string;
2603
2605
  operation: "get_thread_replies";
2604
2606
  ok: boolean;
2605
- error: string;
2606
- success: boolean;
2607
2607
  response_metadata?: {
2608
2608
  next_cursor: string;
2609
2609
  } | undefined;
@@ -2731,10 +2731,10 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2731
2731
  error: z.ZodString;
2732
2732
  success: z.ZodBoolean;
2733
2733
  }, "strip", z.ZodTypeAny, {
2734
+ success: boolean;
2735
+ error: string;
2734
2736
  operation: "update_message";
2735
2737
  ok: boolean;
2736
- error: string;
2737
- success: boolean;
2738
2738
  message?: {
2739
2739
  type: string;
2740
2740
  text?: string | undefined;
@@ -2765,10 +2765,10 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2765
2765
  text?: string | undefined;
2766
2766
  ts?: string | undefined;
2767
2767
  }, {
2768
+ success: boolean;
2769
+ error: string;
2768
2770
  operation: "update_message";
2769
2771
  ok: boolean;
2770
- error: string;
2771
- success: boolean;
2772
2772
  message?: {
2773
2773
  type: string;
2774
2774
  text?: string | undefined;
@@ -2806,17 +2806,17 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2806
2806
  error: z.ZodString;
2807
2807
  success: z.ZodBoolean;
2808
2808
  }, "strip", z.ZodTypeAny, {
2809
+ success: boolean;
2810
+ error: string;
2809
2811
  operation: "delete_message";
2810
2812
  ok: boolean;
2811
- error: string;
2812
- success: boolean;
2813
2813
  channel?: string | undefined;
2814
2814
  ts?: string | undefined;
2815
2815
  }, {
2816
+ success: boolean;
2817
+ error: string;
2816
2818
  operation: "delete_message";
2817
2819
  ok: boolean;
2818
- error: string;
2819
- success: boolean;
2820
2820
  channel?: string | undefined;
2821
2821
  ts?: string | undefined;
2822
2822
  }>, z.ZodObject<{
@@ -2825,30 +2825,30 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2825
2825
  error: z.ZodString;
2826
2826
  success: z.ZodBoolean;
2827
2827
  }, "strip", z.ZodTypeAny, {
2828
+ success: boolean;
2829
+ error: string;
2828
2830
  operation: "add_reaction";
2829
2831
  ok: boolean;
2830
- error: string;
2831
- success: boolean;
2832
2832
  }, {
2833
+ success: boolean;
2834
+ error: string;
2833
2835
  operation: "add_reaction";
2834
2836
  ok: boolean;
2835
- error: string;
2836
- success: boolean;
2837
2837
  }>, z.ZodObject<{
2838
2838
  operation: z.ZodLiteral<"remove_reaction">;
2839
2839
  ok: z.ZodBoolean;
2840
2840
  error: z.ZodString;
2841
2841
  success: z.ZodBoolean;
2842
2842
  }, "strip", z.ZodTypeAny, {
2843
+ success: boolean;
2844
+ error: string;
2843
2845
  operation: "remove_reaction";
2844
2846
  ok: boolean;
2845
- error: string;
2846
- success: boolean;
2847
2847
  }, {
2848
+ success: boolean;
2849
+ error: string;
2848
2850
  operation: "remove_reaction";
2849
2851
  ok: boolean;
2850
- error: string;
2851
- success: boolean;
2852
2852
  }>, z.ZodObject<{
2853
2853
  operation: z.ZodLiteral<"join_channel">;
2854
2854
  ok: z.ZodBoolean;
@@ -2972,10 +2972,10 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2972
2972
  error: z.ZodString;
2973
2973
  success: z.ZodBoolean;
2974
2974
  }, "strip", z.ZodTypeAny, {
2975
+ success: boolean;
2976
+ error: string;
2975
2977
  operation: "join_channel";
2976
2978
  ok: boolean;
2977
- error: string;
2978
- success: boolean;
2979
2979
  channel?: {
2980
2980
  name: string;
2981
2981
  id: string;
@@ -3012,10 +3012,10 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
3012
3012
  } | undefined;
3013
3013
  already_in_channel?: boolean | undefined;
3014
3014
  }, {
3015
+ success: boolean;
3016
+ error: string;
3015
3017
  operation: "join_channel";
3016
3018
  ok: boolean;
3017
- error: string;
3018
- success: boolean;
3019
3019
  channel?: {
3020
3020
  name: string;
3021
3021
  id: string;
@@ -3162,8 +3162,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
3162
3162
  ims: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3163
3163
  has_rich_preview: z.ZodOptional<z.ZodBoolean>;
3164
3164
  }, "strip", z.ZodTypeAny, {
3165
- username: string;
3166
3165
  name: string;
3166
+ username: string;
3167
3167
  user: string;
3168
3168
  timestamp: number;
3169
3169
  id: string;
@@ -3207,8 +3207,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
3207
3207
  ims?: string[] | undefined;
3208
3208
  has_rich_preview?: boolean | undefined;
3209
3209
  }, {
3210
- username: string;
3211
3210
  name: string;
3211
+ username: string;
3212
3212
  user: string;
3213
3213
  timestamp: number;
3214
3214
  id: string;
@@ -3255,13 +3255,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
3255
3255
  error: z.ZodString;
3256
3256
  success: z.ZodBoolean;
3257
3257
  }, "strip", z.ZodTypeAny, {
3258
+ success: boolean;
3259
+ error: string;
3258
3260
  operation: "upload_file";
3259
3261
  ok: boolean;
3260
- error: string;
3261
- success: boolean;
3262
3262
  file?: {
3263
- username: string;
3264
3263
  name: string;
3264
+ username: string;
3265
3265
  user: string;
3266
3266
  timestamp: number;
3267
3267
  id: string;
@@ -3306,13 +3306,13 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
3306
3306
  has_rich_preview?: boolean | undefined;
3307
3307
  } | undefined;
3308
3308
  }, {
3309
+ success: boolean;
3310
+ error: string;
3309
3311
  operation: "upload_file";
3310
3312
  ok: boolean;
3311
- error: string;
3312
- success: boolean;
3313
3313
  file?: {
3314
- username: string;
3315
3314
  name: string;
3315
+ username: string;
3316
3316
  user: string;
3317
3317
  timestamp: number;
3318
3318
  id: string;
@@ -3365,18 +3365,18 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
3365
3365
  error: z.ZodString;
3366
3366
  success: z.ZodBoolean;
3367
3367
  }, "strip", z.ZodTypeAny, {
3368
+ success: boolean;
3369
+ error: string;
3368
3370
  operation: "schedule_message";
3369
3371
  ok: boolean;
3370
- error: string;
3371
- success: boolean;
3372
3372
  channel?: string | undefined;
3373
3373
  post_at?: number | undefined;
3374
3374
  scheduled_message_id?: string | undefined;
3375
3375
  }, {
3376
+ success: boolean;
3377
+ error: string;
3376
3378
  operation: "schedule_message";
3377
3379
  ok: boolean;
3378
- error: string;
3379
- success: boolean;
3380
3380
  channel?: string | undefined;
3381
3381
  post_at?: number | undefined;
3382
3382
  scheduled_message_id?: string | undefined;
@@ -3430,6 +3430,11 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
3430
3430
  ts: z.ZodOptional<z.ZodNumber>;
3431
3431
  }, "strip", z.ZodTypeAny, {
3432
3432
  title?: string | undefined;
3433
+ fields?: {
3434
+ value: string;
3435
+ title: string;
3436
+ short?: boolean | undefined;
3437
+ }[] | undefined;
3433
3438
  text?: string | undefined;
3434
3439
  color?: string | undefined;
3435
3440
  pretext?: string | undefined;
@@ -3437,11 +3442,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
3437
3442
  author_link?: string | undefined;
3438
3443
  author_icon?: string | undefined;
3439
3444
  title_link?: string | undefined;
3440
- fields?: {
3441
- value: string;
3442
- title: string;
3443
- short?: boolean | undefined;
3444
- }[] | undefined;
3445
3445
  image_url?: string | undefined;
3446
3446
  thumb_url?: string | undefined;
3447
3447
  footer?: string | undefined;
@@ -3449,6 +3449,11 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
3449
3449
  ts?: number | undefined;
3450
3450
  }, {
3451
3451
  title?: string | undefined;
3452
+ fields?: {
3453
+ value: string;
3454
+ title: string;
3455
+ short?: boolean | undefined;
3456
+ }[] | undefined;
3452
3457
  text?: string | undefined;
3453
3458
  color?: string | undefined;
3454
3459
  pretext?: string | undefined;
@@ -3456,11 +3461,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
3456
3461
  author_link?: string | undefined;
3457
3462
  author_icon?: string | undefined;
3458
3463
  title_link?: string | undefined;
3459
- fields?: {
3460
- value: string;
3461
- title: string;
3462
- short?: boolean | undefined;
3463
- }[] | undefined;
3464
3464
  image_url?: string | undefined;
3465
3465
  thumb_url?: string | undefined;
3466
3466
  footer?: string | undefined;
@@ -3494,16 +3494,16 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
3494
3494
  verbatim: z.ZodOptional<z.ZodBoolean>;
3495
3495
  }, "strip", z.ZodTypeAny, {
3496
3496
  type: "plain_text" | "mrkdwn" | "image";
3497
+ emoji?: boolean | undefined;
3497
3498
  text?: string | undefined;
3498
3499
  image_url?: string | undefined;
3499
- emoji?: boolean | undefined;
3500
3500
  verbatim?: boolean | undefined;
3501
3501
  alt_text?: string | undefined;
3502
3502
  }, {
3503
3503
  type: "plain_text" | "mrkdwn" | "image";
3504
+ emoji?: boolean | undefined;
3504
3505
  text?: string | undefined;
3505
3506
  image_url?: string | undefined;
3506
- emoji?: boolean | undefined;
3507
3507
  verbatim?: boolean | undefined;
3508
3508
  alt_text?: string | undefined;
3509
3509
  }>, "many">>;
@@ -3534,16 +3534,16 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
3534
3534
  verbatim: z.ZodOptional<z.ZodBoolean>;
3535
3535
  }, "strip", z.ZodTypeAny, {
3536
3536
  type: "plain_text" | "mrkdwn" | "image";
3537
+ emoji?: boolean | undefined;
3537
3538
  text?: string | undefined;
3538
3539
  image_url?: string | undefined;
3539
- emoji?: boolean | undefined;
3540
3540
  verbatim?: boolean | undefined;
3541
3541
  alt_text?: string | undefined;
3542
3542
  }, {
3543
3543
  type: "plain_text" | "mrkdwn" | "image";
3544
+ emoji?: boolean | undefined;
3544
3545
  text?: string | undefined;
3545
3546
  image_url?: string | undefined;
3546
- emoji?: boolean | undefined;
3547
3547
  verbatim?: boolean | undefined;
3548
3548
  alt_text?: string | undefined;
3549
3549
  }>, "many">>;
@@ -3574,16 +3574,16 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
3574
3574
  verbatim: z.ZodOptional<z.ZodBoolean>;
3575
3575
  }, "strip", z.ZodTypeAny, {
3576
3576
  type: "plain_text" | "mrkdwn" | "image";
3577
+ emoji?: boolean | undefined;
3577
3578
  text?: string | undefined;
3578
3579
  image_url?: string | undefined;
3579
- emoji?: boolean | undefined;
3580
3580
  verbatim?: boolean | undefined;
3581
3581
  alt_text?: string | undefined;
3582
3582
  }, {
3583
3583
  type: "plain_text" | "mrkdwn" | "image";
3584
+ emoji?: boolean | undefined;
3584
3585
  text?: string | undefined;
3585
3586
  image_url?: string | undefined;
3586
- emoji?: boolean | undefined;
3587
3587
  verbatim?: boolean | undefined;
3588
3588
  alt_text?: string | undefined;
3589
3589
  }>, "many">>;
@@ -3600,11 +3600,17 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
3600
3600
  reply_broadcast: boolean;
3601
3601
  unfurl_links: boolean;
3602
3602
  unfurl_media: boolean;
3603
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
3603
3604
  username?: string | undefined;
3604
3605
  icon_emoji?: string | undefined;
3605
3606
  icon_url?: string | undefined;
3606
3607
  attachments?: {
3607
3608
  title?: string | undefined;
3609
+ fields?: {
3610
+ value: string;
3611
+ title: string;
3612
+ short?: boolean | undefined;
3613
+ }[] | undefined;
3608
3614
  text?: string | undefined;
3609
3615
  color?: string | undefined;
3610
3616
  pretext?: string | undefined;
@@ -3612,11 +3618,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
3612
3618
  author_link?: string | undefined;
3613
3619
  author_icon?: string | undefined;
3614
3620
  title_link?: string | undefined;
3615
- fields?: {
3616
- value: string;
3617
- title: string;
3618
- short?: boolean | undefined;
3619
- }[] | undefined;
3620
3621
  image_url?: string | undefined;
3621
3622
  thumb_url?: string | undefined;
3622
3623
  footer?: string | undefined;
@@ -3650,43 +3651,43 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
3650
3651
  verbatim: z.ZodOptional<z.ZodBoolean>;
3651
3652
  }, "strip", z.ZodTypeAny, {
3652
3653
  type: "plain_text" | "mrkdwn" | "image";
3654
+ emoji?: boolean | undefined;
3653
3655
  text?: string | undefined;
3654
3656
  image_url?: string | undefined;
3655
- emoji?: boolean | undefined;
3656
3657
  verbatim?: boolean | undefined;
3657
3658
  alt_text?: string | undefined;
3658
3659
  }, {
3659
3660
  type: "plain_text" | "mrkdwn" | "image";
3661
+ emoji?: boolean | undefined;
3660
3662
  text?: string | undefined;
3661
3663
  image_url?: string | undefined;
3662
- emoji?: boolean | undefined;
3663
3664
  verbatim?: boolean | undefined;
3664
3665
  alt_text?: string | undefined;
3665
3666
  }>, "many">>;
3666
3667
  }, z.ZodTypeAny, "passthrough">[] | undefined;
3667
3668
  thread_ts?: string | undefined;
3668
- credentials?: Partial<Record<CredentialType, string>> | undefined;
3669
3669
  }, {
3670
3670
  operation: "send_message";
3671
3671
  channel: string;
3672
3672
  text: string;
3673
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
3673
3674
  username?: string | undefined;
3674
3675
  icon_emoji?: string | undefined;
3675
3676
  icon_url?: string | undefined;
3676
3677
  attachments?: {
3677
3678
  title?: string | undefined;
3678
- text?: string | undefined;
3679
- color?: string | undefined;
3680
- pretext?: string | undefined;
3681
- author_name?: string | undefined;
3682
- author_link?: string | undefined;
3683
- author_icon?: string | undefined;
3684
- title_link?: string | undefined;
3685
3679
  fields?: {
3686
3680
  value: string;
3687
3681
  title: string;
3688
3682
  short?: boolean | undefined;
3689
3683
  }[] | undefined;
3684
+ text?: string | undefined;
3685
+ color?: string | undefined;
3686
+ pretext?: string | undefined;
3687
+ author_name?: string | undefined;
3688
+ author_link?: string | undefined;
3689
+ author_icon?: string | undefined;
3690
+ title_link?: string | undefined;
3690
3691
  image_url?: string | undefined;
3691
3692
  thumb_url?: string | undefined;
3692
3693
  footer?: string | undefined;
@@ -3720,23 +3721,22 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
3720
3721
  verbatim: z.ZodOptional<z.ZodBoolean>;
3721
3722
  }, "strip", z.ZodTypeAny, {
3722
3723
  type: "plain_text" | "mrkdwn" | "image";
3724
+ emoji?: boolean | undefined;
3723
3725
  text?: string | undefined;
3724
3726
  image_url?: string | undefined;
3725
- emoji?: boolean | undefined;
3726
3727
  verbatim?: boolean | undefined;
3727
3728
  alt_text?: string | undefined;
3728
3729
  }, {
3729
3730
  type: "plain_text" | "mrkdwn" | "image";
3731
+ emoji?: boolean | undefined;
3730
3732
  text?: string | undefined;
3731
3733
  image_url?: string | undefined;
3732
- emoji?: boolean | undefined;
3733
3734
  verbatim?: boolean | undefined;
3734
3735
  alt_text?: string | undefined;
3735
3736
  }>, "many">>;
3736
3737
  }, z.ZodTypeAny, "passthrough">[] | undefined;
3737
3738
  thread_ts?: string | undefined;
3738
3739
  reply_broadcast?: boolean | undefined;
3739
- credentials?: Partial<Record<CredentialType, string>> | undefined;
3740
3740
  unfurl_links?: boolean | undefined;
3741
3741
  unfurl_media?: boolean | undefined;
3742
3742
  }>, z.ZodObject<{
@@ -3818,8 +3818,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
3818
3818
  cursor: z.ZodOptional<z.ZodString>;
3819
3819
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
3820
3820
  }, "strip", z.ZodTypeAny, {
3821
- operation: "get_conversation_history";
3822
3821
  inclusive: boolean;
3822
+ operation: "get_conversation_history";
3823
3823
  channel: string;
3824
3824
  limit: number;
3825
3825
  credentials?: Partial<Record<CredentialType, string>> | undefined;
@@ -3846,8 +3846,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
3846
3846
  cursor: z.ZodOptional<z.ZodString>;
3847
3847
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
3848
3848
  }, "strip", z.ZodTypeAny, {
3849
- operation: "get_thread_replies";
3850
3849
  inclusive: boolean;
3850
+ operation: "get_thread_replies";
3851
3851
  channel: string;
3852
3852
  ts: string;
3853
3853
  limit: number;
@@ -3899,6 +3899,11 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
3899
3899
  ts: z.ZodOptional<z.ZodNumber>;
3900
3900
  }, "strip", z.ZodTypeAny, {
3901
3901
  title?: string | undefined;
3902
+ fields?: {
3903
+ value: string;
3904
+ title: string;
3905
+ short?: boolean | undefined;
3906
+ }[] | undefined;
3902
3907
  text?: string | undefined;
3903
3908
  color?: string | undefined;
3904
3909
  pretext?: string | undefined;
@@ -3906,11 +3911,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
3906
3911
  author_link?: string | undefined;
3907
3912
  author_icon?: string | undefined;
3908
3913
  title_link?: string | undefined;
3909
- fields?: {
3910
- value: string;
3911
- title: string;
3912
- short?: boolean | undefined;
3913
- }[] | undefined;
3914
3914
  image_url?: string | undefined;
3915
3915
  thumb_url?: string | undefined;
3916
3916
  footer?: string | undefined;
@@ -3918,6 +3918,11 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
3918
3918
  ts?: number | undefined;
3919
3919
  }, {
3920
3920
  title?: string | undefined;
3921
+ fields?: {
3922
+ value: string;
3923
+ title: string;
3924
+ short?: boolean | undefined;
3925
+ }[] | undefined;
3921
3926
  text?: string | undefined;
3922
3927
  color?: string | undefined;
3923
3928
  pretext?: string | undefined;
@@ -3925,11 +3930,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
3925
3930
  author_link?: string | undefined;
3926
3931
  author_icon?: string | undefined;
3927
3932
  title_link?: string | undefined;
3928
- fields?: {
3929
- value: string;
3930
- title: string;
3931
- short?: boolean | undefined;
3932
- }[] | undefined;
3933
3933
  image_url?: string | undefined;
3934
3934
  thumb_url?: string | undefined;
3935
3935
  footer?: string | undefined;
@@ -3963,16 +3963,16 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
3963
3963
  verbatim: z.ZodOptional<z.ZodBoolean>;
3964
3964
  }, "strip", z.ZodTypeAny, {
3965
3965
  type: "plain_text" | "mrkdwn" | "image";
3966
+ emoji?: boolean | undefined;
3966
3967
  text?: string | undefined;
3967
3968
  image_url?: string | undefined;
3968
- emoji?: boolean | undefined;
3969
3969
  verbatim?: boolean | undefined;
3970
3970
  alt_text?: string | undefined;
3971
3971
  }, {
3972
3972
  type: "plain_text" | "mrkdwn" | "image";
3973
+ emoji?: boolean | undefined;
3973
3974
  text?: string | undefined;
3974
3975
  image_url?: string | undefined;
3975
- emoji?: boolean | undefined;
3976
3976
  verbatim?: boolean | undefined;
3977
3977
  alt_text?: string | undefined;
3978
3978
  }>, "many">>;
@@ -4003,16 +4003,16 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4003
4003
  verbatim: z.ZodOptional<z.ZodBoolean>;
4004
4004
  }, "strip", z.ZodTypeAny, {
4005
4005
  type: "plain_text" | "mrkdwn" | "image";
4006
+ emoji?: boolean | undefined;
4006
4007
  text?: string | undefined;
4007
4008
  image_url?: string | undefined;
4008
- emoji?: boolean | undefined;
4009
4009
  verbatim?: boolean | undefined;
4010
4010
  alt_text?: string | undefined;
4011
4011
  }, {
4012
4012
  type: "plain_text" | "mrkdwn" | "image";
4013
+ emoji?: boolean | undefined;
4013
4014
  text?: string | undefined;
4014
4015
  image_url?: string | undefined;
4015
- emoji?: boolean | undefined;
4016
4016
  verbatim?: boolean | undefined;
4017
4017
  alt_text?: string | undefined;
4018
4018
  }>, "many">>;
@@ -4043,16 +4043,16 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4043
4043
  verbatim: z.ZodOptional<z.ZodBoolean>;
4044
4044
  }, "strip", z.ZodTypeAny, {
4045
4045
  type: "plain_text" | "mrkdwn" | "image";
4046
+ emoji?: boolean | undefined;
4046
4047
  text?: string | undefined;
4047
4048
  image_url?: string | undefined;
4048
- emoji?: boolean | undefined;
4049
4049
  verbatim?: boolean | undefined;
4050
4050
  alt_text?: string | undefined;
4051
4051
  }, {
4052
4052
  type: "plain_text" | "mrkdwn" | "image";
4053
+ emoji?: boolean | undefined;
4053
4054
  text?: string | undefined;
4054
4055
  image_url?: string | undefined;
4055
- emoji?: boolean | undefined;
4056
4056
  verbatim?: boolean | undefined;
4057
4057
  alt_text?: string | undefined;
4058
4058
  }>, "many">>;
@@ -4062,9 +4062,15 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4062
4062
  operation: "update_message";
4063
4063
  channel: string;
4064
4064
  ts: string;
4065
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
4065
4066
  text?: string | undefined;
4066
4067
  attachments?: {
4067
4068
  title?: string | undefined;
4069
+ fields?: {
4070
+ value: string;
4071
+ title: string;
4072
+ short?: boolean | undefined;
4073
+ }[] | undefined;
4068
4074
  text?: string | undefined;
4069
4075
  color?: string | undefined;
4070
4076
  pretext?: string | undefined;
@@ -4072,11 +4078,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4072
4078
  author_link?: string | undefined;
4073
4079
  author_icon?: string | undefined;
4074
4080
  title_link?: string | undefined;
4075
- fields?: {
4076
- value: string;
4077
- title: string;
4078
- short?: boolean | undefined;
4079
- }[] | undefined;
4080
4081
  image_url?: string | undefined;
4081
4082
  thumb_url?: string | undefined;
4082
4083
  footer?: string | undefined;
@@ -4110,28 +4111,33 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4110
4111
  verbatim: z.ZodOptional<z.ZodBoolean>;
4111
4112
  }, "strip", z.ZodTypeAny, {
4112
4113
  type: "plain_text" | "mrkdwn" | "image";
4114
+ emoji?: boolean | undefined;
4113
4115
  text?: string | undefined;
4114
4116
  image_url?: string | undefined;
4115
- emoji?: boolean | undefined;
4116
4117
  verbatim?: boolean | undefined;
4117
4118
  alt_text?: string | undefined;
4118
4119
  }, {
4119
4120
  type: "plain_text" | "mrkdwn" | "image";
4121
+ emoji?: boolean | undefined;
4120
4122
  text?: string | undefined;
4121
4123
  image_url?: string | undefined;
4122
- emoji?: boolean | undefined;
4123
4124
  verbatim?: boolean | undefined;
4124
4125
  alt_text?: string | undefined;
4125
4126
  }>, "many">>;
4126
4127
  }, z.ZodTypeAny, "passthrough">[] | undefined;
4127
- credentials?: Partial<Record<CredentialType, string>> | undefined;
4128
4128
  }, {
4129
4129
  operation: "update_message";
4130
4130
  channel: string;
4131
4131
  ts: string;
4132
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
4132
4133
  text?: string | undefined;
4133
4134
  attachments?: {
4134
4135
  title?: string | undefined;
4136
+ fields?: {
4137
+ value: string;
4138
+ title: string;
4139
+ short?: boolean | undefined;
4140
+ }[] | undefined;
4135
4141
  text?: string | undefined;
4136
4142
  color?: string | undefined;
4137
4143
  pretext?: string | undefined;
@@ -4139,11 +4145,6 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4139
4145
  author_link?: string | undefined;
4140
4146
  author_icon?: string | undefined;
4141
4147
  title_link?: string | undefined;
4142
- fields?: {
4143
- value: string;
4144
- title: string;
4145
- short?: boolean | undefined;
4146
- }[] | undefined;
4147
4148
  image_url?: string | undefined;
4148
4149
  thumb_url?: string | undefined;
4149
4150
  footer?: string | undefined;
@@ -4177,21 +4178,20 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4177
4178
  verbatim: z.ZodOptional<z.ZodBoolean>;
4178
4179
  }, "strip", z.ZodTypeAny, {
4179
4180
  type: "plain_text" | "mrkdwn" | "image";
4181
+ emoji?: boolean | undefined;
4180
4182
  text?: string | undefined;
4181
4183
  image_url?: string | undefined;
4182
- emoji?: boolean | undefined;
4183
4184
  verbatim?: boolean | undefined;
4184
4185
  alt_text?: string | undefined;
4185
4186
  }, {
4186
4187
  type: "plain_text" | "mrkdwn" | "image";
4188
+ emoji?: boolean | undefined;
4187
4189
  text?: string | undefined;
4188
4190
  image_url?: string | undefined;
4189
- emoji?: boolean | undefined;
4190
4191
  verbatim?: boolean | undefined;
4191
4192
  alt_text?: string | undefined;
4192
4193
  }>, "many">>;
4193
4194
  }, z.ZodTypeAny, "passthrough">[] | undefined;
4194
- credentials?: Partial<Record<CredentialType, string>> | undefined;
4195
4195
  }>, z.ZodObject<{
4196
4196
  operation: z.ZodLiteral<"delete_message">;
4197
4197
  channel: z.ZodString;
@@ -4214,15 +4214,15 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4214
4214
  timestamp: z.ZodString;
4215
4215
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
4216
4216
  }, "strip", z.ZodTypeAny, {
4217
+ name: string;
4217
4218
  operation: "add_reaction";
4218
4219
  channel: string;
4219
- name: string;
4220
4220
  timestamp: string;
4221
4221
  credentials?: Partial<Record<CredentialType, string>> | undefined;
4222
4222
  }, {
4223
+ name: string;
4223
4224
  operation: "add_reaction";
4224
4225
  channel: string;
4225
- name: string;
4226
4226
  timestamp: string;
4227
4227
  credentials?: Partial<Record<CredentialType, string>> | undefined;
4228
4228
  }>, z.ZodObject<{
@@ -4232,15 +4232,15 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4232
4232
  timestamp: z.ZodString;
4233
4233
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
4234
4234
  }, "strip", z.ZodTypeAny, {
4235
+ name: string;
4235
4236
  operation: "remove_reaction";
4236
4237
  channel: string;
4237
- name: string;
4238
4238
  timestamp: string;
4239
4239
  credentials?: Partial<Record<CredentialType, string>> | undefined;
4240
4240
  }, {
4241
+ name: string;
4241
4242
  operation: "remove_reaction";
4242
4243
  channel: string;
4243
- name: string;
4244
4244
  timestamp: string;
4245
4245
  credentials?: Partial<Record<CredentialType, string>> | undefined;
4246
4246
  }>, z.ZodObject<{
@@ -4269,8 +4269,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4269
4269
  channel: string;
4270
4270
  file_path: string;
4271
4271
  title?: string | undefined;
4272
- thread_ts?: string | undefined;
4273
4272
  credentials?: Partial<Record<CredentialType, string>> | undefined;
4273
+ thread_ts?: string | undefined;
4274
4274
  filename?: string | undefined;
4275
4275
  initial_comment?: string | undefined;
4276
4276
  }, {
@@ -4278,8 +4278,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4278
4278
  channel: string;
4279
4279
  file_path: string;
4280
4280
  title?: string | undefined;
4281
- thread_ts?: string | undefined;
4282
4281
  credentials?: Partial<Record<CredentialType, string>> | undefined;
4282
+ thread_ts?: string | undefined;
4283
4283
  filename?: string | undefined;
4284
4284
  initial_comment?: string | undefined;
4285
4285
  }>, z.ZodObject<{
@@ -4315,16 +4315,16 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4315
4315
  verbatim: z.ZodOptional<z.ZodBoolean>;
4316
4316
  }, "strip", z.ZodTypeAny, {
4317
4317
  type: "plain_text" | "mrkdwn" | "image";
4318
+ emoji?: boolean | undefined;
4318
4319
  text?: string | undefined;
4319
4320
  image_url?: string | undefined;
4320
- emoji?: boolean | undefined;
4321
4321
  verbatim?: boolean | undefined;
4322
4322
  alt_text?: string | undefined;
4323
4323
  }, {
4324
4324
  type: "plain_text" | "mrkdwn" | "image";
4325
+ emoji?: boolean | undefined;
4325
4326
  text?: string | undefined;
4326
4327
  image_url?: string | undefined;
4327
- emoji?: boolean | undefined;
4328
4328
  verbatim?: boolean | undefined;
4329
4329
  alt_text?: string | undefined;
4330
4330
  }>, "many">>;
@@ -4355,16 +4355,16 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4355
4355
  verbatim: z.ZodOptional<z.ZodBoolean>;
4356
4356
  }, "strip", z.ZodTypeAny, {
4357
4357
  type: "plain_text" | "mrkdwn" | "image";
4358
+ emoji?: boolean | undefined;
4358
4359
  text?: string | undefined;
4359
4360
  image_url?: string | undefined;
4360
- emoji?: boolean | undefined;
4361
4361
  verbatim?: boolean | undefined;
4362
4362
  alt_text?: string | undefined;
4363
4363
  }, {
4364
4364
  type: "plain_text" | "mrkdwn" | "image";
4365
+ emoji?: boolean | undefined;
4365
4366
  text?: string | undefined;
4366
4367
  image_url?: string | undefined;
4367
- emoji?: boolean | undefined;
4368
4368
  verbatim?: boolean | undefined;
4369
4369
  alt_text?: string | undefined;
4370
4370
  }>, "many">>;
@@ -4395,16 +4395,16 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4395
4395
  verbatim: z.ZodOptional<z.ZodBoolean>;
4396
4396
  }, "strip", z.ZodTypeAny, {
4397
4397
  type: "plain_text" | "mrkdwn" | "image";
4398
+ emoji?: boolean | undefined;
4398
4399
  text?: string | undefined;
4399
4400
  image_url?: string | undefined;
4400
- emoji?: boolean | undefined;
4401
4401
  verbatim?: boolean | undefined;
4402
4402
  alt_text?: string | undefined;
4403
4403
  }, {
4404
4404
  type: "plain_text" | "mrkdwn" | "image";
4405
+ emoji?: boolean | undefined;
4405
4406
  text?: string | undefined;
4406
4407
  image_url?: string | undefined;
4407
- emoji?: boolean | undefined;
4408
4408
  verbatim?: boolean | undefined;
4409
4409
  alt_text?: string | undefined;
4410
4410
  }>, "many">>;
@@ -4419,6 +4419,7 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4419
4419
  unfurl_links: boolean;
4420
4420
  unfurl_media: boolean;
4421
4421
  post_at: number;
4422
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
4422
4423
  blocks?: z.objectOutputType<{
4423
4424
  type: z.ZodString;
4424
4425
  text: z.ZodOptional<z.ZodObject<{
@@ -4446,27 +4447,27 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4446
4447
  verbatim: z.ZodOptional<z.ZodBoolean>;
4447
4448
  }, "strip", z.ZodTypeAny, {
4448
4449
  type: "plain_text" | "mrkdwn" | "image";
4450
+ emoji?: boolean | undefined;
4449
4451
  text?: string | undefined;
4450
4452
  image_url?: string | undefined;
4451
- emoji?: boolean | undefined;
4452
4453
  verbatim?: boolean | undefined;
4453
4454
  alt_text?: string | undefined;
4454
4455
  }, {
4455
4456
  type: "plain_text" | "mrkdwn" | "image";
4457
+ emoji?: boolean | undefined;
4456
4458
  text?: string | undefined;
4457
4459
  image_url?: string | undefined;
4458
- emoji?: boolean | undefined;
4459
4460
  verbatim?: boolean | undefined;
4460
4461
  alt_text?: string | undefined;
4461
4462
  }>, "many">>;
4462
4463
  }, z.ZodTypeAny, "passthrough">[] | undefined;
4463
4464
  thread_ts?: string | undefined;
4464
- credentials?: Partial<Record<CredentialType, string>> | undefined;
4465
4465
  }, {
4466
4466
  operation: "schedule_message";
4467
4467
  channel: string;
4468
4468
  text: string;
4469
4469
  post_at: number;
4470
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
4470
4471
  blocks?: z.objectInputType<{
4471
4472
  type: z.ZodString;
4472
4473
  text: z.ZodOptional<z.ZodObject<{
@@ -4494,22 +4495,21 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4494
4495
  verbatim: z.ZodOptional<z.ZodBoolean>;
4495
4496
  }, "strip", z.ZodTypeAny, {
4496
4497
  type: "plain_text" | "mrkdwn" | "image";
4498
+ emoji?: boolean | undefined;
4497
4499
  text?: string | undefined;
4498
4500
  image_url?: string | undefined;
4499
- emoji?: boolean | undefined;
4500
4501
  verbatim?: boolean | undefined;
4501
4502
  alt_text?: string | undefined;
4502
4503
  }, {
4503
4504
  type: "plain_text" | "mrkdwn" | "image";
4505
+ emoji?: boolean | undefined;
4504
4506
  text?: string | undefined;
4505
4507
  image_url?: string | undefined;
4506
- emoji?: boolean | undefined;
4507
4508
  verbatim?: boolean | undefined;
4508
4509
  alt_text?: string | undefined;
4509
4510
  }>, "many">>;
4510
4511
  }, z.ZodTypeAny, "passthrough">[] | undefined;
4511
4512
  thread_ts?: string | undefined;
4512
- credentials?: Partial<Record<CredentialType, string>> | undefined;
4513
4513
  unfurl_links?: boolean | undefined;
4514
4514
  unfurl_media?: boolean | undefined;
4515
4515
  }>]>;
@@ -4609,10 +4609,10 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4609
4609
  error: z.ZodString;
4610
4610
  success: z.ZodBoolean;
4611
4611
  }, "strip", z.ZodTypeAny, {
4612
+ success: boolean;
4613
+ error: string;
4612
4614
  operation: "send_message";
4613
4615
  ok: boolean;
4614
- error: string;
4615
- success: boolean;
4616
4616
  message?: {
4617
4617
  type: string;
4618
4618
  text?: string | undefined;
@@ -4642,10 +4642,10 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4642
4642
  channel?: string | undefined;
4643
4643
  ts?: string | undefined;
4644
4644
  }, {
4645
+ success: boolean;
4646
+ error: string;
4645
4647
  operation: "send_message";
4646
4648
  ok: boolean;
4647
- error: string;
4648
- success: boolean;
4649
4649
  message?: {
4650
4650
  type: string;
4651
4651
  text?: string | undefined;
@@ -4803,10 +4803,10 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4803
4803
  error: z.ZodString;
4804
4804
  success: z.ZodBoolean;
4805
4805
  }, "strip", z.ZodTypeAny, {
4806
+ success: boolean;
4807
+ error: string;
4806
4808
  operation: "list_channels";
4807
4809
  ok: boolean;
4808
- error: string;
4809
- success: boolean;
4810
4810
  channels?: {
4811
4811
  name: string;
4812
4812
  id: string;
@@ -4845,10 +4845,10 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4845
4845
  next_cursor: string;
4846
4846
  } | undefined;
4847
4847
  }, {
4848
+ success: boolean;
4849
+ error: string;
4848
4850
  operation: "list_channels";
4849
4851
  ok: boolean;
4850
- error: string;
4851
- success: boolean;
4852
4852
  channels?: {
4853
4853
  name: string;
4854
4854
  id: string;
@@ -5008,10 +5008,10 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5008
5008
  error: z.ZodString;
5009
5009
  success: z.ZodBoolean;
5010
5010
  }, "strip", z.ZodTypeAny, {
5011
+ success: boolean;
5012
+ error: string;
5011
5013
  operation: "get_channel_info";
5012
5014
  ok: boolean;
5013
- error: string;
5014
- success: boolean;
5015
5015
  channel?: {
5016
5016
  name: string;
5017
5017
  id: string;
@@ -5047,10 +5047,10 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5047
5047
  num_members?: number | undefined;
5048
5048
  } | undefined;
5049
5049
  }, {
5050
+ success: boolean;
5051
+ error: string;
5050
5052
  operation: "get_channel_info";
5051
5053
  ok: boolean;
5052
- error: string;
5053
- success: boolean;
5054
5054
  channel?: {
5055
5055
  name: string;
5056
5056
  id: string;
@@ -5125,8 +5125,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5125
5125
  image_1024: z.ZodOptional<z.ZodString>;
5126
5126
  }, "strip", z.ZodTypeAny, {
5127
5127
  title?: string | undefined;
5128
- fields?: Record<string, unknown> | undefined;
5129
5128
  email?: string | undefined;
5129
+ fields?: Record<string, unknown> | undefined;
5130
5130
  real_name?: string | undefined;
5131
5131
  phone?: string | undefined;
5132
5132
  skype?: string | undefined;
@@ -5150,8 +5150,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5150
5150
  image_1024?: string | undefined;
5151
5151
  }, {
5152
5152
  title?: string | undefined;
5153
- fields?: Record<string, unknown> | undefined;
5154
5153
  email?: string | undefined;
5154
+ fields?: Record<string, unknown> | undefined;
5155
5155
  real_name?: string | undefined;
5156
5156
  phone?: string | undefined;
5157
5157
  skype?: string | undefined;
@@ -5195,8 +5195,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5195
5195
  tz_offset?: number | undefined;
5196
5196
  profile?: {
5197
5197
  title?: string | undefined;
5198
- fields?: Record<string, unknown> | undefined;
5199
5198
  email?: string | undefined;
5199
+ fields?: Record<string, unknown> | undefined;
5200
5200
  real_name?: string | undefined;
5201
5201
  phone?: string | undefined;
5202
5202
  skype?: string | undefined;
@@ -5240,8 +5240,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5240
5240
  tz_offset?: number | undefined;
5241
5241
  profile?: {
5242
5242
  title?: string | undefined;
5243
- fields?: Record<string, unknown> | undefined;
5244
5243
  email?: string | undefined;
5244
+ fields?: Record<string, unknown> | undefined;
5245
5245
  real_name?: string | undefined;
5246
5246
  phone?: string | undefined;
5247
5247
  skype?: string | undefined;
@@ -5277,10 +5277,10 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5277
5277
  error: z.ZodString;
5278
5278
  success: z.ZodBoolean;
5279
5279
  }, "strip", z.ZodTypeAny, {
5280
+ success: boolean;
5281
+ error: string;
5280
5282
  operation: "get_user_info";
5281
5283
  ok: boolean;
5282
- error: string;
5283
- success: boolean;
5284
5284
  user?: {
5285
5285
  name: string;
5286
5286
  id: string;
@@ -5293,8 +5293,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5293
5293
  tz_offset?: number | undefined;
5294
5294
  profile?: {
5295
5295
  title?: string | undefined;
5296
- fields?: Record<string, unknown> | undefined;
5297
5296
  email?: string | undefined;
5297
+ fields?: Record<string, unknown> | undefined;
5298
5298
  real_name?: string | undefined;
5299
5299
  phone?: string | undefined;
5300
5300
  skype?: string | undefined;
@@ -5328,10 +5328,10 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5328
5328
  has_2fa?: boolean | undefined;
5329
5329
  } | undefined;
5330
5330
  }, {
5331
+ success: boolean;
5332
+ error: string;
5331
5333
  operation: "get_user_info";
5332
5334
  ok: boolean;
5333
- error: string;
5334
- success: boolean;
5335
5335
  user?: {
5336
5336
  name: string;
5337
5337
  id: string;
@@ -5344,8 +5344,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5344
5344
  tz_offset?: number | undefined;
5345
5345
  profile?: {
5346
5346
  title?: string | undefined;
5347
- fields?: Record<string, unknown> | undefined;
5348
5347
  email?: string | undefined;
5348
+ fields?: Record<string, unknown> | undefined;
5349
5349
  real_name?: string | undefined;
5350
5350
  phone?: string | undefined;
5351
5351
  skype?: string | undefined;
@@ -5418,8 +5418,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5418
5418
  image_1024: z.ZodOptional<z.ZodString>;
5419
5419
  }, "strip", z.ZodTypeAny, {
5420
5420
  title?: string | undefined;
5421
- fields?: Record<string, unknown> | undefined;
5422
5421
  email?: string | undefined;
5422
+ fields?: Record<string, unknown> | undefined;
5423
5423
  real_name?: string | undefined;
5424
5424
  phone?: string | undefined;
5425
5425
  skype?: string | undefined;
@@ -5443,8 +5443,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5443
5443
  image_1024?: string | undefined;
5444
5444
  }, {
5445
5445
  title?: string | undefined;
5446
- fields?: Record<string, unknown> | undefined;
5447
5446
  email?: string | undefined;
5447
+ fields?: Record<string, unknown> | undefined;
5448
5448
  real_name?: string | undefined;
5449
5449
  phone?: string | undefined;
5450
5450
  skype?: string | undefined;
@@ -5488,8 +5488,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5488
5488
  tz_offset?: number | undefined;
5489
5489
  profile?: {
5490
5490
  title?: string | undefined;
5491
- fields?: Record<string, unknown> | undefined;
5492
5491
  email?: string | undefined;
5492
+ fields?: Record<string, unknown> | undefined;
5493
5493
  real_name?: string | undefined;
5494
5494
  phone?: string | undefined;
5495
5495
  skype?: string | undefined;
@@ -5533,8 +5533,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5533
5533
  tz_offset?: number | undefined;
5534
5534
  profile?: {
5535
5535
  title?: string | undefined;
5536
- fields?: Record<string, unknown> | undefined;
5537
5536
  email?: string | undefined;
5537
+ fields?: Record<string, unknown> | undefined;
5538
5538
  real_name?: string | undefined;
5539
5539
  phone?: string | undefined;
5540
5540
  skype?: string | undefined;
@@ -5577,10 +5577,10 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5577
5577
  error: z.ZodString;
5578
5578
  success: z.ZodBoolean;
5579
5579
  }, "strip", z.ZodTypeAny, {
5580
+ success: boolean;
5581
+ error: string;
5580
5582
  operation: "list_users";
5581
5583
  ok: boolean;
5582
- error: string;
5583
- success: boolean;
5584
5584
  response_metadata?: {
5585
5585
  next_cursor: string;
5586
5586
  } | undefined;
@@ -5596,8 +5596,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5596
5596
  tz_offset?: number | undefined;
5597
5597
  profile?: {
5598
5598
  title?: string | undefined;
5599
- fields?: Record<string, unknown> | undefined;
5600
5599
  email?: string | undefined;
5600
+ fields?: Record<string, unknown> | undefined;
5601
5601
  real_name?: string | undefined;
5602
5602
  phone?: string | undefined;
5603
5603
  skype?: string | undefined;
@@ -5631,10 +5631,10 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5631
5631
  has_2fa?: boolean | undefined;
5632
5632
  }[] | undefined;
5633
5633
  }, {
5634
+ success: boolean;
5635
+ error: string;
5634
5636
  operation: "list_users";
5635
5637
  ok: boolean;
5636
- error: string;
5637
- success: boolean;
5638
5638
  response_metadata?: {
5639
5639
  next_cursor: string;
5640
5640
  } | undefined;
@@ -5650,8 +5650,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5650
5650
  tz_offset?: number | undefined;
5651
5651
  profile?: {
5652
5652
  title?: string | undefined;
5653
- fields?: Record<string, unknown> | undefined;
5654
5653
  email?: string | undefined;
5654
+ fields?: Record<string, unknown> | undefined;
5655
5655
  real_name?: string | undefined;
5656
5656
  phone?: string | undefined;
5657
5657
  skype?: string | undefined;
@@ -5786,10 +5786,10 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5786
5786
  error: z.ZodString;
5787
5787
  success: z.ZodBoolean;
5788
5788
  }, "strip", z.ZodTypeAny, {
5789
+ success: boolean;
5790
+ error: string;
5789
5791
  operation: "get_conversation_history";
5790
5792
  ok: boolean;
5791
- error: string;
5792
- success: boolean;
5793
5793
  response_metadata?: {
5794
5794
  next_cursor: string;
5795
5795
  } | undefined;
@@ -5821,10 +5821,10 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5821
5821
  }[] | undefined;
5822
5822
  has_more?: boolean | undefined;
5823
5823
  }, {
5824
+ success: boolean;
5825
+ error: string;
5824
5826
  operation: "get_conversation_history";
5825
5827
  ok: boolean;
5826
- error: string;
5827
- success: boolean;
5828
5828
  response_metadata?: {
5829
5829
  next_cursor: string;
5830
5830
  } | undefined;
@@ -5957,10 +5957,10 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5957
5957
  error: z.ZodString;
5958
5958
  success: z.ZodBoolean;
5959
5959
  }, "strip", z.ZodTypeAny, {
5960
+ success: boolean;
5961
+ error: string;
5960
5962
  operation: "get_thread_replies";
5961
5963
  ok: boolean;
5962
- error: string;
5963
- success: boolean;
5964
5964
  response_metadata?: {
5965
5965
  next_cursor: string;
5966
5966
  } | undefined;
@@ -5992,10 +5992,10 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5992
5992
  }[] | undefined;
5993
5993
  has_more?: boolean | undefined;
5994
5994
  }, {
5995
+ success: boolean;
5996
+ error: string;
5995
5997
  operation: "get_thread_replies";
5996
5998
  ok: boolean;
5997
- error: string;
5998
- success: boolean;
5999
5999
  response_metadata?: {
6000
6000
  next_cursor: string;
6001
6001
  } | undefined;
@@ -6123,10 +6123,10 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
6123
6123
  error: z.ZodString;
6124
6124
  success: z.ZodBoolean;
6125
6125
  }, "strip", z.ZodTypeAny, {
6126
+ success: boolean;
6127
+ error: string;
6126
6128
  operation: "update_message";
6127
6129
  ok: boolean;
6128
- error: string;
6129
- success: boolean;
6130
6130
  message?: {
6131
6131
  type: string;
6132
6132
  text?: string | undefined;
@@ -6157,10 +6157,10 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
6157
6157
  text?: string | undefined;
6158
6158
  ts?: string | undefined;
6159
6159
  }, {
6160
+ success: boolean;
6161
+ error: string;
6160
6162
  operation: "update_message";
6161
6163
  ok: boolean;
6162
- error: string;
6163
- success: boolean;
6164
6164
  message?: {
6165
6165
  type: string;
6166
6166
  text?: string | undefined;
@@ -6198,17 +6198,17 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
6198
6198
  error: z.ZodString;
6199
6199
  success: z.ZodBoolean;
6200
6200
  }, "strip", z.ZodTypeAny, {
6201
+ success: boolean;
6202
+ error: string;
6201
6203
  operation: "delete_message";
6202
6204
  ok: boolean;
6203
- error: string;
6204
- success: boolean;
6205
6205
  channel?: string | undefined;
6206
6206
  ts?: string | undefined;
6207
6207
  }, {
6208
+ success: boolean;
6209
+ error: string;
6208
6210
  operation: "delete_message";
6209
6211
  ok: boolean;
6210
- error: string;
6211
- success: boolean;
6212
6212
  channel?: string | undefined;
6213
6213
  ts?: string | undefined;
6214
6214
  }>, z.ZodObject<{
@@ -6217,30 +6217,30 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
6217
6217
  error: z.ZodString;
6218
6218
  success: z.ZodBoolean;
6219
6219
  }, "strip", z.ZodTypeAny, {
6220
+ success: boolean;
6221
+ error: string;
6220
6222
  operation: "add_reaction";
6221
6223
  ok: boolean;
6222
- error: string;
6223
- success: boolean;
6224
6224
  }, {
6225
+ success: boolean;
6226
+ error: string;
6225
6227
  operation: "add_reaction";
6226
6228
  ok: boolean;
6227
- error: string;
6228
- success: boolean;
6229
6229
  }>, z.ZodObject<{
6230
6230
  operation: z.ZodLiteral<"remove_reaction">;
6231
6231
  ok: z.ZodBoolean;
6232
6232
  error: z.ZodString;
6233
6233
  success: z.ZodBoolean;
6234
6234
  }, "strip", z.ZodTypeAny, {
6235
+ success: boolean;
6236
+ error: string;
6235
6237
  operation: "remove_reaction";
6236
6238
  ok: boolean;
6237
- error: string;
6238
- success: boolean;
6239
6239
  }, {
6240
+ success: boolean;
6241
+ error: string;
6240
6242
  operation: "remove_reaction";
6241
6243
  ok: boolean;
6242
- error: string;
6243
- success: boolean;
6244
6244
  }>, z.ZodObject<{
6245
6245
  operation: z.ZodLiteral<"join_channel">;
6246
6246
  ok: z.ZodBoolean;
@@ -6364,10 +6364,10 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
6364
6364
  error: z.ZodString;
6365
6365
  success: z.ZodBoolean;
6366
6366
  }, "strip", z.ZodTypeAny, {
6367
+ success: boolean;
6368
+ error: string;
6367
6369
  operation: "join_channel";
6368
6370
  ok: boolean;
6369
- error: string;
6370
- success: boolean;
6371
6371
  channel?: {
6372
6372
  name: string;
6373
6373
  id: string;
@@ -6404,10 +6404,10 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
6404
6404
  } | undefined;
6405
6405
  already_in_channel?: boolean | undefined;
6406
6406
  }, {
6407
+ success: boolean;
6408
+ error: string;
6407
6409
  operation: "join_channel";
6408
6410
  ok: boolean;
6409
- error: string;
6410
- success: boolean;
6411
6411
  channel?: {
6412
6412
  name: string;
6413
6413
  id: string;
@@ -6554,8 +6554,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
6554
6554
  ims: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
6555
6555
  has_rich_preview: z.ZodOptional<z.ZodBoolean>;
6556
6556
  }, "strip", z.ZodTypeAny, {
6557
- username: string;
6558
6557
  name: string;
6558
+ username: string;
6559
6559
  user: string;
6560
6560
  timestamp: number;
6561
6561
  id: string;
@@ -6599,8 +6599,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
6599
6599
  ims?: string[] | undefined;
6600
6600
  has_rich_preview?: boolean | undefined;
6601
6601
  }, {
6602
- username: string;
6603
6602
  name: string;
6603
+ username: string;
6604
6604
  user: string;
6605
6605
  timestamp: number;
6606
6606
  id: string;
@@ -6647,13 +6647,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
6647
6647
  error: z.ZodString;
6648
6648
  success: z.ZodBoolean;
6649
6649
  }, "strip", z.ZodTypeAny, {
6650
+ success: boolean;
6651
+ error: string;
6650
6652
  operation: "upload_file";
6651
6653
  ok: boolean;
6652
- error: string;
6653
- success: boolean;
6654
6654
  file?: {
6655
- username: string;
6656
6655
  name: string;
6656
+ username: string;
6657
6657
  user: string;
6658
6658
  timestamp: number;
6659
6659
  id: string;
@@ -6698,13 +6698,13 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
6698
6698
  has_rich_preview?: boolean | undefined;
6699
6699
  } | undefined;
6700
6700
  }, {
6701
+ success: boolean;
6702
+ error: string;
6701
6703
  operation: "upload_file";
6702
6704
  ok: boolean;
6703
- error: string;
6704
- success: boolean;
6705
6705
  file?: {
6706
- username: string;
6707
6706
  name: string;
6707
+ username: string;
6708
6708
  user: string;
6709
6709
  timestamp: number;
6710
6710
  id: string;
@@ -6757,18 +6757,18 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
6757
6757
  error: z.ZodString;
6758
6758
  success: z.ZodBoolean;
6759
6759
  }, "strip", z.ZodTypeAny, {
6760
+ success: boolean;
6761
+ error: string;
6760
6762
  operation: "schedule_message";
6761
6763
  ok: boolean;
6762
- error: string;
6763
- success: boolean;
6764
6764
  channel?: string | undefined;
6765
6765
  post_at?: number | undefined;
6766
6766
  scheduled_message_id?: string | undefined;
6767
6767
  }, {
6768
+ success: boolean;
6769
+ error: string;
6768
6770
  operation: "schedule_message";
6769
6771
  ok: boolean;
6770
- error: string;
6771
- success: boolean;
6772
6772
  channel?: string | undefined;
6773
6773
  post_at?: number | undefined;
6774
6774
  scheduled_message_id?: string | undefined;