@bubblelab/bubble-core 0.1.98 → 0.1.99
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 +72 -72
- package/dist/bubbles/service-bubble/ai-agent.d.ts +84 -84
- package/dist/bubbles/service-bubble/airtable.d.ts +100 -100
- package/dist/bubbles/service-bubble/apify/apify.d.ts +14 -14
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +74 -74
- package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +102 -102
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +4 -4
- package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +4 -4
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +4 -4
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +8 -8
- package/dist/bubbles/service-bubble/firecrawl.d.ts +272 -272
- package/dist/bubbles/service-bubble/followupboss.d.ts +4 -4
- package/dist/bubbles/service-bubble/github.d.ts +40 -40
- package/dist/bubbles/service-bubble/gmail.d.ts +104 -104
- package/dist/bubbles/service-bubble/google-calendar.d.ts +80 -80
- package/dist/bubbles/service-bubble/google-drive.d.ts +40 -40
- package/dist/bubbles/service-bubble/http.d.ts +4 -4
- package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
- package/dist/bubbles/service-bubble/jira/jira.d.ts +12 -12
- package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +14 -14
- package/dist/bubbles/service-bubble/notion/notion.d.ts +68 -68
- package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
- package/dist/bubbles/service-bubble/resend.d.ts +24 -24
- package/dist/bubbles/service-bubble/resend.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/resend.js +9 -7
- package/dist/bubbles/service-bubble/resend.js.map +1 -1
- package/dist/bubbles/service-bubble/slack/slack.d.ts +68 -68
- package/dist/bubbles/service-bubble/storage.d.ts +20 -20
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +211 -4
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/stripe/stripe.js +87 -2
- package/dist/bubbles/service-bubble/stripe/stripe.js.map +1 -1
- package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +243 -4
- package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/stripe/stripe.schema.js +118 -0
- package/dist/bubbles/service-bubble/stripe/stripe.schema.js.map +1 -1
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +2 -2
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.schema.d.ts +2 -2
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +52 -52
- package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +16 -16
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +46 -46
- package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +10 -10
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +44 -44
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +16 -16
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +2 -2
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +26 -26
- package/dist/bubbles.json +306 -14
- package/package.json +4 -4
|
@@ -318,16 +318,16 @@ export declare class BrowserBaseBubble<T extends BrowserBaseParamsInput = Browse
|
|
|
318
318
|
credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
|
|
319
319
|
}, "strip", import("zod").ZodTypeAny, {
|
|
320
320
|
operation: "get_content";
|
|
321
|
-
content_type: "text" | "html" | "outer_html";
|
|
322
321
|
session_id: string;
|
|
322
|
+
content_type: "text" | "html" | "outer_html";
|
|
323
323
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
324
324
|
selector?: string | undefined;
|
|
325
325
|
}, {
|
|
326
326
|
operation: "get_content";
|
|
327
327
|
session_id: string;
|
|
328
328
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
329
|
-
content_type?: "text" | "html" | "outer_html" | undefined;
|
|
330
329
|
selector?: string | undefined;
|
|
330
|
+
content_type?: "text" | "html" | "outer_html" | undefined;
|
|
331
331
|
}>, import("zod").ZodObject<{
|
|
332
332
|
operation: import("zod").ZodLiteral<"screenshot">;
|
|
333
333
|
session_id: import("zod").ZodString;
|
|
@@ -501,14 +501,14 @@ export declare class BrowserBaseBubble<T extends BrowserBaseParamsInput = Browse
|
|
|
501
501
|
error: string;
|
|
502
502
|
success: boolean;
|
|
503
503
|
operation: "screenshot";
|
|
504
|
-
data?: string | undefined;
|
|
505
504
|
format?: string | undefined;
|
|
505
|
+
data?: string | undefined;
|
|
506
506
|
}, {
|
|
507
507
|
error: string;
|
|
508
508
|
success: boolean;
|
|
509
509
|
operation: "screenshot";
|
|
510
|
-
data?: string | undefined;
|
|
511
510
|
format?: string | undefined;
|
|
511
|
+
data?: string | undefined;
|
|
512
512
|
}>, import("zod").ZodObject<{
|
|
513
513
|
operation: import("zod").ZodLiteral<"wait">;
|
|
514
514
|
success: import("zod").ZodBoolean;
|
|
@@ -499,16 +499,16 @@ export declare const BrowserBaseParamsSchema: z.ZodDiscriminatedUnion<"operation
|
|
|
499
499
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
500
500
|
}, "strip", z.ZodTypeAny, {
|
|
501
501
|
operation: "get_content";
|
|
502
|
-
content_type: "text" | "html" | "outer_html";
|
|
503
502
|
session_id: string;
|
|
503
|
+
content_type: "text" | "html" | "outer_html";
|
|
504
504
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
505
505
|
selector?: string | undefined;
|
|
506
506
|
}, {
|
|
507
507
|
operation: "get_content";
|
|
508
508
|
session_id: string;
|
|
509
509
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
510
|
-
content_type?: "text" | "html" | "outer_html" | undefined;
|
|
511
510
|
selector?: string | undefined;
|
|
511
|
+
content_type?: "text" | "html" | "outer_html" | undefined;
|
|
512
512
|
}>, z.ZodObject<{
|
|
513
513
|
operation: z.ZodLiteral<"screenshot">;
|
|
514
514
|
session_id: z.ZodString;
|
|
@@ -685,14 +685,14 @@ export declare const BrowserBaseResultSchema: z.ZodDiscriminatedUnion<"operation
|
|
|
685
685
|
error: string;
|
|
686
686
|
success: boolean;
|
|
687
687
|
operation: "screenshot";
|
|
688
|
-
data?: string | undefined;
|
|
689
688
|
format?: string | undefined;
|
|
689
|
+
data?: string | undefined;
|
|
690
690
|
}, {
|
|
691
691
|
error: string;
|
|
692
692
|
success: boolean;
|
|
693
693
|
operation: "screenshot";
|
|
694
|
-
data?: string | undefined;
|
|
695
694
|
format?: string | undefined;
|
|
695
|
+
data?: string | undefined;
|
|
696
696
|
}>, z.ZodObject<{
|
|
697
697
|
operation: z.ZodLiteral<"wait">;
|
|
698
698
|
success: z.ZodBoolean;
|
|
@@ -94,20 +94,20 @@ export declare class CrustdataBubble<T extends CrustdataParamsInput = CrustdataP
|
|
|
94
94
|
unit?: "km" | "mi" | "m" | "miles" | "meters" | "ft" | "feet" | undefined;
|
|
95
95
|
}>]>;
|
|
96
96
|
}, "strip", import("zod").ZodTypeAny, {
|
|
97
|
-
type: "in" | "=" | ">" | "<" | "!=" | "not_in" | "=>" | "=<" | "(.)" | "[.]" | "geo_distance";
|
|
98
97
|
value: string | number | boolean | string[] | number[] | {
|
|
99
98
|
location: string;
|
|
100
99
|
distance: number;
|
|
101
100
|
unit?: "km" | "mi" | "m" | "miles" | "meters" | "ft" | "feet" | undefined;
|
|
102
101
|
};
|
|
102
|
+
type: "=" | "in" | ">" | "<" | "!=" | "not_in" | "=>" | "=<" | "(.)" | "[.]" | "geo_distance";
|
|
103
103
|
column: string;
|
|
104
104
|
}, {
|
|
105
|
-
type: "in" | "=" | ">" | "<" | "!=" | "not_in" | "=>" | "=<" | "(.)" | "[.]" | "geo_distance";
|
|
106
105
|
value: string | number | boolean | string[] | number[] | {
|
|
107
106
|
location: string;
|
|
108
107
|
distance: number;
|
|
109
108
|
unit?: "km" | "mi" | "m" | "miles" | "meters" | "ft" | "feet" | undefined;
|
|
110
109
|
};
|
|
110
|
+
type: "=" | "in" | ">" | "<" | "!=" | "not_in" | "=>" | "=<" | "(.)" | "[.]" | "geo_distance";
|
|
111
111
|
column: string;
|
|
112
112
|
}>, import("zod").ZodType<import("./crustdata.schema.js").PersonDBFilterGroup, import("zod").ZodTypeDef, import("./crustdata.schema.js").PersonDBFilterGroup>]>;
|
|
113
113
|
sorts: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -137,12 +137,12 @@ export declare class CrustdataBubble<T extends CrustdataParamsInput = CrustdataP
|
|
|
137
137
|
}, "strip", import("zod").ZodTypeAny, {
|
|
138
138
|
operation: "person_search_db";
|
|
139
139
|
filters: {
|
|
140
|
-
type: "in" | "=" | ">" | "<" | "!=" | "not_in" | "=>" | "=<" | "(.)" | "[.]" | "geo_distance";
|
|
141
140
|
value: string | number | boolean | string[] | number[] | {
|
|
142
141
|
location: string;
|
|
143
142
|
distance: number;
|
|
144
143
|
unit?: "km" | "mi" | "m" | "miles" | "meters" | "ft" | "feet" | undefined;
|
|
145
144
|
};
|
|
145
|
+
type: "=" | "in" | ">" | "<" | "!=" | "not_in" | "=>" | "=<" | "(.)" | "[.]" | "geo_distance";
|
|
146
146
|
column: string;
|
|
147
147
|
} | import("./crustdata.schema.js").PersonDBFilterGroup;
|
|
148
148
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -160,12 +160,12 @@ export declare class CrustdataBubble<T extends CrustdataParamsInput = CrustdataP
|
|
|
160
160
|
}, {
|
|
161
161
|
operation: "person_search_db";
|
|
162
162
|
filters: {
|
|
163
|
-
type: "in" | "=" | ">" | "<" | "!=" | "not_in" | "=>" | "=<" | "(.)" | "[.]" | "geo_distance";
|
|
164
163
|
value: string | number | boolean | string[] | number[] | {
|
|
165
164
|
location: string;
|
|
166
165
|
distance: number;
|
|
167
166
|
unit?: "km" | "mi" | "m" | "miles" | "meters" | "ft" | "feet" | undefined;
|
|
168
167
|
};
|
|
168
|
+
type: "=" | "in" | ">" | "<" | "!=" | "not_in" | "=>" | "=<" | "(.)" | "[.]" | "geo_distance";
|
|
169
169
|
column: string;
|
|
170
170
|
} | import("./crustdata.schema.js").PersonDBFilterGroup;
|
|
171
171
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -1244,20 +1244,20 @@ export declare const PersonDBFilterConditionSchema: z.ZodObject<{
|
|
|
1244
1244
|
unit?: "km" | "mi" | "m" | "miles" | "meters" | "ft" | "feet" | undefined;
|
|
1245
1245
|
}>]>;
|
|
1246
1246
|
}, "strip", z.ZodTypeAny, {
|
|
1247
|
-
type: "in" | "=" | ">" | "<" | "!=" | "not_in" | "=>" | "=<" | "(.)" | "[.]" | "geo_distance";
|
|
1248
1247
|
value: string | number | boolean | string[] | number[] | {
|
|
1249
1248
|
location: string;
|
|
1250
1249
|
distance: number;
|
|
1251
1250
|
unit?: "km" | "mi" | "m" | "miles" | "meters" | "ft" | "feet" | undefined;
|
|
1252
1251
|
};
|
|
1252
|
+
type: "=" | "in" | ">" | "<" | "!=" | "not_in" | "=>" | "=<" | "(.)" | "[.]" | "geo_distance";
|
|
1253
1253
|
column: string;
|
|
1254
1254
|
}, {
|
|
1255
|
-
type: "in" | "=" | ">" | "<" | "!=" | "not_in" | "=>" | "=<" | "(.)" | "[.]" | "geo_distance";
|
|
1256
1255
|
value: string | number | boolean | string[] | number[] | {
|
|
1257
1256
|
location: string;
|
|
1258
1257
|
distance: number;
|
|
1259
1258
|
unit?: "km" | "mi" | "m" | "miles" | "meters" | "ft" | "feet" | undefined;
|
|
1260
1259
|
};
|
|
1260
|
+
type: "=" | "in" | ">" | "<" | "!=" | "not_in" | "=>" | "=<" | "(.)" | "[.]" | "geo_distance";
|
|
1261
1261
|
column: string;
|
|
1262
1262
|
}>;
|
|
1263
1263
|
export declare const PersonDBFilterGroupSchema: z.ZodType<PersonDBFilterGroup>;
|
|
@@ -1278,20 +1278,20 @@ export declare const PersonDBFiltersSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1278
1278
|
unit?: "km" | "mi" | "m" | "miles" | "meters" | "ft" | "feet" | undefined;
|
|
1279
1279
|
}>]>;
|
|
1280
1280
|
}, "strip", z.ZodTypeAny, {
|
|
1281
|
-
type: "in" | "=" | ">" | "<" | "!=" | "not_in" | "=>" | "=<" | "(.)" | "[.]" | "geo_distance";
|
|
1282
1281
|
value: string | number | boolean | string[] | number[] | {
|
|
1283
1282
|
location: string;
|
|
1284
1283
|
distance: number;
|
|
1285
1284
|
unit?: "km" | "mi" | "m" | "miles" | "meters" | "ft" | "feet" | undefined;
|
|
1286
1285
|
};
|
|
1286
|
+
type: "=" | "in" | ">" | "<" | "!=" | "not_in" | "=>" | "=<" | "(.)" | "[.]" | "geo_distance";
|
|
1287
1287
|
column: string;
|
|
1288
1288
|
}, {
|
|
1289
|
-
type: "in" | "=" | ">" | "<" | "!=" | "not_in" | "=>" | "=<" | "(.)" | "[.]" | "geo_distance";
|
|
1290
1289
|
value: string | number | boolean | string[] | number[] | {
|
|
1291
1290
|
location: string;
|
|
1292
1291
|
distance: number;
|
|
1293
1292
|
unit?: "km" | "mi" | "m" | "miles" | "meters" | "ft" | "feet" | undefined;
|
|
1294
1293
|
};
|
|
1294
|
+
type: "=" | "in" | ">" | "<" | "!=" | "not_in" | "=>" | "=<" | "(.)" | "[.]" | "geo_distance";
|
|
1295
1295
|
column: string;
|
|
1296
1296
|
}>, z.ZodType<PersonDBFilterGroup, z.ZodTypeDef, PersonDBFilterGroup>]>;
|
|
1297
1297
|
export declare const PersonDBSortSchema: z.ZodObject<{
|
|
@@ -2308,20 +2308,20 @@ export declare const CrustdataParamsSchema: z.ZodDiscriminatedUnion<"operation",
|
|
|
2308
2308
|
unit?: "km" | "mi" | "m" | "miles" | "meters" | "ft" | "feet" | undefined;
|
|
2309
2309
|
}>]>;
|
|
2310
2310
|
}, "strip", z.ZodTypeAny, {
|
|
2311
|
-
type: "in" | "=" | ">" | "<" | "!=" | "not_in" | "=>" | "=<" | "(.)" | "[.]" | "geo_distance";
|
|
2312
2311
|
value: string | number | boolean | string[] | number[] | {
|
|
2313
2312
|
location: string;
|
|
2314
2313
|
distance: number;
|
|
2315
2314
|
unit?: "km" | "mi" | "m" | "miles" | "meters" | "ft" | "feet" | undefined;
|
|
2316
2315
|
};
|
|
2316
|
+
type: "=" | "in" | ">" | "<" | "!=" | "not_in" | "=>" | "=<" | "(.)" | "[.]" | "geo_distance";
|
|
2317
2317
|
column: string;
|
|
2318
2318
|
}, {
|
|
2319
|
-
type: "in" | "=" | ">" | "<" | "!=" | "not_in" | "=>" | "=<" | "(.)" | "[.]" | "geo_distance";
|
|
2320
2319
|
value: string | number | boolean | string[] | number[] | {
|
|
2321
2320
|
location: string;
|
|
2322
2321
|
distance: number;
|
|
2323
2322
|
unit?: "km" | "mi" | "m" | "miles" | "meters" | "ft" | "feet" | undefined;
|
|
2324
2323
|
};
|
|
2324
|
+
type: "=" | "in" | ">" | "<" | "!=" | "not_in" | "=>" | "=<" | "(.)" | "[.]" | "geo_distance";
|
|
2325
2325
|
column: string;
|
|
2326
2326
|
}>, z.ZodType<PersonDBFilterGroup, z.ZodTypeDef, PersonDBFilterGroup>]>;
|
|
2327
2327
|
sorts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -2351,12 +2351,12 @@ export declare const CrustdataParamsSchema: z.ZodDiscriminatedUnion<"operation",
|
|
|
2351
2351
|
}, "strip", z.ZodTypeAny, {
|
|
2352
2352
|
operation: "person_search_db";
|
|
2353
2353
|
filters: {
|
|
2354
|
-
type: "in" | "=" | ">" | "<" | "!=" | "not_in" | "=>" | "=<" | "(.)" | "[.]" | "geo_distance";
|
|
2355
2354
|
value: string | number | boolean | string[] | number[] | {
|
|
2356
2355
|
location: string;
|
|
2357
2356
|
distance: number;
|
|
2358
2357
|
unit?: "km" | "mi" | "m" | "miles" | "meters" | "ft" | "feet" | undefined;
|
|
2359
2358
|
};
|
|
2359
|
+
type: "=" | "in" | ">" | "<" | "!=" | "not_in" | "=>" | "=<" | "(.)" | "[.]" | "geo_distance";
|
|
2360
2360
|
column: string;
|
|
2361
2361
|
} | PersonDBFilterGroup;
|
|
2362
2362
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -2374,12 +2374,12 @@ export declare const CrustdataParamsSchema: z.ZodDiscriminatedUnion<"operation",
|
|
|
2374
2374
|
}, {
|
|
2375
2375
|
operation: "person_search_db";
|
|
2376
2376
|
filters: {
|
|
2377
|
-
type: "in" | "=" | ">" | "<" | "!=" | "not_in" | "=>" | "=<" | "(.)" | "[.]" | "geo_distance";
|
|
2378
2377
|
value: string | number | boolean | string[] | number[] | {
|
|
2379
2378
|
location: string;
|
|
2380
2379
|
distance: number;
|
|
2381
2380
|
unit?: "km" | "mi" | "m" | "miles" | "meters" | "ft" | "feet" | undefined;
|
|
2382
2381
|
};
|
|
2382
|
+
type: "=" | "in" | ">" | "<" | "!=" | "not_in" | "=>" | "=<" | "(.)" | "[.]" | "geo_distance";
|
|
2383
2383
|
column: string;
|
|
2384
2384
|
} | PersonDBFilterGroup;
|
|
2385
2385
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|