@bubblelab/bubble-core 0.1.44 → 0.1.46

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 (39) hide show
  1. package/dist/bubble-bundle.d.ts +65 -65
  2. package/dist/bubbles/service-bubble/airtable.d.ts +28 -28
  3. package/dist/bubbles/service-bubble/apify/apify.d.ts +4 -4
  4. package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +10 -10
  5. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +5 -4
  6. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts.map +1 -1
  7. package/dist/bubbles/service-bubble/browserbase/browserbase.js +29 -8
  8. package/dist/bubbles/service-bubble/browserbase/browserbase.js.map +1 -1
  9. package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +16 -16
  10. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +10 -10
  11. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +80 -80
  12. package/dist/bubbles/service-bubble/eleven-labs.d.ts +4 -4
  13. package/dist/bubbles/service-bubble/firecrawl.d.ts +168 -168
  14. package/dist/bubbles/service-bubble/followupboss.d.ts +84 -84
  15. package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +32 -32
  16. package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts.map +1 -1
  17. package/dist/bubbles/service-bubble/fullenrich/fullenrich.js +59 -2
  18. package/dist/bubbles/service-bubble/fullenrich/fullenrich.js.map +1 -1
  19. package/dist/bubbles/service-bubble/fullenrich/fullenrich.schema.d.ts +341 -341
  20. package/dist/bubbles/service-bubble/github.d.ts +36 -36
  21. package/dist/bubbles/service-bubble/gmail.d.ts +384 -384
  22. package/dist/bubbles/service-bubble/google-calendar.d.ts +6 -6
  23. package/dist/bubbles/service-bubble/http.d.ts +12 -12
  24. package/dist/bubbles/service-bubble/insforge-db.d.ts +4 -4
  25. package/dist/bubbles/service-bubble/jira/jira.d.ts +10 -10
  26. package/dist/bubbles/service-bubble/postgresql.d.ts +4 -4
  27. package/dist/bubbles/service-bubble/slack/slack.d.ts +160 -160
  28. package/dist/bubbles/service-bubble/telegram.d.ts +2 -2
  29. package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +20 -20
  30. package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +12 -12
  31. package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +8 -8
  32. package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.schema.d.ts +6 -6
  33. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +54 -54
  34. package/dist/bubbles/tool-bubble/people-search-tool.d.ts +24 -24
  35. package/dist/bubbles/tool-bubble/web-search-tool.d.ts +2 -2
  36. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +28 -28
  37. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +8 -8
  38. package/dist/bubbles.json +1 -1
  39. package/package.json +2 -2
