@bubblelab/bubble-core 0.1.98 → 0.1.99

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 (53) hide show
  1. package/dist/bubble-bundle.d.ts +72 -72
  2. package/dist/bubbles/service-bubble/ai-agent.d.ts +84 -84
  3. package/dist/bubbles/service-bubble/airtable.d.ts +100 -100
  4. package/dist/bubbles/service-bubble/apify/apify.d.ts +14 -14
  5. package/dist/bubbles/service-bubble/ashby/ashby.d.ts +74 -74
  6. package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +102 -102
  7. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +4 -4
  8. package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +4 -4
  9. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +4 -4
  10. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +8 -8
  11. package/dist/bubbles/service-bubble/firecrawl.d.ts +272 -272
  12. package/dist/bubbles/service-bubble/followupboss.d.ts +4 -4
  13. package/dist/bubbles/service-bubble/github.d.ts +40 -40
  14. package/dist/bubbles/service-bubble/gmail.d.ts +104 -104
  15. package/dist/bubbles/service-bubble/google-calendar.d.ts +80 -80
  16. package/dist/bubbles/service-bubble/google-drive.d.ts +40 -40
  17. package/dist/bubbles/service-bubble/http.d.ts +4 -4
  18. package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
  19. package/dist/bubbles/service-bubble/jira/jira.d.ts +12 -12
  20. package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +14 -14
  21. package/dist/bubbles/service-bubble/notion/notion.d.ts +68 -68
  22. package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
  23. package/dist/bubbles/service-bubble/resend.d.ts +24 -24
  24. package/dist/bubbles/service-bubble/resend.d.ts.map +1 -1
  25. package/dist/bubbles/service-bubble/resend.js +9 -7
  26. package/dist/bubbles/service-bubble/resend.js.map +1 -1
  27. package/dist/bubbles/service-bubble/slack/slack.d.ts +68 -68
  28. package/dist/bubbles/service-bubble/storage.d.ts +20 -20
  29. package/dist/bubbles/service-bubble/stripe/stripe.d.ts +211 -4
  30. package/dist/bubbles/service-bubble/stripe/stripe.d.ts.map +1 -1
  31. package/dist/bubbles/service-bubble/stripe/stripe.js +87 -2
  32. package/dist/bubbles/service-bubble/stripe/stripe.js.map +1 -1
  33. package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +243 -4
  34. package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts.map +1 -1
  35. package/dist/bubbles/service-bubble/stripe/stripe.schema.js +118 -0
  36. package/dist/bubbles/service-bubble/stripe/stripe.schema.js.map +1 -1
  37. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +2 -2
  38. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.schema.d.ts +2 -2
  39. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +52 -52
  40. package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
  41. package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
  42. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +16 -16
  43. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +46 -46
  44. package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +4 -4
  45. package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
  46. package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +8 -8
  47. package/dist/bubbles/tool-bubble/youtube-tool.d.ts +10 -10
  48. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +44 -44
  49. package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +16 -16
  50. package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +2 -2
  51. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +26 -26
  52. package/dist/bubbles.json +306 -14
  53. package/package.json +4 -4
@@ -1438,6 +1438,7 @@ export declare const JiraIssueSchema: z.ZodObject<{
1438
1438
  }, z.ZodTypeAny, "passthrough">>, "many">>;
1439
1439
  changelog: z.ZodOptional<z.ZodUnknown>;
