@bubblelab/bubble-core 0.1.106 → 0.1.107

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 (35) hide show
  1. package/dist/bubble-bundle.d.ts +32 -32
  2. package/dist/bubbles/service-bubble/ai-agent.d.ts +4 -4
  3. package/dist/bubbles/service-bubble/apify/apify.d.ts +4 -4
  4. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +8 -8
  5. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +16 -16
  6. package/dist/bubbles/service-bubble/firecrawl.d.ts +4 -4
  7. package/dist/bubbles/service-bubble/gmail.d.ts +84 -84
  8. package/dist/bubbles/service-bubble/google-drive.d.ts +32 -32
  9. package/dist/bubbles/service-bubble/jira/jira.d.ts +12 -12
  10. package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +14 -14
  11. package/dist/bubbles/service-bubble/resend.d.ts +4 -4
  12. package/dist/bubbles/service-bubble/slack/slack.d.ts +36 -36
  13. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +8 -8
  14. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +10 -10
  15. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +8 -8
  16. package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +16 -16
  17. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +16 -16
  18. package/dist/bubbles.json +1 -1
  19. package/package.json +2 -2
  20. package/dist/bubbles/service-bubble/salesforce/index.d.ts +0 -4
  21. package/dist/bubbles/service-bubble/salesforce/index.d.ts.map +0 -1
  22. package/dist/bubbles/service-bubble/salesforce/index.js +0 -4
  23. package/dist/bubbles/service-bubble/salesforce/index.js.map +0 -1
  24. package/dist/bubbles/service-bubble/salesforce/salesforce.d.ts +0 -1331
  25. package/dist/bubbles/service-bubble/salesforce/salesforce.d.ts.map +0 -1
  26. package/dist/bubbles/service-bubble/salesforce/salesforce.js +0 -618
  27. package/dist/bubbles/service-bubble/salesforce/salesforce.js.map +0 -1
  28. package/dist/bubbles/service-bubble/salesforce/salesforce.schema.d.ts +0 -1445
  29. package/dist/bubbles/service-bubble/salesforce/salesforce.schema.d.ts.map +0 -1
  30. package/dist/bubbles/service-bubble/salesforce/salesforce.schema.js +0 -609
  31. package/dist/bubbles/service-bubble/salesforce/salesforce.schema.js.map +0 -1
  32. package/dist/bubbles/service-bubble/salesforce/salesforce.utils.d.ts +0 -87
  33. package/dist/bubbles/service-bubble/salesforce/salesforce.utils.d.ts.map +0 -1
  34. package/dist/bubbles/service-bubble/salesforce/salesforce.utils.js +0 -181
  35. package/dist/bubbles/service-bubble/salesforce/salesforce.utils.js.map +0 -1
@@ -47,12 +47,12 @@ declare const ResendParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
47
47
  to: string | string[];
48
48
  subject: string;
49
49
  credentials?: Partial<Record<CredentialType, string>> | undefined;
50
+ text?: string | undefined;
50
51
  tags?: {
51
52
  value: string;
52
53
  name: string;
53
54
  }[] | undefined;
54
55
  headers?: Record<string, string> | undefined;
