@bubblelab/bubble-core 0.1.69 → 0.1.71

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 (46) hide show
  1. package/dist/bubble-bundle.d.ts +78 -78
  2. package/dist/bubbles/service-bubble/agi-inc.d.ts +20 -20
  3. package/dist/bubbles/service-bubble/ai-agent.d.ts +24 -24
  4. package/dist/bubbles/service-bubble/airtable.d.ts +24 -24
  5. package/dist/bubbles/service-bubble/apify/apify.d.ts +14 -14
  6. package/dist/bubbles/service-bubble/ashby/ashby.d.ts +72 -72
  7. package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +38 -38
  8. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +31 -31
  9. package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +78 -78
  10. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +92 -92
  11. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +42 -42
  12. package/dist/bubbles/service-bubble/eleven-labs.d.ts +4 -4
  13. package/dist/bubbles/service-bubble/firecrawl.d.ts +346 -346
  14. package/dist/bubbles/service-bubble/followupboss.d.ts +320 -320
  15. package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +76 -76
  16. package/dist/bubbles/service-bubble/fullenrich/fullenrich.schema.d.ts +58 -58
  17. package/dist/bubbles/service-bubble/github.d.ts +36 -36
  18. package/dist/bubbles/service-bubble/gmail.d.ts +88 -88
  19. package/dist/bubbles/service-bubble/google-drive.d.ts +63 -2
  20. package/dist/bubbles/service-bubble/google-drive.d.ts.map +1 -1
  21. package/dist/bubbles/service-bubble/google-drive.js +74 -4
  22. package/dist/bubbles/service-bubble/google-drive.js.map +1 -1
  23. package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.d.ts +74 -74
  24. package/dist/bubbles/service-bubble/http.d.ts +8 -8
  25. package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
  26. package/dist/bubbles/service-bubble/jira/jira.d.ts +9 -9
  27. package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +62 -62
  28. package/dist/bubbles/service-bubble/notion/notion.d.ts +20 -20
  29. package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
  30. package/dist/bubbles/service-bubble/resend.d.ts +4 -4
  31. package/dist/bubbles/service-bubble/slack/slack.d.ts +114 -114
  32. package/dist/bubbles/service-bubble/stripe/stripe.d.ts +11 -11
  33. package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +78 -78
  34. package/dist/bubbles/service-bubble/telegram.d.ts +2 -2
  35. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.schema.d.ts +28 -28
  36. package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +20 -20
  37. package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +8 -8
  38. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +305 -305
  39. package/dist/bubbles/tool-bubble/people-search-tool.d.ts +28 -28
  40. package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
  41. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +56 -56
  42. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +108 -108
  43. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +24 -24
  44. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +32 -32
  45. package/dist/bubbles.json +69 -4
  46. package/package.json +2 -2
@@ -356,18 +356,18 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
356
356
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
357
357
  }, "strip", z.ZodTypeAny, {
358
358
  operation: "list_channels";
359
- limit: number;
360
359
  types: ("public_channel" | "private_channel" | "mpim" | "im")[];
361
360
  exclude_archived: boolean;
361
+ limit: number;
362
362
  credentials?: Partial<Record<CredentialType, string>> | undefined;
363
363
  cursor?: string | undefined;
364
364
  }, {
365
365
  operation: "list_channels";
366
366
  credentials?: Partial<Record<CredentialType, string>> | undefined;
367
- limit?: number | undefined;
368
- cursor?: string | undefined;
369
367
  types?: ("public_channel" | "private_channel" | "mpim" | "im")[] | undefined;
370
368
  exclude_archived?: boolean | undefined;
369
+ limit?: number | undefined;
370
+ cursor?: string | undefined;
371
371
  }>, z.ZodObject<{
372
372
  operation: z.ZodLiteral<"get_channel_info">;
373
373
  channel: z.ZodString;
@@ -428,8 +428,8 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
428
428
  }, "strip", z.ZodTypeAny, {
429
429
  operation: "get_conversation_history";
430
430
  inclusive: boolean;
431
- limit: number;
432
431
  channel: string;
432
+ limit: number;
433
433
  credentials?: Partial<Record<CredentialType, string>> | undefined;
434
434
  cursor?: string | undefined;
435
435
  latest?: string | undefined;
@@ -456,9 +456,9 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
456
456
  }, "strip", z.ZodTypeAny, {
457
457
  operation: "get_thread_replies";
458
458
  inclusive: boolean;
459
- limit: number;
460
459
  ts: string;
461
460
  channel: string;
461
+ limit: number;
462
462
  credentials?: Partial<Record<CredentialType, string>> | undefined;
463
463
  cursor?: string | undefined;
464
464
  latest?: string | undefined;
@@ -1156,19 +1156,19 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1156
1156
  count: z.ZodNumber;
1157
1157
  }, "strip", z.ZodTypeAny, {
1158
1158
  name: string;
1159
- users: string[];
1160
1159
  count: number;
1160
+ users: string[];
1161
1161
  }, {
1162
1162
  name: string;
1163
- users: string[];
1164
1163
  count: number;
1164
+ users: string[];
1165
1165
  }>, "many">>;
