@bubblelab/bubble-core 0.1.69 → 0.1.71
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 +78 -78
- package/dist/bubbles/service-bubble/agi-inc.d.ts +20 -20
- package/dist/bubbles/service-bubble/ai-agent.d.ts +24 -24
- package/dist/bubbles/service-bubble/airtable.d.ts +24 -24
- package/dist/bubbles/service-bubble/apify/apify.d.ts +14 -14
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +72 -72
- package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +38 -38
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +31 -31
- package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +78 -78
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +92 -92
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +42 -42
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +4 -4
- package/dist/bubbles/service-bubble/firecrawl.d.ts +346 -346
- package/dist/bubbles/service-bubble/followupboss.d.ts +320 -320
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +76 -76
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.schema.d.ts +58 -58
- package/dist/bubbles/service-bubble/github.d.ts +36 -36
- package/dist/bubbles/service-bubble/gmail.d.ts +88 -88
- package/dist/bubbles/service-bubble/google-drive.d.ts +63 -2
- package/dist/bubbles/service-bubble/google-drive.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/google-drive.js +74 -4
- package/dist/bubbles/service-bubble/google-drive.js.map +1 -1
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.d.ts +74 -74
- package/dist/bubbles/service-bubble/http.d.ts +8 -8
- package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
- package/dist/bubbles/service-bubble/jira/jira.d.ts +9 -9
- package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +62 -62
- package/dist/bubbles/service-bubble/notion/notion.d.ts +20 -20
- package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
- package/dist/bubbles/service-bubble/resend.d.ts +4 -4
- package/dist/bubbles/service-bubble/slack/slack.d.ts +114 -114
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +11 -11
- package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +78 -78
- package/dist/bubbles/service-bubble/telegram.d.ts +2 -2
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.schema.d.ts +28 -28
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +20 -20
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +305 -305
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +28 -28
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +56 -56
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +108 -108
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +24 -24
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +32 -32
- package/dist/bubbles.json +69 -4
- package/package.json +2 -2
|
@@ -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
|
-
input: Record<string, unknown>;
|
|
28
26
|
timeout: number;
|
|
27
|
+
input: Record<string, unknown>;
|
|
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
|
}>;
|
|
@@ -70,22 +70,22 @@ declare const ApifyResultSchema: z.ZodObject<{
|
|
|
70
70
|
id: string;
|
|
71
71
|
inputSchemaUrl: string;
|
|
72
72
|
description?: string | null | undefined;
|
|
73
|
-
stars?: number | null | undefined;
|
|
74
73
|
usage?: {
|
|
75
74
|
totalRuns?: number | undefined;
|
|
76
75
|
usersCount?: number | undefined;
|
|
77
76
|
} | null | undefined;
|
|
77
|
+
stars?: number | null | undefined;
|
|
78
78
|
requiresRental?: boolean | undefined;
|
|
79
79
|
}, {
|
|
80
80
|
name: string;
|
|
81
81
|
id: string;
|
|
82
82
|
inputSchemaUrl: string;
|
|
83
83
|
description?: string | null | undefined;
|
|
84
|
-
stars?: number | null | undefined;
|
|
85
84
|
usage?: {
|
|
86
85
|
totalRuns?: number | undefined;
|
|
87
86
|
usersCount?: number | undefined;
|
|
88
87
|
} | null | undefined;
|
|
88
|
+
stars?: number | null | undefined;
|
|
89
89
|
requiresRental?: boolean | undefined;
|
|
90
90
|
}>, "many">>;
|
|
91
91
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -102,11 +102,11 @@ declare const ApifyResultSchema: z.ZodObject<{
|
|
|
102
102
|
id: string;
|
|
103
103
|
inputSchemaUrl: string;
|
|
104
104
|
description?: string | null | undefined;
|
|
105
|
-
stars?: number | null | undefined;
|
|
106
105
|
usage?: {
|
|
107
106
|
totalRuns?: number | undefined;
|
|
108
107
|
usersCount?: number | undefined;
|
|
109
108
|
} | null | undefined;
|
|
109
|
+
stars?: number | null | undefined;
|
|
110
110
|
requiresRental?: boolean | undefined;
|
|
111
111
|
}[] | undefined;
|
|
112
112
|
}, {
|
|
@@ -123,11 +123,11 @@ declare const ApifyResultSchema: z.ZodObject<{
|
|
|
123
123
|
id: string;
|
|
124
124
|
inputSchemaUrl: string;
|
|
125
125
|
description?: string | null | undefined;
|
|
126
|
-
stars?: number | null | undefined;
|
|
127
126
|
usage?: {
|
|
128
127
|
totalRuns?: number | undefined;
|
|
129
128
|
usersCount?: number | undefined;
|
|
130
129
|
} | null | undefined;
|
|
130
|
+
stars?: number | null | undefined;
|
|
131
131
|
requiresRental?: boolean | undefined;
|
|
132
132
|
}[] | undefined;
|
|
133
133
|
}>;
|
|
@@ -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
|
-
input: Record<string, unknown>;
|
|
164
162
|
timeout: number;
|
|
163
|
+
input: Record<string, unknown>;
|
|
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
|
}>;
|
|
@@ -206,22 +206,22 @@ export declare class ApifyBubble<T extends string = string> extends ServiceBubbl
|
|
|
206
206
|
id: string;
|
|
207
207
|
inputSchemaUrl: string;
|
|
208
208
|
description?: string | null | undefined;
|
|
209
|
-
stars?: number | null | undefined;
|
|
210
209
|
usage?: {
|
|
211
210
|
totalRuns?: number | undefined;
|
|
212
211
|
usersCount?: number | undefined;
|
|
213
212
|
} | null | undefined;
|
|
213
|
+
stars?: number | null | undefined;
|
|
214
214
|
requiresRental?: boolean | undefined;
|
|
215
215
|
}, {
|
|
216
216
|
name: string;
|
|
217
217
|
id: string;
|
|
218
218
|
inputSchemaUrl: string;
|
|
219
219
|
description?: string | null | undefined;
|
|
220
|
-
stars?: number | null | undefined;
|
|
221
220
|
usage?: {
|
|
222
221
|
totalRuns?: number | undefined;
|
|
223
222
|
usersCount?: number | undefined;
|
|
224
223
|
} | null | undefined;
|
|
224
|
+
stars?: number | null | undefined;
|
|
225
225
|
requiresRental?: boolean | undefined;
|
|
226
226
|
}>, "many">>;
|
|
227
227
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -238,11 +238,11 @@ export declare class ApifyBubble<T extends string = string> extends ServiceBubbl
|
|
|
238
238
|
id: string;
|
|
239
239
|
inputSchemaUrl: string;
|
|
240
240
|
description?: string | null | undefined;
|
|
241
|
-
stars?: number | null | undefined;
|
|
242
241
|
usage?: {
|
|
243
242
|
totalRuns?: number | undefined;
|
|
244
243
|
usersCount?: number | undefined;
|
|
245
244
|
} | null | undefined;
|
|
245
|
+
stars?: number | null | undefined;
|
|
246
246
|
requiresRental?: boolean | undefined;
|
|
247
247
|
}[] | undefined;
|
|
248
248
|
}, {
|
|
@@ -259,11 +259,11 @@ export declare class ApifyBubble<T extends string = string> extends ServiceBubbl
|
|
|
259
259
|
id: string;
|
|
260
260
|
inputSchemaUrl: string;
|
|
261
261
|
description?: string | null | undefined;
|
|
262
|
-
stars?: number | null | undefined;
|
|
263
262
|
usage?: {
|
|
264
263
|
totalRuns?: number | undefined;
|
|
265
264
|
usersCount?: number | undefined;
|
|
266
265
|
} | null | undefined;
|
|
266
|
+
stars?: number | null | undefined;
|
|
267
267
|
requiresRental?: boolean | undefined;
|
|
268
268
|
}[] | undefined;
|
|
269
269
|
}>;
|
|
@@ -108,6 +108,7 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
108
108
|
name: string;
|
|
109
109
|
allow_duplicate_linkedin: boolean;
|
|
110
110
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
111
|
+
website?: string | undefined;
|
|
111
112
|
emails?: {
|
|
112
113
|
type: "Personal" | "Work" | "Other";
|
|
113
114
|
email: string;
|
|
@@ -115,7 +116,6 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
115
116
|
phone_number?: string | undefined;
|
|
116
117
|
linkedin_url?: string | undefined;
|
|
117
118
|
github_url?: string | undefined;
|
|
118
|
-
website?: string | undefined;
|
|
119
119
|
source_id?: string | undefined;
|
|
120
120
|
credited_to_user_id?: string | undefined;
|
|
121
121
|
tag?: string | undefined;
|
|
@@ -123,6 +123,7 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
123
123
|
operation: "create_candidate";
|
|
124
124
|
name: string;
|
|
125
125
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
126
|
+
website?: string | undefined;
|
|
126
127
|
emails?: {
|
|
127
128
|
type: "Personal" | "Work" | "Other";
|
|
128
129
|
email: string;
|
|
@@ -130,7 +131,6 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
130
131
|
phone_number?: string | undefined;
|
|
131
132
|
linkedin_url?: string | undefined;
|
|
132
133
|
github_url?: string | undefined;
|
|
133
|
-
website?: string | undefined;
|
|
134
134
|
source_id?: string | undefined;
|
|
135
135
|
credited_to_user_id?: string | undefined;
|
|
136
136
|
tag?: string | undefined;
|
|
@@ -340,6 +340,11 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
340
340
|
}, "strip", import("zod").ZodTypeAny, {
|
|
341
341
|
name: string;
|
|
342
342
|
id: string;
|
|
343
|
+
tags?: {
|
|
344
|
+
title: string;
|
|
345
|
+
id: string;
|
|
346
|
+
isArchived?: boolean | undefined;
|
|
347
|
+
}[] | undefined;
|
|
343
348
|
createdAt?: string | undefined;
|
|
344
349
|
updatedAt?: string | undefined;
|
|
345
350
|
primaryEmailAddress?: {
|
|
@@ -347,16 +352,22 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
347
352
|
type: "Personal" | "Work" | "Other";
|
|
348
353
|
isPrimary: boolean;
|
|
349
354
|
} | null | undefined;
|
|
350
|
-
|
|
355
|
+
primaryPhoneNumber?: {
|
|
351
356
|
value: string;
|
|
352
357
|
type: "Personal" | "Work" | "Other";
|
|
353
358
|
isPrimary: boolean;
|
|
359
|
+
} | null | undefined;
|
|
360
|
+
customFields?: {
|
|
361
|
+
title: string;
|
|
362
|
+
id: string;
|
|
363
|
+
value?: unknown;
|
|
364
|
+
isPrivate?: boolean | undefined;
|
|
354
365
|
}[] | undefined;
|
|
355
|
-
|
|
366
|
+
emailAddresses?: {
|
|
356
367
|
value: string;
|
|
357
368
|
type: "Personal" | "Work" | "Other";
|
|
358
369
|
isPrimary: boolean;
|
|
359
|
-
} |
|
|
370
|
+
}[] | undefined;
|
|
360
371
|
phoneNumbers?: {
|
|
361
372
|
value: string;
|
|
362
373
|
type: "Personal" | "Work" | "Other";
|
|
@@ -366,11 +377,6 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
366
377
|
type: string;
|
|
367
378
|
url: string;
|
|
368
379
|
}[] | undefined;
|
|
369
|
-
tags?: {
|
|
370
|
-
title: string;
|
|
371
|
-
id: string;
|
|
372
|
-
isArchived?: boolean | undefined;
|
|
373
|
-
}[] | undefined;
|
|
374
380
|
position?: string | null | undefined;
|
|
375
381
|
company?: string | null | undefined;
|
|
376
382
|
school?: string | null | undefined;
|
|
@@ -385,15 +391,14 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
385
391
|
id: string;
|
|
386
392
|
handle: string;
|
|
387
393
|
}[] | undefined;
|
|
388
|
-
customFields?: {
|
|
389
|
-
title: string;
|
|
390
|
-
id: string;
|
|
391
|
-
value?: unknown;
|
|
392
|
-
isPrivate?: boolean | undefined;
|
|
393
|
-
}[] | undefined;
|
|
394
394
|
}, {
|
|
395
395
|
name: string;
|
|
396
396
|
id: string;
|
|
397
|
+
tags?: {
|
|
398
|
+
title: string;
|
|
399
|
+
id: string;
|
|
400
|
+
isArchived?: boolean | undefined;
|
|
401
|
+
}[] | undefined;
|
|
397
402
|
createdAt?: string | undefined;
|
|
398
403
|
updatedAt?: string | undefined;
|
|
399
404
|
primaryEmailAddress?: {
|
|
@@ -401,16 +406,22 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
401
406
|
type: "Personal" | "Work" | "Other";
|
|
402
407
|
isPrimary: boolean;
|
|
403
408
|
} | null | undefined;
|
|
404
|
-
|
|
409
|
+
primaryPhoneNumber?: {
|
|
405
410
|
value: string;
|
|
406
411
|
type: "Personal" | "Work" | "Other";
|
|
407
412
|
isPrimary: boolean;
|
|
413
|
+
} | null | undefined;
|
|
414
|
+
customFields?: {
|
|
415
|
+
title: string;
|
|
416
|
+
id: string;
|
|
417
|
+
value?: unknown;
|
|
418
|
+
isPrivate?: boolean | undefined;
|
|
408
419
|
}[] | undefined;
|
|
409
|
-
|
|
420
|
+
emailAddresses?: {
|
|
410
421
|
value: string;
|
|
411
422
|
type: "Personal" | "Work" | "Other";
|
|
412
423
|
isPrimary: boolean;
|
|
413
|
-
} |
|
|
424
|
+
}[] | undefined;
|
|
414
425
|
phoneNumbers?: {
|
|
415
426
|
value: string;
|
|
416
427
|
type: "Personal" | "Work" | "Other";
|
|
@@ -420,11 +431,6 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
420
431
|
type: string;
|
|
421
432
|
url: string;
|
|
422
433
|
}[] | undefined;
|
|
423
|
-
tags?: {
|
|
424
|
-
title: string;
|
|
425
|
-
id: string;
|
|
426
|
-
isArchived?: boolean | undefined;
|
|
427
|
-
}[] | undefined;
|
|
428
434
|
position?: string | null | undefined;
|
|
429
435
|
company?: string | null | undefined;
|
|
430
436
|
school?: string | null | undefined;
|
|
@@ -439,12 +445,6 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
439
445
|
id: string;
|
|
440
446
|
handle: string;
|
|
441
447
|
}[] | undefined;
|
|
442
|
-
customFields?: {
|
|
443
|
-
title: string;
|
|
444
|
-
id: string;
|
|
445
|
-
value?: unknown;
|
|
446
|
-
isPrivate?: boolean | undefined;
|
|
447
|
-
}[] | undefined;
|
|
448
448
|
}>, "many">>;
|
|
449
449
|
next_cursor: import("zod").ZodOptional<import("zod").ZodString>;
|
|
450
450
|
more_data_available: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
@@ -454,10 +454,16 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
454
454
|
operation: "list_candidates";
|
|
455
455
|
success: boolean;
|
|
456
456
|
error: string;
|
|
457
|
+
next_cursor?: string | undefined;
|
|
457
458
|
sync_token?: string | undefined;
|
|
458
459
|
candidates?: {
|
|
459
460
|
name: string;
|
|
460
461
|
id: string;
|
|
462
|
+
tags?: {
|
|
463
|
+
title: string;
|
|
464
|
+
id: string;
|
|
465
|
+
isArchived?: boolean | undefined;
|
|
466
|
+
}[] | undefined;
|
|
461
467
|
createdAt?: string | undefined;
|
|
462
468
|
updatedAt?: string | undefined;
|
|
463
469
|
primaryEmailAddress?: {
|
|
@@ -465,16 +471,22 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
465
471
|
type: "Personal" | "Work" | "Other";
|
|
466
472
|
isPrimary: boolean;
|
|
467
473
|
} | null | undefined;
|
|
468
|
-
|
|
474
|
+
primaryPhoneNumber?: {
|
|
469
475
|
value: string;
|
|
470
476
|
type: "Personal" | "Work" | "Other";
|
|
471
477
|
isPrimary: boolean;
|
|
478
|
+
} | null | undefined;
|
|
479
|
+
customFields?: {
|
|
480
|
+
title: string;
|
|
481
|
+
id: string;
|
|
482
|
+
value?: unknown;
|
|
483
|
+
isPrivate?: boolean | undefined;
|
|
472
484
|
}[] | undefined;
|
|
473
|
-
|
|
485
|
+
emailAddresses?: {
|
|
474
486
|
value: string;
|
|
475
487
|
type: "Personal" | "Work" | "Other";
|
|
476
488
|
isPrimary: boolean;
|
|
477
|
-
} |
|
|
489
|
+
}[] | undefined;
|
|
478
490
|
phoneNumbers?: {
|
|
479
491
|
value: string;
|
|
480
492
|
type: "Personal" | "Work" | "Other";
|
|
@@ -484,11 +496,6 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
484
496
|
type: string;
|
|
485
497
|
url: string;
|
|
486
498
|
}[] | undefined;
|
|
487
|
-
tags?: {
|
|
488
|
-
title: string;
|
|
489
|
-
id: string;
|
|
490
|
-
isArchived?: boolean | undefined;
|
|
491
|
-
}[] | undefined;
|
|
492
499
|
position?: string | null | undefined;
|
|
493
500
|
company?: string | null | undefined;
|
|
494
501
|
school?: string | null | undefined;
|
|
@@ -503,23 +510,22 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
503
510
|
id: string;
|
|
504
511
|
handle: string;
|
|
505
512
|
}[] | undefined;
|
|
506
|
-
customFields?: {
|
|
507
|
-
title: string;
|
|
508
|
-
id: string;
|
|
509
|
-
value?: unknown;
|
|
510
|
-
isPrivate?: boolean | undefined;
|
|
511
|
-
}[] | undefined;
|
|
512
513
|
}[] | undefined;
|
|
513
|
-
next_cursor?: string | undefined;
|
|
514
514
|
more_data_available?: boolean | undefined;
|
|
515
515
|
}, {
|
|
516
516
|
operation: "list_candidates";
|
|
517
517
|
success: boolean;
|
|
518
518
|
error: string;
|
|
519
|
+
next_cursor?: string | undefined;
|
|
519
520
|
sync_token?: string | undefined;
|
|
520
521
|
candidates?: {
|
|
521
522
|
name: string;
|
|
522
523
|
id: string;
|
|
524
|
+
tags?: {
|
|
525
|
+
title: string;
|
|
526
|
+
id: string;
|
|
527
|
+
isArchived?: boolean | undefined;
|
|
528
|
+
}[] | undefined;
|
|
523
529
|
createdAt?: string | undefined;
|
|
524
530
|
updatedAt?: string | undefined;
|
|
525
531
|
primaryEmailAddress?: {
|
|
@@ -527,16 +533,22 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
527
533
|
type: "Personal" | "Work" | "Other";
|
|
528
534
|
isPrimary: boolean;
|
|
529
535
|
} | null | undefined;
|
|
530
|
-
|
|
536
|
+
primaryPhoneNumber?: {
|
|
531
537
|
value: string;
|
|
532
538
|
type: "Personal" | "Work" | "Other";
|
|
533
539
|
isPrimary: boolean;
|
|
540
|
+
} | null | undefined;
|
|
541
|
+
customFields?: {
|
|
542
|
+
title: string;
|
|
543
|
+
id: string;
|
|
544
|
+
value?: unknown;
|
|
545
|
+
isPrivate?: boolean | undefined;
|
|
534
546
|
}[] | undefined;
|
|
535
|
-
|
|
547
|
+
emailAddresses?: {
|
|
536
548
|
value: string;
|
|
537
549
|
type: "Personal" | "Work" | "Other";
|
|
538
550
|
isPrimary: boolean;
|
|
539
|
-
} |
|
|
551
|
+
}[] | undefined;
|
|
540
552
|
phoneNumbers?: {
|
|
541
553
|
value: string;
|
|
542
554
|
type: "Personal" | "Work" | "Other";
|
|
@@ -546,11 +558,6 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
546
558
|
type: string;
|
|
547
559
|
url: string;
|
|
548
560
|
}[] | undefined;
|
|
549
|
-
tags?: {
|
|
550
|
-
title: string;
|
|
551
|
-
id: string;
|
|
552
|
-
isArchived?: boolean | undefined;
|
|
553
|
-
}[] | undefined;
|
|
554
561
|
position?: string | null | undefined;
|
|
555
562
|
company?: string | null | undefined;
|
|
556
563
|
school?: string | null | undefined;
|
|
@@ -565,14 +572,7 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
565
572
|
id: string;
|
|
566
573
|
handle: string;
|
|
567
574
|
}[] | undefined;
|
|
568
|
-
customFields?: {
|
|
569
|
-
title: string;
|
|
570
|
-
id: string;
|
|
571
|
-
value?: unknown;
|
|
572
|
-
isPrivate?: boolean | undefined;
|
|
573
|
-
}[] | undefined;
|
|
574
575
|
}[] | undefined;
|
|
575
|
-
next_cursor?: string | undefined;
|
|
576
576
|
more_data_available?: boolean | undefined;
|
|
577
577
|
}>, import("zod").ZodObject<{
|
|
578
578
|
operation: import("zod").ZodLiteral<"get_candidate">;
|
|
@@ -1247,36 +1247,36 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
1247
1247
|
isArchived: import("zod").ZodBoolean;
|
|
1248
1248
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1249
1249
|
value: string;
|
|
1250
|
-
isArchived: boolean;
|
|
1251
1250
|
label: string;
|
|
1251
|
+
isArchived: boolean;
|
|
1252
1252
|
}, {
|
|
1253
1253
|
value: string;
|
|
1254
|
-
isArchived: boolean;
|
|
1255
1254
|
label: string;
|
|
1255
|
+
isArchived: boolean;
|
|
1256
1256
|
}>, "many">>;
|
|
1257
1257
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1258
1258
|
title: string;
|
|
1259
1259
|
id: string;
|
|
1260
|
-
isArchived: boolean;
|
|
1261
1260
|
isPrivate: boolean;
|
|
1261
|
+
isArchived: boolean;
|
|
1262
1262
|
objectType: string;
|
|
1263
1263
|
fieldType: string;
|
|
1264
1264
|
selectableValues?: {
|
|
1265
1265
|
value: string;
|
|
1266
|
-
isArchived: boolean;
|
|
1267
1266
|
label: string;
|
|
1267
|
+
isArchived: boolean;
|
|
1268
1268
|
}[] | undefined;
|
|
1269
1269
|
}, {
|
|
1270
1270
|
title: string;
|
|
1271
1271
|
id: string;
|
|
1272
|
-
isArchived: boolean;
|
|
1273
1272
|
isPrivate: boolean;
|
|
1273
|
+
isArchived: boolean;
|
|
1274
1274
|
objectType: string;
|
|
1275
1275
|
fieldType: string;
|
|
1276
1276
|
selectableValues?: {
|
|
1277
1277
|
value: string;
|
|
1278
|
-
isArchived: boolean;
|
|
1279
1278
|
label: string;
|
|
1279
|
+
isArchived: boolean;
|
|
1280
1280
|
}[] | undefined;
|
|
1281
1281
|
}>, "many">>;
|
|
1282
1282
|
next_cursor: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -1287,40 +1287,40 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
1287
1287
|
operation: "list_custom_fields";
|
|
1288
1288
|
success: boolean;
|
|
1289
1289
|
error: string;
|
|
1290
|
-
sync_token?: string | undefined;
|
|
1291
1290
|
next_cursor?: string | undefined;
|
|
1291
|
+
sync_token?: string | undefined;
|
|
1292
1292
|
more_data_available?: boolean | undefined;
|
|
1293
1293
|
custom_fields?: {
|
|
1294
1294
|
title: string;
|
|
1295
1295
|
id: string;
|
|
1296
|
-
isArchived: boolean;
|
|
1297
1296
|
isPrivate: boolean;
|
|
1297
|
+
isArchived: boolean;
|
|
1298
1298
|
objectType: string;
|
|
1299
1299
|
fieldType: string;
|
|
1300
1300
|
selectableValues?: {
|
|
1301
1301
|
value: string;
|
|
1302
|
-
isArchived: boolean;
|
|
1303
1302
|
label: string;
|
|
1303
|
+
isArchived: boolean;
|
|
1304
1304
|
}[] | undefined;
|
|
1305
1305
|
}[] | undefined;
|
|
1306
1306
|
}, {
|
|
1307
1307
|
operation: "list_custom_fields";
|
|
1308
1308
|
success: boolean;
|
|
1309
1309
|
error: string;
|
|
1310
|
-
sync_token?: string | undefined;
|
|
1311
1310
|
next_cursor?: string | undefined;
|
|
1311
|
+
sync_token?: string | undefined;
|
|
1312
1312
|
more_data_available?: boolean | undefined;
|
|
1313
1313
|
custom_fields?: {
|
|
1314
1314
|
title: string;
|
|
1315
1315
|
id: string;
|
|
1316
|
-
isArchived: boolean;
|
|
1317
1316
|
isPrivate: boolean;
|
|
1317
|
+
isArchived: boolean;
|
|
1318
1318
|
objectType: string;
|
|
1319
1319
|
fieldType: string;
|
|
1320
1320
|
selectableValues?: {
|
|
1321
1321
|
value: string;
|
|
1322
|
-
isArchived: boolean;
|
|
1323
1322
|
label: string;
|
|
1323
|
+
isArchived: boolean;
|
|
1324
1324
|
}[] | undefined;
|
|
1325
1325
|
}[] | undefined;
|
|
1326
1326
|
}>]>;
|