55
- text?: string | undefined;
56
56
  attachments?: {
57
57
  filename: string;
58
58
  path?: string | undefined;
@@ -69,12 +69,12 @@ declare const ResendParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
69
69
  to: string | string[];
70
70
  subject: string;
71
71
  credentials?: Partial<Record<CredentialType, string>> | undefined;
72
+ text?: string | undefined;
72
73
  tags?: {
73
74
  value: string;
74
75
  name: string;
75
76
  }[] | undefined;
76
77
  headers?: Record<string, string> | undefined;
77
- text?: string | undefined;
78
78
  attachments?: {
79
79
  filename: string;
80
80
  path?: string | undefined;
@@ -194,12 +194,12 @@ export declare class ResendBubble<T extends ResendParams = ResendParams> extends
194
194
  to: string | string[];
195
195
  subject: string;
196
196
  credentials?: Partial<Record<CredentialType, string>> | undefined;
197
+ text?: string | undefined;
197
198
  tags?: {
198
199
  value: string;
199
200
  name: string;
200
201
  }[] | undefined;
201
202
  headers?: Record<string, string> | undefined;
202
- text?: string | undefined;
203
203
  attachments?: {
204
204
  filename: string;
205
205
  path?: string | undefined;
@@ -216,12 +216,12 @@ export declare class ResendBubble<T extends ResendParams = ResendParams> extends
216
216
  to: string | string[];
217
217
  subject: string;
218
218
  credentials?: Partial<Record<CredentialType, string>> | undefined;
219
+ text?: string | undefined;
219
220
  tags?: {
220
221
  value: string;
221
222
  name: string;
222
223
  }[] | undefined;
223
224
  headers?: Record<string, string> | undefined;
224
- text?: string | undefined;
225
225
  attachments?: {
226
226
  filename: string;
227
227
  path?: string | undefined;
@@ -355,16 +355,16 @@ declare const SlackParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
355
355
  cursor: z.ZodOptional<z.ZodString>;
356
356
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
357
357
  }, "strip", z.ZodTypeAny, {
358
- operation: "list_channels";
359
358
  types: ("public_channel" | "private_channel" | "mpim" | "im")[];
359
+ operation: "list_channels";
360
360
  exclude_archived: boolean;
361
361
  limit: number;
362
362
  credentials?: Partial<Record<CredentialType, string>> | undefined;
363
363
  cursor?: string | undefined;
364
364
  }, {
365
365
  operation: "list_channels";
366
- credentials?: Partial<Record<CredentialType, string>> | undefined;
367
366
  types?: ("public_channel" | "private_channel" | "mpim" | "im")[] | undefined;
367
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
368
368
  exclude_archived?: boolean | undefined;
369
369
  limit?: number | undefined;
370
370
  cursor?: string | undefined;
@@ -1241,8 +1241,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1241
1241
  }>, "many">>;
1242
1242
  }, "strip", z.ZodTypeAny, {
1243
1243
  type: string;
1244
- user?: string | undefined;
1245
1244
  text?: string | undefined;
1245
+ user?: string | undefined;
1246
1246
  ts?: string | undefined;
1247
1247
  username?: string | undefined;
1248
1248
  attachments?: unknown[] | undefined;
@@ -1283,8 +1283,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1283
1283
  }[] | undefined;
1284
1284
  }, {
1285
1285
  type: string;
1286
- user?: string | undefined;
1287
1286
  text?: string | undefined;
1287
+ user?: string | undefined;
1288
1288
  ts?: string | undefined;
1289
1289
  username?: string | undefined;
1290
1290
  attachments?: unknown[] | undefined;
@@ -1333,8 +1333,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1333
1333
  ok: boolean;
1334
1334
  message?: {
1335
1335
  type: string;
1336
- user?: string | undefined;
1337
1336
  text?: string | undefined;
1337
+ user?: string | undefined;
1338
1338
  ts?: string | undefined;
1339
1339
  username?: string | undefined;
1340
1340
  attachments?: unknown[] | undefined;
@@ -1383,8 +1383,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
1383
1383
  ok: boolean;
1384
1384
  message?: {
1385
1385
  type: string;
1386
- user?: string | undefined;
1387
1386
  text?: string | undefined;
1387
+ user?: string | undefined;
1388
1388
  ts?: string | undefined;
1389
1389
  username?: string | undefined;
1390
1390
  attachments?: unknown[] | undefined;
@@ -2527,8 +2527,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2527
2527
  }>, "many">>;
2528
2528
  }, "strip", z.ZodTypeAny, {
2529
2529
  type: string;
2530
- user?: string | undefined;
2531
2530
  text?: string | undefined;
2531
+ user?: string | undefined;
2532
2532
  ts?: string | undefined;
2533
2533
  username?: string | undefined;
2534
2534
  attachments?: unknown[] | undefined;
@@ -2569,8 +2569,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2569
2569
  }[] | undefined;
2570
2570
  }, {
2571
2571
  type: string;
2572
- user?: string | undefined;
2573
2572
  text?: string | undefined;
2573
+ user?: string | undefined;
2574
2574
  ts?: string | undefined;
2575
2575
  username?: string | undefined;
2576
2576
  attachments?: unknown[] | undefined;
@@ -2630,8 +2630,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2630
2630
  } | undefined;
2631
2631
  messages?: {
2632
2632
  type: string;
2633
- user?: string | undefined;
2634
2633
  text?: string | undefined;
2634
+ user?: string | undefined;
2635
2635
  ts?: string | undefined;
2636
2636
  username?: string | undefined;
2637
2637
  attachments?: unknown[] | undefined;
@@ -2682,8 +2682,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2682
2682
  } | undefined;
2683
2683
  messages?: {
2684
2684
  type: string;
2685
- user?: string | undefined;
2686
2685
  text?: string | undefined;
2686
+ user?: string | undefined;
2687
2687
  ts?: string | undefined;
2688
2688
  username?: string | undefined;
2689
2689
  attachments?: unknown[] | undefined;
@@ -2815,8 +2815,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2815
2815
  }>, "many">>;
2816
2816
  }, "strip", z.ZodTypeAny, {
2817
2817
  type: string;
2818
- user?: string | undefined;
2819
2818
  text?: string | undefined;
2819
+ user?: string | undefined;
2820
2820
  ts?: string | undefined;
2821
2821
  username?: string | undefined;
2822
2822
  attachments?: unknown[] | undefined;
@@ -2857,8 +2857,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2857
2857
  }[] | undefined;