1166
1166
  }, "strip", z.ZodTypeAny, {
1167
1167
  type: string;
1168
1168
  user?: string | undefined;
1169
1169
  text?: string | undefined;
1170
- ts?: string | undefined;
1171
1170
  username?: string | undefined;
1171
+ ts?: string | undefined;
1172
1172
  attachments?: unknown[] | undefined;
1173
1173
  blocks?: unknown[] | undefined;
1174
1174
  thread_ts?: string | undefined;
@@ -1185,15 +1185,15 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1185
1185
  subscribed?: boolean | undefined;
1186
1186
  reactions?: {
1187
1187
  name: string;
1188
- users: string[];
1189
1188
  count: number;
1189
+ users: string[];
1190
1190
  }[] | undefined;
1191
1191
  }, {
1192
1192
  type: string;
1193
1193
  user?: string | undefined;
1194
1194
  text?: string | undefined;
1195
- ts?: string | undefined;
1196
1195
  username?: string | undefined;
1196
+ ts?: string | undefined;
1197
1197
  attachments?: unknown[] | undefined;
1198
1198
  blocks?: unknown[] | undefined;
1199
1199
  thread_ts?: string | undefined;
@@ -1210,8 +1210,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1210
1210
  subscribed?: boolean | undefined;
1211
1211
  reactions?: {
1212
1212
  name: string;
1213
- users: string[];
1214
1213
  count: number;
1214
+ users: string[];
1215
1215
  }[] | undefined;
1216
1216
  }>>;
1217
1217
  error: z.ZodString;
@@ -1225,8 +1225,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1225
1225
  type: string;
1226
1226
  user?: string | undefined;
1227
1227
  text?: string | undefined;
1228
- ts?: string | undefined;
1229
1228
  username?: string | undefined;
1229
+ ts?: string | undefined;
1230
1230
  attachments?: unknown[] | undefined;
1231
1231
  blocks?: unknown[] | undefined;
1232
1232
  thread_ts?: string | undefined;
@@ -1243,8 +1243,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1243
1243
  subscribed?: boolean | undefined;
1244
1244
  reactions?: {
1245
1245
  name: string;
1246
- users: string[];
1247
1246
  count: number;
1247
+ users: string[];
1248
1248
  }[] | undefined;
1249
1249
  } | undefined;
1250
1250
  ts?: string | undefined;
@@ -1258,8 +1258,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1258
1258
  type: string;
1259
1259
  user?: string | undefined;
1260
1260
  text?: string | undefined;
1261
- ts?: string | undefined;
1262
1261
  username?: string | undefined;
1262
+ ts?: string | undefined;
1263
1263
  attachments?: unknown[] | undefined;
1264
1264
  blocks?: unknown[] | undefined;
1265
1265
  thread_ts?: string | undefined;
@@ -1276,8 +1276,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1276
1276
  subscribed?: boolean | undefined;
1277
1277
  reactions?: {
1278
1278
  name: string;
1279
- users: string[];
1280
1279
  count: number;
1280
+ users: string[];
1281
1281
  }[] | undefined;
1282
1282
  } | undefined;
1283
1283
  ts?: string | undefined;
@@ -2325,19 +2325,19 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2325
2325
  count: z.ZodNumber;
2326
2326
  }, "strip", z.ZodTypeAny, {
2327
2327
  name: string;
2328
- users: string[];
2329
2328
  count: number;
2329
+ users: string[];
2330
2330
  }, {
2331
2331
  name: string;
2332
- users: string[];
2333
2332
  count: number;
2333
+ users: string[];
2334
2334
  }>, "many">>;
2335
2335
  }, "strip", z.ZodTypeAny, {
2336
2336
  type: string;
2337
2337
  user?: string | undefined;
2338
2338
  text?: string | undefined;
2339
- ts?: string | undefined;
2340
2339
  username?: string | undefined;
2340
+ ts?: string | undefined;
2341
2341
  attachments?: unknown[] | undefined;
2342
2342
  blocks?: unknown[] | undefined;
2343
2343
  thread_ts?: string | undefined;
@@ -2354,15 +2354,15 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2354
2354
  subscribed?: boolean | undefined;
2355
2355
  reactions?: {
2356
2356
  name: string;
2357
- users: string[];
2358
2357
  count: number;
2358
+ users: string[];
2359
2359
  }[] | undefined;
2360
2360
  }, {
2361
2361
  type: string;
2362
2362
  user?: string | undefined;
2363
2363
  text?: string | undefined;
2364
- ts?: string | undefined;
2365
2364
  username?: string | undefined;
2365
+ ts?: string | undefined;
2366
2366
  attachments?: unknown[] | undefined;
2367
2367
  blocks?: unknown[] | undefined;
2368
2368
  thread_ts?: string | undefined;
@@ -2379,8 +2379,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2379
2379
  subscribed?: boolean | undefined;
2380
2380
  reactions?: {
2381
2381
  name: string;
2382
- users: string[];
2383
2382
  count: number;
2383
+ users: string[];
2384
2384
  }[] | undefined;
2385
2385
  }>, "many">>;
