@bubblelab/bubble-core 0.1.204 → 0.1.205

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 (58) hide show
  1. package/dist/bubble-bundle.d.ts +172 -172
  2. package/dist/bubbles/service-bubble/agi-inc.d.ts +20 -20
  3. package/dist/bubbles/service-bubble/ai-agent-slack-tools.d.ts +11 -0
  4. package/dist/bubbles/service-bubble/ai-agent-slack-tools.d.ts.map +1 -0
  5. package/dist/bubbles/service-bubble/ai-agent-slack-tools.js +61 -0
  6. package/dist/bubbles/service-bubble/ai-agent-slack-tools.js.map +1 -0
  7. package/dist/bubbles/service-bubble/ai-agent.d.ts +13 -13
  8. package/dist/bubbles/service-bubble/ai-agent.d.ts.map +1 -1
  9. package/dist/bubbles/service-bubble/ai-agent.js +12 -2
  10. package/dist/bubbles/service-bubble/ai-agent.js.map +1 -1
  11. package/dist/bubbles/service-bubble/airtable.d.ts +24 -24
  12. package/dist/bubbles/service-bubble/apify/apify.d.ts +12 -12
  13. package/dist/bubbles/service-bubble/ashby/ashby.d.ts +72 -72
  14. package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +100 -100
  15. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +2 -2
  16. package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +2 -2
  17. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +4 -4
  18. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +8 -8
  19. package/dist/bubbles/service-bubble/firecrawl.d.ts +212 -212
  20. package/dist/bubbles/service-bubble/github.d.ts +72 -72
  21. package/dist/bubbles/service-bubble/gmail.d.ts +148 -148
  22. package/dist/bubbles/service-bubble/google-calendar.d.ts +86 -86
  23. package/dist/bubbles/service-bubble/google-drive.d.ts +32 -32
  24. package/dist/bubbles/service-bubble/http.d.ts +4 -4
  25. package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
  26. package/dist/bubbles/service-bubble/jira/jira.d.ts +38 -38
  27. package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +46 -46
  28. package/dist/bubbles/service-bubble/notion/notion.d.ts +380 -380
  29. package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
  30. package/dist/bubbles/service-bubble/posthog/posthog.d.ts +2 -2
  31. package/dist/bubbles/service-bubble/posthog/posthog.schema.d.ts +2 -2
  32. package/dist/bubbles/service-bubble/slack/slack.d.ts +210 -210
  33. package/dist/bubbles/service-bubble/slack/slack.d.ts.map +1 -1
  34. package/dist/bubbles/service-bubble/slack/slack.js +17 -6
  35. package/dist/bubbles/service-bubble/slack/slack.js.map +1 -1
  36. package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +4 -4
  37. package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +10 -10
  38. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +266 -266
  39. package/dist/bubbles/tool-bubble/list-capabilities-tool.d.ts +8 -8
  40. package/dist/bubbles/tool-bubble/people-search-tool.d.ts +34 -34
  41. package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +10 -10
  42. package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
  43. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +56 -56
  44. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +80 -80
  45. package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +4 -4
  46. package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
  47. package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +8 -8
  48. package/dist/bubbles/tool-bubble/yc-scraper-tool.d.ts +4 -4
  49. package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +12 -12
  50. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +36 -36
  51. package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +16 -16
  52. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +24 -24
  53. package/dist/bubbles.json +1 -1
  54. package/dist/types/base-bubble-class.d.ts +6 -0
  55. package/dist/types/base-bubble-class.d.ts.map +1 -1
  56. package/dist/types/base-bubble-class.js +11 -0
  57. package/dist/types/base-bubble-class.js.map +1 -1
  58. package/package.json +2 -2
@@ -13,19 +13,19 @@ declare const PostgreSQLParamsSchema: z.ZodObject<{
13
13
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
14
14
  }, "strip", z.ZodTypeAny, {
15
15
  timeout: number;
16
+ parameters: unknown[];
16
17
  ignoreSSL: boolean;
17
18
  query: string;
18
19
  allowedOperations: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[];
19
- parameters: unknown[];
20
20
  maxRows: number;
21
21
  credentials?: Partial<Record<CredentialType, string>> | undefined;
22
22
  }, {
23
23
  query: string;
24
24
  credentials?: Partial<Record<CredentialType, string>> | undefined;
25
25
  timeout?: number | undefined;
26
+ parameters?: unknown[] | undefined;
26
27
  ignoreSSL?: boolean | undefined;
27
28
  allowedOperations?: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[] | undefined;
28
- parameters?: unknown[] | undefined;
29
29
  maxRows?: number | undefined;
30
30
  }>;
31
31
  type PostgreSQLParamsInput = z.input<typeof PostgreSQLParamsSchema>;
