@bubblelab/bubble-core 0.1.45 → 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.
- package/dist/bubble-bundle.d.ts +63 -63
- package/dist/bubbles/service-bubble/agi-inc.d.ts +24 -24
- package/dist/bubbles/service-bubble/ai-agent.d.ts +24 -24
- package/dist/bubbles/service-bubble/airtable.d.ts +28 -28
- package/dist/bubbles/service-bubble/apify/apify.d.ts +10 -10
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +48 -48
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +21 -20
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/browserbase/browserbase.js +29 -8
- package/dist/bubbles/service-bubble/browserbase/browserbase.js.map +1 -1
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +16 -16
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +4 -4
- package/dist/bubbles/service-bubble/firecrawl.d.ts +428 -428
- package/dist/bubbles/service-bubble/followupboss.d.ts +256 -256
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +236 -236
- package/dist/bubbles/service-bubble/github.d.ts +64 -64
- package/dist/bubbles/service-bubble/gmail.d.ts +478 -478
- package/dist/bubbles/service-bubble/google-calendar.d.ts +6 -6
- package/dist/bubbles/service-bubble/google-drive.d.ts +32 -32
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +10 -10
- package/dist/bubbles/service-bubble/http.d.ts +12 -12
- package/dist/bubbles/service-bubble/insforge-db.d.ts +12 -12
- package/dist/bubbles/service-bubble/jira/jira.d.ts +10 -10
- package/dist/bubbles/service-bubble/notion/notion.d.ts +80 -80
- package/dist/bubbles/service-bubble/postgresql.d.ts +12 -12
- package/dist/bubbles/service-bubble/resend.d.ts +8 -8
- package/dist/bubbles/service-bubble/slack/slack.d.ts +248 -248
- package/dist/bubbles/service-bubble/storage.d.ts +20 -20
- package/dist/bubbles/service-bubble/telegram.d.ts +2 -2
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +5 -5
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +70 -70
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +348 -348
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +42 -42
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +60 -60
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +90 -90
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +6 -6
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +12 -12
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +28 -28
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +8 -8
- package/dist/bubbles.json +1 -1
- package/package.json +2 -2
|
@@ -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">;
|