2386
2386
  has_more: z.ZodOptional<z.ZodBoolean>;
@@ -2398,12 +2398,15 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2398
2398
  success: boolean;
2399
2399
  error: string;
2400
2400
  ok: boolean;
2401
+ response_metadata?: {
2402
+ next_cursor: string;
2403
+ } | undefined;
2401
2404
  messages?: {
2402
2405
  type: string;
2403
2406
  user?: string | undefined;
2404
2407
  text?: string | undefined;
2405
- ts?: string | undefined;
2406
2408
  username?: string | undefined;
2409
+ ts?: string | undefined;
2407
2410
  attachments?: unknown[] | undefined;
2408
2411
  blocks?: unknown[] | undefined;
2409
2412
  thread_ts?: string | undefined;
@@ -2420,25 +2423,25 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2420
2423
  subscribed?: boolean | undefined;
2421
2424
  reactions?: {
2422
2425
  name: string;
2423
- users: string[];
2424
2426
  count: number;
2427
+ users: string[];
2425
2428
  }[] | undefined;
2426
2429
  }[] | undefined;
2427
- response_metadata?: {
2428
- next_cursor: string;
2429
- } | undefined;
2430
2430
  has_more?: boolean | undefined;
2431
2431
  }, {
2432
2432
  operation: "get_conversation_history";
2433
2433
  success: boolean;
2434
2434
  error: string;
2435
2435
  ok: boolean;
2436
+ response_metadata?: {
2437
+ next_cursor: string;
2438
+ } | undefined;
2436
2439
  messages?: {
2437
2440
  type: string;
2438
2441
  user?: string | undefined;
2439
2442
  text?: string | undefined;
2440
- ts?: string | undefined;
2441
2443
  username?: string | undefined;
2444
+ ts?: string | undefined;
2442
2445
  attachments?: unknown[] | undefined;
2443
2446
  blocks?: unknown[] | undefined;
2444
2447
  thread_ts?: string | undefined;
@@ -2455,13 +2458,10 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2455
2458
  subscribed?: boolean | undefined;
2456
2459
  reactions?: {
2457
2460
  name: string;
2458
- users: string[];
2459
2461
  count: number;
2462
+ users: string[];
2460
2463
  }[] | undefined;
2461
2464
  }[] | undefined;
2462
- response_metadata?: {
2463
- next_cursor: string;
2464
- } | undefined;
2465
2465
  has_more?: boolean | undefined;
2466
2466
  }>, z.ZodObject<{
2467
2467
  operation: z.ZodLiteral<"get_thread_replies">;
@@ -2496,19 +2496,19 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2496
2496
  count: z.ZodNumber;
2497
2497
  }, "strip", z.ZodTypeAny, {
2498
2498
  name: string;
2499
- users: string[];
2500
2499
  count: number;
2500
+ users: string[];
2501
2501
  }, {
2502
2502
  name: string;
2503
- users: string[];
2504
2503
  count: number;
2504
+ users: string[];
2505
2505
  }>, "many">>;
2506
2506
  }, "strip", z.ZodTypeAny, {
2507
2507
  type: string;
2508
2508
  user?: string | undefined;
2509
2509
  text?: string | undefined;
2510
- ts?: string | undefined;
2511
2510
  username?: string | undefined;
2511
+ ts?: string | undefined;
2512
2512
  attachments?: unknown[] | undefined;
2513
2513
  blocks?: unknown[] | undefined;
2514
2514
  thread_ts?: string | undefined;
@@ -2525,15 +2525,15 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2525
2525
  subscribed?: boolean | undefined;
2526
2526
  reactions?: {
2527
2527
  name: string;
2528
- users: string[];
2529
2528
  count: number;
2529
+ users: string[];
2530
2530
  }[] | undefined;
2531
2531
  }, {
2532
2532
  type: string;
2533
2533
  user?: string | undefined;
2534
2534
  text?: string | undefined;
2535
- ts?: string | undefined;
2536
2535
  username?: string | undefined;
2536
+ ts?: string | undefined;
2537
2537
  attachments?: unknown[] | undefined;
2538
2538
  blocks?: unknown[] | undefined;
2539
2539
  thread_ts?: string | undefined;
@@ -2550,8 +2550,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2550
2550
  subscribed?: boolean | undefined;
2551
2551
  reactions?: {
2552
2552
  name: string;
2553
- users: string[];
2554
2553
  count: number;
2554
+ users: string[];
2555
2555
  }[] | undefined;
2556
2556
  }>, "many">>;
