@bubblelab/bubble-core 0.1.31 → 0.1.32

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 (37) hide show
  1. package/dist/bubble-bundle.d.ts +50 -50
  2. package/dist/bubbles/service-bubble/agi-inc.d.ts +12 -12
  3. package/dist/bubbles/service-bubble/airtable.d.ts +156 -156
  4. package/dist/bubbles/service-bubble/apify/apify.d.ts +8 -8
  5. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +1 -1
  6. package/dist/bubbles/service-bubble/eleven-labs.d.ts +4 -4
  7. package/dist/bubbles/service-bubble/firecrawl.d.ts +8 -8
  8. package/dist/bubbles/service-bubble/followupboss.d.ts +78 -78
  9. package/dist/bubbles/service-bubble/github.d.ts +98 -98
  10. package/dist/bubbles/service-bubble/gmail.d.ts +30 -30
  11. package/dist/bubbles/service-bubble/google-calendar.d.ts +88 -88
  12. package/dist/bubbles/service-bubble/google-drive.d.ts +50 -50
  13. package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +8 -8
  14. package/dist/bubbles/service-bubble/http.d.ts +4 -4
  15. package/dist/bubbles/service-bubble/insforge-db.d.ts +2 -2
  16. package/dist/bubbles/service-bubble/jira/jira.d.ts +503 -493
  17. package/dist/bubbles/service-bubble/jira/jira.d.ts.map +1 -1
  18. package/dist/bubbles/service-bubble/jira/jira.js +47 -10
  19. package/dist/bubbles/service-bubble/jira/jira.js.map +1 -1
  20. package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +6 -6
  21. package/dist/bubbles/service-bubble/jira/jira.schema.d.ts.map +1 -1
  22. package/dist/bubbles/service-bubble/jira/jira.schema.js +4 -3
  23. package/dist/bubbles/service-bubble/jira/jira.schema.js.map +1 -1
  24. package/dist/bubbles/service-bubble/notion/notion.d.ts +148 -148
  25. package/dist/bubbles/service-bubble/postgresql.d.ts +2 -2
  26. package/dist/bubbles/service-bubble/resend.d.ts +4 -4
  27. package/dist/bubbles/service-bubble/slack/slack.d.ts +60 -60
  28. package/dist/bubbles/service-bubble/storage.d.ts +20 -20
  29. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +36 -36
  30. package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +10 -10
  31. package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
  32. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +28 -28
  33. package/dist/bubbles/tool-bubble/youtube-tool.d.ts +20 -20
  34. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +30 -30
  35. package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +4 -4
  36. package/dist/bubbles.json +4 -16
  37. package/package.json +2 -2