@@ -42,9 +42,9 @@ declare const GoogleCalendarParamsSchema: z.ZodDiscriminatedUnion<"operation", [
42
42
  }, {
43
43
  operation: "list_events";
44
44
  credentials?: Partial<Record<CredentialType, string>> | undefined;
45
+ q?: string | undefined;
45
46
  max_results?: number | undefined;
46
47
  order_by?: "updated" | "startTime" | undefined;
47
- q?: string | undefined;
48
48
  page_token?: string | undefined;
49
49
  calendar_id?: string | undefined;
50
50
  time_min?: string | undefined;
@@ -219,13 +219,13 @@ declare const GoogleCalendarParamsSchema: z.ZodDiscriminatedUnion<"operation", [
219
219
  event_id: string;
220
220
  description?: string | undefined;
221
221
  credentials?: Partial<Record<CredentialType, string>> | undefined;
222
- location?: string | undefined;
223
222
  summary?: string | undefined;
224
223
  start?: {
225
224
  date?: string | undefined;
226
225
  timeZone?: string | undefined;
227
226
  dateTime?: string | undefined;
228
227
  } | undefined;
228
+ location?: string | undefined;
229
229
  end?: {
230
230
  date?: string | undefined;
231
231
  timeZone?: string | undefined;
@@ -242,13 +242,13 @@ declare const GoogleCalendarParamsSchema: z.ZodDiscriminatedUnion<"operation", [
242
242
  event_id: string;
243
243
  description?: string | undefined;
244
244
  credentials?: Partial<Record<CredentialType, string>> | undefined;
245
- location?: string | undefined;
246
245
  summary?: string | undefined;
247
246
  start?: {
248
247
  date?: string | undefined;
249
248
  timeZone?: string | undefined;
250
249
  dateTime?: string | undefined;
251
250
  } | undefined;
251
+ location?: string | undefined;
252
252
  end?: {
253
253
  date?: string | undefined;
254
254
  timeZone?: string | undefined;
@@ -2125,9 +2125,9 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
2125
2125
  }, {
2126
2126
  operation: "list_events";
2127
2127
  credentials?: Partial<Record<CredentialType, string>> | undefined;
2128
+ q?: string | undefined;
2128
2129
  max_results?: number | undefined;
2129
2130
  order_by?: "updated" | "startTime" | undefined;
2130
- q?: string | undefined;
2131
2131
  page_token?: string | undefined;
2132
2132
  calendar_id?: string | undefined;
2133
2133
  time_min?: string | undefined;
@@ -2302,13 +2302,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
2302
2302
  event_id: string;
2303
2303
  description?: string | undefined;
2304
2304
  credentials?: Partial<Record<CredentialType, string>> | undefined;
2305
- location?: string | undefined;
2306
2305
  summary?: string | undefined;
2307
2306
  start?: {
2308
2307
  date?: string | undefined;
2309
2308
  timeZone?: string | undefined;
2310
2309
  dateTime?: string | undefined;
2311
2310
  } | undefined;
2311
+ location?: string | undefined;
2312
2312
  end?: {
2313
2313
  date?: string | undefined;
2314
2314
  timeZone?: string | undefined;
@@ -2325,13 +2325,13 @@ export declare class GoogleCalendarBubble<T extends GoogleCalendarParams = Googl
2325
2325
  event_id: string;
2326
2326
  description?: string | undefined;
2327
2327
  credentials?: Partial<Record<CredentialType, string>> | undefined;
2328
- location?: string | undefined;
2329
2328
  summary?: string | undefined;
2330
2329
  start?: {
2331
2330
  date?: string | undefined;
2332
2331
  timeZone?: string | undefined;
2333
2332
  dateTime?: string | undefined;
2334
2333
  } | undefined;
2334
+ location?: string | undefined;
2335
2335
  end?: {
2336
2336
  date?: string | undefined;
2337
2337
  timeZone?: string | undefined;
@@ -15,20 +15,20 @@ declare const HttpParamsSchema: z.ZodObject<{
15
15
  }, "strip", z.ZodTypeAny, {
16
16
  url: string;
17
17
  timeout: number;
18
- method: "DELETE" | "GET" | "POST" | "PUT" | "PATCH" | "HEAD" | "OPTIONS";
18
+ method: "GET" | "POST" | "PATCH" | "DELETE" | "PUT" | "HEAD" | "OPTIONS";
19
19
  followRedirects: boolean;
20
20
  authType: "custom" | "none" | "bearer" | "basic" | "api-key" | "api-key-header";
21
21
  credentials?: Partial<Record<CredentialType, string>> | undefined;
22
- headers?: Record<string, string> | undefined;
23
22
  body?: string | Record<string, unknown> | undefined;
23
+ headers?: Record<string, string> | undefined;
24
24
  authHeader?: string | undefined;
25
25
  }, {
26
26
  url: string;
27
27
  credentials?: Partial<Record<CredentialType, string>> | undefined;
28
28
  timeout?: number | undefined;
29
- headers?: Record<string, string> | undefined;
30
- method?: "DELETE" | "GET" | "POST" | "PUT" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
31
29
  body?: string | Record<string, unknown> | undefined;
30
+ headers?: Record<string, string> | undefined;
31
+ method?: "GET" | "POST" | "PATCH" | "DELETE" | "PUT" | "HEAD" | "OPTIONS" | undefined;
32
32
  followRedirects?: boolean | undefined;
33
33
  authType?: "custom" | "none" | "bearer" | "basic" | "api-key" | "api-key-header" | undefined;
34
34
  authHeader?: string | undefined;
@@ -49,9 +49,9 @@ declare const HttpResultSchema: z.ZodObject<{
49
49
  status: number;
50
50
  success: boolean;
51
51
  error: string;
52
+ body: string;
52
53
  headers: Record<string, string>;
53
54
  size: number;
54
- body: string;
55
55
  statusText: string;
56
56
  responseTime: number;
57
57
  json?: unknown;
@@ -59,9 +59,9 @@ declare const HttpResultSchema: z.ZodObject<{
59
59
  status: number;
60
60
  success: boolean;
61
61
  error: string;
62
+ body: string;
62
63
  headers: Record<string, string>;
63
64
  size: number;
64
- body: string;
65
65
  statusText: string;
66
66
  responseTime: number;
67
67
  json?: unknown;
@@ -85,20 +85,20 @@ export declare class HttpBubble extends ServiceBubble<HttpParams, HttpResult> {
85
85
  }, "strip", z.ZodTypeAny, {
86
86
  url: string;
87
87
  timeout: number;
88
- method: "DELETE" | "GET" | "POST" | "PUT" | "PATCH" | "HEAD" | "OPTIONS";
88
+ method: "GET" | "POST" | "PATCH" | "DELETE" | "PUT" | "HEAD" | "OPTIONS";
89
89
  followRedirects: boolean;
90
90
  authType: "custom" | "none" | "bearer" | "basic" | "api-key" | "api-key-header";
91
91
  credentials?: Partial<Record<CredentialType, string>> | undefined;
92
- headers?: Record<string, string> | undefined;
93
92
  body?: string | Record<string, unknown> | undefined;
93
+ headers?: Record<string, string> | undefined;
94
94
  authHeader?: string | undefined;
95
95
  }, {
96
96
  url: string;
97
97
  credentials?: Partial<Record<CredentialType, string>> | undefined;
98
98
  timeout?: number | undefined;
99
- headers?: Record<string, string> | undefined;
100
- method?: "DELETE" | "GET" | "POST" | "PUT" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
101
99
  body?: string | Record<string, unknown> | undefined;
100
+ headers?: Record<string, string> | undefined;
101
+ method?: "GET" | "POST" | "PATCH" | "DELETE" | "PUT" | "HEAD" | "OPTIONS" | undefined;
102
102
  followRedirects?: boolean | undefined;
103
103
  authType?: "custom" | "none" | "bearer" | "basic" | "api-key" | "api-key-header" | undefined;
104
104
  authHeader?: string | undefined;
@@ -117,9 +117,9 @@ export declare class HttpBubble extends ServiceBubble<HttpParams, HttpResult> {
117
117
  status: number;
118
118
  success: boolean;
119
119
  error: string;
120
+ body: string;
120
121
  headers: Record<string, string>;
121
122
  size: number;
122
- body: string;
123
123
  statusText: string;
124
124
  responseTime: number;
125
125
  json?: unknown;
@@ -127,9 +127,9 @@ export declare class HttpBubble extends ServiceBubble<HttpParams, HttpResult> {
127
127
  status: number;
128
128
  success: boolean;
129
129
  error: string;
130
+ body: string;
130
131
  headers: Record<string, string>;
131
132
  size: number;
132
- body: string;
133
133
  statusText: string;
134
134
  responseTime: number;
135
135
  json?: unknown;
@@ -13,7 +13,7 @@ declare const InsForgeDbParamsSchema: z.ZodObject<{
13
13
  }, "strip", z.ZodTypeAny, {
14
14
  timeout: number;
15
15
  query: string;
16
- allowedOperations: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[];
16
+ allowedOperations: ("DELETE" | "SELECT" | "INSERT" | "UPDATE" | "WITH" | "EXPLAIN" | "CREATE")[];
17
17
  parameters: unknown[];
18
18
  maxRows: number;
19
19
  credentials?: Partial<Record<CredentialType, string>> | undefined;
@@ -21,7 +21,7 @@ declare const InsForgeDbParamsSchema: z.ZodObject<{
21
21
  query: string;
22
22
  credentials?: Partial<Record<CredentialType, string>> | undefined;
23
23
  timeout?: number | undefined;
24
- allowedOperations?: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[] | undefined;
24
+ allowedOperations?: ("DELETE" | "SELECT" | "INSERT" | "UPDATE" | "WITH" | "EXPLAIN" | "CREATE")[] | undefined;
25
25
  parameters?: unknown[] | undefined;
26
26
  maxRows?: number | undefined;
27
27
  }>;
@@ -87,7 +87,7 @@ export declare class InsForgeDbBubble extends ServiceBubble<InsForgeDbParams, In
87
87
  }, "strip", z.ZodTypeAny, {
88
88
  timeout: number;
89
89
  query: string;
90
- allowedOperations: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[];
90
+ allowedOperations: ("DELETE" | "SELECT" | "INSERT" | "UPDATE" | "WITH" | "EXPLAIN" | "CREATE")[];
91
91
  parameters: unknown[];
92
92
  maxRows: number;
93
93
  credentials?: Partial<Record<CredentialType, string>> | undefined;
@@ -95,7 +95,7 @@ export declare class InsForgeDbBubble extends ServiceBubble<InsForgeDbParams, In
95
95
  query: string;
96
96
  credentials?: Partial<Record<CredentialType, string>> | undefined;
97
97
  timeout?: number | undefined;
98
- allowedOperations?: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "CREATE")[] | undefined;
98
+ allowedOperations?: ("DELETE" | "SELECT" | "INSERT" | "UPDATE" | "WITH" | "EXPLAIN" | "CREATE")[] | undefined;
99
99
  parameters?: unknown[] | undefined;
100
100
  maxRows?: number | undefined;
101
101
  }>;
@@ -48,8 +48,8 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
48
48
  credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
49
49
  }, "strip", import("zod").ZodTypeAny, {
50
50
  operation: "search";
51
- limit: number;
52
51
  offset: number;
52
+ limit: number;
53
53
  jql: string;
54
54
  credentials?: Partial<Record<CredentialType, string>> | undefined;
55
55
  fields?: string[] | undefined;
@@ -57,9 +57,9 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
57
57
  operation: "search";
58
58
  jql: string;
59
59
  credentials?: Partial<Record<CredentialType, string>> | undefined;
60
+ offset?: number | undefined;
60
61
  fields?: string[] | undefined;
61
62
  limit?: number | undefined;
62
- offset?: number | undefined;
63
63
  }>, import("zod").ZodObject<{
64
64
  operation: import("zod").ZodLiteral<"get">;
65
65
  key: import("zod").ZodString;
@@ -210,14 +210,14 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
210
210
  credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
211
211
  }, "strip", import("zod").ZodTypeAny, {
212
212
  operation: "list_projects";
213
- limit: number;
214
213
  offset: number;
214
+ limit: number;
215
215
  credentials?: Partial<Record<CredentialType, string>> | undefined;
216
216
  }, {
217
217
  operation: "list_projects";
218
218
  credentials?: Partial<Record<CredentialType, string>> | undefined;
219
- limit?: number | undefined;
220
219
  offset?: number | undefined;
220
+ limit?: number | undefined;
221
221
  }>, import("zod").ZodObject<{
222
222
  operation: import("zod").ZodLiteral<"list_issue_types">;
223
223
  project: import("zod").ZodString;
@@ -237,13 +237,13 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
237
237
  credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
238
238
  }, "strip", import("zod").ZodTypeAny, {
239
239
  operation: "add_comment";
240
- key: string;
241
240
  body: string;
241
+ key: string;
242
242
  credentials?: Partial<Record<CredentialType, string>> | undefined;
243
243
  }, {
244
244
  operation: "add_comment";
245
- key: string;
246
245
  body: string;
246
+ key: string;
247
247
  credentials?: Partial<Record<CredentialType, string>> | undefined;
248
248
  }>, import("zod").ZodObject<{
249
249
  operation: import("zod").ZodLiteral<"get_comments">;
@@ -253,16 +253,16 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
253
253
  credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
254
254
  }, "strip", import("zod").ZodTypeAny, {
255
255
  operation: "get_comments";
256
+ offset: number;
256
257
  key: string;
257
258
  limit: number;
258
- offset: number;
259
259
  credentials?: Partial<Record<CredentialType, string>> | undefined;
260
260
  }, {
261
261
  operation: "get_comments";
262
262
  key: string;
263
263
  credentials?: Partial<Record<CredentialType, string>> | undefined;
264
- limit?: number | undefined;
265
264
  offset?: number | undefined;
265
+ limit?: number | undefined;
266
266
  }>]>;
267
267
  static readonly resultSchema: import("zod").ZodDiscriminatedUnion<"operation", [import("zod").ZodObject<{
268
268
  operation: import("zod").ZodLiteral<"search">;
@@ -2583,8 +2583,8 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
2583
2583
  expand?: string | undefined;
2584
2584
  self?: string | undefined;
2585
2585
  }[] | undefined;
2586
- limit?: number | undefined;
2587
2586
  offset?: number | undefined;
2587
+ limit?: number | undefined;
2588
2588
  total?: number | undefined;
2589
2589
  }, {
2590
2590
  operation: "search";
@@ -2978,8 +2978,8 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
2978
2978
  expand?: string | undefined;
2979
2979
  self?: string | undefined;
2980
2980
  }[] | undefined;
2981
- limit?: number | undefined;
2982
2981
  offset?: number | undefined;
2982
+ limit?: number | undefined;
2983
2983
  total?: number | undefined;
2984
2984
  }>, import("zod").ZodObject<{
2985
2985
  operation: import("zod").ZodLiteral<"get">;
@@ -15,7 +15,7 @@ declare const PostgreSQLParamsSchema: z.ZodObject<{
15
15
  timeout: number;
16
16
  ignoreSSL: boolean;
17
17
  query: string;
18
- allowedOperations: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[];
18
+ allowedOperations: ("DELETE" | "SELECT" | "INSERT" | "UPDATE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[];
19
19
  parameters: unknown[];
20
20
  maxRows: number;
21
21
  credentials?: Partial<Record<CredentialType, string>> | undefined;
@@ -24,7 +24,7 @@ declare const PostgreSQLParamsSchema: z.ZodObject<{
24
24
  credentials?: Partial<Record<CredentialType, string>> | undefined;
25
25
  timeout?: number | undefined;
26
26
  ignoreSSL?: boolean | undefined;
27
- allowedOperations?: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[] | undefined;
27
+ allowedOperations?: ("DELETE" | "SELECT" | "INSERT" | "UPDATE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[] | undefined;
28
28
  parameters?: unknown[] | undefined;
29
29
  maxRows?: number | undefined;
30
30
  }>;
@@ -92,7 +92,7 @@ export declare class PostgreSQLBubble extends ServiceBubble<PostgreSQLParams, Po
92
92
  timeout: number;
93
93
  ignoreSSL: boolean;
94
94
  query: string;
95
- allowedOperations: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[];
95
+ allowedOperations: ("DELETE" | "SELECT" | "INSERT" | "UPDATE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[];
96
96
  parameters: unknown[];
97
97
  maxRows: number;
98
98
  credentials?: Partial<Record<CredentialType, string>> | undefined;
@@ -101,7 +101,7 @@ export declare class PostgreSQLBubble extends ServiceBubble<PostgreSQLParams, Po
101
101
  credentials?: Partial<Record<CredentialType, string>> | undefined;
102
102
  timeout?: number | undefined;
103
103
  ignoreSSL?: boolean | undefined;
104
- allowedOperations?: ("SELECT" | "INSERT" | "UPDATE" | "DELETE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[] | undefined;
104
+ allowedOperations?: ("DELETE" | "SELECT" | "INSERT" | "UPDATE" | "WITH" | "EXPLAIN" | "ANALYZE" | "SHOW" | "DESCRIBE" | "DESC" | "CREATE")[] | undefined;
105
105
  parameters?: unknown[] | undefined;
106
106
  maxRows?: number | undefined;
107
107
  }>;