@bubblelab/bubble-core 0.1.113 → 0.1.114
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 +94 -94
- package/dist/bubbles/service-bubble/agi-inc.d.ts +132 -132
- package/dist/bubbles/service-bubble/ai-agent.d.ts +70 -70
- package/dist/bubbles/service-bubble/airtable.d.ts +250 -250
- package/dist/bubbles/service-bubble/apify/apify.d.ts +24 -24
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +228 -228
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +57 -57
- package/dist/bubbles/service-bubble/confluence/confluence.d.ts +84 -84
- package/dist/bubbles/service-bubble/confluence/confluence.schema.d.ts +87 -87
- package/dist/bubbles/service-bubble/confluence/confluence.schema.js +1 -1
- package/dist/bubbles/service-bubble/confluence/confluence.schema.js.map +1 -1
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +102 -102
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +56 -56
- package/dist/bubbles/service-bubble/firecrawl.d.ts +298 -298
- package/dist/bubbles/service-bubble/followupboss.d.ts +322 -322
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +44 -44
- package/dist/bubbles/service-bubble/github.d.ts +298 -298
- package/dist/bubbles/service-bubble/gmail.d.ts +650 -650
- package/dist/bubbles/service-bubble/google-calendar.d.ts +66 -66
- package/dist/bubbles/service-bubble/google-drive.d.ts +152 -152
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +44 -44
- package/dist/bubbles/service-bubble/hello-world.d.ts +6 -6
- package/dist/bubbles/service-bubble/http.d.ts +16 -16
- package/dist/bubbles/service-bubble/insforge-db.d.ts +4 -4
- package/dist/bubbles/service-bubble/jira/jira.d.ts +91 -91
- package/dist/bubbles/service-bubble/notion/notion.d.ts +1651 -1651
- package/dist/bubbles/service-bubble/postgresql.d.ts +4 -4
- package/dist/bubbles/service-bubble/resend.d.ts +24 -24
- package/dist/bubbles/service-bubble/slack/slack.d.ts +368 -368
- package/dist/bubbles/service-bubble/storage.d.ts +44 -44
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +157 -157
- package/dist/bubbles/service-bubble/telegram.d.ts +254 -254
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +26 -26
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +16 -16
- package/dist/bubbles/tool-bubble/chart-js-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/code-edit-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +54 -54
- package/dist/bubbles/tool-bubble/get-bubble-details-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/get-trigger-detail-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +66 -66
- package/dist/bubbles/tool-bubble/list-airtable-bases-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/list-airtable-tables-tool.d.ts +36 -36
- package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +62 -62
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +16 -16
- package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/tool-template.d.ts +4 -4
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +82 -82
- package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +16 -16
- package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +20 -20
- package/dist/bubbles/tool-bubble/yc-scraper-tool.d.ts +64 -64
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +38 -38
- package/dist/bubbles/workflow-bubble/database-analyzer.workflow.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +12 -12
- package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +36 -36
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +142 -142
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +32 -32
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +6 -6
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +14 -14
- package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +4 -4
- package/dist/bubbles.json +4 -2
- package/package.json +2 -2
|
@@ -57,16 +57,16 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
57
57
|
operation: "list_candidates";
|
|
58
58
|
limit: number;
|
|
59
59
|
status?: "Hired" | "Archived" | "Active" | "Lead" | undefined;
|
|
60
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
61
60
|
cursor?: string | undefined;
|
|
61
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
62
62
|
job_id?: string | undefined;
|
|
63
63
|
created_after?: number | undefined;
|
|
64
64
|
}, {
|
|
65
65
|
operation: "list_candidates";
|
|
66
66
|
status?: "Hired" | "Archived" | "Active" | "Lead" | undefined;
|
|
67
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
68
67
|
limit?: number | undefined;
|
|
69
68
|
cursor?: string | undefined;
|
|
69
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
70
70
|
job_id?: string | undefined;
|
|
71
71
|
created_after?: number | undefined;
|
|
72
72
|
}>, import("zod").ZodObject<{
|
|
@@ -198,14 +198,14 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
198
198
|
}, "strip", import("zod").ZodTypeAny, {
|
|
199
199
|
operation: "list_custom_fields";
|
|
200
200
|
limit: number;
|
|
201
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
202
201
|
cursor?: string | undefined;
|
|
202
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
203
203
|
sync_token?: string | undefined;
|
|
204
204
|
}, {
|
|
205
205
|
operation: "list_custom_fields";
|
|
206
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
207
206
|
limit?: number | undefined;
|
|
208
207
|
cursor?: string | undefined;
|
|
208
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
209
209
|
sync_token?: string | undefined;
|
|
210
210
|
}>]>;
|
|
211
211
|
static readonly resultSchema: import("zod").ZodDiscriminatedUnion<"operation", [import("zod").ZodObject<{
|
|
@@ -221,12 +221,12 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
221
221
|
type: import("zod").ZodEnum<["Personal", "Work", "Other"]>;
|
|
222
222
|
isPrimary: import("zod").ZodBoolean;
|
|
223
223
|
}, "strip", import("zod").ZodTypeAny, {
|
|
224
|
-
value: string;
|
|
225
224
|
type: "Personal" | "Work" | "Other";
|
|
225
|
+
value: string;
|
|
226
226
|
isPrimary: boolean;
|
|
227
227
|
}, {
|
|
228
|
-
value: string;
|
|
229
228
|
type: "Personal" | "Work" | "Other";
|
|
229
|
+
value: string;
|
|
230
230
|
isPrimary: boolean;
|
|
231
231
|
}>>>;
|
|
232
232
|
emailAddresses: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -234,12 +234,12 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
234
234
|
type: import("zod").ZodEnum<["Personal", "Work", "Other"]>;
|
|
235
235
|
isPrimary: import("zod").ZodBoolean;
|
|
236
236
|
}, "strip", import("zod").ZodTypeAny, {
|
|
237
|
-
value: string;
|
|
238
237
|
type: "Personal" | "Work" | "Other";
|
|
238
|
+
value: string;
|
|
239
239
|
isPrimary: boolean;
|
|
240
240
|
}, {
|
|
241
|
-
value: string;
|
|
242
241
|
type: "Personal" | "Work" | "Other";
|
|
242
|
+
value: string;
|
|
243
243
|
isPrimary: boolean;
|
|
244
244
|
}>, "many">>;
|
|
245
245
|
primaryPhoneNumber: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
@@ -247,12 +247,12 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
247
247
|
type: import("zod").ZodEnum<["Personal", "Work", "Other"]>;
|
|
248
248
|
isPrimary: import("zod").ZodBoolean;
|
|
249
249
|
}, "strip", import("zod").ZodTypeAny, {
|
|
250
|
-
value: string;
|
|
251
250
|
type: "Personal" | "Work" | "Other";
|
|
251
|
+
value: string;
|
|
252
252
|
isPrimary: boolean;
|
|
253
253
|
}, {
|
|
254
|
-
value: string;
|
|
255
254
|
type: "Personal" | "Work" | "Other";
|
|
255
|
+
value: string;
|
|
256
256
|
isPrimary: boolean;
|
|
257
257
|
}>>>;
|
|
258
258
|
phoneNumbers: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -260,12 +260,12 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
260
260
|
type: import("zod").ZodEnum<["Personal", "Work", "Other"]>;
|
|
261
261
|
isPrimary: import("zod").ZodBoolean;
|
|
262
262
|
}, "strip", import("zod").ZodTypeAny, {
|
|
263
|
-
value: string;
|
|
264
263
|
type: "Personal" | "Work" | "Other";
|
|
264
|
+
value: string;
|
|
265
265
|
isPrimary: boolean;
|
|
266
266
|
}, {
|
|
267
|
-
value: string;
|
|
268
267
|
type: "Personal" | "Work" | "Other";
|
|
268
|
+
value: string;
|
|
269
269
|
isPrimary: boolean;
|
|
270
270
|
}>, "many">>;
|
|
271
271
|
socialLinks: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -283,12 +283,12 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
283
283
|
title: import("zod").ZodString;
|
|
284
284
|
isArchived: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
285
285
|
}, "strip", import("zod").ZodTypeAny, {
|
|
286
|
-
title: string;
|
|
287
286
|
id: string;
|
|
287
|
+
title: string;
|
|
288
288
|
isArchived?: boolean | undefined;
|
|
289
289
|
}, {
|
|
290
|
-
title: string;
|
|
291
290
|
id: string;
|
|
291
|
+
title: string;
|
|
292
292
|
isArchived?: boolean | undefined;
|
|
293
293
|
}>, "many">>;
|
|
294
294
|
position: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
@@ -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<{
|
|
@@ -327,50 +327,44 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
327
327
|
value: import("zod").ZodUnknown;
|
|
328
328
|
isPrivate: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
329
329
|
}, "strip", import("zod").ZodTypeAny, {
|
|
330
|
-
title: string;
|
|
331
330
|
id: string;
|
|
331
|
+
title: string;
|
|
332
332
|
value?: unknown;
|
|
333
333
|
isPrivate?: boolean | undefined;
|
|
334
334
|
}, {
|
|
335
|
-
title: string;
|
|
336
335
|
id: string;
|
|
336
|
+
title: string;
|
|
337
337
|
value?: unknown;
|
|
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
|
+
createdAt?: string | undefined;
|
|
343
344
|
tags?: {
|
|
344
|
-
title: string;
|
|
345
345
|
id: string;
|
|
346
|
+
title: string;
|
|
346
347
|
isArchived?: boolean | undefined;
|
|
347
348
|
}[] | undefined;
|
|
348
|
-
createdAt?: string | undefined;
|
|
349
349
|
updatedAt?: string | undefined;
|
|
350
350
|
primaryEmailAddress?: {
|
|
351
|
-
value: string;
|
|
352
351
|
type: "Personal" | "Work" | "Other";
|
|
353
|
-
isPrimary: boolean;
|
|
354
|
-
} | null | undefined;
|
|
355
|
-
primaryPhoneNumber?: {
|
|
356
352
|
value: string;
|
|
357
|
-
type: "Personal" | "Work" | "Other";
|
|
358
353
|
isPrimary: boolean;
|
|
359
354
|
} | null | undefined;
|
|
360
|
-
customFields?: {
|
|
361
|
-
title: string;
|
|
362
|
-
id: string;
|
|
363
|
-
value?: unknown;
|
|
364
|
-
isPrivate?: boolean | undefined;
|
|
365
|
-
}[] | undefined;
|
|
366
355
|
emailAddresses?: {
|
|
367
|
-
value: string;
|
|
368
356
|
type: "Personal" | "Work" | "Other";
|
|
357
|
+
value: string;
|
|
369
358
|
isPrimary: boolean;
|
|
370
359
|
}[] | undefined;
|
|
371
|
-
|
|
360
|
+
primaryPhoneNumber?: {
|
|
361
|
+
type: "Personal" | "Work" | "Other";
|
|
372
362
|
value: string;
|
|
363
|
+
isPrimary: boolean;
|
|
364
|
+
} | null | undefined;
|
|
365
|
+
phoneNumbers?: {
|
|
373
366
|
type: "Personal" | "Work" | "Other";
|
|
367
|
+
value: string;
|
|
374
368
|
isPrimary: boolean;
|
|
375
369
|
}[] | undefined;
|
|
376
370
|
socialLinks?: {
|
|
@@ -382,49 +376,49 @@ 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
|
+
id: string;
|
|
390
|
+
title: string;
|
|
391
|
+
value?: unknown;
|
|
392
|
+
isPrivate?: boolean | undefined;
|
|
393
|
+
}[] | undefined;
|
|
394
394
|
}, {
|
|
395
|
-
name: string;
|
|
396
395
|
id: string;
|
|
396
|
+
name: string;
|
|
397
|
+
createdAt?: string | undefined;
|
|
397
398
|
tags?: {
|
|
398
|
-
title: string;
|
|
399
399
|
id: string;
|
|
400
|
+
title: string;
|
|
400
401
|
isArchived?: boolean | undefined;
|
|
401
402
|
}[] | undefined;
|
|
402
|
-
createdAt?: string | undefined;
|
|
403
403
|
updatedAt?: string | undefined;
|
|
404
404
|
primaryEmailAddress?: {
|
|
405
|
-
value: string;
|
|
406
405
|
type: "Personal" | "Work" | "Other";
|
|
407
|
-
isPrimary: boolean;
|
|
408
|
-
} | null | undefined;
|
|
409
|
-
primaryPhoneNumber?: {
|
|
410
406
|
value: string;
|
|
411
|
-
type: "Personal" | "Work" | "Other";
|
|
412
407
|
isPrimary: boolean;
|
|
413
408
|
} | null | undefined;
|
|
414
|
-
customFields?: {
|
|
415
|
-
title: string;
|
|
416
|
-
id: string;
|
|
417
|
-
value?: unknown;
|
|
418
|
-
isPrivate?: boolean | undefined;
|
|
419
|
-
}[] | undefined;
|
|
420
409
|
emailAddresses?: {
|
|
421
|
-
value: string;
|
|
422
410
|
type: "Personal" | "Work" | "Other";
|
|
411
|
+
value: string;
|
|
423
412
|
isPrimary: boolean;
|
|
424
413
|
}[] | undefined;
|
|
425
|
-
|
|
414
|
+
primaryPhoneNumber?: {
|
|
415
|
+
type: "Personal" | "Work" | "Other";
|
|
426
416
|
value: string;
|
|
417
|
+
isPrimary: boolean;
|
|
418
|
+
} | null | undefined;
|
|
419
|
+
phoneNumbers?: {
|
|
427
420
|
type: "Personal" | "Work" | "Other";
|
|
421
|
+
value: string;
|
|
428
422
|
isPrimary: boolean;
|
|
429
423
|
}[] | undefined;
|
|
430
424
|
socialLinks?: {
|
|
@@ -436,60 +430,60 @@ 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
|
+
id: string;
|
|
444
|
+
title: 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>;
|
|
451
451
|
sync_token: import("zod").ZodOptional<import("zod").ZodString>;
|
|
452
452
|
error: import("zod").ZodString;
|
|
453
453
|
}, "strip", import("zod").ZodTypeAny, {
|
|
454
|
-
error: string;
|
|
455
|
-
success: boolean;
|
|
456
454
|
operation: "list_candidates";
|
|
455
|
+
success: boolean;
|
|
456
|
+
error: string;
|
|
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
|
+
createdAt?: string | undefined;
|
|
462
463
|
tags?: {
|
|
463
|
-
title: string;
|
|
464
464
|
id: string;
|
|
465
|
+
title: string;
|
|
465
466
|
isArchived?: boolean | undefined;
|
|
466
467
|
}[] | undefined;
|
|
467
|
-
createdAt?: string | undefined;
|
|
468
468
|
updatedAt?: string | undefined;
|
|
469
469
|
primaryEmailAddress?: {
|
|
470
|
-
value: string;
|
|
471
470
|
type: "Personal" | "Work" | "Other";
|
|
472
|
-
isPrimary: boolean;
|
|
473
|
-
} | null | undefined;
|
|
474
|
-
primaryPhoneNumber?: {
|
|
475
471
|
value: string;
|
|
476
|
-
type: "Personal" | "Work" | "Other";
|
|
477
472
|
isPrimary: boolean;
|
|
478
473
|
} | null | undefined;
|
|
479
|
-
customFields?: {
|
|
480
|
-
title: string;
|
|
481
|
-
id: string;
|
|
482
|
-
value?: unknown;
|
|
483
|
-
isPrivate?: boolean | undefined;
|
|
484
|
-
}[] | undefined;
|
|
485
474
|
emailAddresses?: {
|
|
486
|
-
value: string;
|
|
487
475
|
type: "Personal" | "Work" | "Other";
|
|
476
|
+
value: string;
|
|
488
477
|
isPrimary: boolean;
|
|
489
478
|
}[] | undefined;
|
|
490
|
-
|
|
479
|
+
primaryPhoneNumber?: {
|
|
480
|
+
type: "Personal" | "Work" | "Other";
|
|
491
481
|
value: string;
|
|
482
|
+
isPrimary: boolean;
|
|
483
|
+
} | null | undefined;
|
|
484
|
+
phoneNumbers?: {
|
|
492
485
|
type: "Personal" | "Work" | "Other";
|
|
486
|
+
value: string;
|
|
493
487
|
isPrimary: boolean;
|
|
494
488
|
}[] | undefined;
|
|
495
489
|
socialLinks?: {
|
|
@@ -501,57 +495,57 @@ 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
|
+
id: string;
|
|
509
|
+
title: string;
|
|
510
|
+
value?: unknown;
|
|
511
|
+
isPrivate?: boolean | undefined;
|
|
512
|
+
}[] | undefined;
|
|
513
513
|
}[] | undefined;
|
|
514
514
|
more_data_available?: boolean | undefined;
|
|
515
515
|
}, {
|
|
516
|
-
error: string;
|
|
517
|
-
success: boolean;
|
|
518
516
|
operation: "list_candidates";
|
|
517
|
+
success: boolean;
|
|
518
|
+
error: string;
|
|
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
|
+
createdAt?: string | undefined;
|
|
524
525
|
tags?: {
|
|
525
|
-
title: string;
|
|
526
526
|
id: string;
|
|
527
|
+
title: string;
|
|
527
528
|
isArchived?: boolean | undefined;
|
|
528
529
|
}[] | undefined;
|
|
529
|
-
createdAt?: string | undefined;
|
|
530
530
|
updatedAt?: string | undefined;
|
|
531
531
|
primaryEmailAddress?: {
|
|
532
|
-
value: string;
|
|
533
532
|
type: "Personal" | "Work" | "Other";
|
|
534
|
-
isPrimary: boolean;
|
|
535
|
-
} | null | undefined;
|
|
536
|
-
primaryPhoneNumber?: {
|
|
537
533
|
value: string;
|
|
538
|
-
type: "Personal" | "Work" | "Other";
|
|
539
534
|
isPrimary: boolean;
|
|
540
535
|
} | null | undefined;
|
|
541
|
-
customFields?: {
|
|
542
|
-
title: string;
|
|
543
|
-
id: string;
|
|
544
|
-
value?: unknown;
|
|
545
|
-
isPrivate?: boolean | undefined;
|
|
546
|
-
}[] | undefined;
|
|
547
536
|
emailAddresses?: {
|
|
548
|
-
value: string;
|
|
549
537
|
type: "Personal" | "Work" | "Other";
|
|
538
|
+
value: string;
|
|
550
539
|
isPrimary: boolean;
|
|
551
540
|
}[] | undefined;
|
|
552
|
-
|
|
541
|
+
primaryPhoneNumber?: {
|
|
542
|
+
type: "Personal" | "Work" | "Other";
|
|
553
543
|
value: string;
|
|
544
|
+
isPrimary: boolean;
|
|
545
|
+
} | null | undefined;
|
|
546
|
+
phoneNumbers?: {
|
|
554
547
|
type: "Personal" | "Work" | "Other";
|
|
548
|
+
value: string;
|
|
555
549
|
isPrimary: boolean;
|
|
556
550
|
}[] | undefined;
|
|
557
551
|
socialLinks?: {
|
|
@@ -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
|
+
id: string;
|
|
571
|
+
title: 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<{
|
|
@@ -587,12 +587,12 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
587
587
|
type: import("zod").ZodEnum<["Personal", "Work", "Other"]>;
|
|
588
588
|
isPrimary: import("zod").ZodBoolean;
|
|
589
589
|
}, "strip", import("zod").ZodTypeAny, {
|
|
590
|
-
value: string;
|
|
591
590
|
type: "Personal" | "Work" | "Other";
|
|
591
|
+
value: string;
|
|
592
592
|
isPrimary: boolean;
|
|
593
593
|
}, {
|
|
594
|
-
value: string;
|
|
595
594
|
type: "Personal" | "Work" | "Other";
|
|
595
|
+
value: string;
|
|
596
596
|
isPrimary: boolean;
|
|
597
597
|
}>>>;
|
|
598
598
|
primaryPhoneNumber: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
@@ -600,12 +600,12 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
600
600
|
type: import("zod").ZodEnum<["Personal", "Work", "Other"]>;
|
|
601
601
|
isPrimary: import("zod").ZodBoolean;
|
|
602
602
|
}, "strip", import("zod").ZodTypeAny, {
|
|
603
|
-
value: string;
|
|
604
603
|
type: "Personal" | "Work" | "Other";
|
|
604
|
+
value: string;
|
|
605
605
|
isPrimary: boolean;
|
|
606
606
|
}, {
|
|
607
|
-
value: string;
|
|
608
607
|
type: "Personal" | "Work" | "Other";
|
|
608
|
+
value: string;
|
|
609
609
|
isPrimary: boolean;
|
|
610
610
|
}>>>;
|
|
611
611
|
customFields: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -614,108 +614,108 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
614
614
|
value: import("zod").ZodUnknown;
|
|
615
615
|
isPrivate: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
616
616
|
}, "strip", import("zod").ZodTypeAny, {
|
|
617
|
-
title: string;
|
|
618
617
|
id: string;
|
|
618
|
+
title: string;
|
|
619
619
|
value?: unknown;
|
|
620
620
|
isPrivate?: boolean | undefined;
|
|
621
621
|
}, {
|
|
622
|
-
title: string;
|
|
623
622
|
id: string;
|
|
623
|
+
title: string;
|
|
624
624
|
value?: unknown;
|
|
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?: {
|
|
633
|
-
value: string;
|
|
634
633
|
type: "Personal" | "Work" | "Other";
|
|
634
|
+
value: string;
|
|
635
635
|
isPrimary: boolean;
|
|
636
636
|
} | null | undefined;
|
|
637
637
|
primaryPhoneNumber?: {
|
|
638
|
-
value: string;
|
|
639
638
|
type: "Personal" | "Work" | "Other";
|
|
639
|
+
value: string;
|
|
640
640
|
isPrimary: boolean;
|
|
641
641
|
} | null | undefined;
|
|
642
642
|
customFields?: {
|
|
643
|
-
title: string;
|
|
644
643
|
id: string;
|
|
644
|
+
title: string;
|
|
645
645
|
value?: unknown;
|
|
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?: {
|
|
654
|
-
value: string;
|
|
655
654
|
type: "Personal" | "Work" | "Other";
|
|
655
|
+
value: string;
|
|
656
656
|
isPrimary: boolean;
|
|
657
657
|
} | null | undefined;
|
|
658
658
|
primaryPhoneNumber?: {
|
|
659
|
-
value: string;
|
|
660
659
|
type: "Personal" | "Work" | "Other";
|
|
660
|
+
value: string;
|
|
661
661
|
isPrimary: boolean;
|
|
662
662
|
} | null | undefined;
|
|
663
663
|
customFields?: {
|
|
664
|
-
title: string;
|
|
665
664
|
id: string;
|
|
665
|
+
title: string;
|
|
666
666
|
value?: unknown;
|
|
667
667
|
isPrivate?: boolean | undefined;
|
|
668
668
|
}[] | undefined;
|
|
669
669
|
}>>;
|
|
670
670
|
error: import("zod").ZodString;
|
|
671
671
|
}, "strip", import("zod").ZodTypeAny, {
|
|
672
|
-
error: string;
|
|
673
|
-
success: boolean;
|
|
674
672
|
operation: "get_candidate";
|
|
673
|
+
success: boolean;
|
|
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?: {
|
|
681
|
-
value: string;
|
|
682
681
|
type: "Personal" | "Work" | "Other";
|
|
682
|
+
value: string;
|
|
683
683
|
isPrimary: boolean;
|
|
684
684
|
} | null | undefined;
|
|
685
685
|
primaryPhoneNumber?: {
|
|
686
|
-
value: string;
|
|
687
686
|
type: "Personal" | "Work" | "Other";
|
|
687
|
+
value: string;
|
|
688
688
|
isPrimary: boolean;
|
|
689
689
|
} | null | undefined;
|
|
690
690
|
customFields?: {
|
|
691
|
-
title: string;
|
|
692
691
|
id: string;
|
|
692
|
+
title: string;
|
|
693
693
|
value?: unknown;
|
|
694
694
|
isPrivate?: boolean | undefined;
|
|
695
695
|
}[] | undefined;
|
|
696
696
|
} | undefined;
|
|
697
697
|
}, {
|
|
698
|
-
error: string;
|
|
699
|
-
success: boolean;
|
|
700
698
|
operation: "get_candidate";
|
|
699
|
+
success: boolean;
|
|
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?: {
|
|
707
|
-
value: string;
|
|
708
707
|
type: "Personal" | "Work" | "Other";
|
|
708
|
+
value: string;
|
|
709
709
|
isPrimary: boolean;
|
|
710
710
|
} | null | undefined;
|
|
711
711
|
primaryPhoneNumber?: {
|
|
712
|
-
value: string;
|
|
713
712
|
type: "Personal" | "Work" | "Other";
|
|
713
|
+
value: string;
|
|
714
714
|
isPrimary: boolean;
|
|
715
715
|
} | null | undefined;
|
|
716
716
|
customFields?: {
|
|
717
|
-
title: string;
|
|
718
717
|
id: string;
|
|
718
|
+
title: string;
|
|
719
719
|
value?: unknown;
|
|
720
720
|
isPrivate?: boolean | undefined;
|
|
721
721
|
}[] | undefined;
|
|
@@ -733,12 +733,12 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
733
733
|
type: import("zod").ZodEnum<["Personal", "Work", "Other"]>;
|
|
734
734
|
isPrimary: import("zod").ZodBoolean;
|
|
735
735
|
}, "strip", import("zod").ZodTypeAny, {
|
|
736
|
-
value: string;
|
|
737
736
|
type: "Personal" | "Work" | "Other";
|
|
737
|
+
value: string;
|
|
738
738
|
isPrimary: boolean;
|
|
739
739
|
}, {
|
|
740
|
-
value: string;
|
|
741
740
|
type: "Personal" | "Work" | "Other";
|
|
741
|
+
value: string;
|
|
742
742
|
isPrimary: boolean;
|
|
743
743
|
}>>>;
|
|
744
744
|
primaryPhoneNumber: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
@@ -746,12 +746,12 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
746
746
|
type: import("zod").ZodEnum<["Personal", "Work", "Other"]>;
|
|
747
747
|
isPrimary: import("zod").ZodBoolean;
|
|
748
748
|
}, "strip", import("zod").ZodTypeAny, {
|
|
749
|
-
value: string;
|
|
750
749
|
type: "Personal" | "Work" | "Other";
|
|
750
|
+
value: string;
|
|
751
751
|
isPrimary: boolean;
|
|
752
752
|
}, {
|
|
753
|
-
value: string;
|
|
754
753
|
type: "Personal" | "Work" | "Other";
|
|
754
|
+
value: string;
|
|
755
755
|
isPrimary: boolean;
|
|
756
756
|
}>>>;
|
|
757
757
|
customFields: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -760,55 +760,55 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
760
760
|
value: import("zod").ZodUnknown;
|
|
761
761
|
isPrivate: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
762
762
|
}, "strip", import("zod").ZodTypeAny, {
|
|
763
|
-
title: string;
|
|
764
763
|
id: string;
|
|
764
|
+
title: string;
|
|
765
765
|
value?: unknown;
|
|
766
766
|
isPrivate?: boolean | undefined;
|
|
767
767
|
}, {
|
|
768
|
-
title: string;
|
|
769
768
|
id: string;
|
|
769
|
+
title: string;
|
|
770
770
|
value?: unknown;
|
|
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?: {
|
|
779
|
-
value: string;
|
|
780
779
|
type: "Personal" | "Work" | "Other";
|
|
780
|
+
value: string;
|
|
781
781
|
isPrimary: boolean;
|
|
782
782
|
} | null | undefined;
|
|
783
783
|
primaryPhoneNumber?: {
|
|
784
|
-
value: string;
|
|
785
784
|
type: "Personal" | "Work" | "Other";
|
|
785
|
+
value: string;
|
|
786
786
|
isPrimary: boolean;
|
|
787
787
|
} | null | undefined;
|
|
788
788
|
customFields?: {
|
|
789
|
-
title: string;
|
|
790
789
|
id: string;
|
|
790
|
+
title: string;
|
|
791
791
|
value?: unknown;
|
|
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?: {
|
|
800
|
-
value: string;
|
|
801
800
|
type: "Personal" | "Work" | "Other";
|
|
801
|
+
value: string;
|
|
802
802
|
isPrimary: boolean;
|
|
803
803
|
} | null | undefined;
|
|
804
804
|
primaryPhoneNumber?: {
|
|
805
|
-
value: string;
|
|
806
805
|
type: "Personal" | "Work" | "Other";
|
|
806
|
+
value: string;
|
|
807
807
|
isPrimary: boolean;
|
|
808
808
|
} | null | undefined;
|
|
809
809
|
customFields?: {
|
|
810
|
-
title: string;
|
|
811
810
|
id: string;
|
|
811
|
+
title: string;
|
|
812
812
|
value?: unknown;
|
|
813
813
|
isPrivate?: boolean | undefined;
|
|
814
814
|
}[] | undefined;
|
|
@@ -816,54 +816,54 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
816
816
|
duplicate: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
817
817
|
error: import("zod").ZodString;
|
|
818
818
|
}, "strip", import("zod").ZodTypeAny, {
|
|
819
|
-
error: string;
|
|
820
|
-
success: boolean;
|
|
821
819
|
operation: "create_candidate";
|
|
820
|
+
success: boolean;
|
|
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?: {
|
|
828
|
-
value: string;
|
|
829
828
|
type: "Personal" | "Work" | "Other";
|
|
829
|
+
value: string;
|
|
830
830
|
isPrimary: boolean;
|
|
831
831
|
} | null | undefined;
|
|
832
832
|
primaryPhoneNumber?: {
|
|
833
|
-
value: string;
|
|
834
833
|
type: "Personal" | "Work" | "Other";
|
|
834
|
+
value: string;
|
|
835
835
|
isPrimary: boolean;
|
|
836
836
|
} | null | undefined;
|
|
837
837
|
customFields?: {
|
|
838
|
-
title: string;
|
|
839
838
|
id: string;
|
|
839
|
+
title: string;
|
|
840
840
|
value?: unknown;
|
|
841
841
|
isPrivate?: boolean | undefined;
|
|
842
842
|
}[] | undefined;
|
|
843
843
|
} | undefined;
|
|
844
844
|
duplicate?: boolean | undefined;
|
|
845
845
|
}, {
|
|
846
|
-
error: string;
|
|
847
|
-
success: boolean;
|
|
848
846
|
operation: "create_candidate";
|
|
847
|
+
success: boolean;
|
|
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?: {
|
|
855
|
-
value: string;
|
|
856
855
|
type: "Personal" | "Work" | "Other";
|
|
856
|
+
value: string;
|
|
857
857
|
isPrimary: boolean;
|
|
858
858
|
} | null | undefined;
|
|
859
859
|
primaryPhoneNumber?: {
|
|
860
|
-
value: string;
|
|
861
860
|
type: "Personal" | "Work" | "Other";
|
|
861
|
+
value: string;
|
|
862
862
|
isPrimary: boolean;
|
|
863
863
|
} | null | undefined;
|
|
864
864
|
customFields?: {
|
|
865
|
-
title: string;
|
|
866
865
|
id: string;
|
|
866
|
+
title: string;
|
|
867
867
|
value?: unknown;
|
|
868
868
|
isPrivate?: boolean | undefined;
|
|
869
869
|
}[] | undefined;
|
|
@@ -882,12 +882,12 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
882
882
|
type: import("zod").ZodEnum<["Personal", "Work", "Other"]>;
|
|
883
883
|
isPrimary: import("zod").ZodBoolean;
|
|
884
884
|
}, "strip", import("zod").ZodTypeAny, {
|
|
885
|
-
value: string;
|
|
886
885
|
type: "Personal" | "Work" | "Other";
|
|
886
|
+
value: string;
|
|
887
887
|
isPrimary: boolean;
|
|
888
888
|
}, {
|
|
889
|
-
value: string;
|
|
890
889
|
type: "Personal" | "Work" | "Other";
|
|
890
|
+
value: string;
|
|
891
891
|
isPrimary: boolean;
|
|
892
892
|
}>>>;
|
|
893
893
|
primaryPhoneNumber: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
@@ -895,12 +895,12 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
895
895
|
type: import("zod").ZodEnum<["Personal", "Work", "Other"]>;
|
|
896
896
|
isPrimary: import("zod").ZodBoolean;
|
|
897
897
|
}, "strip", import("zod").ZodTypeAny, {
|
|
898
|
-
value: string;
|
|
899
898
|
type: "Personal" | "Work" | "Other";
|
|
899
|
+
value: string;
|
|
900
900
|
isPrimary: boolean;
|
|
901
901
|
}, {
|
|
902
|
-
value: string;
|
|
903
902
|
type: "Personal" | "Work" | "Other";
|
|
903
|
+
value: string;
|
|
904
904
|
isPrimary: boolean;
|
|
905
905
|
}>>>;
|
|
906
906
|
customFields: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -909,108 +909,108 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
909
909
|
value: import("zod").ZodUnknown;
|
|
910
910
|
isPrivate: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
911
911
|
}, "strip", import("zod").ZodTypeAny, {
|
|
912
|
-
title: string;
|
|
913
912
|
id: string;
|
|
913
|
+
title: string;
|
|
914
914
|
value?: unknown;
|
|
915
915
|
isPrivate?: boolean | undefined;
|
|
916
916
|
}, {
|
|
917
|
-
title: string;
|
|
918
917
|
id: string;
|
|
918
|
+
title: string;
|
|
919
919
|
value?: unknown;
|
|
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?: {
|
|
928
|
-
value: string;
|
|
929
928
|
type: "Personal" | "Work" | "Other";
|
|
929
|
+
value: string;
|
|
930
930
|
isPrimary: boolean;
|
|
931
931
|
} | null | undefined;
|
|
932
932
|
primaryPhoneNumber?: {
|
|
933
|
-
value: string;
|
|
934
933
|
type: "Personal" | "Work" | "Other";
|
|
934
|
+
value: string;
|
|
935
935
|
isPrimary: boolean;
|
|
936
936
|
} | null | undefined;
|
|
937
937
|
customFields?: {
|
|
938
|
-
title: string;
|
|
939
938
|
id: string;
|
|
939
|
+
title: string;
|
|
940
940
|
value?: unknown;
|
|
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?: {
|
|
949
|
-
value: string;
|
|
950
949
|
type: "Personal" | "Work" | "Other";
|
|
950
|
+
value: string;
|
|
951
951
|
isPrimary: boolean;
|
|
952
952
|
} | null | undefined;
|
|
953
953
|
primaryPhoneNumber?: {
|
|
954
|
-
value: string;
|
|
955
954
|
type: "Personal" | "Work" | "Other";
|
|
955
|
+
value: string;
|
|
956
956
|
isPrimary: boolean;
|
|
957
957
|
} | null | undefined;
|
|
958
958
|
customFields?: {
|
|
959
|
-
title: string;
|
|
960
959
|
id: string;
|
|
960
|
+
title: string;
|
|
961
961
|
value?: unknown;
|
|
962
962
|
isPrivate?: boolean | undefined;
|
|
963
963
|
}[] | undefined;
|
|
964
964
|
}>, "many">>;
|
|
965
965
|
error: import("zod").ZodString;
|
|
966
966
|
}, "strip", import("zod").ZodTypeAny, {
|
|
967
|
-
error: string;
|
|
968
|
-
success: boolean;
|
|
969
967
|
operation: "search_candidates";
|
|
968
|
+
success: boolean;
|
|
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?: {
|
|
976
|
-
value: string;
|
|
977
976
|
type: "Personal" | "Work" | "Other";
|
|
977
|
+
value: string;
|
|
978
978
|
isPrimary: boolean;
|
|
979
979
|
} | null | undefined;
|
|
980
980
|
primaryPhoneNumber?: {
|
|
981
|
-
value: string;
|
|
982
981
|
type: "Personal" | "Work" | "Other";
|
|
982
|
+
value: string;
|
|
983
983
|
isPrimary: boolean;
|
|
984
984
|
} | null | undefined;
|
|
985
985
|
customFields?: {
|
|
986
|
-
title: string;
|
|
987
986
|
id: string;
|
|
987
|
+
title: string;
|
|
988
988
|
value?: unknown;
|
|
989
989
|
isPrivate?: boolean | undefined;
|
|
990
990
|
}[] | undefined;
|
|
991
991
|
}[] | undefined;
|
|
992
992
|
}, {
|
|
993
|
-
error: string;
|
|
994
|
-
success: boolean;
|
|
995
993
|
operation: "search_candidates";
|
|
994
|
+
success: boolean;
|
|
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?: {
|
|
1002
|
-
value: string;
|
|
1003
1002
|
type: "Personal" | "Work" | "Other";
|
|
1003
|
+
value: string;
|
|
1004
1004
|
isPrimary: boolean;
|
|
1005
1005
|
} | null | undefined;
|
|
1006
1006
|
primaryPhoneNumber?: {
|
|
1007
|
-
value: string;
|
|
1008
1007
|
type: "Personal" | "Work" | "Other";
|
|
1008
|
+
value: string;
|
|
1009
1009
|
isPrimary: boolean;
|
|
1010
1010
|
} | null | undefined;
|
|
1011
1011
|
customFields?: {
|
|
1012
|
-
title: string;
|
|
1013
1012
|
id: string;
|
|
1013
|
+
title: string;
|
|
1014
1014
|
value?: unknown;
|
|
1015
1015
|
isPrivate?: boolean | undefined;
|
|
1016
1016
|
}[] | undefined;
|
|
@@ -1028,12 +1028,12 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
1028
1028
|
type: import("zod").ZodEnum<["Personal", "Work", "Other"]>;
|
|
1029
1029
|
isPrimary: import("zod").ZodBoolean;
|
|
1030
1030
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1031
|
-
value: string;
|
|
1032
1031
|
type: "Personal" | "Work" | "Other";
|
|
1032
|
+
value: string;
|
|
1033
1033
|
isPrimary: boolean;
|
|
1034
1034
|
}, {
|
|
1035
|
-
value: string;
|
|
1036
1035
|
type: "Personal" | "Work" | "Other";
|
|
1036
|
+
value: string;
|
|
1037
1037
|
isPrimary: boolean;
|
|
1038
1038
|
}>>>;
|
|
1039
1039
|
primaryPhoneNumber: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
@@ -1041,12 +1041,12 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
1041
1041
|
type: import("zod").ZodEnum<["Personal", "Work", "Other"]>;
|
|
1042
1042
|
isPrimary: import("zod").ZodBoolean;
|
|
1043
1043
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1044
|
-
value: string;
|
|
1045
1044
|
type: "Personal" | "Work" | "Other";
|
|
1045
|
+
value: string;
|
|
1046
1046
|
isPrimary: boolean;
|
|
1047
1047
|
}, {
|
|
1048
|
-
value: string;
|
|
1049
1048
|
type: "Personal" | "Work" | "Other";
|
|
1049
|
+
value: string;
|
|
1050
1050
|
isPrimary: boolean;
|
|
1051
1051
|
}>>>;
|
|
1052
1052
|
customFields: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -1055,108 +1055,108 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
1055
1055
|
value: import("zod").ZodUnknown;
|
|
1056
1056
|
isPrivate: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1057
1057
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1058
|
-
title: string;
|
|
1059
1058
|
id: string;
|
|
1059
|
+
title: string;
|
|
1060
1060
|
value?: unknown;
|
|
1061
1061
|
isPrivate?: boolean | undefined;
|
|
1062
1062
|
}, {
|
|
1063
|
-
title: string;
|
|
1064
1063
|
id: string;
|
|
1064
|
+
title: string;
|
|
1065
1065
|
value?: unknown;
|
|
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?: {
|
|
1074
|
-
value: string;
|
|
1075
1074
|
type: "Personal" | "Work" | "Other";
|
|
1075
|
+
value: string;
|
|
1076
1076
|
isPrimary: boolean;
|
|
1077
1077
|
} | null | undefined;
|
|
1078
1078
|
primaryPhoneNumber?: {
|
|
1079
|
-
value: string;
|
|
1080
1079
|
type: "Personal" | "Work" | "Other";
|
|
1080
|
+
value: string;
|
|
1081
1081
|
isPrimary: boolean;
|
|
1082
1082
|
} | null | undefined;
|
|
1083
1083
|
customFields?: {
|
|
1084
|
-
title: string;
|
|
1085
1084
|
id: string;
|
|
1085
|
+
title: string;
|
|
1086
1086
|
value?: unknown;
|
|
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?: {
|
|
1095
|
-
value: string;
|
|
1096
1095
|
type: "Personal" | "Work" | "Other";
|
|
1096
|
+
value: string;
|
|
1097
1097
|
isPrimary: boolean;
|
|
1098
1098
|
} | null | undefined;
|
|
1099
1099
|
primaryPhoneNumber?: {
|
|
1100
|
-
value: string;
|
|
1101
1100
|
type: "Personal" | "Work" | "Other";
|
|
1101
|
+
value: string;
|
|
1102
1102
|
isPrimary: boolean;
|
|
1103
1103
|
} | null | undefined;
|
|
1104
1104
|
customFields?: {
|
|
1105
|
-
title: string;
|
|
1106
1105
|
id: string;
|
|
1106
|
+
title: string;
|
|
1107
1107
|
value?: unknown;
|
|
1108
1108
|
isPrivate?: boolean | undefined;
|
|
1109
1109
|
}[] | undefined;
|
|
1110
1110
|
}>>;
|
|
1111
1111
|
error: import("zod").ZodString;
|
|
1112
1112
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1113
|
-
error: string;
|
|
1114
|
-
success: boolean;
|
|
1115
1113
|
operation: "add_tag";
|
|
1114
|
+
success: boolean;
|
|
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?: {
|
|
1122
|
-
value: string;
|
|
1123
1122
|
type: "Personal" | "Work" | "Other";
|
|
1123
|
+
value: string;
|
|
1124
1124
|
isPrimary: boolean;
|
|
1125
1125
|
} | null | undefined;
|
|
1126
1126
|
primaryPhoneNumber?: {
|
|
1127
|
-
value: string;
|
|
1128
1127
|
type: "Personal" | "Work" | "Other";
|
|
1128
|
+
value: string;
|
|
1129
1129
|
isPrimary: boolean;
|
|
1130
1130
|
} | null | undefined;
|
|
1131
1131
|
customFields?: {
|
|
1132
|
-
title: string;
|
|
1133
1132
|
id: string;
|
|
1133
|
+
title: string;
|
|
1134
1134
|
value?: unknown;
|
|
1135
1135
|
isPrivate?: boolean | undefined;
|
|
1136
1136
|
}[] | undefined;
|
|
1137
1137
|
} | undefined;
|
|
1138
1138
|
}, {
|
|
1139
|
-
error: string;
|
|
1140
|
-
success: boolean;
|
|
1141
1139
|
operation: "add_tag";
|
|
1140
|
+
success: boolean;
|
|
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?: {
|
|
1148
|
-
value: string;
|
|
1149
1148
|
type: "Personal" | "Work" | "Other";
|
|
1149
|
+
value: string;
|
|
1150
1150
|
isPrimary: boolean;
|
|
1151
1151
|
} | null | undefined;
|
|
1152
1152
|
primaryPhoneNumber?: {
|
|
1153
|
-
value: string;
|
|
1154
1153
|
type: "Personal" | "Work" | "Other";
|
|
1154
|
+
value: string;
|
|
1155
1155
|
isPrimary: boolean;
|
|
1156
1156
|
} | null | undefined;
|
|
1157
1157
|
customFields?: {
|
|
1158
|
-
title: string;
|
|
1159
1158
|
id: string;
|
|
1159
|
+
title: string;
|
|
1160
1160
|
value?: unknown;
|
|
1161
1161
|
isPrivate?: boolean | undefined;
|
|
1162
1162
|
}[] | undefined;
|
|
@@ -1169,31 +1169,31 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
1169
1169
|
title: import("zod").ZodString;
|
|
1170
1170
|
isArchived: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1171
1171
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1172
|
-
title: string;
|
|
1173
1172
|
id: string;
|
|
1173
|
+
title: string;
|
|
1174
1174
|
isArchived?: boolean | undefined;
|
|
1175
1175
|
}, {
|
|
1176
|
-
title: string;
|
|
1177
1176
|
id: string;
|
|
1177
|
+
title: string;
|
|
1178
1178
|
isArchived?: boolean | undefined;
|
|
1179
1179
|
}>, "many">>;
|
|
1180
1180
|
error: import("zod").ZodString;
|
|
1181
1181
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1182
|
-
error: string;
|
|
1183
|
-
success: boolean;
|
|
1184
1182
|
operation: "list_tags";
|
|
1183
|
+
success: boolean;
|
|
1184
|
+
error: string;
|
|
1185
1185
|
tags?: {
|
|
1186
|
-
title: string;
|
|
1187
1186
|
id: string;
|
|
1187
|
+
title: string;
|
|
1188
1188
|
isArchived?: boolean | undefined;
|
|
1189
1189
|
}[] | undefined;
|
|
1190
1190
|
}, {
|
|
1191
|
-
error: string;
|
|
1192
|
-
success: boolean;
|
|
1193
1191
|
operation: "list_tags";
|
|
1192
|
+
success: boolean;
|
|
1193
|
+
error: string;
|
|
1194
1194
|
tags?: {
|
|
1195
|
-
title: string;
|
|
1196
1195
|
id: string;
|
|
1196
|
+
title: string;
|
|
1197
1197
|
isArchived?: boolean | undefined;
|
|
1198
1198
|
}[] | undefined;
|
|
1199
1199
|
}>, import("zod").ZodObject<{
|
|
@@ -1204,31 +1204,31 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
1204
1204
|
title: import("zod").ZodString;
|
|
1205
1205
|
isArchived: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1206
1206
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1207
|
-
title: string;
|
|
1208
1207
|
id: string;
|
|
1208
|
+
title: string;
|
|
1209
1209
|
isArchived?: boolean | undefined;
|
|
1210
1210
|
}, {
|
|
1211
|
-
title: string;
|
|
1212
1211
|
id: string;
|
|
1212
|
+
title: string;
|
|
1213
1213
|
isArchived?: boolean | undefined;
|
|
1214
1214
|
}>>;
|
|
1215
1215
|
error: import("zod").ZodString;
|
|
1216
1216
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1217
|
-
error: string;
|
|
1218
|
-
success: boolean;
|
|
1219
1217
|
operation: "create_tag";
|
|
1218
|
+
success: boolean;
|
|
1219
|
+
error: string;
|
|
1220
1220
|
tag?: {
|
|
1221
|
-
title: string;
|
|
1222
1221
|
id: string;
|
|
1222
|
+
title: string;
|
|
1223
1223
|
isArchived?: boolean | undefined;
|
|
1224
1224
|
} | undefined;
|
|
1225
1225
|
}, {
|
|
1226
|
-
error: string;
|
|
1227
|
-
success: boolean;
|
|
1228
1226
|
operation: "create_tag";
|
|
1227
|
+
success: boolean;
|
|
1228
|
+
error: string;
|
|
1229
1229
|
tag?: {
|
|
1230
|
-
title: string;
|
|
1231
1230
|
id: string;
|
|
1231
|
+
title: string;
|
|
1232
1232
|
isArchived?: boolean | undefined;
|
|
1233
1233
|
} | undefined;
|
|
1234
1234
|
}>, import("zod").ZodObject<{
|
|
@@ -1255,10 +1255,10 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
1255
1255
|
isArchived: boolean;
|
|
1256
1256
|
}>, "many">>;
|
|
1257
1257
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1258
|
-
title: string;
|
|
1259
1258
|
id: string;
|
|
1260
|
-
|
|
1259
|
+
title: string;
|
|
1261
1260
|
isArchived: boolean;
|
|
1261
|
+
isPrivate: boolean;
|
|
1262
1262
|
objectType: string;
|
|
1263
1263
|
fieldType: string;
|
|
1264
1264
|
selectableValues?: {
|
|
@@ -1267,10 +1267,10 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
1267
1267
|
isArchived: boolean;
|
|
1268
1268
|
}[] | undefined;
|
|
1269
1269
|
}, {
|
|
1270
|
-
title: string;
|
|
1271
1270
|
id: string;
|
|
1272
|
-
|
|
1271
|
+
title: string;
|
|
1273
1272
|
isArchived: boolean;
|
|
1273
|
+
isPrivate: boolean;
|
|
1274
1274
|
objectType: string;
|
|
1275
1275
|
fieldType: string;
|
|
1276
1276
|
selectableValues?: {
|
|
@@ -1284,17 +1284,17 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
1284
1284
|
sync_token: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1285
1285
|
error: import("zod").ZodString;
|
|
1286
1286
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1287
|
-
error: string;
|
|
1288
|
-
success: boolean;
|
|
1289
1287
|
operation: "list_custom_fields";
|
|
1288
|
+
success: boolean;
|
|
1289
|
+
error: string;
|
|
1290
1290
|
next_cursor?: string | undefined;
|
|
1291
1291
|
sync_token?: string | undefined;
|
|
1292
1292
|
more_data_available?: boolean | undefined;
|
|
1293
1293
|
custom_fields?: {
|
|
1294
|
-
title: string;
|
|
1295
1294
|
id: string;
|
|
1296
|
-
|
|
1295
|
+
title: string;
|
|
1297
1296
|
isArchived: boolean;
|
|
1297
|
+
isPrivate: boolean;
|
|
1298
1298
|
objectType: string;
|
|
1299
1299
|
fieldType: string;
|
|
1300
1300
|
selectableValues?: {
|
|
@@ -1304,17 +1304,17 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
1304
1304
|
}[] | undefined;
|
|
1305
1305
|
}[] | undefined;
|
|
1306
1306
|
}, {
|
|
1307
|
-
error: string;
|
|
1308
|
-
success: boolean;
|
|
1309
1307
|
operation: "list_custom_fields";
|
|
1308
|
+
success: boolean;
|
|
1309
|
+
error: string;
|
|
1310
1310
|
next_cursor?: string | undefined;
|
|
1311
1311
|
sync_token?: string | undefined;
|
|
1312
1312
|
more_data_available?: boolean | undefined;
|
|
1313
1313
|
custom_fields?: {
|
|
1314
|
-
title: string;
|
|
1315
1314
|
id: string;
|
|
1316
|
-
|
|
1315
|
+
title: string;
|
|
1317
1316
|
isArchived: boolean;
|
|
1317
|
+
isPrivate: boolean;
|
|
1318
1318
|
objectType: string;
|
|
1319
1319
|
fieldType: string;
|
|
1320
1320
|
selectableValues?: {
|