@@ -51,10 +51,10 @@ declare const PostgreSQLResultSchema: z.ZodObject<{
51
51
  }, "strip", z.ZodTypeAny, {
52
52
  error: string;
53
53
  success: boolean;
54
+ executionTime: number;
54
55
  rows: Record<string, unknown>[];
55
56
  rowCount: number | null;
56
57
  command: string;
57
- executionTime: number;
58
58
  cleanedJSONString: string;
59
59
  fields?: {
60
60
  name: string;
@@ -63,10 +63,10 @@ declare const PostgreSQLResultSchema: z.ZodObject<{
63
63
  }, {
64
64
  error: string;
65
65
  success: boolean;
66
+ executionTime: number;
66
67
  rows: Record<string, unknown>[];
67
68
  rowCount: number | null;
68
69
  command: string;
69
- executionTime: number;
70
70
  cleanedJSONString: string;
71
71
  fields?: {
72
72
  name: string;
@@ -90,19 +90,19 @@ export declare class PostgreSQLBubble extends ServiceBubble<PostgreSQLParams, Po
90
90
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
91
91
  }, "strip", z.ZodTypeAny, {
92
92
  timeout: number;
93
+ parameters: unknown[];
93
94
  ignoreSSL: boolean;
94
95
  query: string;
95
96
  allowedOperations: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[];
96
- parameters: unknown[];
97
97
  maxRows: number;
98
98
  credentials?: Partial<Record<CredentialType, string>> | undefined;
99
99
  }, {
100
100
  query: string;
101
101
  credentials?: Partial<Record<CredentialType, string>> | undefined;
102
102
  timeout?: number | undefined;
103
+ parameters?: unknown[] | undefined;
103
104
  ignoreSSL?: boolean | undefined;
104
105
  allowedOperations?: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[] | undefined;
105
- parameters?: unknown[] | undefined;
106
106
  maxRows?: number | undefined;
107
107
  }>;
108
108
  static readonly resultSchema: z.ZodObject<{
@@ -126,10 +126,10 @@ export declare class PostgreSQLBubble extends ServiceBubble<PostgreSQLParams, Po
126
126
  }, "strip", z.ZodTypeAny, {
127
127
  error: string;
128
128
  success: boolean;
129
+ executionTime: number;
129
130
  rows: Record<string, unknown>[];
130
131
  rowCount: number | null;
131
132
  command: string;
132
- executionTime: number;
133
133
  cleanedJSONString: string;
134
134
  fields?: {
135
135
  name: string;
@@ -138,10 +138,10 @@ export declare class PostgreSQLBubble extends ServiceBubble<PostgreSQLParams, Po
138
138
  }, {
139
139
  error: string;
140
140
  success: boolean;
141
+ executionTime: number;
141
142
  rows: Record<string, unknown>[];
142
143
  rowCount: number | null;
143
144
  command: string;
144
- executionTime: number;
145
145
  cleanedJSONString: string;
146
146
  fields?: {
147
147
  name: string;
@@ -91,9 +91,9 @@ export declare class PosthogBubble<T extends PosthogParamsInput = PosthogParamsI
91
91
  event?: string | undefined;
92
92
  person_id?: string | undefined;
93
93
  after?: string | undefined;
94
+ host?: string | undefined;
94
95
  before?: string | undefined;
95
96
  distinct_id?: string | undefined;
96
- host?: string | undefined;
97
97
  }>, import("zod").ZodObject<{
98
98
  operation: import("zod").ZodLiteral<"query">;
99
99
  project_id: import("zod").ZodString;
@@ -134,8 +134,8 @@ export declare class PosthogBubble<T extends PosthogParamsInput = PosthogParamsI
134
134
  credentials?: Partial<Record<CredentialType, string>> | undefined;
135
135
  search?: string | undefined;
136
136
  limit?: number | undefined;
137
- distinct_id?: string | undefined;
138
137
  host?: string | undefined;
138
+ distinct_id?: string | undefined;
139
139
  }>, import("zod").ZodObject<{
140
140
  operation: import("zod").ZodLiteral<"get_insight">;
141
141
  project_id: import("zod").ZodString;
@@ -191,9 +191,9 @@ export declare const PosthogParamsSchema: z.ZodDiscriminatedUnion<"operation", [
191
191
  event?: string | undefined;
192
192
  person_id?: string | undefined;
193
193
  after?: string | undefined;
194
+ host?: string | undefined;
194
195
  before?: string | undefined;
195
196
  distinct_id?: string | undefined;
196
- host?: string | undefined;
197
197
  }>, z.ZodObject<{
198
198
  operation: z.ZodLiteral<"query">;
199
199
  project_id: z.ZodString;
@@ -234,8 +234,8 @@ export declare const PosthogParamsSchema: z.ZodDiscriminatedUnion<"operation", [
234
234
  credentials?: Partial<Record<CredentialType, string>> | undefined;
235
235
  search?: string | undefined;
236
236
  limit?: number | undefined;
237
- distinct_id?: string | undefined;
238
237
  host?: string | undefined;
238
+ distinct_id?: string | undefined;
239
239
  }>, z.ZodObject<{
240
240
  operation: z.ZodLiteral<"get_insight">;
241
241
  project_id: z.ZodString;