2858
2858
  }, {
2859
2859
  type: string;
2860
- user?: string | undefined;
2861
2860
  text?: string | undefined;
2861
+ user?: string | undefined;
2862
2862
  ts?: string | undefined;
2863
2863
  username?: string | undefined;
2864
2864
  attachments?: unknown[] | undefined;
@@ -2918,8 +2918,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2918
2918
  } | undefined;
2919
2919
  messages?: {
2920
2920
  type: string;
2921
- user?: string | undefined;
2922
2921
  text?: string | undefined;
2922
+ user?: string | undefined;
2923
2923
  ts?: string | undefined;
2924
2924
  username?: string | undefined;
2925
2925
  attachments?: unknown[] | undefined;
@@ -2970,8 +2970,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
2970
2970
  } | undefined;
2971
2971
  messages?: {
2972
2972
  type: string;
2973
- user?: string | undefined;
2974
2973
  text?: string | undefined;
2974
+ user?: string | undefined;
2975
2975
  ts?: string | undefined;
2976
2976
  username?: string | undefined;
2977
2977
  attachments?: unknown[] | undefined;
@@ -3106,8 +3106,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
3106
3106
  }>, "many">>;
3107
3107
  }, "strip", z.ZodTypeAny, {
3108
3108
  type: string;
3109
- user?: string | undefined;
3110
3109
  text?: string | undefined;
3110
+ user?: string | undefined;
3111
3111
  ts?: string | undefined;
3112
3112
  username?: string | undefined;
3113
3113
  attachments?: unknown[] | undefined;
@@ -3148,8 +3148,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
3148
3148
  }[] | undefined;
