@bubblelab/bubble-core 0.1.146 → 0.1.147
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 +76 -76
- package/dist/bubbles/service-bubble/agi-inc.d.ts +28 -28
- package/dist/bubbles/service-bubble/ai-agent.d.ts +60 -60
- package/dist/bubbles/service-bubble/airtable.d.ts +112 -112
- package/dist/bubbles/service-bubble/apify/apify.d.ts +18 -18
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +72 -72
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +37 -37
- package/dist/bubbles/service-bubble/confluence/confluence.d.ts +21 -21
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +88 -88
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +4 -4
- package/dist/bubbles/service-bubble/firecrawl.d.ts +394 -394
- package/dist/bubbles/service-bubble/followupboss.d.ts +84 -84
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +60 -60
- package/dist/bubbles/service-bubble/github.d.ts +210 -210
- package/dist/bubbles/service-bubble/gmail.d.ts +410 -410
- package/dist/bubbles/service-bubble/google-calendar.d.ts +2 -2
- package/dist/bubbles/service-bubble/google-drive.d.ts +48 -48
- package/dist/bubbles/service-bubble/http.d.ts +8 -8
- package/dist/bubbles/service-bubble/insforge-db.d.ts +10 -10
- package/dist/bubbles/service-bubble/jira/jira.d.ts +18 -18
- package/dist/bubbles/service-bubble/notion/notion.d.ts +13738 -9223
- package/dist/bubbles/service-bubble/notion/notion.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/notion/notion.js +55 -2
- package/dist/bubbles/service-bubble/notion/notion.js.map +1 -1
- package/dist/bubbles/service-bubble/postgresql.d.ts +10 -10
- package/dist/bubbles/service-bubble/resend.d.ts +24 -24
- package/dist/bubbles/service-bubble/slack/slack.d.ts +504 -504
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +25 -25
- package/dist/bubbles/service-bubble/telegram.d.ts +2 -2
- package/dist/bubbles/tool-bubble/browser-tools/linkedin-accept-invitations/tool.d.ts +7 -7
- package/dist/bubbles/tool-bubble/browser-tools/linkedin-connection/tool.d.ts +6 -6
- package/dist/bubbles/tool-bubble/browser-tools/linkedin-received-invitations/tool.d.ts +6 -6
- package/dist/bubbles/tool-bubble/browser-tools/linkedin-sent-invitations/tool.d.ts +6 -6
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +386 -386
- package/dist/bubbles/tool-bubble/list-airtable-bases-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/list-airtable-tables-tool.d.ts +20 -20
- package/dist/bubbles/tool-bubble/list-capabilities-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +14 -14
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +60 -60
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +108 -108
- package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +20 -20
- package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +32 -32
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +46 -46
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +44 -44
- package/dist/bubbles.json +732 -3
- package/package.json +2 -2
|
@@ -23,8 +23,8 @@ 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
|
-
timeout: number;
|
|
27
26
|
input: Record<string, unknown>;
|
|
27
|
+
timeout: number;
|
|
28
28
|
limit: number;
|
|
29
29
|
waitForFinish: boolean;
|
|
30
30
|
search?: string | undefined;
|
|
@@ -66,26 +66,26 @@ declare const ApifyResultSchema: z.ZodObject<{
|
|
|
66
66
|
}>>>;
|
|
67
67
|
requiresRental: z.ZodOptional<z.ZodBoolean>;
|
|
68
68
|
}, "strip", z.ZodTypeAny, {
|
|
69
|
-
name: string;
|
|
70
69
|
id: string;
|
|
70
|
+
name: string;
|
|
71
71
|
inputSchemaUrl: string;
|
|
72
72
|
description?: string | null | undefined;
|
|
73
|
+
stars?: number | null | undefined;
|
|
73
74
|
usage?: {
|
|
74
75
|
totalRuns?: number | undefined;
|
|
75
76
|
usersCount?: number | undefined;
|
|
76
77
|
} | null | undefined;
|
|
77
|
-
stars?: number | null | undefined;
|
|
78
78
|
requiresRental?: boolean | undefined;
|
|
79
79
|
}, {
|
|
80
|
-
name: string;
|
|
81
80
|
id: string;
|
|
81
|
+
name: string;
|
|
82
82
|
inputSchemaUrl: string;
|
|
83
83
|
description?: string | null | undefined;
|
|
84
|
+
stars?: number | null | undefined;
|
|
84
85
|
usage?: {
|
|
85
86
|
totalRuns?: number | undefined;
|
|
86
87
|
usersCount?: number | undefined;
|
|
87
88
|
} | null | undefined;
|
|
88
|
-
stars?: number | null | undefined;
|
|
89
89
|
requiresRental?: boolean | undefined;
|
|
90
90
|
}>, "many">>;
|
|
91
91
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -98,15 +98,15 @@ declare const ApifyResultSchema: z.ZodObject<{
|
|
|
98
98
|
datasetId?: string | undefined;
|
|
99
99
|
itemsCount?: number | undefined;
|
|
100
100
|
discoveredActors?: {
|
|
101
|
-
name: string;
|
|
102
101
|
id: string;
|
|
102
|
+
name: string;
|
|
103
103
|
inputSchemaUrl: string;
|
|
104
104
|
description?: string | null | undefined;
|
|
105
|
+
stars?: number | null | undefined;
|
|
105
106
|
usage?: {
|
|
106
107
|
totalRuns?: number | undefined;
|
|
107
108
|
usersCount?: number | undefined;
|
|
108
109
|
} | null | undefined;
|
|
109
|
-
stars?: number | null | undefined;
|
|
110
110
|
requiresRental?: boolean | undefined;
|
|
111
111
|
}[] | undefined;
|
|
112
112
|
}, {
|
|
@@ -119,15 +119,15 @@ declare const ApifyResultSchema: z.ZodObject<{
|
|
|
119
119
|
datasetId?: string | undefined;
|
|
120
120
|
itemsCount?: number | undefined;
|
|
121
121
|
discoveredActors?: {
|
|
122
|
-
name: string;
|
|
123
122
|
id: string;
|
|
123
|
+
name: string;
|
|
124
124
|
inputSchemaUrl: string;
|
|
125
125
|
description?: string | null | undefined;
|
|
126
|
+
stars?: number | null | undefined;
|
|
126
127
|
usage?: {
|
|
127
128
|
totalRuns?: number | undefined;
|
|
128
129
|
usersCount?: number | undefined;
|
|
129
130
|
} | null | undefined;
|
|
130
|
-
stars?: number | null | undefined;
|
|
131
131
|
requiresRental?: boolean | undefined;
|
|
132
132
|
}[] | undefined;
|
|
133
133
|
}>;
|
|
@@ -159,8 +159,8 @@ 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
|
-
timeout: number;
|
|
163
162
|
input: Record<string, unknown>;
|
|
163
|
+
timeout: number;
|
|
164
164
|
limit: number;
|
|
165
165
|
waitForFinish: boolean;
|
|
166
166
|
search?: string | undefined;
|
|
@@ -202,26 +202,26 @@ export declare class ApifyBubble<T extends string = string> extends ServiceBubbl
|
|
|
202
202
|
}>>>;
|
|
203
203
|
requiresRental: z.ZodOptional<z.ZodBoolean>;
|
|
204
204
|
}, "strip", z.ZodTypeAny, {
|
|
205
|
-
name: string;
|
|
206
205
|
id: string;
|
|
206
|
+
name: string;
|
|
207
207
|
inputSchemaUrl: string;
|
|
208
208
|
description?: string | null | undefined;
|
|
209
|
+
stars?: number | null | undefined;
|
|
209
210
|
usage?: {
|
|
210
211
|
totalRuns?: number | undefined;
|
|
211
212
|
usersCount?: number | undefined;
|
|
212
213
|
} | null | undefined;
|
|
213
|
-
stars?: number | null | undefined;
|
|
214
214
|
requiresRental?: boolean | undefined;
|
|
215
215
|
}, {
|
|
216
|
-
name: string;
|
|
217
216
|
id: string;
|
|
217
|
+
name: string;
|
|
218
218
|
inputSchemaUrl: string;
|
|
219
219
|
description?: string | null | undefined;
|
|
220
|
+
stars?: number | null | undefined;
|
|
220
221
|
usage?: {
|
|
221
222
|
totalRuns?: number | undefined;
|
|
222
223
|
usersCount?: number | undefined;
|
|
223
224
|
} | null | undefined;
|
|
224
|
-
stars?: number | null | undefined;
|
|
225
225
|
requiresRental?: boolean | undefined;
|
|
226
226
|
}>, "many">>;
|
|
227
227
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -234,15 +234,15 @@ export declare class ApifyBubble<T extends string = string> extends ServiceBubbl
|
|
|
234
234
|
datasetId?: string | undefined;
|
|
235
235
|
itemsCount?: number | undefined;
|
|
236
236
|
discoveredActors?: {
|
|
237
|
-
name: string;
|
|
238
237
|
id: string;
|
|
238
|
+
name: string;
|
|
239
239
|
inputSchemaUrl: string;
|
|
240
240
|
description?: string | null | undefined;
|
|
241
|
+
stars?: number | null | undefined;
|
|
241
242
|
usage?: {
|
|
242
243
|
totalRuns?: number | undefined;
|
|
243
244
|
usersCount?: number | undefined;
|
|
244
245
|
} | null | undefined;
|
|
245
|
-
stars?: number | null | undefined;
|
|
246
246
|
requiresRental?: boolean | undefined;
|
|
247
247
|
}[] | undefined;
|
|
248
248
|
}, {
|
|
@@ -255,15 +255,15 @@ export declare class ApifyBubble<T extends string = string> extends ServiceBubbl
|
|
|
255
255
|
datasetId?: string | undefined;
|
|
256
256
|
itemsCount?: number | undefined;
|
|
257
257
|
discoveredActors?: {
|
|
258
|
-
name: string;
|
|
259
258
|
id: string;
|
|
259
|
+
name: string;
|
|
260
260
|
inputSchemaUrl: string;
|
|
261
261
|
description?: string | null | undefined;
|
|
262
|
+
stars?: number | null | undefined;
|
|
262
263
|
usage?: {
|
|
263
264
|
totalRuns?: number | undefined;
|
|
264
265
|
usersCount?: number | undefined;
|
|
265
266
|
} | null | undefined;
|
|
266
|
-
stars?: number | null | undefined;
|
|
267
267
|
requiresRental?: boolean | undefined;
|
|
268
268
|
}[] | undefined;
|
|
269
269
|
}>;
|
|
@@ -300,12 +300,12 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
300
300
|
name: import("zod").ZodString;
|
|
301
301
|
handle: import("zod").ZodString;
|
|
302
302
|
}, "strip", import("zod").ZodTypeAny, {
|
|
303
|
-
name: string;
|
|
304
303
|
id: string;
|
|
304
|
+
name: string;
|
|
305
305
|
handle: string;
|
|
306
306
|
}, {
|
|
307
|
-
name: string;
|
|
308
307
|
id: string;
|
|
308
|
+
name: string;
|
|
309
309
|
handle: string;
|
|
310
310
|
}>>>;
|
|
311
311
|
fileHandles: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -313,12 +313,12 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
313
313
|
name: import("zod").ZodString;
|
|
314
314
|
handle: import("zod").ZodString;
|
|
315
315
|
}, "strip", import("zod").ZodTypeAny, {
|
|
316
|
-
name: string;
|
|
317
316
|
id: string;
|
|
317
|
+
name: string;
|
|
318
318
|
handle: string;
|
|
319
319
|
}, {
|
|
320
|
-
name: string;
|
|
321
320
|
id: string;
|
|
321
|
+
name: string;
|
|
322
322
|
handle: string;
|
|
323
323
|
}>, "many">>;
|
|
324
324
|
customFields: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -338,8 +338,8 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
338
338
|
isPrivate?: boolean | undefined;
|
|
339
339
|
}>, "many">>;
|
|
340
340
|
}, "strip", import("zod").ZodTypeAny, {
|
|
341
|
-
name: string;
|
|
342
341
|
id: string;
|
|
342
|
+
name: string;
|
|
343
343
|
tags?: {
|
|
344
344
|
title: string;
|
|
345
345
|
id: string;
|
|
@@ -353,22 +353,16 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
353
353
|
type: "Personal" | "Work" | "Other";
|
|
354
354
|
isPrimary: boolean;
|
|
355
355
|
} | null | undefined;
|
|
356
|
-
|
|
356
|
+
emailAddresses?: {
|
|
357
357
|
value: string;
|
|
358
358
|
type: "Personal" | "Work" | "Other";
|
|
359
359
|
isPrimary: boolean;
|
|
360
|
-
} | null | undefined;
|
|
361
|
-
customFields?: {
|
|
362
|
-
title: string;
|
|
363
|
-
id: string;
|
|
364
|
-
value?: unknown;
|
|
365
|
-
isPrivate?: boolean | undefined;
|
|
366
360
|
}[] | undefined;
|
|
367
|
-
|
|
361
|
+
primaryPhoneNumber?: {
|
|
368
362
|
value: string;
|
|
369
363
|
type: "Personal" | "Work" | "Other";
|
|
370
364
|
isPrimary: boolean;
|
|
371
|
-
}
|
|
365
|
+
} | null | undefined;
|
|
372
366
|
phoneNumbers?: {
|
|
373
367
|
value: string;
|
|
374
368
|
type: "Personal" | "Work" | "Other";
|
|
@@ -382,18 +376,24 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
382
376
|
school?: string | null | undefined;
|
|
383
377
|
applicationIds?: string[] | undefined;
|
|
384
378
|
resumeFileHandle?: {
|
|
385
|
-
name: string;
|
|
386
379
|
id: string;
|
|
380
|
+
name: string;
|
|
387
381
|
handle: string;
|
|
388
382
|
} | null | undefined;
|
|
389
383
|
fileHandles?: {
|
|
390
|
-
name: string;
|
|
391
384
|
id: string;
|
|
385
|
+
name: string;
|
|
392
386
|
handle: string;
|
|
393
387
|
}[] | undefined;
|
|
388
|
+
customFields?: {
|
|
389
|
+
title: string;
|
|
390
|
+
id: string;
|
|
391
|
+
value?: unknown;
|
|
392
|
+
isPrivate?: boolean | undefined;
|
|
393
|
+
}[] | undefined;
|
|
394
394
|
}, {
|
|
395
|
-
name: string;
|
|
396
395
|
id: string;
|
|
396
|
+
name: string;
|
|
397
397
|
tags?: {
|
|
398
398
|
title: string;
|
|
399
399
|
id: string;
|
|
@@ -407,22 +407,16 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
407
407
|
type: "Personal" | "Work" | "Other";
|
|
408
408
|
isPrimary: boolean;
|
|
409
409
|
} | null | undefined;
|
|
410
|
-
|
|
410
|
+
emailAddresses?: {
|
|
411
411
|
value: string;
|
|
412
412
|
type: "Personal" | "Work" | "Other";
|
|
413
413
|
isPrimary: boolean;
|
|
414
|
-
} | null | undefined;
|
|
415
|
-
customFields?: {
|
|
416
|
-
title: string;
|
|
417
|
-
id: string;
|
|
418
|
-
value?: unknown;
|
|
419
|
-
isPrivate?: boolean | undefined;
|
|
420
414
|
}[] | undefined;
|
|
421
|
-
|
|
415
|
+
primaryPhoneNumber?: {
|
|
422
416
|
value: string;
|
|
423
417
|
type: "Personal" | "Work" | "Other";
|
|
424
418
|
isPrimary: boolean;
|
|
425
|
-
}
|
|
419
|
+
} | null | undefined;
|
|
426
420
|
phoneNumbers?: {
|
|
427
421
|
value: string;
|
|
428
422
|
type: "Personal" | "Work" | "Other";
|
|
@@ -436,15 +430,21 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
436
430
|
school?: string | null | undefined;
|
|
437
431
|
applicationIds?: string[] | undefined;
|
|
438
432
|
resumeFileHandle?: {
|
|
439
|
-
name: string;
|
|
440
433
|
id: string;
|
|
434
|
+
name: string;
|
|
441
435
|
handle: string;
|
|
442
436
|
} | null | undefined;
|
|
443
437
|
fileHandles?: {
|
|
444
|
-
name: string;
|
|
445
438
|
id: string;
|
|
439
|
+
name: string;
|
|
446
440
|
handle: string;
|
|
447
441
|
}[] | 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>;
|
|
@@ -457,8 +457,8 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
457
457
|
next_cursor?: string | undefined;
|
|
458
458
|
sync_token?: string | undefined;
|
|
459
459
|
candidates?: {
|
|
460
|
-
name: string;
|
|
461
460
|
id: string;
|
|
461
|
+
name: string;
|
|
462
462
|
tags?: {
|
|
463
463
|
title: string;
|
|
464
464
|
id: string;
|
|
@@ -472,22 +472,16 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
472
472
|
type: "Personal" | "Work" | "Other";
|
|
473
473
|
isPrimary: boolean;
|
|
474
474
|
} | null | undefined;
|
|
475
|
-
|
|
475
|
+
emailAddresses?: {
|
|
476
476
|
value: string;
|
|
477
477
|
type: "Personal" | "Work" | "Other";
|
|
478
478
|
isPrimary: boolean;
|
|
479
|
-
} | null | undefined;
|
|
480
|
-
customFields?: {
|
|
481
|
-
title: string;
|
|
482
|
-
id: string;
|
|
483
|
-
value?: unknown;
|
|
484
|
-
isPrivate?: boolean | undefined;
|
|
485
479
|
}[] | undefined;
|
|
486
|
-
|
|
480
|
+
primaryPhoneNumber?: {
|
|
487
481
|
value: string;
|
|
488
482
|
type: "Personal" | "Work" | "Other";
|
|
489
483
|
isPrimary: boolean;
|
|
490
|
-
}
|
|
484
|
+
} | null | undefined;
|
|
491
485
|
phoneNumbers?: {
|
|
492
486
|
value: string;
|
|
493
487
|
type: "Personal" | "Work" | "Other";
|
|
@@ -501,15 +495,21 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
501
495
|
school?: string | null | undefined;
|
|
502
496
|
applicationIds?: string[] | undefined;
|
|
503
497
|
resumeFileHandle?: {
|
|
504
|
-
name: string;
|
|
505
498
|
id: string;
|
|
499
|
+
name: string;
|
|
506
500
|
handle: string;
|
|
507
501
|
} | null | undefined;
|
|
508
502
|
fileHandles?: {
|
|
509
|
-
name: string;
|
|
510
503
|
id: string;
|
|
504
|
+
name: string;
|
|
511
505
|
handle: string;
|
|
512
506
|
}[] | undefined;
|
|
507
|
+
customFields?: {
|
|
508
|
+
title: string;
|
|
509
|
+
id: string;
|
|
510
|
+
value?: unknown;
|
|
511
|
+
isPrivate?: boolean | undefined;
|
|
512
|
+
}[] | undefined;
|
|
513
513
|
}[] | undefined;
|
|
514
514
|
more_data_available?: boolean | undefined;
|
|
515
515
|
}, {
|
|
@@ -519,8 +519,8 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
519
519
|
next_cursor?: string | undefined;
|
|
520
520
|
sync_token?: string | undefined;
|
|
521
521
|
candidates?: {
|
|
522
|
-
name: string;
|
|
523
522
|
id: string;
|
|
523
|
+
name: string;
|
|
524
524
|
tags?: {
|
|
525
525
|
title: string;
|
|
526
526
|
id: string;
|
|
@@ -534,22 +534,16 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
534
534
|
type: "Personal" | "Work" | "Other";
|
|
535
535
|
isPrimary: boolean;
|
|
536
536
|
} | null | undefined;
|
|
537
|
-
|
|
537
|
+
emailAddresses?: {
|
|
538
538
|
value: string;
|
|
539
539
|
type: "Personal" | "Work" | "Other";
|
|
540
540
|
isPrimary: boolean;
|
|
541
|
-
} | null | undefined;
|
|
542
|
-
customFields?: {
|
|
543
|
-
title: string;
|
|
544
|
-
id: string;
|
|
545
|
-
value?: unknown;
|
|
546
|
-
isPrivate?: boolean | undefined;
|
|
547
541
|
}[] | undefined;
|
|
548
|
-
|
|
542
|
+
primaryPhoneNumber?: {
|
|
549
543
|
value: string;
|
|
550
544
|
type: "Personal" | "Work" | "Other";
|
|
551
545
|
isPrimary: boolean;
|
|
552
|
-
}
|
|
546
|
+
} | null | undefined;
|
|
553
547
|
phoneNumbers?: {
|
|
554
548
|
value: string;
|
|
555
549
|
type: "Personal" | "Work" | "Other";
|
|
@@ -563,15 +557,21 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
563
557
|
school?: string | null | undefined;
|
|
564
558
|
applicationIds?: string[] | undefined;
|
|
565
559
|
resumeFileHandle?: {
|
|
566
|
-
name: string;
|
|
567
560
|
id: string;
|
|
561
|
+
name: string;
|
|
568
562
|
handle: string;
|
|
569
563
|
} | null | undefined;
|
|
570
564
|
fileHandles?: {
|
|
571
|
-
name: string;
|
|
572
565
|
id: string;
|
|
566
|
+
name: string;
|
|
573
567
|
handle: string;
|
|
574
568
|
}[] | undefined;
|
|
569
|
+
customFields?: {
|
|
570
|
+
title: string;
|
|
571
|
+
id: string;
|
|
572
|
+
value?: unknown;
|
|
573
|
+
isPrivate?: boolean | undefined;
|
|
574
|
+
}[] | undefined;
|
|
575
575
|
}[] | undefined;
|
|
576
576
|
more_data_available?: boolean | undefined;
|
|
577
577
|
}>, import("zod").ZodObject<{
|
|
@@ -625,8 +625,8 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
625
625
|
isPrivate?: boolean | undefined;
|
|
626
626
|
}>, "many">>;
|
|
627
627
|
}, "strip", import("zod").ZodTypeAny, {
|
|
628
|
-
name: string;
|
|
629
628
|
id: string;
|
|
629
|
+
name: string;
|
|
630
630
|
createdAt?: string | undefined;
|
|
631
631
|
updatedAt?: string | undefined;
|
|
632
632
|
primaryEmailAddress?: {
|
|
@@ -646,8 +646,8 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
646
646
|
isPrivate?: boolean | undefined;
|
|
647
647
|
}[] | undefined;
|
|
648
648
|
}, {
|
|
649
|
-
name: string;
|
|
650
649
|
id: string;
|
|
650
|
+
name: string;
|
|
651
651
|
createdAt?: string | undefined;
|
|
652
652
|
updatedAt?: string | undefined;
|
|
653
653
|
primaryEmailAddress?: {
|
|
@@ -673,8 +673,8 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
673
673
|
success: boolean;
|
|
674
674
|
error: string;
|
|
675
675
|
candidate?: {
|
|
676
|
-
name: string;
|
|
677
676
|
id: string;
|
|
677
|
+
name: string;
|
|
678
678
|
createdAt?: string | undefined;
|
|
679
679
|
updatedAt?: string | undefined;
|
|
680
680
|
primaryEmailAddress?: {
|
|
@@ -699,8 +699,8 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
699
699
|
success: boolean;
|
|
700
700
|
error: string;
|
|
701
701
|
candidate?: {
|
|
702
|
-
name: string;
|
|
703
702
|
id: string;
|
|
703
|
+
name: string;
|
|
704
704
|
createdAt?: string | undefined;
|
|
705
705
|
updatedAt?: string | undefined;
|
|
706
706
|
primaryEmailAddress?: {
|
|
@@ -771,8 +771,8 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
771
771
|
isPrivate?: boolean | undefined;
|
|
772
772
|
}>, "many">>;
|
|
773
773
|
}, "strip", import("zod").ZodTypeAny, {
|
|
774
|
-
name: string;
|
|
775
774
|
id: string;
|
|
775
|
+
name: string;
|
|
776
776
|
createdAt?: string | undefined;
|
|
777
777
|
updatedAt?: string | undefined;
|
|
778
778
|
primaryEmailAddress?: {
|
|
@@ -792,8 +792,8 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
792
792
|
isPrivate?: boolean | undefined;
|
|
793
793
|
}[] | undefined;
|
|
794
794
|
}, {
|
|
795
|
-
name: string;
|
|
796
795
|
id: string;
|
|
796
|
+
name: string;
|
|
797
797
|
createdAt?: string | undefined;
|
|
798
798
|
updatedAt?: string | undefined;
|
|
799
799
|
primaryEmailAddress?: {
|
|
@@ -820,8 +820,8 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
820
820
|
success: boolean;
|
|
821
821
|
error: string;
|
|
822
822
|
candidate?: {
|
|
823
|
-
name: string;
|
|
824
823
|
id: string;
|
|
824
|
+
name: string;
|
|
825
825
|
createdAt?: string | undefined;
|
|
826
826
|
updatedAt?: string | undefined;
|
|
827
827
|
primaryEmailAddress?: {
|
|
@@ -847,8 +847,8 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
847
847
|
success: boolean;
|
|
848
848
|
error: string;
|
|
849
849
|
candidate?: {
|
|
850
|
-
name: string;
|
|
851
850
|
id: string;
|
|
851
|
+
name: string;
|
|
852
852
|
createdAt?: string | undefined;
|
|
853
853
|
updatedAt?: string | undefined;
|
|
854
854
|
primaryEmailAddress?: {
|
|
@@ -920,8 +920,8 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
920
920
|
isPrivate?: boolean | undefined;
|
|
921
921
|
}>, "many">>;
|
|
922
922
|
}, "strip", import("zod").ZodTypeAny, {
|
|
923
|
-
name: string;
|
|
924
923
|
id: string;
|
|
924
|
+
name: string;
|
|
925
925
|
createdAt?: string | undefined;
|
|
926
926
|
updatedAt?: string | undefined;
|
|
927
927
|
primaryEmailAddress?: {
|
|
@@ -941,8 +941,8 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
941
941
|
isPrivate?: boolean | undefined;
|
|
942
942
|
}[] | undefined;
|
|
943
943
|
}, {
|
|
944
|
-
name: string;
|
|
945
944
|
id: string;
|
|
945
|
+
name: string;
|
|
946
946
|
createdAt?: string | undefined;
|
|
947
947
|
updatedAt?: string | undefined;
|
|
948
948
|
primaryEmailAddress?: {
|
|
@@ -968,8 +968,8 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
968
968
|
success: boolean;
|
|
969
969
|
error: string;
|
|
970
970
|
candidates?: {
|
|
971
|
-
name: string;
|
|
972
971
|
id: string;
|
|
972
|
+
name: string;
|
|
973
973
|
createdAt?: string | undefined;
|
|
974
974
|
updatedAt?: string | undefined;
|
|
975
975
|
primaryEmailAddress?: {
|
|
@@ -994,8 +994,8 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
994
994
|
success: boolean;
|
|
995
995
|
error: string;
|
|
996
996
|
candidates?: {
|
|
997
|
-
name: string;
|
|
998
997
|
id: string;
|
|
998
|
+
name: string;
|
|
999
999
|
createdAt?: string | undefined;
|
|
1000
1000
|
updatedAt?: string | undefined;
|
|
1001
1001
|
primaryEmailAddress?: {
|
|
@@ -1066,8 +1066,8 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
1066
1066
|
isPrivate?: boolean | undefined;
|
|
1067
1067
|
}>, "many">>;
|
|
1068
1068
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1069
|
-
name: string;
|
|
1070
1069
|
id: string;
|
|
1070
|
+
name: string;
|
|
1071
1071
|
createdAt?: string | undefined;
|
|
1072
1072
|
updatedAt?: string | undefined;
|
|
1073
1073
|
primaryEmailAddress?: {
|
|
@@ -1087,8 +1087,8 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
1087
1087
|
isPrivate?: boolean | undefined;
|
|
1088
1088
|
}[] | undefined;
|
|
1089
1089
|
}, {
|
|
1090
|
-
name: string;
|
|
1091
1090
|
id: string;
|
|
1091
|
+
name: string;
|
|
1092
1092
|
createdAt?: string | undefined;
|
|
1093
1093
|
updatedAt?: string | undefined;
|
|
1094
1094
|
primaryEmailAddress?: {
|
|
@@ -1114,8 +1114,8 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
1114
1114
|
success: boolean;
|
|
1115
1115
|
error: string;
|
|
1116
1116
|
candidate?: {
|
|
1117
|
-
name: string;
|
|
1118
1117
|
id: string;
|
|
1118
|
+
name: string;
|
|
1119
1119
|
createdAt?: string | undefined;
|
|
1120
1120
|
updatedAt?: string | undefined;
|
|
1121
1121
|
primaryEmailAddress?: {
|
|
@@ -1140,8 +1140,8 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
1140
1140
|
success: boolean;
|
|
1141
1141
|
error: string;
|
|
1142
1142
|
candidate?: {
|
|
1143
|
-
name: string;
|
|
1144
1143
|
id: string;
|
|
1144
|
+
name: string;
|
|
1145
1145
|
createdAt?: string | undefined;
|
|
1146
1146
|
updatedAt?: string | undefined;
|
|
1147
1147
|
primaryEmailAddress?: {
|
|
@@ -1257,8 +1257,8 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
1257
1257
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1258
1258
|
title: string;
|
|
1259
1259
|
id: string;
|
|
1260
|
-
isPrivate: boolean;
|
|
1261
1260
|
isArchived: boolean;
|
|
1261
|
+
isPrivate: boolean;
|
|
1262
1262
|
objectType: string;
|
|
1263
1263
|
fieldType: string;
|
|
1264
1264
|
selectableValues?: {
|
|
@@ -1269,8 +1269,8 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
1269
1269
|
}, {
|
|
1270
1270
|
title: string;
|
|
1271
1271
|
id: string;
|
|
1272
|
-
isPrivate: boolean;
|
|
1273
1272
|
isArchived: boolean;
|
|
1273
|
+
isPrivate: boolean;
|
|
1274
1274
|
objectType: string;
|
|
1275
1275
|
fieldType: string;
|
|
1276
1276
|
selectableValues?: {
|
|
@@ -1291,8 +1291,8 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
1291
1291
|
custom_fields?: {
|
|
1292
1292
|
title: string;
|
|
1293
1293
|
id: string;
|
|
1294
|
-
isPrivate: boolean;
|
|
1295
1294
|
isArchived: boolean;
|
|
1295
|
+
isPrivate: boolean;
|
|
1296
1296
|
objectType: string;
|
|
1297
1297
|
fieldType: string;
|
|
1298
1298
|
selectableValues?: {
|
|
@@ -1311,8 +1311,8 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
1311
1311
|
custom_fields?: {
|
|
1312
1312
|
title: string;
|
|
1313
1313
|
id: string;
|
|
1314
|
-
isPrivate: boolean;
|
|
1315
1314
|
isArchived: boolean;
|
|
1315
|
+
isPrivate: boolean;
|
|
1316
1316
|
objectType: string;
|
|
1317
1317
|
fieldType: string;
|
|
1318
1318
|
selectableValues?: {
|