@bubblelab/bubble-core 0.1.26 → 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 +60 -60
- package/dist/bubbles/service-bubble/agi-inc.d.ts +56 -56
- package/dist/bubbles/service-bubble/airtable.d.ts +104 -104
- package/dist/bubbles/service-bubble/apify/apify.d.ts +8 -8
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +22 -22
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +28 -28
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +24 -24
- package/dist/bubbles/service-bubble/firecrawl.d.ts +308 -308
- package/dist/bubbles/service-bubble/followupboss.d.ts +392 -392
- package/dist/bubbles/service-bubble/github.d.ts +64 -64
- package/dist/bubbles/service-bubble/gmail.d.ts +64 -64
- package/dist/bubbles/service-bubble/google-calendar.d.ts +36 -36
- package/dist/bubbles/service-bubble/google-drive.d.ts +44 -44
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +55 -55
- 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/insforge-db.d.ts +4 -4
- package/dist/bubbles/service-bubble/notion/notion.d.ts +100 -100
- 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 +202 -202
- package/dist/bubbles/service-bubble/storage.d.ts +40 -40
- package/dist/bubbles/service-bubble/telegram.d.ts +512 -512
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +148 -148
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +28 -28
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +129 -129
- package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +217 -217
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts.map +1 -1
- package/dist/bubbles/tool-bubble/people-search-tool.js +33 -4
- package/dist/bubbles/tool-bubble/people-search-tool.js.map +1 -1
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +12 -12
- 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 +12 -12
- package/dist/bubbles/tool-bubble/twitter-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 +12 -12
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +24 -24
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +48 -48
- package/dist/bubbles.json +19 -19
- package/package.json +2 -2
|
@@ -23,19 +23,19 @@ 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
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
31
30
|
search?: string | undefined;
|
|
31
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
32
32
|
actorId?: string | undefined;
|
|
33
33
|
}, {
|
|
34
34
|
input: Record<string, unknown>;
|
|
35
|
-
limit?: number | undefined;
|
|
36
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
37
35
|
search?: string | undefined;
|
|
36
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
38
37
|
timeout?: number | undefined;
|
|
38
|
+
limit?: number | undefined;
|
|
39
39
|
actorId?: string | undefined;
|
|
40
40
|
waitForFinish?: boolean | undefined;
|
|
41
41
|
}>;
|
|
@@ -159,19 +159,19 @@ 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
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
167
166
|
search?: string | undefined;
|
|
167
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
168
168
|
actorId?: string | undefined;
|
|
169
169
|
}, {
|
|
170
170
|
input: Record<string, unknown>;
|
|
171
|
-
limit?: number | undefined;
|
|
172
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
173
171
|
search?: string | undefined;
|
|
172
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
174
173
|
timeout?: number | undefined;
|
|
174
|
+
limit?: number | undefined;
|
|
175
175
|
actorId?: string | undefined;
|
|
176
176
|
waitForFinish?: boolean | undefined;
|
|
177
177
|
}>;
|
|
@@ -114,15 +114,15 @@ export declare class BrowserBaseBubble<T extends BrowserBaseParamsInput = Browse
|
|
|
114
114
|
timeout: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>;
|
|
115
115
|
credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
|
|
116
116
|
}, "strip", import("zod").ZodTypeAny, {
|
|
117
|
-
url: string;
|
|
118
117
|
operation: "navigate";
|
|
118
|
+
url: string;
|
|
119
119
|
timeout: number;
|
|
120
120
|
session_id: string;
|
|
121
121
|
wait_until: "load" | "domcontentloaded" | "networkidle0" | "networkidle2";
|
|
122
122
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
123
123
|
}, {
|
|
124
|
-
url: string;
|
|
125
124
|
operation: "navigate";
|
|
125
|
+
url: string;
|
|
126
126
|
session_id: string;
|
|
127
127
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
128
128
|
timeout?: number | undefined;
|
|
@@ -286,16 +286,16 @@ export declare class BrowserBaseBubble<T extends BrowserBaseParamsInput = Browse
|
|
|
286
286
|
debug_url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
287
287
|
error: import("zod").ZodString;
|
|
288
288
|
}, "strip", import("zod").ZodTypeAny, {
|
|
289
|
+
operation: "start_session";
|
|
289
290
|
success: boolean;
|
|
290
291
|
error: string;
|
|
291
|
-
operation: "start_session";
|
|
292
292
|
session_id?: string | undefined;
|
|
293
293
|
context_id?: string | undefined;
|
|
294
294
|
debug_url?: string | undefined;
|
|
295
295
|
}, {
|
|
296
|
+
operation: "start_session";
|
|
296
297
|
success: boolean;
|
|
297
298
|
error: string;
|
|
298
|
-
operation: "start_session";
|
|
299
299
|
session_id?: string | undefined;
|
|
300
300
|
context_id?: string | undefined;
|
|
301
301
|
debug_url?: string | undefined;
|
|
@@ -305,53 +305,53 @@ export declare class BrowserBaseBubble<T extends BrowserBaseParamsInput = Browse
|
|
|
305
305
|
url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
306
306
|
error: import("zod").ZodString;
|
|
307
307
|
}, "strip", import("zod").ZodTypeAny, {
|
|
308
|
+
operation: "navigate";
|
|
308
309
|
success: boolean;
|
|
309
310
|
error: string;
|
|
310
|
-
operation: "navigate";
|
|
311
311
|
url?: string | undefined;
|
|
312
312
|
}, {
|
|
313
|
+
operation: "navigate";
|
|
313
314
|
success: boolean;
|
|
314
315
|
error: string;
|
|
315
|
-
operation: "navigate";
|
|
316
316
|
url?: string | undefined;
|
|
317
317
|
}>, import("zod").ZodObject<{
|
|
318
318
|
operation: import("zod").ZodLiteral<"click">;
|
|
319
319
|
success: import("zod").ZodBoolean;
|
|
320
320
|
error: import("zod").ZodString;
|
|
321
321
|
}, "strip", import("zod").ZodTypeAny, {
|
|
322
|
+
operation: "click";
|
|
322
323
|
success: boolean;
|
|
323
324
|
error: string;
|
|
324
|
-
operation: "click";
|
|
325
325
|
}, {
|
|
326
|
+
operation: "click";
|
|
326
327
|
success: boolean;
|
|
327
328
|
error: string;
|
|
328
|
-
operation: "click";
|
|
329
329
|
}>, import("zod").ZodObject<{
|
|
330
330
|
operation: import("zod").ZodLiteral<"type">;
|
|
331
331
|
success: import("zod").ZodBoolean;
|
|
332
332
|
error: import("zod").ZodString;
|
|
333
333
|
}, "strip", import("zod").ZodTypeAny, {
|
|
334
|
+
operation: "type";
|
|
334
335
|
success: boolean;
|
|
335
336
|
error: string;
|
|
336
|
-
operation: "type";
|
|
337
337
|
}, {
|
|
338
|
+
operation: "type";
|
|
338
339
|
success: boolean;
|
|
339
340
|
error: string;
|
|
340
|
-
operation: "type";
|
|
341
341
|
}>, import("zod").ZodObject<{
|
|
342
342
|
operation: import("zod").ZodLiteral<"evaluate">;
|
|
343
343
|
success: import("zod").ZodBoolean;
|
|
344
344
|
result: import("zod").ZodOptional<import("zod").ZodUnknown>;
|
|
345
345
|
error: import("zod").ZodString;
|
|
346
346
|
}, "strip", import("zod").ZodTypeAny, {
|
|
347
|
+
operation: "evaluate";
|
|
347
348
|
success: boolean;
|
|
348
349
|
error: string;
|
|
349
|
-
operation: "evaluate";
|
|
350
350
|
result?: unknown;
|
|
351
351
|
}, {
|
|
352
|
+
operation: "evaluate";
|
|
352
353
|
success: boolean;
|
|
353
354
|
error: string;
|
|
354
|
-
operation: "evaluate";
|
|
355
355
|
result?: unknown;
|
|
356
356
|
}>, import("zod").ZodObject<{
|
|
357
357
|
operation: import("zod").ZodLiteral<"get_content">;
|
|
@@ -359,14 +359,14 @@ export declare class BrowserBaseBubble<T extends BrowserBaseParamsInput = Browse
|
|
|
359
359
|
content: import("zod").ZodOptional<import("zod").ZodString>;
|
|
360
360
|
error: import("zod").ZodString;
|
|
361
361
|
}, "strip", import("zod").ZodTypeAny, {
|
|
362
|
+
operation: "get_content";
|
|
362
363
|
success: boolean;
|
|
363
364
|
error: string;
|
|
364
|
-
operation: "get_content";
|
|
365
365
|
content?: string | undefined;
|
|
366
366
|
}, {
|
|
367
|
+
operation: "get_content";
|
|
367
368
|
success: boolean;
|
|
368
369
|
error: string;
|
|
369
|
-
operation: "get_content";
|
|
370
370
|
content?: string | undefined;
|
|
371
371
|
}>, import("zod").ZodObject<{
|
|
372
372
|
operation: import("zod").ZodLiteral<"screenshot">;
|
|
@@ -375,15 +375,15 @@ export declare class BrowserBaseBubble<T extends BrowserBaseParamsInput = Browse
|
|
|
375
375
|
format: import("zod").ZodOptional<import("zod").ZodString>;
|
|
376
376
|
error: import("zod").ZodString;
|
|
377
377
|
}, "strip", import("zod").ZodTypeAny, {
|
|
378
|
+
operation: "screenshot";
|
|
378
379
|
success: boolean;
|
|
379
380
|
error: string;
|
|
380
|
-
operation: "screenshot";
|
|
381
381
|
format?: string | undefined;
|
|
382
382
|
data?: string | undefined;
|
|
383
383
|
}, {
|
|
384
|
+
operation: "screenshot";
|
|
384
385
|
success: boolean;
|
|
385
386
|
error: string;
|
|
386
|
-
operation: "screenshot";
|
|
387
387
|
format?: string | undefined;
|
|
388
388
|
data?: string | undefined;
|
|
389
389
|
}>, import("zod").ZodObject<{
|
|
@@ -391,13 +391,13 @@ export declare class BrowserBaseBubble<T extends BrowserBaseParamsInput = Browse
|
|
|
391
391
|
success: import("zod").ZodBoolean;
|
|
392
392
|
error: import("zod").ZodString;
|
|
393
393
|
}, "strip", import("zod").ZodTypeAny, {
|
|
394
|
+
operation: "wait";
|
|
394
395
|
success: boolean;
|
|
395
396
|
error: string;
|
|
396
|
-
operation: "wait";
|
|
397
397
|
}, {
|
|
398
|
+
operation: "wait";
|
|
398
399
|
success: boolean;
|
|
399
400
|
error: string;
|
|
400
|
-
operation: "wait";
|
|
401
401
|
}>, import("zod").ZodObject<{
|
|
402
402
|
operation: import("zod").ZodLiteral<"get_cookies">;
|
|
403
403
|
success: import("zod").ZodBoolean;
|
|
@@ -428,9 +428,9 @@ export declare class BrowserBaseBubble<T extends BrowserBaseParamsInput = Browse
|
|
|
428
428
|
}>, "many">>;
|
|
429
429
|
error: import("zod").ZodString;
|
|
430
430
|
}, "strip", import("zod").ZodTypeAny, {
|
|
431
|
+
operation: "get_cookies";
|
|
431
432
|
success: boolean;
|
|
432
433
|
error: string;
|
|
433
|
-
operation: "get_cookies";
|
|
434
434
|
cookies?: {
|
|
435
435
|
value: string;
|
|
436
436
|
path: string;
|
|
@@ -441,9 +441,9 @@ export declare class BrowserBaseBubble<T extends BrowserBaseParamsInput = Browse
|
|
|
441
441
|
secure: boolean;
|
|
442
442
|
}[] | undefined;
|
|
443
443
|
}, {
|
|
444
|
+
operation: "get_cookies";
|
|
444
445
|
success: boolean;
|
|
445
446
|
error: string;
|
|
446
|
-
operation: "get_cookies";
|
|
447
447
|
cookies?: {
|
|
448
448
|
value: string;
|
|
449
449
|
path: string;
|
|
@@ -458,13 +458,13 @@ export declare class BrowserBaseBubble<T extends BrowserBaseParamsInput = Browse
|
|
|
458
458
|
success: import("zod").ZodBoolean;
|
|
459
459
|
error: import("zod").ZodString;
|
|
460
460
|
}, "strip", import("zod").ZodTypeAny, {
|
|
461
|
+
operation: "end_session";
|
|
461
462
|
success: boolean;
|
|
462
463
|
error: string;
|
|
463
|
-
operation: "end_session";
|
|
464
464
|
}, {
|
|
465
|
+
operation: "end_session";
|
|
465
466
|
success: boolean;
|
|
466
467
|
error: string;
|
|
467
|
-
operation: "end_session";
|
|
468
468
|
}>]>;
|
|
469
469
|
static readonly shortDescription = "Browser automation service using BrowserBase cloud browsers";
|
|
470
470
|
static readonly longDescription = "\n BrowserBase service integration for cloud-based browser automation.\n\n Features:\n - Cloud-based browser sessions\n - Session persistence via context IDs\n - Cookie injection for authenticated sessions\n - Full page automation (click, type, evaluate)\n - Screenshot and content extraction\n - Cross-browser support\n\n Use cases:\n - Automated shopping workflows (Amazon, etc.)\n - Web scraping with authentication\n - Form automation and submission\n - Browser-based testing\n\n Security Features:\n - Sessions are isolated in BrowserBase cloud\n - Credentials are handled securely\n - Sessions are properly closed and cleaned up\n ";
|
|
@@ -37,17 +37,17 @@ export declare class CrustdataBubble<T extends CrustdataParamsInput = CrustdataP
|
|
|
37
37
|
}, "strip", import("zod").ZodTypeAny, {
|
|
38
38
|
operation: "identify";
|
|
39
39
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
40
|
+
count?: number | undefined;
|
|
40
41
|
query_company_name?: string | undefined;
|
|
41
42
|
query_company_website?: string | undefined;
|
|
42
43
|
query_company_linkedin_url?: string | undefined;
|
|
43
|
-
count?: number | undefined;
|
|
44
44
|
}, {
|
|
45
45
|
operation: "identify";
|
|
46
46
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
47
|
+
count?: number | undefined;
|
|
47
48
|
query_company_name?: string | undefined;
|
|
48
49
|
query_company_website?: string | undefined;
|
|
49
50
|
query_company_linkedin_url?: string | undefined;
|
|
50
|
-
count?: number | undefined;
|
|
51
51
|
}>, import("zod").ZodObject<{
|
|
52
52
|
operation: import("zod").ZodLiteral<"enrich">;
|
|
53
53
|
company_domain: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -59,18 +59,18 @@ export declare class CrustdataBubble<T extends CrustdataParamsInput = CrustdataP
|
|
|
59
59
|
}, "strip", import("zod").ZodTypeAny, {
|
|
60
60
|
operation: "enrich";
|
|
61
61
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
62
|
+
fields?: string | undefined;
|
|
62
63
|
company_domain?: string | undefined;
|
|
63
64
|
company_linkedin_url?: string | undefined;
|
|
64
65
|
company_id?: number | undefined;
|
|
65
|
-
fields?: string | undefined;
|
|
66
66
|
enrich_realtime?: boolean | undefined;
|
|
67
67
|
}, {
|
|
68
68
|
operation: "enrich";
|
|
69
69
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
70
|
+
fields?: string | undefined;
|
|
70
71
|
company_domain?: string | undefined;
|
|
71
72
|
company_linkedin_url?: string | undefined;
|
|
72
73
|
company_id?: number | undefined;
|
|
73
|
-
fields?: string | undefined;
|
|
74
74
|
enrich_realtime?: boolean | undefined;
|
|
75
75
|
}>, import("zod").ZodObject<{
|
|
76
76
|
operation: import("zod").ZodLiteral<"person_search_db">;
|
|
@@ -84,27 +84,27 @@ export declare class CrustdataBubble<T extends CrustdataParamsInput = CrustdataP
|
|
|
84
84
|
}, "strip", import("zod").ZodTypeAny, {
|
|
85
85
|
location: string;
|
|
86
86
|
distance: number;
|
|
87
|
-
unit?: "km" | "mi" | "
|
|
87
|
+
unit?: "km" | "mi" | "m" | "miles" | "meters" | "ft" | "feet" | undefined;
|
|
88
88
|
}, {
|
|
89
89
|
location: string;
|
|
90
90
|
distance: number;
|
|
91
|
-
unit?: "km" | "mi" | "
|
|
91
|
+
unit?: "km" | "mi" | "m" | "miles" | "meters" | "ft" | "feet" | undefined;
|
|
92
92
|
}>]>;
|
|
93
93
|
}, "strip", import("zod").ZodTypeAny, {
|
|
94
94
|
value: string | number | boolean | string[] | number[] | {
|
|
95
95
|
location: string;
|
|
96
96
|
distance: number;
|
|
97
|
-
unit?: "km" | "mi" | "
|
|
97
|
+
unit?: "km" | "mi" | "m" | "miles" | "meters" | "ft" | "feet" | undefined;
|
|
98
98
|
};
|
|
99
|
-
type: "in" | "=" | "
|
|
99
|
+
type: "in" | "=" | ">" | "<" | "!=" | "not_in" | "=>" | "=<" | "(.)" | "[.]" | "geo_distance";
|
|
100
100
|
column: string;
|
|
101
101
|
}, {
|
|
102
102
|
value: string | number | boolean | string[] | number[] | {
|
|
103
103
|
location: string;
|
|
104
104
|
distance: number;
|
|
105
|
-
unit?: "km" | "mi" | "
|
|
105
|
+
unit?: "km" | "mi" | "m" | "miles" | "meters" | "ft" | "feet" | undefined;
|
|
106
106
|
};
|
|
107
|
-
type: "in" | "=" | "
|
|
107
|
+
type: "in" | "=" | ">" | "<" | "!=" | "not_in" | "=>" | "=<" | "(.)" | "[.]" | "geo_distance";
|
|
108
108
|
column: string;
|
|
109
109
|
}>, import("zod").ZodType<import("./crustdata.schema.js").PersonDBFilterGroup, import("zod").ZodTypeDef, import("./crustdata.schema.js").PersonDBFilterGroup>]>;
|
|
110
110
|
sorts: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -137,18 +137,18 @@ export declare class CrustdataBubble<T extends CrustdataParamsInput = CrustdataP
|
|
|
137
137
|
value: string | number | boolean | string[] | number[] | {
|
|
138
138
|
location: string;
|
|
139
139
|
distance: number;
|
|
140
|
-
unit?: "km" | "mi" | "
|
|
140
|
+
unit?: "km" | "mi" | "m" | "miles" | "meters" | "ft" | "feet" | undefined;
|
|
141
141
|
};
|
|
142
|
-
type: "in" | "=" | "
|
|
142
|
+
type: "in" | "=" | ">" | "<" | "!=" | "not_in" | "=>" | "=<" | "(.)" | "[.]" | "geo_distance";
|
|
143
143
|
column: string;
|
|
144
144
|
} | import("./crustdata.schema.js").PersonDBFilterGroup;
|
|
145
|
-
limit?: number | undefined;
|
|
146
145
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
146
|
+
limit?: number | undefined;
|
|
147
|
+
cursor?: string | undefined;
|
|
147
148
|
sorts?: {
|
|
148
149
|
column: string;
|
|
149
150
|
order: "asc" | "desc";
|
|
150
151
|
}[] | undefined;
|
|
151
|
-
cursor?: string | undefined;
|
|
152
152
|
preview?: boolean | undefined;
|
|
153
153
|
post_processing?: {
|
|
154
154
|
exclude_profiles?: string[] | undefined;
|
|
@@ -160,18 +160,18 @@ export declare class CrustdataBubble<T extends CrustdataParamsInput = CrustdataP
|
|
|
160
160
|
value: string | number | boolean | string[] | number[] | {
|
|
161
161
|
location: string;
|
|
162
162
|
distance: number;
|
|
163
|
-
unit?: "km" | "mi" | "
|
|
163
|
+
unit?: "km" | "mi" | "m" | "miles" | "meters" | "ft" | "feet" | undefined;
|
|
164
164
|
};
|
|
165
|
-
type: "in" | "=" | "
|
|
165
|
+
type: "in" | "=" | ">" | "<" | "!=" | "not_in" | "=>" | "=<" | "(.)" | "[.]" | "geo_distance";
|
|
166
166
|
column: string;
|
|
167
167
|
} | import("./crustdata.schema.js").PersonDBFilterGroup;
|
|
168
|
-
limit?: number | undefined;
|
|
169
168
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
169
|
+
limit?: number | undefined;
|
|
170
|
+
cursor?: string | undefined;
|
|
170
171
|
sorts?: {
|
|
171
172
|
column: string;
|
|
172
173
|
order: "asc" | "desc";
|
|
173
174
|
}[] | undefined;
|
|
174
|
-
cursor?: string | undefined;
|
|
175
175
|
preview?: boolean | undefined;
|
|
176
176
|
post_processing?: {
|
|
177
177
|
exclude_profiles?: string[] | undefined;
|
|
@@ -205,9 +205,9 @@ export declare class CrustdataBubble<T extends CrustdataParamsInput = CrustdataP
|
|
|
205
205
|
}, import("zod").ZodTypeAny, "passthrough">>, "many">>;
|
|
206
206
|
error: import("zod").ZodString;
|
|
207
207
|
}, "strip", import("zod").ZodTypeAny, {
|
|
208
|
+
operation: "identify";
|
|
208
209
|
success: boolean;
|
|
209
210
|
error: string;
|
|
210
|
-
operation: "identify";
|
|
211
211
|
results?: import("zod").objectOutputType<{
|
|
212
212
|
company_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
213
213
|
company_name: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -217,9 +217,9 @@ export declare class CrustdataBubble<T extends CrustdataParamsInput = CrustdataP
|
|
|
217
217
|
score: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
218
218
|
}, import("zod").ZodTypeAny, "passthrough">[] | undefined;
|
|
219
219
|
}, {
|
|
220
|
+
operation: "identify";
|
|
220
221
|
success: boolean;
|
|
221
222
|
error: string;
|
|
222
|
-
operation: "identify";
|
|
223
223
|
results?: import("zod").objectInputType<{
|
|
224
224
|
company_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
225
225
|
company_name: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -1007,9 +1007,9 @@ export declare class CrustdataBubble<T extends CrustdataParamsInput = CrustdataP
|
|
|
1007
1007
|
}>>>;
|
|
1008
1008
|
error: import("zod").ZodString;
|
|
1009
1009
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1010
|
+
operation: "enrich";
|
|
1010
1011
|
success: boolean;
|
|
1011
1012
|
error: string;
|
|
1012
|
-
operation: "enrich";
|
|
1013
1013
|
company?: import("zod").objectOutputType<{
|
|
1014
1014
|
name: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1015
1015
|
linkedin_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -1229,9 +1229,9 @@ export declare class CrustdataBubble<T extends CrustdataParamsInput = CrustdataP
|
|
|
1229
1229
|
}, import("zod").ZodTypeAny, "passthrough">[] | null | undefined;
|
|
1230
1230
|
} | null | undefined;
|
|
1231
1231
|
}, {
|
|
1232
|
+
operation: "enrich";
|
|
1232
1233
|
success: boolean;
|
|
1233
1234
|
error: string;
|
|
1234
|
-
operation: "enrich";
|
|
1235
1235
|
company?: import("zod").objectInputType<{
|
|
1236
1236
|
name: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1237
1237
|
linkedin_id: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -2229,9 +2229,11 @@ export declare class CrustdataBubble<T extends CrustdataParamsInput = CrustdataP
|
|
|
2229
2229
|
next_cursor: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2230
2230
|
error: import("zod").ZodString;
|
|
2231
2231
|
}, "strip", import("zod").ZodTypeAny, {
|
|
2232
|
+
operation: "person_search_db";
|
|
2232
2233
|
success: boolean;
|
|
2233
2234
|
error: string;
|
|
2234
|
-
|
|
2235
|
+
next_cursor?: string | undefined;
|
|
2236
|
+
total_count?: number | undefined;
|
|
2235
2237
|
profiles?: import("zod").objectOutputType<{
|
|
2236
2238
|
person_id: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2237
2239
|
name: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -2490,12 +2492,12 @@ export declare class CrustdataBubble<T extends CrustdataParamsInput = CrustdataP
|
|
|
2490
2492
|
websites: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodString, "many">>>;
|
|
2491
2493
|
twitter_handle: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2492
2494
|
}, import("zod").ZodTypeAny, "passthrough">[] | undefined;
|
|
2493
|
-
total_count?: number | undefined;
|
|
2494
|
-
next_cursor?: string | undefined;
|
|
2495
2495
|
}, {
|
|
2496
|
+
operation: "person_search_db";
|
|
2496
2497
|
success: boolean;
|
|
2497
2498
|
error: string;
|
|
2498
|
-
|
|
2499
|
+
next_cursor?: string | undefined;
|
|
2500
|
+
total_count?: number | undefined;
|
|
2499
2501
|
profiles?: import("zod").objectInputType<{
|
|
2500
2502
|
person_id: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2501
2503
|
name: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -2754,8 +2756,6 @@ export declare class CrustdataBubble<T extends CrustdataParamsInput = CrustdataP
|
|
|
2754
2756
|
websites: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodString, "many">>>;
|
|
2755
2757
|
twitter_handle: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2756
2758
|
}, import("zod").ZodTypeAny, "passthrough">[] | undefined;
|
|
2757
|
-
total_count?: number | undefined;
|
|
2758
|
-
next_cursor?: string | undefined;
|
|
2759
2759
|
}>]>;
|
|
2760
2760
|
static readonly shortDescription = "Crustdata API for company data enrichment and people search";
|
|
2761
2761
|
static readonly longDescription = "\n Crustdata service integration for company data enrichment, lead generation, and people search.\n\n Operations:\n - identify: Resolve company name/domain/LinkedIn URL to company_id (FREE)\n - enrich: Get company data with decision makers, CXOs, and founders (1 credit)\n - person_search_db: In-database people search with advanced filtering (3 credits per 100 results)\n\n Use cases:\n - Lead generation and sales prospecting\n - Company research and intelligence\n - Contact discovery for outreach\n - People search across companies with various filters\n - Find professionals by title, company, skills, location, etc.\n - Geographic radius search for local talent\n\n Note: For agent-friendly usage, use CompanyEnrichmentTool or PeopleSearchTool instead.\n ";
|
|
@@ -107,14 +107,14 @@ export declare const ElevenLabsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
107
107
|
success: z.ZodBoolean;
|
|
108
108
|
error: z.ZodString;
|
|
109
109
|
}, "strip", z.ZodTypeAny, {
|
|
110
|
+
operation: "get_signed_url";
|
|
110
111
|
success: boolean;
|
|
111
112
|
error: string;
|
|
112
|
-
operation: "get_signed_url";
|
|
113
113
|
signedUrl?: string | undefined;
|
|
114
114
|
}, {
|
|
115
|
+
operation: "get_signed_url";
|
|
115
116
|
success: boolean;
|
|
116
117
|
error: string;
|
|
117
|
-
operation: "get_signed_url";
|
|
118
118
|
signedUrl?: string | undefined;
|
|
119
119
|
}>, z.ZodObject<{
|
|
120
120
|
operation: z.ZodLiteral<"trigger_outbound_call">;
|
|
@@ -123,15 +123,15 @@ export declare const ElevenLabsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
123
123
|
success: z.ZodBoolean;
|
|
124
124
|
error: z.ZodString;
|
|
125
125
|
}, "strip", z.ZodTypeAny, {
|
|
126
|
+
operation: "trigger_outbound_call";
|
|
126
127
|
success: boolean;
|
|
127
128
|
error: string;
|
|
128
|
-
operation: "trigger_outbound_call";
|
|
129
129
|
conversationId?: string | undefined;
|
|
130
130
|
callSid?: string | undefined;
|
|
131
131
|
}, {
|
|
132
|
+
operation: "trigger_outbound_call";
|
|
132
133
|
success: boolean;
|
|
133
134
|
error: string;
|
|
134
|
-
operation: "trigger_outbound_call";
|
|
135
135
|
conversationId?: string | undefined;
|
|
136
136
|
callSid?: string | undefined;
|
|
137
137
|
}>, z.ZodObject<{
|
|
@@ -140,14 +140,14 @@ export declare const ElevenLabsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
140
140
|
success: z.ZodBoolean;
|
|
141
141
|
error: z.ZodString;
|
|
142
142
|
}, "strip", z.ZodTypeAny, {
|
|
143
|
+
operation: "get_agent";
|
|
143
144
|
success: boolean;
|
|
144
145
|
error: string;
|
|
145
|
-
operation: "get_agent";
|
|
146
146
|
agent?: Record<string, unknown> | undefined;
|
|
147
147
|
}, {
|
|
148
|
+
operation: "get_agent";
|
|
148
149
|
success: boolean;
|
|
149
150
|
error: string;
|
|
150
|
-
operation: "get_agent";
|
|
151
151
|
agent?: Record<string, unknown> | undefined;
|
|
152
152
|
}>, z.ZodObject<{
|
|
153
153
|
operation: z.ZodLiteral<"validate_webhook_signature">;
|
|
@@ -155,14 +155,14 @@ export declare const ElevenLabsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
155
155
|
success: z.ZodBoolean;
|
|
156
156
|
error: z.ZodString;
|
|
157
157
|
}, "strip", z.ZodTypeAny, {
|
|
158
|
+
operation: "validate_webhook_signature";
|
|
158
159
|
success: boolean;
|
|
159
160
|
error: string;
|
|
160
|
-
operation: "validate_webhook_signature";
|
|
161
161
|
isValid: boolean;
|
|
162
162
|
}, {
|
|
163
|
+
operation: "validate_webhook_signature";
|
|
163
164
|
success: boolean;
|
|
164
165
|
error: string;
|
|
165
|
-
operation: "validate_webhook_signature";
|
|
166
166
|
isValid: boolean;
|
|
167
167
|
}>, z.ZodObject<{
|
|
168
168
|
operation: z.ZodLiteral<"get_conversation">;
|
|
@@ -170,14 +170,14 @@ export declare const ElevenLabsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
170
170
|
success: z.ZodBoolean;
|
|
171
171
|
error: z.ZodString;
|
|
172
172
|
}, "strip", z.ZodTypeAny, {
|
|
173
|
+
operation: "get_conversation";
|
|
173
174
|
success: boolean;
|
|
174
175
|
error: string;
|
|
175
|
-
operation: "get_conversation";
|
|
176
176
|
conversation?: Record<string, unknown> | undefined;
|
|
177
177
|
}, {
|
|
178
|
+
operation: "get_conversation";
|
|
178
179
|
success: boolean;
|
|
179
180
|
error: string;
|
|
180
|
-
operation: "get_conversation";
|
|
181
181
|
conversation?: Record<string, unknown> | undefined;
|
|
182
182
|
}>, z.ZodObject<{
|
|
183
183
|
operation: z.ZodLiteral<"get_conversations">;
|
|
@@ -187,16 +187,16 @@ export declare const ElevenLabsResultSchema: z.ZodDiscriminatedUnion<"operation"
|
|
|
187
187
|
success: z.ZodBoolean;
|
|
188
188
|
error: z.ZodString;
|
|
189
189
|
}, "strip", z.ZodTypeAny, {
|
|
190
|
+
operation: "get_conversations";
|
|
190
191
|
success: boolean;
|
|
191
192
|
error: string;
|
|
192
|
-
operation: "get_conversations";
|
|
193
193
|
conversations?: Record<string, unknown>[] | undefined;
|
|
194
194
|
hasMore?: boolean | undefined;
|
|
195
195
|
nextCursor?: string | undefined;
|
|
196
196
|
}, {
|
|
197
|
+
operation: "get_conversations";
|
|
197
198
|
success: boolean;
|
|
198
199
|
error: string;
|
|
199
|
-
operation: "get_conversations";
|
|
200
200
|
conversations?: Record<string, unknown>[] | undefined;
|
|
201
201
|
hasMore?: boolean | undefined;
|
|
202
202
|
nextCursor?: string | undefined;
|
|
@@ -310,14 +310,14 @@ export declare class ElevenLabsBubble extends ServiceBubble<ElevenLabsParamsPars
|
|
|
310
310
|
success: z.ZodBoolean;
|
|
311
311
|
error: z.ZodString;
|
|
312
312
|
}, "strip", z.ZodTypeAny, {
|
|
313
|
+
operation: "get_signed_url";
|
|
313
314
|
success: boolean;
|
|
314
315
|
error: string;
|
|
315
|
-
operation: "get_signed_url";
|
|
316
316
|
signedUrl?: string | undefined;
|
|
317
317
|
}, {
|
|
318
|
+
operation: "get_signed_url";
|
|
318
319
|
success: boolean;
|
|
319
320
|
error: string;
|
|
320
|
-
operation: "get_signed_url";
|
|
321
321
|
signedUrl?: string | undefined;
|
|
322
322
|
}>, z.ZodObject<{
|
|
323
323
|
operation: z.ZodLiteral<"trigger_outbound_call">;
|
|
@@ -326,15 +326,15 @@ export declare class ElevenLabsBubble extends ServiceBubble<ElevenLabsParamsPars
|
|
|
326
326
|
success: z.ZodBoolean;
|
|
327
327
|
error: z.ZodString;
|
|
328
328
|
}, "strip", z.ZodTypeAny, {
|
|
329
|
+
operation: "trigger_outbound_call";
|
|
329
330
|
success: boolean;
|
|
330
331
|
error: string;
|
|
331
|
-
operation: "trigger_outbound_call";
|
|
332
332
|
conversationId?: string | undefined;
|
|
333
333
|
callSid?: string | undefined;
|
|
334
334
|
}, {
|
|
335
|
+
operation: "trigger_outbound_call";
|
|
335
336
|
success: boolean;
|
|
336
337
|
error: string;
|
|
337
|
-
operation: "trigger_outbound_call";
|
|
338
338
|
conversationId?: string | undefined;
|
|
339
339
|
callSid?: string | undefined;
|
|
340
340
|
}>, z.ZodObject<{
|
|
@@ -343,14 +343,14 @@ export declare class ElevenLabsBubble extends ServiceBubble<ElevenLabsParamsPars
|
|
|
343
343
|
success: z.ZodBoolean;
|
|
344
344
|
error: z.ZodString;
|
|
345
345
|
}, "strip", z.ZodTypeAny, {
|
|
346
|
+
operation: "get_agent";
|
|
346
347
|
success: boolean;
|
|
347
348
|
error: string;
|
|
348
|
-
operation: "get_agent";
|
|
349
349
|
agent?: Record<string, unknown> | undefined;
|
|
350
350
|
}, {
|
|
351
|
+
operation: "get_agent";
|
|
351
352
|
success: boolean;
|
|
352
353
|
error: string;
|
|
353
|
-
operation: "get_agent";
|
|
354
354
|
agent?: Record<string, unknown> | undefined;
|
|
355
355
|
}>, z.ZodObject<{
|
|
356
356
|
operation: z.ZodLiteral<"validate_webhook_signature">;
|
|
@@ -358,14 +358,14 @@ export declare class ElevenLabsBubble extends ServiceBubble<ElevenLabsParamsPars
|
|
|
358
358
|
success: z.ZodBoolean;
|
|
359
359
|
error: z.ZodString;
|
|
360
360
|
}, "strip", z.ZodTypeAny, {
|
|
361
|
+
operation: "validate_webhook_signature";
|
|
361
362
|
success: boolean;
|
|
362
363
|
error: string;
|
|
363
|
-
operation: "validate_webhook_signature";
|
|
364
364
|
isValid: boolean;
|
|
365
365
|
}, {
|
|
366
|
+
operation: "validate_webhook_signature";
|
|
366
367
|
success: boolean;
|
|
367
368
|
error: string;
|
|
368
|
-
operation: "validate_webhook_signature";
|
|
369
369
|
isValid: boolean;
|
|
370
370
|
}>, z.ZodObject<{
|
|
371
371
|
operation: z.ZodLiteral<"get_conversation">;
|
|
@@ -373,14 +373,14 @@ export declare class ElevenLabsBubble extends ServiceBubble<ElevenLabsParamsPars
|
|
|
373
373
|
success: z.ZodBoolean;
|
|
374
374
|
error: z.ZodString;
|
|
375
375
|
}, "strip", z.ZodTypeAny, {
|
|
376
|
+
operation: "get_conversation";
|
|
376
377
|
success: boolean;
|
|
377
378
|
error: string;
|
|
378
|
-
operation: "get_conversation";
|
|
379
379
|
conversation?: Record<string, unknown> | undefined;
|
|
380
380
|
}, {
|
|
381
|
+
operation: "get_conversation";
|
|
381
382
|
success: boolean;
|
|
382
383
|
error: string;
|
|
383
|
-
operation: "get_conversation";
|
|
384
384
|
conversation?: Record<string, unknown> | undefined;
|
|
385
385
|
}>, z.ZodObject<{
|
|
386
386
|
operation: z.ZodLiteral<"get_conversations">;
|
|
@@ -390,16 +390,16 @@ export declare class ElevenLabsBubble extends ServiceBubble<ElevenLabsParamsPars
|
|
|
390
390
|
success: z.ZodBoolean;
|
|
391
391
|
error: z.ZodString;
|
|
392
392
|
}, "strip", z.ZodTypeAny, {
|
|
393
|
+
operation: "get_conversations";
|
|
393
394
|
success: boolean;
|
|
394
395
|
error: string;
|
|
395
|
-
operation: "get_conversations";
|
|
396
396
|
conversations?: Record<string, unknown>[] | undefined;
|
|
397
397
|
hasMore?: boolean | undefined;
|
|
398
398
|
nextCursor?: string | undefined;
|
|
399
399
|
}, {
|
|
400
|
+
operation: "get_conversations";
|
|
400
401
|
success: boolean;
|
|
401
402
|
error: string;
|
|
402
|
-
operation: "get_conversations";
|
|
403
403
|
conversations?: Record<string, unknown>[] | undefined;
|
|
404
404
|
hasMore?: boolean | undefined;
|
|
405
405
|
nextCursor?: string | undefined;
|