1440
1440
  }, "strip", z.ZodTypeAny, {
1441
+ key?: string | undefined;
1441
1442
  id?: string | undefined;
1442
1443
  fields?: z.objectOutputType<{
1443
1444
  summary: z.ZodOptional<z.ZodString>;
@@ -1776,7 +1777,6 @@ export declare const JiraIssueSchema: z.ZodObject<{
1776
1777
  total: z.ZodOptional<z.ZodNumber>;
1777
1778
  }, z.ZodTypeAny, "passthrough">>>;
1778
1779
  }, z.ZodTypeAny, "passthrough"> | undefined;
1779
- key?: string | undefined;
1780
1780
  changelog?: unknown;
1781
1781
  transitions?: z.objectOutputType<{
1782
1782
  id: z.ZodString;
@@ -1825,6 +1825,7 @@ export declare const JiraIssueSchema: z.ZodObject<{
1825
1825
  expand?: string | undefined;
1826
1826
  self?: string | undefined;
1827
1827
  }, {
1828
+ key?: string | undefined;
1828
1829
  id?: string | undefined;
1829
1830
  fields?: z.objectInputType<{
1830
1831
  summary: z.ZodOptional<z.ZodString>;
@@ -2163,7 +2164,6 @@ export declare const JiraIssueSchema: z.ZodObject<{
2163
2164
  total: z.ZodOptional<z.ZodNumber>;
2164
2165
  }, z.ZodTypeAny, "passthrough">>>;
2165
2166
  }, z.ZodTypeAny, "passthrough"> | undefined;
2166
- key?: string | undefined;
2167
2167
  changelog?: unknown;
2168
2168
  transitions?: z.objectInputType<{
2169
2169
  id: z.ZodString;
@@ -3586,6 +3586,7 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
3586
3586
  }, z.ZodTypeAny, "passthrough">>, "many">>;
3587
3587
  changelog: z.ZodOptional<z.ZodUnknown>;
3588
3588
  }, "strip", z.ZodTypeAny, {
3589
+ key?: string | undefined;
3589
3590
  id?: string | undefined;
3590
3591
  fields?: z.objectOutputType<{
3591
3592
  summary: z.ZodOptional<z.ZodString>;
@@ -3924,7 +3925,6 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
3924
3925
  total: z.ZodOptional<z.ZodNumber>;
3925
3926
  }, z.ZodTypeAny, "passthrough">>>;
3926
3927
  }, z.ZodTypeAny, "passthrough"> | undefined;
3927
- key?: string | undefined;
3928
3928
  changelog?: unknown;
3929
3929
  transitions?: z.objectOutputType<{
3930
3930
  id: z.ZodString;
@@ -3973,6 +3973,7 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
3973
3973
  expand?: string | undefined;
3974
3974
  self?: string | undefined;
3975
3975
  }, {
3976
+ key?: string | undefined;
3976
3977
  id?: string | undefined;
3977
3978
  fields?: z.objectInputType<{
3978
3979
  summary: z.ZodOptional<z.ZodString>;
@@ -4311,7 +4312,6 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
4311
4312
  total: z.ZodOptional<z.ZodNumber>;
4312
4313
  }, z.ZodTypeAny, "passthrough">>>;
4313
4314
  }, z.ZodTypeAny, "passthrough"> | undefined;
4314
- key?: string | undefined;
4315
4315
  changelog?: unknown;
4316
4316
  transitions?: z.objectInputType<{
4317
4317
  id: z.ZodString;
@@ -4369,6 +4369,7 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
4369
4369
  success: boolean;
4370
4370
  operation: "search";
4371
4371
  issues?: {
4372
+ key?: string | undefined;
4372
4373
  id?: string | undefined;
4373
4374
  fields?: z.objectOutputType<{
4374
4375
  summary: z.ZodOptional<z.ZodString>;
@@ -4707,7 +4708,6 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
4707
4708
  total: z.ZodOptional<z.ZodNumber>;
4708
4709
  }, z.ZodTypeAny, "passthrough">>>;
4709
4710
  }, z.ZodTypeAny, "passthrough"> | undefined;
4710
- key?: string | undefined;
4711
4711
  changelog?: unknown;
4712
4712
  transitions?: z.objectOutputType<{
4713
4713
  id: z.ZodString;
@@ -4764,6 +4764,7 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
4764
4764
  success: boolean;
4765
4765
  operation: "search";
4766
4766
  issues?: {
4767
+ key?: string | undefined;
4767
4768
  id?: string | undefined;
4768
4769
  fields?: z.objectInputType<{
4769
4770
  summary: z.ZodOptional<z.ZodString>;
@@ -5102,7 +5103,6 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
5102
5103
  total: z.ZodOptional<z.ZodNumber>;
5103
5104
  }, z.ZodTypeAny, "passthrough">>>;
5104
5105
  }, z.ZodTypeAny, "passthrough"> | undefined;
5105
- key?: string | undefined;
5106
5106
  changelog?: unknown;
5107
5107
  transitions?: z.objectInputType<{
5108
5108
  id: z.ZodString;
@@ -6303,6 +6303,7 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
6303
6303
  }, z.ZodTypeAny, "passthrough">>, "many">>;
6304
6304
  changelog: z.ZodOptional<z.ZodUnknown>;
6305
6305
  }, "strip", z.ZodTypeAny, {
6306
+ key?: string | undefined;
6306
6307
  id?: string | undefined;
6307
6308
  fields?: z.objectOutputType<{
6308
6309
  summary: z.ZodOptional<z.ZodString>;
@@ -6641,7 +6642,6 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
6641
6642
  total: z.ZodOptional<z.ZodNumber>;
6642
6643
  }, z.ZodTypeAny, "passthrough">>>;
6643
6644
  }, z.ZodTypeAny, "passthrough"> | undefined;
6644
- key?: string | undefined;
6645
6645
  changelog?: unknown;
6646
6646
  transitions?: z.objectOutputType<{
6647
6647
  id: z.ZodString;
@@ -6690,6 +6690,7 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
6690
6690
  expand?: string | undefined;
6691
6691
  self?: string | undefined;
6692
6692
  }, {
6693
+ key?: string | undefined;
6693
6694
  id?: string | undefined;
6694
6695
  fields?: z.objectInputType<{
6695
6696
  summary: z.ZodOptional<z.ZodString>;
@@ -7028,7 +7029,6 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
7028
7029
  total: z.ZodOptional<z.ZodNumber>;
7029
7030
  }, z.ZodTypeAny, "passthrough">>>;
7030
7031
  }, z.ZodTypeAny, "passthrough"> | undefined;
7031
- key?: string | undefined;
7032
7032
  changelog?: unknown;
7033
7033
  transitions?: z.objectInputType<{
7034
7034
  id: z.ZodString;
@@ -7083,6 +7083,7 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
7083
7083
  success: boolean;
7084
7084
  operation: "get";
7085
7085
  issue?: {
7086
+ key?: string | undefined;
7086
7087
  id?: string | undefined;
7087
7088
  fields?: z.objectOutputType<{
7088
7089
  summary: z.ZodOptional<z.ZodString>;
@@ -7421,7 +7422,6 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
7421
7422
  total: z.ZodOptional<z.ZodNumber>;
7422
7423
  }, z.ZodTypeAny, "passthrough">>>;
7423
7424
  }, z.ZodTypeAny, "passthrough"> | undefined;
7424
- key?: string | undefined;
7425
7425
  changelog?: unknown;
7426
7426
  transitions?: z.objectOutputType<{
7427
7427
  id: z.ZodString;
@@ -7475,6 +7475,7 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
7475
7475
  success: boolean;
7476
7476
  operation: "get";
7477
7477
  issue?: {
7478
+ key?: string | undefined;
7478
7479
  id?: string | undefined;
7479
7480
  fields?: z.objectInputType<{
7480
7481
  summary: z.ZodOptional<z.ZodString>;
@@ -7813,7 +7814,6 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
7813
7814
  total: z.ZodOptional<z.ZodNumber>;
7814
7815
  }, z.ZodTypeAny, "passthrough">>>;
7815
7816
  }, z.ZodTypeAny, "passthrough"> | undefined;
7816
- key?: string | undefined;
7817
7817
  changelog?: unknown;
7818
7818
  transitions?: z.objectInputType<{
7819
7819
  id: z.ZodString;
@@ -7870,12 +7870,12 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
7870
7870
  key: z.ZodString;
7871
7871
  self: z.ZodOptional<z.ZodString>;
7872
7872
  }, "strip", z.ZodTypeAny, {
7873
- id: string;
7874
7873
  key: string;
7874
+ id: string;
7875
7875
  self?: string | undefined;
7876
7876
  }, {
7877
- id: string;
7878
7877
  key: string;
7878
+ id: string;
7879
7879
  self?: string | undefined;
7880
7880
  }>>;
7881
7881
  error: z.ZodString;
@@ -7884,8 +7884,8 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
7884
7884
  success: boolean;
7885
7885
  operation: "create";
7886
7886
  issue?: {
7887
- id: string;
7888
7887
  key: string;
7888
+ id: string;
7889
7889
  self?: string | undefined;
7890
7890
  } | undefined;
7891
7891
  }, {
@@ -7893,8 +7893,8 @@ export declare const JiraResultSchema: z.ZodDiscriminatedUnion<"operation", [z.Z
7893
7893
  success: boolean;
7894
7894
  operation: "create";
7895
7895
  issue?: {
7896
- id: string;
7897
7896
  key: string;
7897
+ id: string;
7898
7898
  self?: string | undefined;
7899
7899
  } | undefined;
7900
7900
  }>, z.ZodObject<{