@@ -12,9 +12,9 @@ declare const PostgreSQLParamsSchema: z.ZodObject<{
12
12
  maxRows: z.ZodDefault<z.ZodNumber>;
13
13
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
14
14
  }, "strip", z.ZodTypeAny, {
15
+ query: string;
15
16
  timeout: number;
16
17
  ignoreSSL: boolean;
17
- query: string;
18
18
  allowedOperations: ("DELETE" | "SELECT" | "INSERT" | "UPDATE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[];
19
19
  parameters: unknown[];
20
20
  maxRows: number;
@@ -89,9 +89,9 @@ export declare class PostgreSQLBubble extends ServiceBubble<PostgreSQLParams, Po
89
89
  maxRows: z.ZodDefault<z.ZodNumber>;
90
90
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
91
91
  }, "strip", z.ZodTypeAny, {
92
+ query: string;
92
93
  timeout: number;
93
94
  ignoreSSL: boolean;
94
- query: string;
95
95
  allowedOperations: ("DELETE" | "SELECT" | "INSERT" | "UPDATE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[];
96
96
  parameters: unknown[];
97
97
  maxRows: number;
@@ -42,8 +42,8 @@ declare const ResendParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
42
42
  headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
43
43
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
44
44
  }, "strip", z.ZodTypeAny, {
45
- operation: "send_email";
46
45
  to: string | string[];
46
+ operation: "send_email";
47
47
  from: string;
48
48
  subject: string;
49
49
  credentials?: Partial<Record<CredentialType, string>> | undefined;
@@ -65,8 +65,8 @@ declare const ResendParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
65
65
  reply_to?: string | string[] | undefined;
66
66
  scheduled_at?: string | undefined;
67
67
  }, {
68
- operation: "send_email";
69
68
  to: string | string[];
69
+ operation: "send_email";
70
70
  subject: string;
71
71
  credentials?: Partial<Record<CredentialType, string>> | undefined;
72
72
  tags?: {
@@ -189,8 +189,8 @@ export declare class ResendBubble<T extends ResendParams = ResendParams> extends
189
189
  headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
190
190
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
191
191
  }, "strip", z.ZodTypeAny, {
192
- operation: "send_email";
193
192
  to: string | string[];
193
+ operation: "send_email";
194
194
  from: string;
195
195
  subject: string;
196
196
  credentials?: Partial<Record<CredentialType, string>> | undefined;
@@ -212,8 +212,8 @@ export declare class ResendBubble<T extends ResendParams = ResendParams> extends
212
212
  reply_to?: string | string[] | undefined;
213
213
  scheduled_at?: string | undefined;
214
214
  }, {
215
- operation: "send_email";
216
215
  to: string | string[];
216
+ operation: "send_email";
217
217
  subject: string;
218
218
  credentials?: Partial<Record<CredentialType, string>> | undefined;
219
219
  tags?: {
@@ -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
  limit: number;
432
432
  channel: string;
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
  limit: number;
460
460
  ts: string;
461
461
  channel: string;
@@ -822,14 +822,14 @@ 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
- operation: "add_reaction";
826
825
  name: string;
826
+ operation: "add_reaction";
827
827
  channel: string;
828
828
  timestamp: string;
829
829
  credentials?: Partial<Record<CredentialType, string>> | undefined;
830
830
  }, {
831
- operation: "add_reaction";
832
831
  name: string;
832
+ operation: "add_reaction";
833
833
  channel: string;
834
834
  timestamp: string;
835
835
  credentials?: Partial<Record<CredentialType, string>> | undefined;
@@ -840,14 +840,14 @@ 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
- operation: "remove_reaction";
844
843
  name: string;
844
+ operation: "remove_reaction";
845
845
  channel: string;
846
846
  timestamp: string;
847
847
  credentials?: Partial<Record<CredentialType, string>> | undefined;
848
848
  }, {
849
- operation: "remove_reaction";
850
849
  name: string;
850
+ operation: "remove_reaction";
851
851
  channel: string;
852
852
  timestamp: string;
853
853
  credentials?: Partial<Record<CredentialType, string>> | undefined;
@@ -1335,8 +1335,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1335
1335
  }>>;
1336
1336
  num_members: z.ZodOptional<z.ZodNumber>;
1337
1337
  }, "strip", z.ZodTypeAny, {
1338
- name: string;
1339
1338
  id: string;
1339
+ name: string;
1340
1340
  created: number;
1341
1341
  is_archived: boolean;
1342
1342
  is_channel?: boolean | undefined;
@@ -1368,8 +1368,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1368
1368
  } | undefined;
1369
1369
  num_members?: number | undefined;
1370
1370
  }, {
1371
- name: string;
1372
1371
  id: string;
1372
+ name: string;
1373
1373
  created: number;
1374
1374
  is_archived: boolean;
1375
1375
  is_channel?: boolean | undefined;
@@ -1419,8 +1419,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1419
1419
  next_cursor: string;
1420
1420
  } | undefined;
1421
1421
  channels?: {
1422
- name: string;
1423
1422
  id: string;
1423
+ name: string;
1424
1424
  created: number;
1425
1425
  is_archived: boolean;
1426
1426
  is_channel?: boolean | undefined;
@@ -1461,8 +1461,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1461
1461
  next_cursor: string;
1462
1462
  } | undefined;
1463
1463
  channels?: {
1464
- name: string;
1465
1464
  id: string;
1465
+ name: string;
1466
1466
  created: number;
1467
1467
  is_archived: boolean;
1468
1468
  is_channel?: boolean | undefined;
@@ -1547,8 +1547,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1547
1547
  }>>;
1548
1548
  num_members: z.ZodOptional<z.ZodNumber>;
1549
1549
  }, "strip", z.ZodTypeAny, {
1550
- name: string;
1551
1550
  id: string;
1551
+ name: string;
1552
1552
  created: number;
1553
1553
  is_archived: boolean;
1554
1554
  is_channel?: boolean | undefined;
@@ -1580,8 +1580,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1580
1580
  } | undefined;
1581
1581
  num_members?: number | undefined;
1582
1582
  }, {
1583
- name: string;
1584
1583
  id: string;
1584
+ name: string;
1585
1585
  created: number;
1586
1586
  is_archived: boolean;
1587
1587
  is_channel?: boolean | undefined;
@@ -1621,8 +1621,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1621
1621
  error: string;
1622
1622
  ok: boolean;
1623
1623
  channel?: {
1624
- name: string;
1625
1624
  id: string;
1625
+ name: string;
1626
1626
  created: number;
1627
1627
  is_archived: boolean;
1628
1628
  is_channel?: boolean | undefined;
@@ -1660,8 +1660,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1660
1660
  error: string;
1661
1661
  ok: boolean;
1662
1662
  channel?: {
1663
- name: string;
1664
1663
  id: string;
1664
+ name: string;
1665
1665
  created: number;
1666
1666
  is_archived: boolean;
1667
1667
  is_channel?: boolean | undefined;
@@ -1792,8 +1792,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1792
1792
  updated: z.ZodOptional<z.ZodNumber>;
1793
1793
  has_2fa: z.ZodOptional<z.ZodBoolean>;
1794
1794
  }, "strip", z.ZodTypeAny, {
1795
- name: string;
1796
1795
  id: string;
1796
+ name: string;
1797
1797
  updated?: number | undefined;
1798
1798
  color?: string | undefined;
1799
1799
  team_id?: string | undefined;
@@ -1837,8 +1837,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1837
1837
  is_app_user?: boolean | undefined;
1838
1838
  has_2fa?: boolean | undefined;
1839
1839
  }, {
1840
- name: string;
1841
1840
  id: string;
1841
+ name: string;
1842
1842
  updated?: number | undefined;
1843
1843
  color?: string | undefined;
1844
1844
  team_id?: string | undefined;
@@ -1890,8 +1890,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1890
1890
  error: string;
1891
1891
  ok: boolean;
1892
1892
  user?: {
1893
- name: string;
1894
1893
  id: string;
1894
+ name: string;
1895
1895
  updated?: number | undefined;
1896
1896
  color?: string | undefined;
1897
1897
  team_id?: string | undefined;
@@ -1941,8 +1941,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1941
1941
  error: string;
1942
1942
  ok: boolean;
1943
1943
  user?: {
1944
- name: string;
1945
1944
  id: string;
1945
+ name: string;
1946
1946
  updated?: number | undefined;
1947
1947
  color?: string | undefined;
1948
1948
  team_id?: string | undefined;
@@ -2085,8 +2085,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2085
2085
  updated: z.ZodOptional<z.ZodNumber>;
2086
2086
  has_2fa: z.ZodOptional<z.ZodBoolean>;
2087
2087
  }, "strip", z.ZodTypeAny, {
2088
- name: string;
2089
2088
  id: string;
2089
+ name: string;
2090
2090
  updated?: number | undefined;
2091
2091
  color?: string | undefined;
2092
2092
  team_id?: string | undefined;
@@ -2130,8 +2130,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2130
2130
  is_app_user?: boolean | undefined;
2131
2131
  has_2fa?: boolean | undefined;
2132
2132
  }, {
2133
- name: string;
2134
2133
  id: string;
2134
+ name: string;
2135
2135
  updated?: number | undefined;
2136
2136
  color?: string | undefined;
2137
2137
  team_id?: string | undefined;
@@ -2193,8 +2193,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2193
2193
  next_cursor: string;
2194
2194
  } | undefined;
2195
2195
  members?: {
2196
- name: string;
2197
2196
  id: string;
2197
+ name: string;
2198
2198
  updated?: number | undefined;
2199
2199
  color?: string | undefined;
2200
2200
  team_id?: string | undefined;
@@ -2247,8 +2247,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2247
2247
  next_cursor: string;
2248
2248
  } | undefined;
2249
2249
  members?: {
2250
- name: string;
2251
2250
  id: string;
2251
+ name: string;
2252
2252
  updated?: number | undefined;
2253
2253
  color?: string | undefined;
2254
2254
  team_id?: string | undefined;
@@ -2902,8 +2902,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2902
2902
  }>>;
2903
2903
  num_members: z.ZodOptional<z.ZodNumber>;
2904
2904
  }, "strip", z.ZodTypeAny, {
2905
- name: string;
2906
2905
  id: string;
2906
+ name: string;
2907
2907
  created: number;
2908
2908
  is_archived: boolean;
2909
2909
  is_channel?: boolean | undefined;
@@ -2935,8 +2935,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2935
2935
  } | undefined;
2936
2936
  num_members?: number | undefined;
2937
2937
  }, {
2938
- name: string;
2939
2938
  id: string;
2939
+ name: string;
2940
2940
  created: number;
2941
2941
  is_archived: boolean;
2942
2942
  is_channel?: boolean | undefined;
@@ -2977,8 +2977,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2977
2977
  error: string;
2978
2978
  ok: boolean;
2979
2979
  channel?: {
2980
- name: string;
2981
2980
  id: string;
2981
+ name: string;
2982
2982
  created: number;
2983
2983
  is_archived: boolean;
2984
2984
  is_channel?: boolean | undefined;
@@ -3017,8 +3017,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
3017
3017
  error: string;
3018
3018
  ok: boolean;
3019
3019
  channel?: {
3020
- name: string;
3021
3020
  id: string;
3021
+ name: string;
3022
3022
  created: number;
3023
3023
  is_archived: boolean;
3024
3024
  is_channel?: boolean | undefined;
@@ -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
- name: string;
3166
3165
  id: string;
3166
+ name: string;
3167
3167
  created: number;
3168
3168
  user: string;
3169
3169
  username: 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
- name: string;
3211
3210
  id: string;
3211
+ name: string;
3212
3212
  created: number;
3213
3213
  user: string;
3214
3214
  username: string;
@@ -3260,8 +3260,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
3260
3260
  error: string;
3261
3261
  ok: boolean;
3262
3262
  file?: {
3263
- name: string;
3264
3263
  id: string;
3264
+ name: string;
3265
3265
  created: number;
3266
3266
  user: string;
3267
3267
  username: string;
@@ -3311,8 +3311,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
3311
3311
  error: string;
3312
3312
  ok: boolean;
3313
3313
  file?: {
3314
- name: string;
3315
3314
  id: string;
3315
+ name: string;
3316
3316
  created: number;
3317
3317
  user: string;
3318
3318
  username: string;
@@ -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
  limit: number;
3824
3824
  channel: string;
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
  limit: number;
3852
3852
  ts: string;
3853
3853
  channel: string;
@@ -4214,14 +4214,14 @@ 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
- operation: "add_reaction";
4218
4217
  name: string;
4218
+ operation: "add_reaction";
4219
4219
  channel: string;
4220
4220
  timestamp: string;
4221
4221
  credentials?: Partial<Record<CredentialType, string>> | undefined;
4222
4222
  }, {
4223
- operation: "add_reaction";
4224
4223
  name: string;
4224
+ operation: "add_reaction";
4225
4225
  channel: string;
4226
4226
  timestamp: string;
4227
4227
  credentials?: Partial<Record<CredentialType, string>> | undefined;
@@ -4232,14 +4232,14 @@ 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
- operation: "remove_reaction";
4236
4235
  name: string;
4236
+ operation: "remove_reaction";
4237
4237
  channel: string;
4238
4238
  timestamp: string;
4239
4239
  credentials?: Partial<Record<CredentialType, string>> | undefined;
4240
4240
  }, {
4241
- operation: "remove_reaction";
4242
4241
  name: string;
4242
+ operation: "remove_reaction";
4243
4243
  channel: string;
4244
4244
  timestamp: string;
4245
4245
  credentials?: Partial<Record<CredentialType, string>> | undefined;
@@ -4727,8 +4727,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4727
4727
  }>>;
4728
4728
  num_members: z.ZodOptional<z.ZodNumber>;
4729
4729
  }, "strip", z.ZodTypeAny, {
4730
- name: string;
4731
4730
  id: string;
4731
+ name: string;
4732
4732
  created: number;
4733
4733
  is_archived: boolean;
4734
4734
  is_channel?: boolean | undefined;
@@ -4760,8 +4760,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4760
4760
  } | undefined;
4761
4761
  num_members?: number | undefined;
4762
4762
  }, {
4763
- name: string;
4764
4763
  id: string;
4764
+ name: string;
4765
4765
  created: number;
4766
4766
  is_archived: boolean;
4767
4767
  is_channel?: boolean | undefined;
@@ -4811,8 +4811,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4811
4811
  next_cursor: string;
4812
4812
  } | undefined;
4813
4813
  channels?: {
4814
- name: string;
4815
4814
  id: string;
4815
+ name: string;
4816
4816
  created: number;
4817
4817
  is_archived: boolean;
4818
4818
  is_channel?: boolean | undefined;
@@ -4853,8 +4853,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4853
4853
  next_cursor: string;
4854
4854
  } | undefined;
4855
4855
  channels?: {
4856
- name: string;
4857
4856
  id: string;
4857
+ name: string;
4858
4858
  created: number;
4859
4859
  is_archived: boolean;
4860
4860
  is_channel?: boolean | undefined;
@@ -4939,8 +4939,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4939
4939
  }>>;
4940
4940
  num_members: z.ZodOptional<z.ZodNumber>;
4941
4941
  }, "strip", z.ZodTypeAny, {
4942
- name: string;
4943
4942
  id: string;
4943
+ name: string;
4944
4944
  created: number;
4945
4945
  is_archived: boolean;
4946
4946
  is_channel?: boolean | undefined;
@@ -4972,8 +4972,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4972
4972
  } | undefined;
4973
4973
  num_members?: number | undefined;
4974
4974
  }, {
4975
- name: string;
4976
4975
  id: string;
4976
+ name: string;
4977
4977
  created: number;
4978
4978
  is_archived: boolean;
4979
4979
  is_channel?: boolean | undefined;
@@ -5013,8 +5013,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5013
5013
  error: string;
5014
5014
  ok: boolean;
5015
5015
  channel?: {
5016
- name: string;
5017
5016
  id: string;
5017
+ name: string;
5018
5018
  created: number;
5019
5019
  is_archived: boolean;
5020
5020
  is_channel?: boolean | undefined;
@@ -5052,8 +5052,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5052
5052
  error: string;
5053
5053
  ok: boolean;
5054
5054
  channel?: {
5055
- name: string;
5056
5055
  id: string;
5056
+ name: string;
5057
5057
  created: number;
5058
5058
  is_archived: boolean;
5059
5059
  is_channel?: boolean | undefined;
@@ -5184,8 +5184,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5184
5184
  updated: z.ZodOptional<z.ZodNumber>;
5185
5185
  has_2fa: z.ZodOptional<z.ZodBoolean>;
5186
5186
  }, "strip", z.ZodTypeAny, {
5187
- name: string;
5188
5187
  id: string;
5188
+ name: string;
5189
5189
  updated?: number | undefined;
5190
5190
  color?: string | undefined;
5191
5191
  team_id?: string | undefined;
@@ -5229,8 +5229,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5229
5229
  is_app_user?: boolean | undefined;
5230
5230
  has_2fa?: boolean | undefined;
5231
5231
  }, {
5232
- name: string;
5233
5232
  id: string;
5233
+ name: string;
5234
5234
  updated?: number | undefined;
5235
5235
  color?: string | undefined;
5236
5236
  team_id?: string | undefined;
@@ -5282,8 +5282,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5282
5282
  error: string;
5283
5283
  ok: boolean;
5284
5284
  user?: {
5285
- name: string;
5286
5285
  id: string;
5286
+ name: string;
5287
5287
  updated?: number | undefined;
5288
5288
  color?: string | undefined;
5289
5289
  team_id?: string | undefined;
@@ -5333,8 +5333,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5333
5333
  error: string;
5334
5334
  ok: boolean;
5335
5335
  user?: {
5336
- name: string;
5337
5336
  id: string;
5337
+ name: string;
5338
5338
  updated?: number | undefined;
5339
5339
  color?: string | undefined;
5340
5340
  team_id?: string | undefined;
@@ -5477,8 +5477,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5477
5477
  updated: z.ZodOptional<z.ZodNumber>;
5478
5478
  has_2fa: z.ZodOptional<z.ZodBoolean>;
5479
5479
  }, "strip", z.ZodTypeAny, {
5480
- name: string;
5481
5480
  id: string;
5481
+ name: string;
5482
5482
  updated?: number | undefined;
5483
5483
  color?: string | undefined;
5484
5484
  team_id?: string | undefined;
@@ -5522,8 +5522,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5522
5522
  is_app_user?: boolean | undefined;
5523
5523
  has_2fa?: boolean | undefined;
5524
5524
  }, {
5525
- name: string;
5526
5525
  id: string;
5526
+ name: string;
5527
5527
  updated?: number | undefined;
5528
5528
  color?: string | undefined;
5529
5529
  team_id?: string | undefined;
@@ -5585,8 +5585,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5585
5585
  next_cursor: string;
5586
5586
  } | undefined;
5587
5587
  members?: {
5588
- name: string;
5589
5588
  id: string;
5589
+ name: string;
5590
5590
  updated?: number | undefined;
5591
5591
  color?: string | undefined;
5592
5592
  team_id?: string | undefined;
@@ -5639,8 +5639,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5639
5639
  next_cursor: string;
5640
5640
  } | undefined;
5641
5641
  members?: {
5642
- name: string;
5643
5642
  id: string;
5643
+ name: string;
5644
5644
  updated?: number | undefined;
5645
5645
  color?: string | undefined;
5646
5646
  team_id?: string | undefined;
@@ -6294,8 +6294,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
6294
6294
  }>>;
6295
6295
  num_members: z.ZodOptional<z.ZodNumber>;
6296
6296
  }, "strip", z.ZodTypeAny, {
6297
- name: string;
6298
6297
  id: string;
6298
+ name: string;
6299
6299
  created: number;
6300
6300
  is_archived: boolean;
6301
6301
  is_channel?: boolean | undefined;
@@ -6327,8 +6327,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
6327
6327
  } | undefined;
6328
6328
  num_members?: number | undefined;
6329
6329
  }, {
6330
- name: string;
6331
6330
  id: string;
6331
+ name: string;
6332
6332
  created: number;
6333
6333
  is_archived: boolean;
6334
6334
  is_channel?: boolean | undefined;
@@ -6369,8 +6369,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
6369
6369
  error: string;
6370
6370
  ok: boolean;
6371
6371
  channel?: {
6372
- name: string;
6373
6372
  id: string;
6373
+ name: string;
6374
6374
  created: number;
6375
6375
  is_archived: boolean;
6376
6376
  is_channel?: boolean | undefined;
@@ -6409,8 +6409,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
6409
6409
  error: string;
6410
6410
  ok: boolean;
6411
6411
  channel?: {
6412
- name: string;
6413
6412
  id: string;
6413
+ name: string;
6414
6414
  created: number;
6415
6415
  is_archived: boolean;
6416
6416
  is_channel?: boolean | undefined;
@@ -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
- name: string;
6558
6557
  id: string;
6558
+ name: string;
6559
6559
  created: number;
6560
6560
  user: string;
6561
6561
  username: 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
- name: string;
6603
6602
  id: string;
6603
+ name: string;
6604
6604
  created: number;
6605
6605
  user: string;
6606
6606
  username: string;
@@ -6652,8 +6652,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
6652
6652
  error: string;
6653
6653
  ok: boolean;
6654
6654
  file?: {
6655
- name: string;
6656
6655
  id: string;
6656
+ name: string;
6657
6657
  created: number;
6658
6658
  user: string;
6659
6659
  username: string;
@@ -6703,8 +6703,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
6703
6703
  error: string;
6704
6704
  ok: boolean;
6705
6705
  file?: {
6706
- name: string;
6707
6706
  id: string;
6707
+ name: string;
6708
6708
  created: number;
6709
6709
  user: string;
6710
6710
  username: string;