@bubblelab/bubble-core 0.1.70 → 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 (41) hide show
  1. package/dist/bubble-bundle.d.ts +71 -71
  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 +10 -10
  6. package/dist/bubbles/service-bubble/ashby/ashby.d.ts +40 -40
  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 +80 -80
  11. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +42 -42
  12. package/dist/bubbles/service-bubble/firecrawl.d.ts +274 -274
  13. package/dist/bubbles/service-bubble/followupboss.d.ts +84 -84
  14. package/dist/bubbles/service-bubble/fullenrich/fullenrich.schema.d.ts +58 -58
  15. package/dist/bubbles/service-bubble/github.d.ts +36 -36
  16. package/dist/bubbles/service-bubble/gmail.d.ts +88 -88
  17. package/dist/bubbles/service-bubble/google-drive.d.ts +2 -2
  18. package/dist/bubbles/service-bubble/google-drive.d.ts.map +1 -1
  19. package/dist/bubbles/service-bubble/google-drive.js +20 -7
  20. package/dist/bubbles/service-bubble/google-drive.js.map +1 -1
  21. package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.d.ts +74 -74
  22. package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
  23. package/dist/bubbles/service-bubble/jira/jira.d.ts +8 -8
  24. package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +62 -62
  25. package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
  26. package/dist/bubbles/service-bubble/resend.d.ts +4 -4
  27. package/dist/bubbles/service-bubble/slack/slack.d.ts +216 -216
  28. package/dist/bubbles/service-bubble/stripe/stripe.d.ts +11 -11
  29. package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +78 -78
  30. package/dist/bubbles/service-bubble/telegram.d.ts +2 -2
  31. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.schema.d.ts +28 -28
  32. package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +10 -10
  33. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +234 -234
  34. package/dist/bubbles/tool-bubble/people-search-tool.d.ts +18 -18
  35. package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
  36. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +56 -56
  37. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +80 -80
  38. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +16 -16
  39. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +24 -24
  40. package/dist/bubbles.json +3 -3
  41. package/package.json +2 -2
@@ -69,13 +69,13 @@ export declare const AmazonShoppingToolParamsSchema: z.ZodDiscriminatedUnion<"op
69
69
  max_results: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
70
70
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
71
71
  }, "strip", z.ZodTypeAny, {
72
- query: string;
73
72
  operation: "search";
73
+ query: string;
74
74
  max_results: number;
75
75
  credentials?: Partial<Record<CredentialType, string>> | undefined;
76
76
  }, {
77
- query: string;
78
77
  operation: "search";
78
+ query: string;
79
79
  credentials?: Partial<Record<CredentialType, string>> | undefined;
80
80
  max_results?: number | undefined;
81
81
  }>, z.ZodObject<{
@@ -98,12 +98,12 @@ export declare const AmazonShoppingToolParamsSchema: z.ZodDiscriminatedUnion<"op
98
98
  }, "strip", z.ZodTypeAny, {
99
99
  operation: "screenshot";
100
100
  full_page: boolean;
101
- credentials?: Partial<Record<CredentialType, string>> | undefined;
102
101
  url?: string | undefined;
102
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
103
103
  }, {
104
104
  operation: "screenshot";
105
- credentials?: Partial<Record<CredentialType, string>> | undefined;
106
105
  url?: string | undefined;
106
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
107
107
  full_page?: boolean | undefined;
108
108
  }>]>;
