@bubblelab/bubble-core 0.1.127 → 0.1.129

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 +82 -81
  2. package/dist/bubbles/service-bubble/agi-inc.d.ts +20 -20
  3. package/dist/bubbles/service-bubble/ai-agent.d.ts +75 -77
  4. package/dist/bubbles/service-bubble/ai-agent.d.ts.map +1 -1
  5. package/dist/bubbles/service-bubble/ai-agent.js +4 -91
  6. package/dist/bubbles/service-bubble/ai-agent.js.map +1 -1
  7. package/dist/bubbles/service-bubble/airtable.d.ts +76 -76
  8. package/dist/bubbles/service-bubble/apify/apify.d.ts +22 -22
  9. package/dist/bubbles/service-bubble/ashby/ashby.d.ts +2 -2
  10. package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +2 -2
  11. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +1 -1
  12. package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +1 -1
  13. package/dist/bubbles/service-bubble/capability-pipeline.d.ts +15 -0
  14. package/dist/bubbles/service-bubble/capability-pipeline.d.ts.map +1 -0
  15. package/dist/bubbles/service-bubble/capability-pipeline.js +114 -0
  16. package/dist/bubbles/service-bubble/capability-pipeline.js.map +1 -0
  17. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +14 -14
  18. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +32 -32
  19. package/dist/bubbles/service-bubble/firecrawl.d.ts +342 -342
  20. package/dist/bubbles/service-bubble/followupboss.d.ts +4 -4
  21. package/dist/bubbles/service-bubble/github.d.ts +60 -60
  22. package/dist/bubbles/service-bubble/gmail.d.ts +164 -164
  23. package/dist/bubbles/service-bubble/google-calendar.d.ts +6 -6
  24. package/dist/bubbles/service-bubble/google-drive.d.ts +40 -40
  25. package/dist/bubbles/service-bubble/http.d.ts +2 -2
  26. package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
  27. package/dist/bubbles/service-bubble/jira/jira.d.ts +42 -42
  28. package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +50 -50
  29. package/dist/bubbles/service-bubble/notion/notion.d.ts +848 -848
  30. package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
  31. package/dist/bubbles/service-bubble/slack/slack.d.ts +240 -240
  32. package/dist/bubbles/service-bubble/stripe/stripe.d.ts +24 -24
  33. package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +28 -28
  34. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +2 -2
  35. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.schema.d.ts +2 -2
  36. package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +4 -4
  37. package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +28 -28
  38. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +300 -300
  39. package/dist/bubbles/tool-bubble/people-search-tool.d.ts +44 -44
  40. package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +10 -10
  41. package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
  42. package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
  43. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +52 -52
  44. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +124 -124
  45. package/dist/bubbles/tool-bubble/yc-scraper-tool.d.ts +36 -36
  46. package/dist/bubbles/tool-bubble/youtube-tool.d.ts +20 -20
  47. package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +12 -12
  48. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +16 -16
  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 +1 -1
  53. package/package.json +2 -2
@@ -12,20 +12,20 @@ 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;
17
16
  ignoreSSL: boolean;
18
17
  query: string;
19
18
  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
- parameters?: unknown[] | undefined;
25
24
  credentials?: Partial<Record<CredentialType, string>> | undefined;
26
25
  timeout?: number | undefined;
27
26
  ignoreSSL?: boolean | undefined;
28
27
  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>;
@@ -49,24 +49,24 @@ 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;
55
54
  rows: Record<string, unknown>[];
56
55
  rowCount: number | null;
57
56
  command: string;
57
+ executionTime: number;
58
58
  cleanedJSONString: string;
59
59
  fields?: {
60
60
  name: string;
61
61
  dataTypeID: number;
62
62
  }[] | undefined;
63
63
  }, {
64
- executionTime: number;
65
64
  error: string;
66
65
  success: boolean;
67
66
  rows: Record<string, unknown>[];
68
67
  rowCount: number | null;
69
68
  command: string;
69
+ executionTime: number;
70
70
  cleanedJSONString: string;
71
71
  fields?: {
72
72
  name: string;
@@ -89,20 +89,20 @@ 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;
94
93
  ignoreSSL: boolean;
95
94
  query: string;
96
95
  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
- parameters?: unknown[] | undefined;
102
101
  credentials?: Partial<Record<CredentialType, string>> | undefined;
103
102
  timeout?: number | undefined;
104
103
  ignoreSSL?: boolean | undefined;
105
104
  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<{
@@ -124,24 +124,24 @@ 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;
130
129
  rows: Record<string, unknown>[];
131
130
  rowCount: number | null;
132
131
  command: string;
132
+ executionTime: number;
133
133
  cleanedJSONString: string;
134
134
  fields?: {
135
135
  name: string;
136
136
  dataTypeID: number;
137
137
  }[] | undefined;
138
138
  }, {
139
- executionTime: number;
140
139
  error: string;
141
140
  success: boolean;
142
141
  rows: Record<string, unknown>[];
143
142
  rowCount: number | null;
144
143
  command: string;
144
+ executionTime: number;
145
145
  cleanedJSONString: string;
146
146
  fields?: {
147
147
  name: string;