2557
2557
  has_more: z.ZodOptional<z.ZodBoolean>;
@@ -2569,12 +2569,15 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2569
2569
  success: boolean;
2570
2570
  error: string;
2571
2571
  ok: boolean;
2572
+ response_metadata?: {
2573
+ next_cursor: string;
2574
+ } | undefined;
2572
2575
  messages?: {
2573
2576
  type: string;
2574
2577
  user?: string | undefined;
2575
2578
  text?: string | undefined;
2576
- ts?: string | undefined;
2577
2579
  username?: string | undefined;
2580
+ ts?: string | undefined;
2578
2581
  attachments?: unknown[] | undefined;
2579
2582
  blocks?: unknown[] | undefined;
2580
2583
  thread_ts?: string | undefined;
@@ -2591,25 +2594,25 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2591
2594
  subscribed?: boolean | undefined;
2592
2595
  reactions?: {
2593
2596
  name: string;
2594
- users: string[];
2595
2597
  count: number;
2598
+ users: string[];
2596
2599
  }[] | undefined;
2597
2600
  }[] | undefined;
2598
- response_metadata?: {
2599
- next_cursor: string;
2600
- } | undefined;
2601
2601
  has_more?: boolean | undefined;
2602
2602
  }, {
2603
2603
  operation: "get_thread_replies";
2604
2604
  success: boolean;
2605
2605
  error: string;
2606
2606
  ok: boolean;
2607
+ response_metadata?: {
2608
+ next_cursor: string;
2609
+ } | undefined;
2607
2610
  messages?: {
2608
2611
  type: string;
2609
2612
  user?: string | undefined;
2610
2613
  text?: string | undefined;
2611
- ts?: string | undefined;
2612
2614
  username?: string | undefined;
2615
+ ts?: string | undefined;
2613
2616
  attachments?: unknown[] | undefined;
2614
2617
  blocks?: unknown[] | undefined;
2615
2618
  thread_ts?: string | undefined;
@@ -2626,13 +2629,10 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2626
2629
  subscribed?: boolean | undefined;
2627
2630
  reactions?: {
2628
2631
  name: string;
2629
- users: string[];
2630
2632
  count: number;
2633
+ users: string[];
2631
2634
  }[] | undefined;
2632
2635
  }[] | undefined;
2633
- response_metadata?: {
2634
- next_cursor: string;
2635
- } | undefined;
2636
2636
  has_more?: boolean | undefined;
2637
2637
  }>, z.ZodObject<{
2638
2638
  operation: z.ZodLiteral<"update_message">;
@@ -2670,19 +2670,19 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2670
2670
  count: z.ZodNumber;
2671
2671
  }, "strip", z.ZodTypeAny, {
2672
2672
  name: string;
2673
- users: string[];
2674
2673
  count: number;
2674
+ users: string[];
2675
2675
  }, {
2676
2676
  name: string;
2677
- users: string[];
2678
2677
  count: number;
2678
+ users: string[];
2679
2679
  }>, "many">>;
2680
2680
  }, "strip", z.ZodTypeAny, {
2681
2681
  type: string;
2682
2682
  user?: string | undefined;
2683
2683
  text?: string | undefined;
2684
- ts?: string | undefined;
2685
2684
  username?: string | undefined;
2685
+ ts?: string | undefined;
2686
2686
  attachments?: unknown[] | undefined;
2687
2687
  blocks?: unknown[] | undefined;
2688
2688
  thread_ts?: string | undefined;
@@ -2699,15 +2699,15 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2699
2699
  subscribed?: boolean | undefined;
2700
2700
  reactions?: {
2701
2701
  name: string;
2702
- users: string[];
2703
2702
  count: number;
2703
+ users: string[];
2704
2704
  }[] | undefined;
2705
2705
  }, {
2706
2706
  type: string;
2707
2707
  user?: string | undefined;
2708
2708
  text?: string | undefined;
2709
- ts?: string | undefined;
2710
2709
  username?: string | undefined;
2710
+ ts?: string | undefined;
2711
2711
  attachments?: unknown[] | undefined;
2712
2712
  blocks?: unknown[] | undefined;
2713
2713
  thread_ts?: string | undefined;
@@ -2724,8 +2724,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2724
2724
  subscribed?: boolean | undefined;
2725
2725
  reactions?: {
2726
2726
  name: string;
2727
- users: string[];
2728
2727
  count: number;
2728
+ users: string[];
2729
2729
  }[] | undefined;
2730
2730
  }>>;
2731
2731
  error: z.ZodString;
@@ -2739,8 +2739,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2739
2739
  type: string;
2740
2740
  user?: string | undefined;
2741
2741
  text?: string | undefined;
2742
- ts?: string | undefined;
2743
2742
  username?: string | undefined;
2743
+ ts?: string | undefined;
2744
2744
  attachments?: unknown[] | undefined;