109
109
  /**
@@ -186,15 +186,15 @@ export declare const AmazonShoppingToolResultSchema: z.ZodDiscriminatedUnion<"op
186
186
  cart_count: z.ZodOptional<z.ZodNumber>;
187
187
  error: z.ZodString;
188
188
  }, "strip", z.ZodTypeAny, {
189
- error: string;
190
- success: boolean;
191
189
  operation: "add_to_cart";
190
+ success: boolean;
191
+ error: string;
192
192
  message?: string | undefined;
193
193
  cart_count?: number | undefined;
194
194
  }, {
195
- error: string;
196
- success: boolean;
197
195
  operation: "add_to_cart";
196
+ success: boolean;
197
+ error: string;
198
198
  message?: string | undefined;
199
199
  cart_count?: number | undefined;
200
200
  }>, z.ZodObject<{
@@ -227,9 +227,9 @@ export declare const AmazonShoppingToolResultSchema: z.ZodDiscriminatedUnion<"op
227
227
  screenshot_url: z.ZodOptional<z.ZodString>;
228
228
  error: z.ZodString;
229
229
  }, "strip", z.ZodTypeAny, {
230
- error: string;
231
- success: boolean;
232
230
  operation: "get_cart";
231
+ success: boolean;
232
+ error: string;
233
233
  items?: {
234
234
  title: string;
235
235
  price: string;
@@ -242,9 +242,9 @@ export declare const AmazonShoppingToolResultSchema: z.ZodDiscriminatedUnion<"op
242
242
  total_items?: number | undefined;
243
243
  screenshot_url?: string | undefined;
244
244
  }, {
245
- error: string;
246
- success: boolean;
247
245
  operation: "get_cart";
246
+ success: boolean;
247
+ error: string;
248
248
  items?: {
249
249
  title: string;
250
250
  price: string;
@@ -283,9 +283,9 @@ export declare const AmazonShoppingToolResultSchema: z.ZodDiscriminatedUnion<"op
283
283
  screenshot_url: z.ZodOptional<z.ZodString>;
284
284
  error: z.ZodString;
285
285
  }, "strip", z.ZodTypeAny, {
286
- error: string;
287
- success: boolean;
288
286
  operation: "checkout";
287
+ success: boolean;
288
+ error: string;
289
289
  items?: {
290
290
  title: string;
291
291
  price?: string | undefined;
@@ -301,9 +301,9 @@ export declare const AmazonShoppingToolResultSchema: z.ZodDiscriminatedUnion<"op
301
301
  shipping_address?: string | undefined;
302
302
  payment_method?: string | undefined;
303
303
  }, {
304
- error: string;
305
- success: boolean;
306
304
  operation: "checkout";
305
+ success: boolean;
306
+ error: string;
307
307
  items?: {
308
308
  title: string;
309
309
  price?: string | undefined;
@@ -352,9 +352,9 @@ export declare const AmazonShoppingToolResultSchema: z.ZodDiscriminatedUnion<"op
352
352
  total_results: z.ZodOptional<z.ZodNumber>;
353
353
  error: z.ZodString;
354
354
  }, "strip", z.ZodTypeAny, {
355
- error: string;
356
- success: boolean;
357
355
  operation: "search";
356
+ success: boolean;
357
+ error: string;
358
358
  results?: {
359
359
  title: string;
360
360
  url: string;
@@ -367,9 +367,9 @@ export declare const AmazonShoppingToolResultSchema: z.ZodDiscriminatedUnion<"op
367
367
  }[] | undefined;
368
368
  total_results?: number | undefined;
369
369
  }, {
370
- error: string;
371
- success: boolean;
372
370
  operation: "search";
371
+ success: boolean;
372
+ error: string;
373
373
  results?: {
374
374
  title: string;
375
375
  url: string;
@@ -420,9 +420,9 @@ export declare const AmazonShoppingToolResultSchema: z.ZodDiscriminatedUnion<"op
420
420
  }>>;
421
421
  error: z.ZodString;
422
422
  }, "strip", z.ZodTypeAny, {
423
- error: string;
424
- success: boolean;
425
423
  operation: "get_product";
424
+ success: boolean;
425
+ error: string;
426
426
  product?: {
427
427
  title: string;
428
428
  url: string;
@@ -436,9 +436,9 @@ export declare const AmazonShoppingToolResultSchema: z.ZodDiscriminatedUnion<"op
436
436
  availability?: string | undefined;
437
437
  } | undefined;
438
438
  }, {
439
- error: string;
440
- success: boolean;
441
439
  operation: "get_product";
440
+ success: boolean;
441
+ error: string;
442
442
  product?: {
443
443
  title: string;
444
444
  url: string;
@@ -457,14 +457,14 @@ export declare const AmazonShoppingToolResultSchema: z.ZodDiscriminatedUnion<"op
457
457
  screenshot_url: z.ZodOptional<z.ZodString>;
458
458
  error: z.ZodString;
459
459
  }, "strip", z.ZodTypeAny, {
460
- error: string;
461
- success: boolean;
462
460
  operation: "screenshot";
461
+ success: boolean;
462
+ error: string;
463
463
  screenshot_url?: string | undefined;
464
464
  }, {
465
- error: string;
466
- success: boolean;
467
465
  operation: "screenshot";
466
+ success: boolean;
467
+ error: string;
468
468
  screenshot_url?: string | undefined;
469
469
  }>]>;
470
470
  export type AmazonShoppingToolParams = z.output<typeof AmazonShoppingToolParamsSchema>;
@@ -68,8 +68,8 @@ declare const ContactSchema: z.ZodObject<{
68
68
  name: string | null;
69
69
  role: "founder" | "cxo" | "decision_maker";
70
70
  location: string | null;
71
- summary: string | null;
72
71
  headline: string | null;
72
+ summary: string | null;
73
73
  emails: string[] | null;
74
74
  linkedinUrl: string | null;
75
75
  languages: string[] | null;
@@ -99,8 +99,8 @@ declare const ContactSchema: z.ZodObject<{
99
99
  name: string | null;
100
100
  role: "founder" | "cxo" | "decision_maker";
101
101
  location: string | null;
102
- summary: string | null;
103
102
  headline: string | null;
103
+ summary: string | null;
104
104
  emails: string[] | null;
105
105
  linkedinUrl: string | null;
106
106
  languages: string[] | null;
@@ -206,8 +206,8 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
206
206
  name: string | null;
207
207
  role: "founder" | "cxo" | "decision_maker";
208
208
  location: string | null;
209
- summary: string | null;
210
209
  headline: string | null;
210
+ summary: string | null;
211
211
  emails: string[] | null;
212
212
  linkedinUrl: string | null;
213
213
  languages: string[] | null;
@@ -237,8 +237,8 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
237
237
  name: string | null;
238
238
  role: "founder" | "cxo" | "decision_maker";
239
239
  location: string | null;
240
- summary: string | null;
241
240
  headline: string | null;
241
+ summary: string | null;
242
242
  emails: string[] | null;
243
243
  linkedinUrl: string | null;
244
244
  languages: string[] | null;
@@ -325,8 +325,8 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
325
325
  name: string | null;
326
326
  role: "founder" | "cxo" | "decision_maker";
327
327
  location: string | null;
328
- summary: string | null;
329
328
  headline: string | null;
329
+ summary: string | null;
330
330
  emails: string[] | null;
331
331
  linkedinUrl: string | null;
332
332
  languages: string[] | null;
@@ -374,8 +374,8 @@ declare const CompanyEnrichmentToolResultSchema: z.ZodObject<{
374
374
  name: string | null;
375
375
  role: "founder" | "cxo" | "decision_maker";
376
376
  location: string | null;
377
- summary: string | null;
378
377
  headline: string | null;
378
+ summary: string | null;
379
379
  emails: string[] | null;
380
380
  linkedinUrl: string | null;
381
381
  languages: string[] | null;
@@ -507,8 +507,8 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
507
507
  name: string | null;
508
508
  role: "founder" | "cxo" | "decision_maker";
509
509
  location: string | null;
510
- summary: string | null;
511
510
  headline: string | null;
511
+ summary: string | null;
512
512
  emails: string[] | null;
513
513
  linkedinUrl: string | null;
514
514
  languages: string[] | null;
@@ -538,8 +538,8 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
538
538
  name: string | null;
539
539
  role: "founder" | "cxo" | "decision_maker";
540
540
  location: string | null;
541
- summary: string | null;
542
541
  headline: string | null;
542
+ summary: string | null;
543
543
  emails: string[] | null;
544
544
  linkedinUrl: string | null;
545
545
  languages: string[] | null;
@@ -626,8 +626,8 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
626
626
  name: string | null;
627
627
  role: "founder" | "cxo" | "decision_maker";
628
628
  location: string | null;
629
- summary: string | null;
630
629
  headline: string | null;
630
+ summary: string | null;
631
631
  emails: string[] | null;
632
632
  linkedinUrl: string | null;
633
633
  languages: string[] | null;
@@ -675,8 +675,8 @@ export declare class CompanyEnrichmentTool extends ToolBubble<CompanyEnrichmentT
675
675
  name: string | null;
676
676
  role: "founder" | "cxo" | "decision_maker";
677
677
  location: string | null;
678
- summary: string | null;
679
678
  headline: string | null;
679
+ summary: string | null;
680
680
  emails: string[] | null;
681
681
  linkedinUrl: string | null;
682
682
  languages: string[] | null;