@bubblelab/bubble-core 0.1.169 → 0.1.170

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 (34) hide show
  1. package/dist/bubble-bundle.d.ts +60 -60
  2. package/dist/bubbles/service-bubble/ai-agent.d.ts +24 -24
  3. package/dist/bubbles/service-bubble/apify/apify.d.ts +8 -8
  4. package/dist/bubbles/service-bubble/ashby/ashby.d.ts +40 -40
  5. package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +100 -100
  6. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +2 -2
  7. package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +2 -2
  8. package/dist/bubbles/service-bubble/capability-pipeline.js +2 -2
  9. package/dist/bubbles/service-bubble/capability-pipeline.js.map +1 -1
  10. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +74 -74
  11. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +24 -24
  12. package/dist/bubbles/service-bubble/firecrawl.d.ts +152 -152
  13. package/dist/bubbles/service-bubble/gmail.d.ts +88 -88
  14. package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
  15. package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +46 -46
  16. package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
  17. package/dist/bubbles/service-bubble/posthog/posthog.d.ts +1 -1
  18. package/dist/bubbles/service-bubble/posthog/posthog.schema.d.ts +3 -3
  19. package/dist/bubbles/service-bubble/sendsafely/sendsafely.d.ts +4 -4
  20. package/dist/bubbles/service-bubble/slack/slack.d.ts +136 -136
  21. package/dist/bubbles/service-bubble/stripe/stripe.d.ts +15 -15
  22. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +279 -279
  23. package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +6 -6
  24. package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
  25. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +54 -54
  26. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +80 -80
  27. package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +22 -22
  28. package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +10 -10
  29. package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +20 -20
  30. package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +6 -6
  31. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +18 -18
  32. package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +10 -10
  33. package/dist/bubbles.json +19 -9
  34. package/package.json +2 -2
@@ -305,8 +305,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
305
305
  operation: "create_invoice_item";
306
306
  currency: string;
307
307
  unit_amount: number;
308
- quantity: number;
309
308
  customer: string;
309
+ quantity: number;
310
310
  description?: string | undefined;
311
311
  credentials?: Partial<Record<CredentialType, string>> | undefined;
312
312
  metadata?: Record<string, string> | undefined;
@@ -319,8 +319,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
319
319
  credentials?: Partial<Record<CredentialType, string>> | undefined;
320
320
  metadata?: Record<string, string> | undefined;
321
321
  currency?: string | undefined;
322
- quantity?: number | undefined;
323
322
  invoice?: string | undefined;
323
+ quantity?: number | undefined;
324
324
  }>, import("zod").ZodObject<{
325
325
  operation: import("zod").ZodLiteral<"send_invoice">;
326
326
  invoice_id: import("zod").ZodString;
@@ -382,8 +382,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
382
382
  credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
383
383
  }, "strip", import("zod").ZodTypeAny, {
384
384
  operation: "cancel_subscription";
385
- subscription_id: string;
386
385
  cancel_at_period_end: boolean;
386
+ subscription_id: string;
387
387
  credentials?: Partial<Record<CredentialType, string>> | undefined;
388
388
  }, {
389
389
  operation: "cancel_subscription";
@@ -687,7 +687,7 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
687
687
  created: import("zod").ZodNumber;
688
688
  metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
689
689
  }, "strip", import("zod").ZodTypeAny, {
690
- type: "recurring" | "one_time";
690
+ type: "one_time" | "recurring";
691
691
  id: string;
692
692
  created: number;
693
693
  currency: string;
@@ -696,7 +696,7 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
696
696
  unit_amount: number | null;
697
697
  metadata?: Record<string, string> | undefined;
698
698
  }, {
699
- type: "recurring" | "one_time";
699
+ type: "one_time" | "recurring";
700
700
  id: string;
701
701
  created: number;
702
702
  currency: string;
@@ -711,7 +711,7 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
711
711
  success: boolean;
712
712
  operation: "create_price";
713
713
  price?: {
714
- type: "recurring" | "one_time";
714
+ type: "one_time" | "recurring";
715
715
  id: string;
716
716
  created: number;
717
717
  currency: string;
@@ -725,7 +725,7 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
725
725
  success: boolean;
726
726
  operation: "create_price";
727
727
  price?: {
728
- type: "recurring" | "one_time";
728
+ type: "one_time" | "recurring";
729
729
  id: string;
730
730
  created: number;
731
731
  currency: string;
@@ -747,7 +747,7 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
747
747
  created: import("zod").ZodNumber;
748
748
  metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
749
749
  }, "strip", import("zod").ZodTypeAny, {
750
- type: "recurring" | "one_time";
750
+ type: "one_time" | "recurring";
751
751
  id: string;
752
752
  created: number;
753
753
  currency: string;
@@ -756,7 +756,7 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
756
756
  unit_amount: number | null;
757
757
  metadata?: Record<string, string> | undefined;
758
758
  }, {
759
- type: "recurring" | "one_time";
759
+ type: "one_time" | "recurring";
760
760
  id: string;
761
761
  created: number;
762
762
  currency: string;
@@ -771,7 +771,7 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
771
771
  success: boolean;
772
772
  operation: "list_prices";
773
773
  prices?: {
774
- type: "recurring" | "one_time";
774
+ type: "one_time" | "recurring";
775
775
  id: string;
776
776
  created: number;
777
777
  currency: string;
@@ -785,7 +785,7 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
785
785
  success: boolean;
786
786
  operation: "list_prices";
787
787
  prices?: {
788
- type: "recurring" | "one_time";
788
+ type: "one_time" | "recurring";
789
789
  id: string;
790
790
  created: number;
791
791
  currency: string;
@@ -1148,8 +1148,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
1148
1148
  date?: number | undefined;
1149
1149
  metadata?: Record<string, string> | undefined;
1150
1150
  unit_amount?: number | null | undefined;
1151
- quantity?: number | undefined;
1152
1151
  invoice?: string | null | undefined;
1152
+ quantity?: number | undefined;
1153
1153
  }, {
1154
1154
  id: string;
1155
1155
  currency: string;
@@ -1159,8 +1159,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
1159
1159
  date?: number | undefined;
1160
1160
  metadata?: Record<string, string> | undefined;
1161
1161
  unit_amount?: number | null | undefined;
1162
- quantity?: number | undefined;
1163
1162
  invoice?: string | null | undefined;
1163
+ quantity?: number | undefined;
1164
1164
  }>>;
1165
1165
  error: import("zod").ZodString;
1166
1166
  }, "strip", import("zod").ZodTypeAny, {
@@ -1176,8 +1176,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
1176
1176
  date?: number | undefined;
1177
1177
  metadata?: Record<string, string> | undefined;
1178
1178
  unit_amount?: number | null | undefined;
1179
- quantity?: number | undefined;
1180
1179
  invoice?: string | null | undefined;
1180
+ quantity?: number | undefined;
1181
1181
  } | undefined;
1182
1182
  }, {
1183
1183
  error: string;
@@ -1192,8 +1192,8 @@ export declare class StripeBubble<T extends StripeParamsInput = StripeParamsInpu
1192
1192
  date?: number | undefined;
1193
1193
  metadata?: Record<string, string> | undefined;
1194
1194
  unit_amount?: number | null | undefined;
1195
- quantity?: number | undefined;
1196
1195
  invoice?: string | null | undefined;
1196
+ quantity?: number | undefined;
1197
1197
  } | undefined;
1198
1198
  }>, import("zod").ZodObject<{
1199
1199
  operation: import("zod").ZodLiteral<"send_invoice">;