@bubblelab/bubble-core 0.1.76 → 0.1.78

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 (48) hide show
  1. package/dist/bubble-bundle.d.ts +73 -72
  2. package/dist/bubbles/service-bubble/ai-agent.d.ts +38 -38
  3. package/dist/bubbles/service-bubble/ai-agent.d.ts.map +1 -1
  4. package/dist/bubbles/service-bubble/ai-agent.js +1 -0
  5. package/dist/bubbles/service-bubble/ai-agent.js.map +1 -1
  6. package/dist/bubbles/service-bubble/airtable.d.ts +92 -92
  7. package/dist/bubbles/service-bubble/apify/apify.d.ts +10 -10
  8. package/dist/bubbles/service-bubble/ashby/ashby.d.ts +2 -2
  9. package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +2 -2
  10. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +4 -4
  11. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +8 -8
  12. package/dist/bubbles/service-bubble/firecrawl.d.ts +242 -242
  13. package/dist/bubbles/service-bubble/followupboss.d.ts +4 -4
  14. package/dist/bubbles/service-bubble/github.d.ts +40 -40
  15. package/dist/bubbles/service-bubble/gmail.d.ts +124 -124
  16. package/dist/bubbles/service-bubble/http.d.ts +8 -8
  17. package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
  18. package/dist/bubbles/service-bubble/jira/jira.d.ts +8 -8
  19. package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +10 -10
  20. package/dist/bubbles/service-bubble/notion/notion.d.ts +453 -453
  21. package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
  22. package/dist/bubbles/service-bubble/resend.d.ts +4 -4
  23. package/dist/bubbles/service-bubble/slack/slack.d.ts +295 -295
  24. package/dist/bubbles/service-bubble/stripe/stripe.d.ts +4 -4
  25. package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +4 -4
  26. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +2 -2
  27. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.schema.d.ts +2 -2
  28. package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +8 -8
  29. package/dist/bubbles/tool-bubble/chart-js-tool.d.ts +12 -12
  30. package/dist/bubbles/tool-bubble/code-edit-tool.d.ts +8 -8
  31. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +52 -52
  32. package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +8 -8
  33. package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
  34. package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +8 -8
  35. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +8 -8
  36. package/dist/bubbles/tool-bubble/tool-template.d.ts +8 -8
  37. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +36 -36
  38. package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +4 -4
  39. package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
  40. package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +8 -8
  41. package/dist/bubbles/tool-bubble/youtube-tool.d.ts +10 -10
  42. package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +8 -8
  43. package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +8 -8
  44. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +30 -30
  45. package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +18 -18
  46. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +118 -118
  47. package/dist/bubbles.json +4 -3
  48. package/package.json +2 -2