2745
2745
  blocks?: unknown[] | undefined;
2746
2746
  thread_ts?: string | undefined;
@@ -2757,8 +2757,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2757
2757
  subscribed?: boolean | undefined;
2758
2758
  reactions?: {
2759
2759
  name: string;
2760
- users: string[];
2761
2760
  count: number;
2761
+ users: string[];
2762
2762
  }[] | undefined;
2763
2763
  } | undefined;
2764
2764
  text?: string | undefined;
@@ -2773,8 +2773,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2773
2773
  type: string;
2774
2774
  user?: string | undefined;
2775
2775
  text?: string | undefined;
2776
- ts?: string | undefined;
2777
2776
  username?: string | undefined;
2777
+ ts?: string | undefined;
2778
2778
  attachments?: unknown[] | undefined;
2779
2779
  blocks?: unknown[] | undefined;
2780
2780
  thread_ts?: string | undefined;
@@ -2791,8 +2791,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2791
2791
  subscribed?: boolean | undefined;
2792
2792
  reactions?: {
2793
2793
  name: string;
2794
- users: string[];
2795
2794
  count: number;
2795
+ users: string[];
2796
2796
  }[] | undefined;
2797
2797
  } | undefined;
2798
2798
  text?: string | undefined;
@@ -3748,18 +3748,18 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
3748
3748
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
3749
3749
  }, "strip", z.ZodTypeAny, {
3750
3750
  operation: "list_channels";
3751
- limit: number;
3752
3751
  types: ("public_channel" | "private_channel" | "mpim" | "im")[];
3753
3752
  exclude_archived: boolean;
3753
+ limit: number;
3754
3754
  credentials?: Partial<Record<CredentialType, string>> | undefined;
3755
3755
  cursor?: string | undefined;
3756
3756
  }, {
3757
3757
  operation: "list_channels";
3758
3758
  credentials?: Partial<Record<CredentialType, string>> | undefined;
3759
- limit?: number | undefined;
3760
- cursor?: string | undefined;
3761
3759
  types?: ("public_channel" | "private_channel" | "mpim" | "im")[] | undefined;
3762
3760
  exclude_archived?: boolean | undefined;
3761
+ limit?: number | undefined;
3762
+ cursor?: string | undefined;
3763
3763
  }>, z.ZodObject<{
3764
3764
  operation: z.ZodLiteral<"get_channel_info">;
3765
3765
  channel: z.ZodString;
@@ -3820,8 +3820,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
3820
3820
  }, "strip", z.ZodTypeAny, {
3821
3821
  operation: "get_conversation_history";
3822
3822
  inclusive: boolean;
3823
- limit: number;
3824
3823
  channel: string;
3824
+ limit: number;
3825
3825
  credentials?: Partial<Record<CredentialType, string>> | undefined;
3826
3826
  cursor?: string | undefined;
3827
3827
  latest?: string | undefined;
@@ -3848,9 +3848,9 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
3848
3848
  }, "strip", z.ZodTypeAny, {
3849
3849
  operation: "get_thread_replies";
3850
3850
  inclusive: boolean;
3851
- limit: number;
3852
3851
  ts: string;
3853
3852
  channel: string;
3853
+ limit: number;
3854
3854
  credentials?: Partial<Record<CredentialType, string>> | undefined;
3855
3855
  cursor?: string | undefined;
3856
3856
  latest?: string | undefined;
@@ -4548,19 +4548,19 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4548
4548
  count: z.ZodNumber;
4549
4549
  }, "strip", z.ZodTypeAny, {
4550
4550
  name: string;
4551
- users: string[];
4552
4551
  count: number;
4552
+ users: string[];
4553
4553
  }, {
4554
4554
  name: string;
4555
- users: string[];
4556
4555
  count: number;
4556
+ users: string[];
4557
4557
  }>, "many">>;
4558
4558
  }, "strip", z.ZodTypeAny, {
4559
4559
  type: string;
4560
4560
  user?: string | undefined;
4561
4561
  text?: string | undefined;
4562
- ts?: string | undefined;
4563
4562
  username?: string | undefined;
4563
+ ts?: string | undefined;
4564
4564
  attachments?: unknown[] | undefined;
4565
4565
  blocks?: unknown[] | undefined;
4566
4566
  thread_ts?: string | undefined;
@@ -4577,15 +4577,15 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4577
4577
  subscribed?: boolean | undefined;
4578
4578
  reactions?: {
4579
4579
  name: string;
4580
- users: string[];
4581
4580
  count: number;
4581
+ users: string[];
4582
4582
  }[] | undefined;
4583
4583
  }, {
4584
4584
  type: string;
4585
4585
  user?: string | undefined;
4586
4586
  text?: string | undefined;
4587
- ts?: string | undefined;
4588
4587
  username?: string | undefined;
4588
+ ts?: string | undefined;
4589
4589
  attachments?: unknown[] | undefined;
4590
4590
  blocks?: unknown[] | undefined;
4591
4591
  thread_ts?: string | undefined;
@@ -4602,8 +4602,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4602
4602
  subscribed?: boolean | undefined;
4603
4603
  reactions?: {
4604
4604
  name: string;
4605
- users: string[];
4606
4605
  count: number;
4606
+ users: string[];
4607
4607
  }[] | undefined;
4608
4608
  }>>;
