@bubblelab/bubble-core 0.1.25 → 0.1.27
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 +84 -68
- package/dist/bubbles/service-bubble/ai-agent.d.ts +18 -18
- package/dist/bubbles/service-bubble/airtable.d.ts +132 -132
- package/dist/bubbles/service-bubble/apify/apify.d.ts +4 -4
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +8 -8
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +102 -102
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +108 -108
- package/dist/bubbles/service-bubble/firecrawl.d.ts +288 -288
- package/dist/bubbles/service-bubble/followupboss.d.ts +264 -264
- package/dist/bubbles/service-bubble/github.d.ts +64 -64
- package/dist/bubbles/service-bubble/gmail.d.ts +108 -108
- package/dist/bubbles/service-bubble/google-calendar.d.ts +16 -16
- package/dist/bubbles/service-bubble/google-drive.d.ts +20 -20
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +33 -33
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.d.ts +79 -79
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.js +15 -19
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.js.map +1 -1
- package/dist/bubbles/service-bubble/hello-world.d.ts +2 -2
- package/dist/bubbles/service-bubble/insforge-db.d.ts +4 -4
- package/dist/bubbles/service-bubble/notion/notion.d.ts +601 -601
- package/dist/bubbles/service-bubble/postgresql.d.ts +4 -4
- package/dist/bubbles/service-bubble/resend.d.ts +8 -8
- package/dist/bubbles/service-bubble/slack/slack.d.ts +168 -168
- package/dist/bubbles/service-bubble/storage.d.ts +20 -20
- package/dist/bubbles/service-bubble/telegram.d.ts +602 -602
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +82 -82
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +36 -36
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +132 -132
- package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +104 -104
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts.map +1 -1
- package/dist/bubbles/tool-bubble/people-search-tool.js +55 -10
- package/dist/bubbles/tool-bubble/people-search-tool.js.map +1 -1
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +20 -20
- package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +18 -18
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts.map +1 -1
- package/dist/bubbles/tool-bubble/web-scrape-tool.js +1 -1
- package/dist/bubbles/tool-bubble/web-scrape-tool.js.map +1 -1
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +14 -14
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +10 -10
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +36 -36
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +48 -48
- package/dist/bubbles.json +52057 -9
- package/dist/types/available-tools.d.ts +1 -1
- package/dist/types/available-tools.d.ts.map +1 -1
- package/dist/types/available-tools.js +1 -0
- package/dist/types/available-tools.js.map +1 -1
- package/package.json +3 -3
|
@@ -23,9 +23,9 @@ declare const ApifyParamsSchema: z.ZodObject<{
|
|
|
23
23
|
timeout: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
24
24
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
25
25
|
}, "strip", z.ZodTypeAny, {
|
|
26
|
-
limit: number;
|
|
27
26
|
input: Record<string, unknown>;
|
|
28
27
|
timeout: number;
|
|
28
|
+
limit: number;
|
|
29
29
|
waitForFinish: boolean;
|
|
30
30
|
search?: string | undefined;
|
|
31
31
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -34,8 +34,8 @@ declare const ApifyParamsSchema: z.ZodObject<{
|
|
|
34
34
|
input: Record<string, unknown>;
|
|
35
35
|
search?: string | undefined;
|
|
36
36
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
37
|
-
limit?: number | undefined;
|
|
38
37
|
timeout?: number | undefined;
|
|
38
|
+
limit?: number | undefined;
|
|
39
39
|
actorId?: string | undefined;
|
|
40
40
|
waitForFinish?: boolean | undefined;
|
|
41
41
|
}>;
|
|
@@ -159,9 +159,9 @@ export declare class ApifyBubble<T extends string = string> extends ServiceBubbl
|
|
|
159
159
|
timeout: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
160
160
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
161
161
|
}, "strip", z.ZodTypeAny, {
|
|
162
|
-
limit: number;
|
|
163
162
|
input: Record<string, unknown>;
|
|
164
163
|
timeout: number;
|
|
164
|
+
limit: number;
|
|
165
165
|
waitForFinish: boolean;
|
|
166
166
|
search?: string | undefined;
|
|
167
167
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -170,8 +170,8 @@ export declare class ApifyBubble<T extends string = string> extends ServiceBubbl
|
|
|
170
170
|
input: Record<string, unknown>;
|
|
171
171
|
search?: string | undefined;
|
|
172
172
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
173
|
-
limit?: number | undefined;
|
|
174
173
|
timeout?: number | undefined;
|
|
174
|
+
limit?: number | undefined;
|
|
175
175
|
actorId?: string | undefined;
|
|
176
176
|
waitForFinish?: boolean | undefined;
|
|
177
177
|
}>;
|
|
@@ -57,17 +57,17 @@ export declare class BrowserBaseBubble<T extends BrowserBaseParamsInput = Browse
|
|
|
57
57
|
httpOnly: import("zod").ZodBoolean;
|
|
58
58
|
secure: import("zod").ZodBoolean;
|
|
59
59
|
}, "strip", import("zod").ZodTypeAny, {
|
|
60
|
-
name: string;
|
|
61
60
|
value: string;
|
|
62
61
|
path: string;
|
|
62
|
+
name: string;
|
|
63
63
|
domain: string;
|
|
64
64
|
expires: number;
|
|
65
65
|
httpOnly: boolean;
|
|
66
66
|
secure: boolean;
|
|
67
67
|
}, {
|
|
68
|
-
name: string;
|
|
69
68
|
value: string;
|
|
70
69
|
path: string;
|
|
70
|
+
name: string;
|
|
71
71
|
domain: string;
|
|
72
72
|
expires: number;
|
|
73
73
|
httpOnly: boolean;
|
|
@@ -83,9 +83,9 @@ export declare class BrowserBaseBubble<T extends BrowserBaseParamsInput = Browse
|
|
|
83
83
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
84
84
|
context_id?: string | undefined;
|
|
85
85
|
cookies?: {
|
|
86
|
-
name: string;
|
|
87
86
|
value: string;
|
|
88
87
|
path: string;
|
|
88
|
+
name: string;
|
|
89
89
|
domain: string;
|
|
90
90
|
expires: number;
|
|
91
91
|
httpOnly: boolean;
|
|
@@ -96,9 +96,9 @@ export declare class BrowserBaseBubble<T extends BrowserBaseParamsInput = Browse
|
|
|
96
96
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
97
97
|
context_id?: string | undefined;
|
|
98
98
|
cookies?: {
|
|
99
|
-
name: string;
|
|
100
99
|
value: string;
|
|
101
100
|
path: string;
|
|
101
|
+
name: string;
|
|
102
102
|
domain: string;
|
|
103
103
|
expires: number;
|
|
104
104
|
httpOnly: boolean;
|
|
@@ -410,17 +410,17 @@ export declare class BrowserBaseBubble<T extends BrowserBaseParamsInput = Browse
|
|
|
410
410
|
httpOnly: import("zod").ZodBoolean;
|
|
411
411
|
secure: import("zod").ZodBoolean;
|
|
412
412
|
}, "strip", import("zod").ZodTypeAny, {
|
|
413
|
-
name: string;
|
|
414
413
|
value: string;
|
|
415
414
|
path: string;
|
|
415
|
+
name: string;
|
|
416
416
|
domain: string;
|
|
417
417
|
expires: number;
|
|
418
418
|
httpOnly: boolean;
|
|
419
419
|
secure: boolean;
|
|
420
420
|
}, {
|
|
421
|
-
name: string;
|
|
422
421
|
value: string;
|
|
423
422
|
path: string;
|
|
423
|
+
name: string;
|
|
424
424
|
domain: string;
|
|
425
425
|
expires: number;
|
|
426
426
|
httpOnly: boolean;
|
|
@@ -432,9 +432,9 @@ export declare class BrowserBaseBubble<T extends BrowserBaseParamsInput = Browse
|
|
|
432
432
|
success: boolean;
|
|
433
433
|
error: string;
|
|
434
434
|
cookies?: {
|
|
435
|
-
name: string;
|
|
436
435
|
value: string;
|
|
437
436
|
path: string;
|
|
437
|
+
name: string;
|
|
438
438
|
domain: string;
|
|
439
439
|
expires: number;
|
|
440
440
|
httpOnly: boolean;
|
|
@@ -445,9 +445,9 @@ export declare class BrowserBaseBubble<T extends BrowserBaseParamsInput = Browse
|
|
|
445
445
|
success: boolean;
|
|
446
446
|
error: string;
|
|
447
447
|
cookies?: {
|
|
448
|
-
name: string;
|
|
449
448
|
value: string;
|
|
450
449
|
path: string;
|
|
450
|
+
name: string;
|
|
451
451
|
domain: string;
|
|
452
452
|
expires: number;
|
|
453
453
|
httpOnly: boolean;
|