3149
3149
  }, {
3150
3150
  type: string;
3151
- user?: string | undefined;
3152
3151
  text?: string | undefined;
3152
+ user?: string | undefined;
3153
3153
  ts?: string | undefined;
3154
3154
  username?: string | undefined;
3155
3155
  attachments?: unknown[] | undefined;
@@ -3198,8 +3198,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
3198
3198
  ok: boolean;
3199
3199
  message?: {
3200
3200
  type: string;
3201
- user?: string | undefined;
3202
3201
  text?: string | undefined;
3202
+ user?: string | undefined;
3203
3203
  ts?: string | undefined;
3204
3204
  username?: string | undefined;
3205
3205
  attachments?: unknown[] | undefined;
@@ -3249,8 +3249,8 @@ declare const SlackResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObje
3249
3249
  ok: boolean;
3250
3250
  message?: {
3251
3251
  type: string;
3252
- user?: string | undefined;
3253
3252
  text?: string | undefined;
3253
+ user?: string | undefined;
3254
3254
  ts?: string | undefined;
3255
3255
  username?: string | undefined;
3256
3256
  attachments?: unknown[] | undefined;
@@ -4367,16 +4367,16 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
4367
4367
  cursor: z.ZodOptional<z.ZodString>;
4368
4368
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
4369
4369
  }, "strip", z.ZodTypeAny, {
4370
- operation: "list_channels";
4371
4370
  types: ("public_channel" | "private_channel" | "mpim" | "im")[];
4371
+ operation: "list_channels";
4372
4372
  exclude_archived: boolean;
4373
4373
  limit: number;
4374
4374
  credentials?: Partial<Record<CredentialType, string>> | undefined;
4375
4375
  cursor?: string | undefined;
4376
4376
  }, {
4377
4377
  operation: "list_channels";
4378
- credentials?: Partial<Record<CredentialType, string>> | undefined;
4379
4378
  types?: ("public_channel" | "private_channel" | "mpim" | "im")[] | undefined;
4379
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
4380
4380
  exclude_archived?: boolean | undefined;
4381
4381
  limit?: number | undefined;
4382
4382
  cursor?: string | undefined;
@@ -5253,8 +5253,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5253
5253
  }>, "many">>;
5254
5254
  }, "strip", z.ZodTypeAny, {
5255
5255
  type: string;
5256
- user?: string | undefined;
5257
5256
  text?: string | undefined;
5257
+ user?: string | undefined;
5258
5258
  ts?: string | undefined;
5259
5259
  username?: string | undefined;
5260
5260
  attachments?: unknown[] | undefined;
@@ -5295,8 +5295,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5295
5295
  }[] | undefined;
5296
5296
  }, {
5297
5297
  type: string;
5298
- user?: string | undefined;
5299
5298
  text?: string | undefined;
5299
+ user?: string | undefined;
5300
5300
  ts?: string | undefined;
5301
5301
  username?: string | undefined;
5302
5302
  attachments?: unknown[] | undefined;
@@ -5345,8 +5345,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5345
5345
  ok: boolean;
5346
5346
  message?: {
5347
5347
  type: string;
5348
- user?: string | undefined;
5349
5348
  text?: string | undefined;
5349
+ user?: string | undefined;
5350
5350
  ts?: string | undefined;
5351
5351
  username?: string | undefined;
5352
5352
  attachments?: unknown[] | undefined;
@@ -5395,8 +5395,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
5395
5395
  ok: boolean;
5396
5396
  message?: {
5397
5397
  type: string;
5398
- user?: string | undefined;
5399
5398
  text?: string | undefined;
5399
+ user?: string | undefined;
5400
5400
  ts?: string | undefined;
5401
5401
  username?: string | undefined;
5402
5402
  attachments?: unknown[] | undefined;
@@ -6539,8 +6539,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
6539
6539
  }>, "many">>;
6540
6540
  }, "strip", z.ZodTypeAny, {
6541
6541
  type: string;
6542
- user?: string | undefined;
6543
6542
  text?: string | undefined;
6543
+ user?: string | undefined;
6544
6544
  ts?: string | undefined;
6545
6545
  username?: string | undefined;
6546
6546
  attachments?: unknown[] | undefined;
@@ -6581,8 +6581,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
6581
6581
  }[] | undefined;
6582
6582
  }, {
6583
6583
  type: string;
6584
- user?: string | undefined;
6585
6584
  text?: string | undefined;
6585
+ user?: string | undefined;
6586
6586
  ts?: string | undefined;
6587
6587
  username?: string | undefined;
6588
6588
  attachments?: unknown[] | undefined;
@@ -6642,8 +6642,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
6642
6642
  } | undefined;
6643
6643
  messages?: {
6644
6644
  type: string;
6645
- user?: string | undefined;
6646
6645
  text?: string | undefined;
6646
+ user?: string | undefined;
6647
6647
  ts?: string | undefined;
6648
6648
  username?: string | undefined;
6649
6649
  attachments?: unknown[] | undefined;
@@ -6694,8 +6694,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
6694
6694
  } | undefined;
6695
6695
  messages?: {
6696
6696
  type: string;
6697
- user?: string | undefined;
6698
6697
  text?: string | undefined;
6698
+ user?: string | undefined;
6699
6699
  ts?: string | undefined;
6700
6700
  username?: string | undefined;
6701
6701
  attachments?: unknown[] | undefined;
@@ -6827,8 +6827,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
6827
6827
  }>, "many">>;
6828
6828
  }, "strip", z.ZodTypeAny, {
6829
6829
  type: string;
6830
- user?: string | undefined;
6831
6830
  text?: string | undefined;
6831
+ user?: string | undefined;
6832
6832
  ts?: string | undefined;
6833
6833
  username?: string | undefined;
6834
6834
  attachments?: unknown[] | undefined;
@@ -6869,8 +6869,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
6869
6869
  }[] | undefined;