@@ -12,8 +12,8 @@ declare const PostgreSQLParamsSchema: z.ZodObject<{
12
12
  maxRows: z.ZodDefault<z.ZodNumber>;
13
13
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
14
14
  }, "strip", z.ZodTypeAny, {
15
- parameters: unknown[];
16
15
  timeout: number;
16
+ parameters: unknown[];
17
17
  ignoreSSL: boolean;
18
18
  query: string;
19
19
  allowedOperations: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[];
@@ -21,9 +21,9 @@ declare const PostgreSQLParamsSchema: z.ZodObject<{
21
21
  credentials?: Partial<Record<CredentialType, string>> | undefined;
22
22
  }, {
23
23
  query: string;
24
- parameters?: unknown[] | undefined;
25
24
  credentials?: Partial<Record<CredentialType, string>> | undefined;
26
25
  timeout?: number | undefined;
26
+ parameters?: unknown[] | undefined;
27
27
  ignoreSSL?: boolean | undefined;
28
28
  allowedOperations?: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[] | undefined;
29
29
  maxRows?: number | undefined;
@@ -49,9 +49,9 @@ declare const PostgreSQLResultSchema: z.ZodObject<{
49
49
  error: z.ZodString;
50
50
  cleanedJSONString: z.ZodString;
51
51
  }, "strip", z.ZodTypeAny, {
52
- executionTime: number;
53
52
  error: string;
54
53
  success: boolean;
54
+ executionTime: number;
55
55
  rows: Record<string, unknown>[];
56
56
  rowCount: number | null;
57
57
  command: string;
@@ -61,9 +61,9 @@ declare const PostgreSQLResultSchema: z.ZodObject<{
61
61
  dataTypeID: number;
62
62
  }[] | undefined;
63
63
  }, {
64
- executionTime: number;
65
64
  error: string;
66
65
  success: boolean;
66
+ executionTime: number;
67
67
  rows: Record<string, unknown>[];
68
68
  rowCount: number | null;
69
69
  command: string;
@@ -89,8 +89,8 @@ export declare class PostgreSQLBubble extends ServiceBubble<PostgreSQLParams, Po
89
89
  maxRows: z.ZodDefault<z.ZodNumber>;
90
90
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
91
91
  }, "strip", z.ZodTypeAny, {
92
- parameters: unknown[];
93
92
  timeout: number;
93
+ parameters: unknown[];
94
94
  ignoreSSL: boolean;
95
95
  query: string;
96
96
  allowedOperations: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[];
@@ -98,9 +98,9 @@ export declare class PostgreSQLBubble extends ServiceBubble<PostgreSQLParams, Po
98
98
  credentials?: Partial<Record<CredentialType, string>> | undefined;
99
99
  }, {
100
100
  query: string;
101
- parameters?: unknown[] | undefined;
102
101
  credentials?: Partial<Record<CredentialType, string>> | undefined;
103
102
  timeout?: number | undefined;
103
+ parameters?: unknown[] | undefined;
104
104
  ignoreSSL?: boolean | undefined;
105
105
  allowedOperations?: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[] | undefined;
106
106
  maxRows?: number | undefined;
@@ -124,9 +124,9 @@ export declare class PostgreSQLBubble extends ServiceBubble<PostgreSQLParams, Po
124
124
  error: z.ZodString;
125
125
  cleanedJSONString: z.ZodString;
126
126
  }, "strip", z.ZodTypeAny, {
127
- executionTime: number;
128
127
  error: string;
129
128
  success: boolean;
129
+ executionTime: number;
130
130
  rows: Record<string, unknown>[];
131
131
  rowCount: number | null;
132
132
  command: string;
@@ -136,9 +136,9 @@ export declare class PostgreSQLBubble extends ServiceBubble<PostgreSQLParams, Po
136
136
  dataTypeID: number;
137
137
  }[] | undefined;
138
138
  }, {
139
- executionTime: number;
140
139
  error: string;
141
140
  success: boolean;
141
+ executionTime: number;
142
142
  rows: Record<string, unknown>[];
143
143
  rowCount: number | null;
144
144
  command: string;
@@ -47,12 +47,12 @@ declare const ResendParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
47
47
  to: string | string[];
48
48
  subject: string;
49
49
  credentials?: Partial<Record<CredentialType, string>> | undefined;
50
+ text?: string | undefined;
50
51
  tags?: {
51
52
  value: string;
52
53
  name: string;
53
54
  }[] | undefined;
54
55
  headers?: Record<string, string> | undefined;
55
- text?: string | undefined;
56
56
  attachments?: {
57
57
  content: string | Buffer<ArrayBufferLike>;
58
58
  filename: string;
@@ -69,12 +69,12 @@ declare const ResendParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
69
69
  to: string | string[];
70
70
  subject: string;
71
71
  credentials?: Partial<Record<CredentialType, string>> | undefined;
72
+ text?: string | undefined;
72
73
  tags?: {
73
74
  value: string;
74
75
  name: string;
75
76
  }[] | undefined;
76
77
  headers?: Record<string, string> | undefined;
77
- text?: string | undefined;
78
78
  attachments?: {
79
79
  content: string | Buffer<ArrayBufferLike>;
80
80
  filename: string;
@@ -194,12 +194,12 @@ export declare class ResendBubble<T extends ResendParams = ResendParams> extends
194
194
  to: string | string[];
195
195
  subject: string;
196
196
  credentials?: Partial<Record<CredentialType, string>> | undefined;
197
+ text?: string | undefined;
197
198
  tags?: {
198
199
  value: string;
199
200
  name: string;
200
201
  }[] | undefined;
201
202
  headers?: Record<string, string> | undefined;
202
- text?: string | undefined;
203
203
  attachments?: {
204
204
  content: string | Buffer<ArrayBufferLike>;
205
205
  filename: string;
@@ -216,12 +216,12 @@ export declare class ResendBubble<T extends ResendParams = ResendParams> extends
216
216
  to: string | string[];
217
217
  subject: string;
218
218
  credentials?: Partial<Record<CredentialType, string>> | undefined;
219
+ text?: string | undefined;
219
220
  tags?: {
220
221
  value: string;
221
222
  name: string;
222
223
  }[] | undefined;
223
224
  headers?: Record<string, string> | undefined;
224
- text?: string | undefined;
225
225
  attachments?: {
226
226
  content: string | Buffer<ArrayBufferLike>;
227
227
  filename: string;