@bubblelab/bubble-core 0.1.25 → 0.1.27

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 (56) hide show
  1. package/dist/bubble-bundle.d.ts +84 -68
  2. package/dist/bubbles/service-bubble/ai-agent.d.ts +18 -18
  3. package/dist/bubbles/service-bubble/airtable.d.ts +132 -132
  4. package/dist/bubbles/service-bubble/apify/apify.d.ts +4 -4
  5. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +8 -8
  6. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +102 -102
  7. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +108 -108
  8. package/dist/bubbles/service-bubble/firecrawl.d.ts +288 -288
  9. package/dist/bubbles/service-bubble/followupboss.d.ts +264 -264
  10. package/dist/bubbles/service-bubble/github.d.ts +64 -64
  11. package/dist/bubbles/service-bubble/gmail.d.ts +108 -108
  12. package/dist/bubbles/service-bubble/google-calendar.d.ts +16 -16
  13. package/dist/bubbles/service-bubble/google-drive.d.ts +20 -20
  14. package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +33 -33
  15. package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.d.ts +79 -79
  16. package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.d.ts.map +1 -1
  17. package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.js +15 -19
  18. package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.js.map +1 -1
  19. package/dist/bubbles/service-bubble/hello-world.d.ts +2 -2
  20. package/dist/bubbles/service-bubble/insforge-db.d.ts +4 -4
  21. package/dist/bubbles/service-bubble/notion/notion.d.ts +601 -601
  22. package/dist/bubbles/service-bubble/postgresql.d.ts +4 -4
  23. package/dist/bubbles/service-bubble/resend.d.ts +8 -8
  24. package/dist/bubbles/service-bubble/slack/slack.d.ts +168 -168
  25. package/dist/bubbles/service-bubble/storage.d.ts +20 -20
  26. package/dist/bubbles/service-bubble/telegram.d.ts +602 -602
  27. package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +8 -8
  28. package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +82 -82
  29. package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +36 -36
  30. package/dist/bubbles/tool-bubble/instagram-tool.d.ts +4 -4
  31. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +132 -132
  32. package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +12 -12
  33. package/dist/bubbles/tool-bubble/people-search-tool.d.ts +104 -104
  34. package/dist/bubbles/tool-bubble/people-search-tool.d.ts.map +1 -1
  35. package/dist/bubbles/tool-bubble/people-search-tool.js +55 -10
  36. package/dist/bubbles/tool-bubble/people-search-tool.js.map +1 -1
  37. package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +20 -20
  38. package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
  39. package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +8 -8
  40. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +4 -4
  41. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +18 -18
  42. package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +4 -4
  43. package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts.map +1 -1
  44. package/dist/bubbles/tool-bubble/web-scrape-tool.js +1 -1
  45. package/dist/bubbles/tool-bubble/web-scrape-tool.js.map +1 -1
  46. package/dist/bubbles/tool-bubble/web-search-tool.d.ts +14 -14
  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 +36 -36
  50. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +48 -48
  51. package/dist/bubbles.json +52057 -9
  52. package/dist/types/available-tools.d.ts +1 -1
  53. package/dist/types/available-tools.d.ts.map +1 -1
  54. package/dist/types/available-tools.js +1 -0
  55. package/dist/types/available-tools.js.map +1 -1
  56. package/package.json +3 -3