6870
6870
  }, {
6871
6871
  type: string;
6872
- user?: string | undefined;
6873
6872
  text?: string | undefined;
6873
+ user?: string | undefined;
6874
6874
  ts?: string | undefined;
6875
6875
  username?: string | undefined;
6876
6876
  attachments?: unknown[] | undefined;
@@ -6930,8 +6930,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
6930
6930
  } | undefined;
6931
6931
  messages?: {
6932
6932
  type: string;
6933
- user?: string | undefined;
6934
6933
  text?: string | undefined;
6934
+ user?: string | undefined;
6935
6935
  ts?: string | undefined;
6936
6936
  username?: string | undefined;
6937
6937
  attachments?: unknown[] | undefined;
@@ -6982,8 +6982,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
6982
6982
  } | undefined;
6983
6983
  messages?: {
6984
6984
  type: string;
6985
- user?: string | undefined;
6986
6985
  text?: string | undefined;
6986
+ user?: string | undefined;
6987
6987
  ts?: string | undefined;
6988
6988
  username?: string | undefined;
6989
6989
  attachments?: unknown[] | undefined;
@@ -7118,8 +7118,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
7118
7118
  }>, "many">>;
7119
7119
  }, "strip", z.ZodTypeAny, {
7120
7120
  type: string;
7121
- user?: string | undefined;
7122
7121
  text?: string | undefined;
7122
+ user?: string | undefined;
7123
7123
  ts?: string | undefined;
7124
7124
  username?: string | undefined;
7125
7125
  attachments?: unknown[] | undefined;
@@ -7160,8 +7160,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
7160
7160
  }[] | undefined;
7161
7161
  }, {
7162
7162
  type: string;
7163
- user?: string | undefined;
7164
7163
  text?: string | undefined;
7164
+ user?: string | undefined;
7165
7165
  ts?: string | undefined;
7166
7166
  username?: string | undefined;
7167
7167
  attachments?: unknown[] | undefined;
@@ -7210,8 +7210,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
7210
7210
  ok: boolean;
7211
7211
  message?: {
7212
7212
  type: string;
7213
- user?: string | undefined;
7214
7213
  text?: string | undefined;
7214
+ user?: string | undefined;
7215
7215
  ts?: string | undefined;
7216
7216
  username?: string | undefined;
7217
7217
  attachments?: unknown[] | undefined;
@@ -7261,8 +7261,8 @@ export declare class SlackBubble<T extends SlackParams = SlackParams> extends Se
7261
7261
  ok: boolean;
7262
7262
  message?: {
7263
7263
  type: string;
7264
- user?: string | undefined;
7265
7264
  text?: string | undefined;
7265
+ user?: string | undefined;
7266
7266
  ts?: string | undefined;
7267
7267
  username?: string | undefined;
7268
7268
  attachments?: unknown[] | undefined;
@@ -105,8 +105,8 @@ declare const TikTokToolResultSchema: z.ZodObject<{
105
105
  playCount: number | null;
106
106
  shareCount: number | null;
107
107
  } | null;
108
- id: string | null;
109
108
  text: string | null;
109
+ id: string | null;
110
110
  hashtags: {
111
111
  name: string | null;
112
112
  }[] | null;
@@ -135,8 +135,8 @@ declare const TikTokToolResultSchema: z.ZodObject<{
135
135
  playCount: number | null;
136
136
  shareCount: number | null;
137
137
  } | null;
138
- id: string | null;
139
138
  text: string | null;
139
+ id: string | null;
140
140
  hashtags: {
141
141
  name: string | null;
142
142
  }[] | null;
@@ -173,8 +173,8 @@ declare const TikTokToolResultSchema: z.ZodObject<{
173
173
  playCount: number | null;
174
174
  shareCount: number | null;
175
175
  } | null;
176
- id: string | null;
177
176
  text: string | null;
177
+ id: string | null;
178
178
  hashtags: {
179
179
  name: string | null;
180
180
  }[] | null;
@@ -209,8 +209,8 @@ declare const TikTokToolResultSchema: z.ZodObject<{
209
209
  playCount: number | null;
210
210
  shareCount: number | null;
211
211
  } | null;
212
- id: string | null;
213
212
  text: string | null;
213
+ id: string | null;
214
214
  hashtags: {
215
215
  name: string | null;
216
216
  }[] | null;
@@ -342,8 +342,8 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
342
342
  playCount: number | null;
343
343
  shareCount: number | null;
344
344
  } | null;
345
- id: string | null;
346
345
  text: string | null;
346
+ id: string | null;
347
347
  hashtags: {
348
348
  name: string | null;
349
349
  }[] | null;
@@ -372,8 +372,8 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
372
372
  playCount: number | null;
373
373
  shareCount: number | null;
374
374
  } | null;
375
- id: string | null;
376
375
  text: string | null;
376
+ id: string | null;
377
377
  hashtags: {
378
378
  name: string | null;
379
379
  }[] | null;
@@ -410,8 +410,8 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
410
410
  playCount: number | null;
411
411
  shareCount: number | null;
412
412
  } | null;