4609
4609
  error: z.ZodString;
@@ -4617,8 +4617,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4617
4617
  type: string;
4618
4618
  user?: string | undefined;
4619
4619
  text?: string | undefined;
4620
- ts?: string | undefined;
4621
4620
  username?: string | undefined;
4621
+ ts?: string | undefined;
4622
4622
  attachments?: unknown[] | undefined;
4623
4623
  blocks?: unknown[] | undefined;
4624
4624
  thread_ts?: string | undefined;
@@ -4635,8 +4635,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4635
4635
  subscribed?: boolean | undefined;
4636
4636
  reactions?: {
4637
4637
  name: string;
4638
- users: string[];
4639
4638
  count: number;
4639
+ users: string[];
4640
4640
  }[] | undefined;
4641
4641
  } | undefined;
4642
4642
  ts?: string | undefined;
@@ -4650,8 +4650,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4650
4650
  type: string;
4651
4651
  user?: string | undefined;
4652
4652
  text?: string | undefined;
4653
- ts?: string | undefined;
4654
4653
  username?: string | undefined;
4654
+ ts?: string | undefined;
4655
4655
  attachments?: unknown[] | undefined;
4656
4656
  blocks?: unknown[] | undefined;
4657
4657
  thread_ts?: string | undefined;
@@ -4668,8 +4668,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4668
4668
  subscribed?: boolean | undefined;
4669
4669
  reactions?: {
4670
4670
  name: string;
4671
- users: string[];
4672
4671
  count: number;
4672
+ users: string[];
4673
4673
  }[] | undefined;
4674
4674
  } | undefined;
4675
4675
  ts?: string | undefined;
@@ -5717,19 +5717,19 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5717
5717
  count: z.ZodNumber;
5718
5718
  }, "strip", z.ZodTypeAny, {
5719
5719
  name: string;
5720
- users: string[];
5721
5720
  count: number;
5721
+ users: string[];
5722
5722
  }, {
5723
5723
  name: string;
5724
- users: string[];
5725
5724
  count: number;
5725
+ users: string[];
5726
5726
  }>, "many">>;
5727
5727
  }, "strip", z.ZodTypeAny, {
5728
5728
  type: string;
5729
5729
  user?: string | undefined;
5730
5730
  text?: string | undefined;
5731
- ts?: string | undefined;
5732
5731
  username?: string | undefined;
5732
+ ts?: string | undefined;
5733
5733
  attachments?: unknown[] | undefined;
5734
5734
  blocks?: unknown[] | undefined;
5735
5735
  thread_ts?: string | undefined;
@@ -5746,15 +5746,15 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5746
5746
  subscribed?: boolean | undefined;
5747
5747
  reactions?: {
5748
5748
  name: string;
5749
- users: string[];
5750
5749
  count: number;
5750
+ users: string[];
5751
5751
  }[] | undefined;
5752
5752
  }, {
5753
5753
  type: string;
5754
5754
  user?: string | undefined;
5755
5755
  text?: string | undefined;
5756
- ts?: string | undefined;
5757
5756
  username?: string | undefined;
5757
+ ts?: string | undefined;
5758
5758
  attachments?: unknown[] | undefined;
5759
5759
  blocks?: unknown[] | undefined;
5760
5760
  thread_ts?: string | undefined;
@@ -5771,8 +5771,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5771
5771
  subscribed?: boolean | undefined;
5772
5772
  reactions?: {
5773
5773
  name: string;
5774
- users: string[];
5775
5774
  count: number;
5775
+ users: string[];
5776
5776
  }[] | undefined;
5777
5777
  }>, "many">>;
5778
5778
  has_more: z.ZodOptional<z.ZodBoolean>;
@@ -5790,12 +5790,15 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5790
5790
  success: boolean;
5791
5791
  error: string;
5792
5792
  ok: boolean;
5793
+ response_metadata?: {
5794
+ next_cursor: string;
5795
+ } | undefined;
5793
5796
  messages?: {
5794
5797
  type: string;
5795
5798
  user?: string | undefined;
5796
5799
  text?: string | undefined;
5797
- ts?: string | undefined;
5798
5800
  username?: string | undefined;
5801
+ ts?: string | undefined;
5799
5802
  attachments?: unknown[] | undefined;
5800
5803
  blocks?: unknown[] | undefined;
5801
5804
  thread_ts?: string | undefined;
@@ -5812,25 +5815,25 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5812
5815
  subscribed?: boolean | undefined;
5813
5816
  reactions?: {
5814
5817
  name: string;
5815
- users: string[];
5816
5818
  count: number;
5819
+ users: string[];
5817
5820
  }[] | undefined;
5818
5821
  }[] | undefined;