@@ -49,10 +49,10 @@ declare const PostgreSQLResultSchema: z.ZodObject<{
49
49
  error: z.ZodString;
50
50
  cleanedJSONString: z.ZodString;
51
51
  }, "strip", z.ZodTypeAny, {
52
+ rowCount: number | null;
52
53
  success: boolean;
53
54
  error: string;
54
55
  rows: Record<string, unknown>[];
55
- rowCount: number | null;
56
56
  command: string;
57
57
  executionTime: number;
58
58
  cleanedJSONString: string;
@@ -61,10 +61,10 @@ declare const PostgreSQLResultSchema: z.ZodObject<{
61
61
  dataTypeID: number;
62
62
  }[] | undefined;
63
63
  }, {
64
+ rowCount: number | null;
64
65
  success: boolean;
65
66
  error: string;
66
67
  rows: Record<string, unknown>[];
67
- rowCount: number | null;
68
68
  command: string;
69
69
  executionTime: number;
70
70
  cleanedJSONString: string;
@@ -124,10 +124,10 @@ export declare class PostgreSQLBubble extends ServiceBubble<PostgreSQLParams, Po
124
124
  error: z.ZodString;
125
125
  cleanedJSONString: z.ZodString;
126
126
  }, "strip", z.ZodTypeAny, {
127
+ rowCount: number | null;
127
128
  success: boolean;
128
129
  error: string;
129
130
  rows: Record<string, unknown>[];
130
- rowCount: number | null;
131
131
  command: string;
132
132
  executionTime: number;
133
133
  cleanedJSONString: string;
@@ -136,10 +136,10 @@ export declare class PostgreSQLBubble extends ServiceBubble<PostgreSQLParams, Po
136
136
  dataTypeID: number;
137
137
  }[] | undefined;
138
138
  }, {
139
+ rowCount: number | null;
139
140
  success: boolean;
140
141
  error: string;
141
142
  rows: Record<string, unknown>[];
142
- rowCount: number | null;
143
143
  command: string;
144
144
  executionTime: number;
145
145
  cleanedJSONString: string;
@@ -33,11 +33,11 @@ declare const ResendParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
33
33
  name: z.ZodString;
34
34
  value: z.ZodString;
35
35
  }, "strip", z.ZodTypeAny, {
36
- name: string;
37
36
  value: string;
38
- }, {
39
37
  name: string;
38
+ }, {
40
39
  value: string;
40
+ name: string;
41
41
  }>, "many">>;
42
42
  headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
43
43
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
@@ -48,8 +48,8 @@ declare const ResendParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
48
48
  subject: string;
49
49
  credentials?: Partial<Record<CredentialType, string>> | undefined;
50
50
  tags?: {
51
- name: string;
52
51
  value: string;
52
+ name: string;
53
53
  }[] | undefined;
54
54
  headers?: Record<string, string> | undefined;
55
55
  text?: string | undefined;
@@ -70,8 +70,8 @@ declare const ResendParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
70
70
  subject: string;
71
71
  credentials?: Partial<Record<CredentialType, string>> | undefined;
72
72
  tags?: {
73
- name: string;
74
73
  value: string;
74
+ name: string;
75
75
  }[] | undefined;
76
76
  headers?: Record<string, string> | undefined;
77
77
  text?: string | undefined;
@@ -180,11 +180,11 @@ export declare class ResendBubble<T extends ResendParams = ResendParams> extends
180
180
  name: z.ZodString;
181
181
  value: z.ZodString;
182
182
  }, "strip", z.ZodTypeAny, {
183
- name: string;
184
183
  value: string;
185
- }, {
186
184
  name: string;
185
+ }, {
187
186
  value: string;
187
+ name: string;
188
188
  }>, "many">>;
189
189
  headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
190
190
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
@@ -195,8 +195,8 @@ export declare class ResendBubble<T extends ResendParams = ResendParams> extends
195
195
  subject: string;
196
196
  credentials?: Partial<Record<CredentialType, string>> | undefined;
197
197
  tags?: {
198
- name: string;
199
198
  value: string;
199
+ name: string;
200
200
  }[] | undefined;
201
201
  headers?: Record<string, string> | undefined;
202
202
  text?: string | undefined;
@@ -217,8 +217,8 @@ export declare class ResendBubble<T extends ResendParams = ResendParams> extends
217
217
  subject: string;
218
218
  credentials?: Partial<Record<CredentialType, string>> | undefined;
219
219
  tags?: {
220
- name: string;
221
220
  value: string;
221
+ name: string;
222
222
  }[] | undefined;
223
223
  headers?: Record<string, string> | undefined;
224
224
  text?: string | undefined;