413
- id: string | null;
414
413
  text: string | null;
414
+ id: string | null;
415
415
  hashtags: {
416
416
  name: string | null;
417
417
  }[] | null;
@@ -446,8 +446,8 @@ export declare class TikTokTool extends ToolBubble<TikTokToolParams, TikTokToolR
446
446
  playCount: number | null;
447
447
  shareCount: number | null;
448
448
  } | null;
449
- id: string | null;
450
449
  text: string | null;
450
+ id: string | null;
451
451
  hashtags: {
452
452
  name: string | null;
453
453
  }[] | null;
@@ -155,8 +155,8 @@ declare const TwitterTweetSchema: z.ZodObject<{
155
155
  bookmarkCount: number | null;
156
156
  } | null;
157
157
  url: string | null;
158
- id: string | null;
159
158
  text: string | null;
159
+ id: string | null;
160
160
  entities: {
161
161
  hashtags: string[] | null;
162
162
  mentions: string[] | null;
@@ -198,8 +198,8 @@ declare const TwitterTweetSchema: z.ZodObject<{
198
198
  bookmarkCount: number | null;
199
199
  } | null;
200
200
  url: string | null;
201
- id: string | null;
202
201
  text: string | null;
202
+ id: string | null;
203
203
  entities: {
204
204
  hashtags: string[] | null;
205
205
  mentions: string[] | null;
@@ -375,8 +375,8 @@ declare const TwitterToolResultSchema: z.ZodObject<{
375
375
  bookmarkCount: number | null;
376
376
  } | null;
377
377
  url: string | null;
378
- id: string | null;
379
378
  text: string | null;
379
+ id: string | null;
380
380
  entities: {
381
381
  hashtags: string[] | null;
382
382
  mentions: string[] | null;
@@ -418,8 +418,8 @@ declare const TwitterToolResultSchema: z.ZodObject<{
418
418
  bookmarkCount: number | null;
419
419
  } | null;
420
420
  url: string | null;
421
- id: string | null;
422
421
  text: string | null;
422
+ id: string | null;
423
423
  entities: {
424
424
  hashtags: string[] | null;
425
425
  mentions: string[] | null;
@@ -469,8 +469,8 @@ declare const TwitterToolResultSchema: z.ZodObject<{
469
469
  bookmarkCount: number | null;
470
470
  } | null;
471
471
  url: string | null;
472
- id: string | null;
473
472
  text: string | null;
473
+ id: string | null;
474
474
  entities: {
475
475
  hashtags: string[] | null;
476
476
  mentions: string[] | null;
@@ -518,8 +518,8 @@ declare const TwitterToolResultSchema: z.ZodObject<{
518
518
  bookmarkCount: number | null;
519
519
  } | null;
520
520
  url: string | null;
521
- id: string | null;
522
521
  text: string | null;
522
+ id: string | null;
523
523
  entities: {
524
524
  hashtags: string[] | null;
525
525
  mentions: string[] | null;
@@ -721,8 +721,8 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
721
721
  bookmarkCount: number | null;
722
722
  } | null;
723
723
  url: string | null;
724
- id: string | null;
725
724
  text: string | null;
725
+ id: string | null;
726
726
  entities: {
727
727
  hashtags: string[] | null;
728
728
  mentions: string[] | null;
@@ -764,8 +764,8 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
764
764
  bookmarkCount: number | null;
765
765
  } | null;
766
766
  url: string | null;
767
- id: string | null;
768
767
  text: string | null;
768
+ id: string | null;
769
769
  entities: {
770
770
  hashtags: string[] | null;
771
771
  mentions: string[] | null;
@@ -815,8 +815,8 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
815
815
  bookmarkCount: number | null;
816
816
  } | null;
817
817
  url: string | null;
818
- id: string | null;
819
818
  text: string | null;
819
+ id: string | null;
820
820
  entities: {
821
821
  hashtags: string[] | null;
822
822
  mentions: string[] | null;
@@ -864,8 +864,8 @@ export declare class TwitterTool extends ToolBubble<TwitterToolParams, TwitterTo
864
864
  bookmarkCount: number | null;
865
865
  } | null;
866
866
  url: string | null;
867
- id: string | null;
868
867
  text: string | null;
868
+ id: string | null;
869
869
  entities: {
870
870
  hashtags: string[] | null;
871
871
  mentions: string[] | null;
@@ -138,12 +138,12 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
138
138
  }, "strip", z.ZodTypeAny, {
139
139
  type: string;
140
140
  name: string;
141
+ choices: string[];
141
142
  id: number;
142
143
  width: number;
143
144
  height: number;
144
145
  label: string;
145
146
  page: number;
146
- choices: string[];
147
147
  x: number;
148
148
  y: number;
149
149
  field_type: string;
@@ -154,12 +154,12 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
154
154
  }, {
155
155
  type: string;
156
156
  name: string;
157
+ choices: string[];
157
158
  id: number;
158
159
  width: number;
159
160
  height: number;
160
161
  label: string;
161
162
  page: number;
162
- choices: string[];
163
163
  x: number;
164
164
  y: number;
165
165
  field_type: string;
@@ -177,12 +177,12 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
177
177
  fields: {
178
178
  type: string;
179
179
  name: string;
180
+ choices: string[];
180
181
  id: number;
181
182
  width: number;
182
183
  height: number;
183
184
  label: string;
184
185
  page: number;
185
- choices: string[];
186
186
  x: number;
187
187
  y: number;
188
188
  field_type: string;
@@ -199,12 +199,12 @@ declare const PDFFormOperationsResultSchema: z.ZodDiscriminatedUnion<"operation"
199
199
  fields: {
200
200
  type: string;
201
201
  name: string;
202
+ choices: string[];
202
203
  id: number;
203
204
  width: number;
204
205
  height: number;
205
206
  label: string;
206
207
  page: number;
207
- choices: string[];
208
208
  x: number;
209
209
  y: number;
210
210
  field_type: string;
@@ -617,12 +617,12 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
617
617
  }, "strip", z.ZodTypeAny, {
618
618
  type: string;
619
619
  name: string;
620
+ choices: string[];
620
621
  id: number;
621
622
  width: number;
622
623
  height: number;
623
624
  label: string;
624
625
  page: number;
625
- choices: string[];
626
626
  x: number;
627
627
  y: number;
628
628
  field_type: string;
@@ -633,12 +633,12 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
633
633
  }, {
634
634
  type: string;
635
635
  name: string;
636
+ choices: string[];
636
637
  id: number;
637
638
  width: number;
638
639
  height: number;
639
640
  label: string;
640
641
  page: number;
641
- choices: string[];
642
642
  x: number;
643
643
  y: number;
644
644
  field_type: string;
@@ -656,12 +656,12 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
656
656
  fields: {
657
657
  type: string;
658
658
  name: string;
659
+ choices: string[];
659
660
  id: number;
660
661
  width: number;
661
662
  height: number;
662
663
  label: string;
663
664
  page: number;
664
- choices: string[];
665
665
  x: number;
666
666
  y: number;
667
667
  field_type: string;
@@ -678,12 +678,12 @@ export declare class PDFFormOperationsWorkflow<T extends PDFFormOperationsParams
678
678
  fields: {
679
679
  type: string;
680
680
  name: string;
681
+ choices: string[];
681
682
  id: number;
682
683
  width: number;
683
684
  height: number;
684
685
  label: string;
685
686
  page: number;
686
- choices: string[];
687
687
  x: number;
688
688
  y: number;
689
689
  field_type: string;