@bubblelab/bubble-core 0.1.23 → 0.1.25

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 (51) hide show
  1. package/dist/bubble-bundle.d.ts +55 -55
  2. package/dist/bubbles/service-bubble/agi-inc.d.ts +4 -4
  3. package/dist/bubbles/service-bubble/ai-agent.d.ts +8 -8
  4. package/dist/bubbles/service-bubble/airtable.d.ts +80 -80
  5. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +9 -9
  6. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +382 -382
  7. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts.map +1 -1
  8. package/dist/bubbles/service-bubble/crustdata/crustdata.js +7 -6
  9. package/dist/bubbles/service-bubble/crustdata/crustdata.js.map +1 -1
  10. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +432 -432
  11. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts.map +1 -1
  12. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.js +15 -9
  13. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.js.map +1 -1
  14. package/dist/bubbles/service-bubble/firecrawl.d.ts +36 -36
  15. package/dist/bubbles/service-bubble/followupboss.d.ts +40 -40
  16. package/dist/bubbles/service-bubble/github.d.ts +52 -52
  17. package/dist/bubbles/service-bubble/gmail.d.ts +114 -114
  18. package/dist/bubbles/service-bubble/google-calendar.d.ts +16 -16
  19. package/dist/bubbles/service-bubble/google-drive.d.ts +14 -14
  20. package/dist/bubbles/service-bubble/google-drive.d.ts.map +1 -1
  21. package/dist/bubbles/service-bubble/google-drive.js +22 -1
  22. package/dist/bubbles/service-bubble/google-drive.js.map +1 -1
  23. package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +8 -8
  24. package/dist/bubbles/service-bubble/hello-world.d.ts +2 -2
  25. package/dist/bubbles/service-bubble/http.d.ts +8 -8
  26. package/dist/bubbles/service-bubble/notion/notion.d.ts +444 -444
  27. package/dist/bubbles/service-bubble/resend.d.ts +8 -8
  28. package/dist/bubbles/service-bubble/slack/slack.d.ts +132 -132
  29. package/dist/bubbles/service-bubble/storage.d.ts +20 -20
  30. package/dist/bubbles/service-bubble/telegram.d.ts +148 -148
  31. package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +8 -8
  32. package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +101 -101
  33. package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts.map +1 -1
  34. package/dist/bubbles/tool-bubble/company-enrichment-tool.js +29 -8
  35. package/dist/bubbles/tool-bubble/company-enrichment-tool.js.map +1 -1
  36. package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +20 -20
  37. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +44 -44
  38. package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +12 -12
  39. package/dist/bubbles/tool-bubble/people-search-tool.d.ts +119 -119
  40. package/dist/bubbles/tool-bubble/people-search-tool.d.ts.map +1 -1
  41. package/dist/bubbles/tool-bubble/people-search-tool.js +31 -10
  42. package/dist/bubbles/tool-bubble/people-search-tool.js.map +1 -1
  43. package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
  44. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +18 -18
  45. package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +4 -4
  46. package/dist/bubbles/tool-bubble/web-search-tool.d.ts +4 -4
  47. package/dist/bubbles/tool-bubble/youtube-tool.d.ts +10 -10
  48. package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +8 -8
  49. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +22 -22
  50. package/dist/bubbles.json +7 -7
  51. package/package.json +2 -2
@@ -14,10 +14,10 @@ declare const HttpParamsSchema: z.ZodObject<{
14
14
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
15
15
  }, "strip", z.ZodTypeAny, {
16
16
  url: string;
17
- method: "POST" | "GET" | "DELETE" | "PUT" | "PATCH" | "HEAD" | "OPTIONS";
18
17
  timeout: number;
18
+ method: "DELETE" | "GET" | "POST" | "PUT" | "PATCH" | "HEAD" | "OPTIONS";
19
19
  followRedirects: boolean;
20
- authType: "api-key" | "custom" | "none" | "bearer" | "basic" | "api-key-header";
20
+ authType: "custom" | "none" | "bearer" | "basic" | "api-key" | "api-key-header";
21
21
  credentials?: Partial<Record<CredentialType, string>> | undefined;
22
22
  headers?: Record<string, string> | undefined;
23
23
  body?: string | Record<string, unknown> | undefined;
@@ -25,12 +25,12 @@ declare const HttpParamsSchema: z.ZodObject<{
25
25
  }, {
26
26
  url: string;
27
27
  credentials?: Partial<Record<CredentialType, string>> | undefined;
28
- method?: "POST" | "GET" | "DELETE" | "PUT" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
29
28
  timeout?: number | undefined;
30
29
  headers?: Record<string, string> | undefined;
30
+ method?: "DELETE" | "GET" | "POST" | "PUT" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
31
31
  body?: string | Record<string, unknown> | undefined;
32
32
  followRedirects?: boolean | undefined;
33
- authType?: "api-key" | "custom" | "none" | "bearer" | "basic" | "api-key-header" | undefined;
33
+ authType?: "custom" | "none" | "bearer" | "basic" | "api-key" | "api-key-header" | undefined;
34
34
  authHeader?: string | undefined;
35
35
  }>;
36
36
  type HttpParamsInput = z.input<typeof HttpParamsSchema>;
@@ -84,10 +84,10 @@ export declare class HttpBubble extends ServiceBubble<HttpParams, HttpResult> {
84
84
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
85
85
  }, "strip", z.ZodTypeAny, {
86
86
  url: string;
87
- method: "POST" | "GET" | "DELETE" | "PUT" | "PATCH" | "HEAD" | "OPTIONS";
88
87
  timeout: number;
88
+ method: "DELETE" | "GET" | "POST" | "PUT" | "PATCH" | "HEAD" | "OPTIONS";
89
89
  followRedirects: boolean;
90
- authType: "api-key" | "custom" | "none" | "bearer" | "basic" | "api-key-header";
90
+ authType: "custom" | "none" | "bearer" | "basic" | "api-key" | "api-key-header";
91
91
  credentials?: Partial<Record<CredentialType, string>> | undefined;
92
92
  headers?: Record<string, string> | undefined;
93
93
  body?: string | Record<string, unknown> | undefined;
@@ -95,12 +95,12 @@ export declare class HttpBubble extends ServiceBubble<HttpParams, HttpResult> {
95
95
  }, {
96
96
  url: string;
97
97
  credentials?: Partial<Record<CredentialType, string>> | undefined;
98
- method?: "POST" | "GET" | "DELETE" | "PUT" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
99
98
  timeout?: number | undefined;
100
99
  headers?: Record<string, string> | undefined;
100
+ method?: "DELETE" | "GET" | "POST" | "PUT" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
101
101
  body?: string | Record<string, unknown> | undefined;
102
102
  followRedirects?: boolean | undefined;
103
- authType?: "api-key" | "custom" | "none" | "bearer" | "basic" | "api-key-header" | undefined;
103
+ authType?: "custom" | "none" | "bearer" | "basic" | "api-key" | "api-key-header" | undefined;
104
104
  authHeader?: string | undefined;
105
105
  }>;
106
106
  static readonly resultSchema: z.ZodObject<{