5819
- response_metadata?: {
5820
- next_cursor: string;
5821
- } | undefined;
5822
5822
  has_more?: boolean | undefined;
5823
5823
  }, {
5824
5824
  operation: "get_conversation_history";
5825
5825
  success: boolean;
5826
5826
  error: string;
5827
5827
  ok: boolean;
5828
+ response_metadata?: {
5829
+ next_cursor: string;
5830
+ } | undefined;
5828
5831
  messages?: {
5829
5832
  type: string;
5830
5833
  user?: string | undefined;
5831
5834
  text?: string | undefined;
5832
- ts?: string | undefined;
5833
5835
  username?: string | undefined;
5836
+ ts?: string | undefined;
5834
5837
  attachments?: unknown[] | undefined;
5835
5838
  blocks?: unknown[] | undefined;
5836
5839
  thread_ts?: string | undefined;
@@ -5847,13 +5850,10 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5847
5850
  subscribed?: boolean | undefined;
5848
5851
  reactions?: {
5849
5852
  name: string;
5850
- users: string[];
5851
5853
  count: number;
5854
+ users: string[];
5852
5855
  }[] | undefined;
5853
5856
  }[] | undefined;
5854
- response_metadata?: {
5855
- next_cursor: string;
5856
- } | undefined;
5857
5857
  has_more?: boolean | undefined;
5858
5858
  }>, z.ZodObject<{
5859
5859
  operation: z.ZodLiteral<"get_thread_replies">;
@@ -5888,19 +5888,19 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5888
5888
  count: z.ZodNumber;
5889
5889
  }, "strip", z.ZodTypeAny, {
5890
5890
  name: string;
5891
- users: string[];
5892
5891
  count: number;
5892
+ users: string[];
5893
5893
  }, {
5894
5894
  name: string;
5895
- users: string[];
5896
5895
  count: number;
5896
+ users: string[];
5897
5897
  }>, "many">>;
5898
5898
  }, "strip", z.ZodTypeAny, {
5899
5899
  type: string;
5900
5900
  user?: string | undefined;
5901
5901
  text?: string | undefined;
5902
- ts?: string | undefined;
5903
5902
  username?: string | undefined;
5903
+ ts?: string | undefined;
5904
5904
  attachments?: unknown[] | undefined;
5905
5905
  blocks?: unknown[] | undefined;
5906
5906
  thread_ts?: string | undefined;
@@ -5917,15 +5917,15 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5917
5917
  subscribed?: boolean | undefined;
5918
5918
  reactions?: {
5919
5919
  name: string;
5920
- users: string[];
5921
5920
  count: number;
5921
+ users: string[];
5922
5922
  }[] | undefined;
5923
5923
  }, {
5924
5924
  type: string;
5925
5925
  user?: string | undefined;
5926
5926
  text?: string | undefined;
5927
- ts?: string | undefined;
5928
5927
  username?: string | undefined;
5928
+ ts?: string | undefined;
5929
5929
  attachments?: unknown[] | undefined;
5930
5930
  blocks?: unknown[] | undefined;
5931
5931
  thread_ts?: string | undefined;
@@ -5942,8 +5942,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5942
5942
  subscribed?: boolean | undefined;
5943
5943
  reactions?: {
5944
5944
  name: string;
5945
- users: string[];
5946
5945
  count: number;
5946
+ users: string[];
5947
5947
  }[] | undefined;
5948
5948
  }>, "many">>;
5949
5949
  has_more: z.ZodOptional<z.ZodBoolean>;
@@ -5961,12 +5961,15 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5961
5961
  success: boolean;
5962
5962
  error: string;
5963
5963
  ok: boolean;
5964
+ response_metadata?: {
5965
+ next_cursor: string;
5966
+ } | undefined;
5964
5967
  messages?: {
5965
5968
  type: string;
5966
5969
  user?: string | undefined;
5967
5970
  text?: string | undefined;
5968
- ts?: string | undefined;
5969
5971
  username?: string | undefined;
5972
+ ts?: string | undefined;
5970
5973
  attachments?: unknown[] | undefined;
5971
5974
  blocks?: unknown[] | undefined;
5972
5975
  thread_ts?: string | undefined;
@@ -5983,25 +5986,25 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5983
5986
  subscribed?: boolean | undefined;
5984
5987
  reactions?: {
5985
5988
  name: string;
5986
- users: string[];
5987
5989
  count: number;
5990
+ users: string[];
5988
5991
  }[] | undefined;
5989
5992
  }[] | undefined;
5990
- response_metadata?: {
5991
- next_cursor: string;
5992
- } | undefined;
5993
5993
  has_more?: boolean | undefined;
5994
5994
  }, {
5995
5995
  operation: "get_thread_replies";
5996
5996
  success: boolean;
5997
5997
  error: string;
5998
5998
  ok: boolean;
5999
+ response_metadata?: {
6000
+ next_cursor: string;
6001
+ } | undefined;
5999
6002
  messages?: {
6000
6003
  type: string;
6001
6004
  user?: string | undefined;
6002
6005
  text?: string | undefined;
6003
- ts?: string | undefined;
6004
6006
  username?: string | undefined;
6007
+ ts?: string | undefined;
6005
6008
  attachments?: unknown[] | undefined;
6006
6009
  blocks?: unknown[] | undefined;
6007
6010
  thread_ts?: string | undefined;
@@ -6018,13 +6021,10 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
6018
6021
  subscribed?: boolean | undefined;
6019
6022
  reactions?: {
6020
6023
  name: string;
6021
- users: string[];
6022
6024
  count: number;
6025
+ users: string[];
6023
6026
  }[] | undefined;
6024
6027
  }[] | undefined;
6025
- response_metadata?: {
6026
- next_cursor: string;
6027
- } | undefined;
6028
6028
  has_more?: boolean | undefined;
6029
6029
  }>, z.ZodObject<{
6030
6030
  operation: z.ZodLiteral<"update_message">;
@@ -6062,19 +6062,19 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
6062
6062
  count: z.ZodNumber;
6063
6063
  }, "strip", z.ZodTypeAny, {
6064
6064
  name: string;
6065
- users: string[];
6066
6065
  count: number;
6066
+ users: string[];
6067
6067
  }, {
6068
6068
  name: string;
6069
- users: string[];
6070
6069
  count: number;
6070
+ users: string[];
6071
6071
  }>, "many">>;
6072
6072
  }, "strip", z.ZodTypeAny, {
6073
6073
  type: string;
6074
6074
  user?: string | undefined;
6075
6075
  text?: string | undefined;
6076
- ts?: string | undefined;
6077
6076
  username?: string | undefined;
6077
+ ts?: string | undefined;
6078
6078
  attachments?: unknown[] | undefined;
6079
6079
  blocks?: unknown[] | undefined;
6080
6080
  thread_ts?: string | undefined;
@@ -6091,15 +6091,15 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
6091
6091
  subscribed?: boolean | undefined;
6092
6092
  reactions?: {
6093
6093
  name: string;
6094
- users: string[];
6095
6094
  count: number;
6095
+ users: string[];
6096
6096
  }[] | undefined;
6097
6097
  }, {
6098
6098
  type: string;
6099
6099
  user?: string | undefined;
6100
6100
  text?: string | undefined;
6101
- ts?: string | undefined;
6102
6101
  username?: string | undefined;
6102
+ ts?: string | undefined;
6103
6103
  attachments?: unknown[] | undefined;
6104
6104
  blocks?: unknown[] | undefined;
6105
6105
  thread_ts?: string | undefined;
@@ -6116,8 +6116,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
6116
6116
  subscribed?: boolean | undefined;
6117
6117
  reactions?: {
6118
6118
  name: string;
6119
- users: string[];
6120
6119
  count: number;
6120
+ users: string[];
6121
6121
  }[] | undefined;
6122
6122
  }>>;
6123
6123
  error: z.ZodString;
@@ -6131,8 +6131,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
6131
6131
  type: string;
6132
6132
  user?: string | undefined;
6133
6133
  text?: string | undefined;
6134
- ts?: string | undefined;
6135
6134
  username?: string | undefined;
6135
+ ts?: string | undefined;
6136
6136
  attachments?: unknown[] | undefined;
6137
6137
  blocks?: unknown[] | undefined;
6138
6138
  thread_ts?: string | undefined;
@@ -6149,8 +6149,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
6149
6149
  subscribed?: boolean | undefined;
6150
6150
  reactions?: {
6151
6151
  name: string;
6152
- users: string[];
6153
6152
  count: number;
6153
+ users: string[];
6154
6154
  }[] | undefined;
6155
6155
  } | undefined;
6156
6156
  text?: string | undefined;
@@ -6165,8 +6165,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
6165
6165
  type: string;
6166
6166
  user?: string | undefined;
6167
6167
  text?: string | undefined;
6168
- ts?: string | undefined;
6169
6168
  username?: string | undefined;
6169
+ ts?: string | undefined;
6170
6170
  attachments?: unknown[] | undefined;
6171
6171
  blocks?: unknown[] | undefined;
6172
6172
  thread_ts?: string | undefined;
@@ -6183,8 +6183,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
6183
6183
  subscribed?: boolean | undefined;
6184
6184
  reactions?: {
6185
6185
  name: string;
6186
- users: string[];
6187
6186
  count: number;
6187
+ users: string[];
6188
6188
  }[] | undefined;
6189
6189
  } | undefined;
6190
6190
  text?: string | undefined;