@bubblelab/bubble-core 0.1.55 → 0.1.57
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 +102 -102
- package/dist/bubbles/service-bubble/agi-inc.d.ts +60 -60
- package/dist/bubbles/service-bubble/ai-agent.d.ts +68 -68
- package/dist/bubbles/service-bubble/airtable.d.ts +86 -86
- package/dist/bubbles/service-bubble/apify/apify.d.ts +24 -24
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +128 -128
- package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +180 -180
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +28 -28
- package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +36 -36
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +88 -88
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +118 -118
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +8 -8
- package/dist/bubbles/service-bubble/firecrawl.d.ts +879 -879
- package/dist/bubbles/service-bubble/followupboss.d.ts +254 -254
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +233 -233
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.schema.d.ts +341 -341
- package/dist/bubbles/service-bubble/github.d.ts +112 -112
- package/dist/bubbles/service-bubble/gmail.d.ts +555 -555
- package/dist/bubbles/service-bubble/google-calendar.d.ts +20 -20
- package/dist/bubbles/service-bubble/google-drive.d.ts +16 -16
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +10 -10
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.d.ts +10 -10
- package/dist/bubbles/service-bubble/http.d.ts +20 -20
- package/dist/bubbles/service-bubble/insforge-db.d.ts +12 -12
- package/dist/bubbles/service-bubble/jira/jira.d.ts +35 -35
- package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +37 -37
- package/dist/bubbles/service-bubble/notion/notion.d.ts +1365 -1365
- package/dist/bubbles/service-bubble/postgresql.d.ts +12 -12
- package/dist/bubbles/service-bubble/resend.d.ts +24 -24
- package/dist/bubbles/service-bubble/slack/slack.d.ts +320 -320
- package/dist/bubbles/service-bubble/storage.d.ts +20 -20
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +91 -91
- package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +107 -107
- package/dist/bubbles/service-bubble/telegram.d.ts +1491 -1491
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.schema.d.ts +16 -16
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/chart-js-tool.d.ts +16 -16
- package/dist/bubbles/tool-bubble/code-edit-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +126 -126
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +10 -10
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.schema.d.ts +6 -6
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +421 -421
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +150 -150
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +24 -24
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +64 -64
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +146 -146
- package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +14 -14
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +24 -24
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +32 -32
- package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +86 -86
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +24 -24
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +24 -24
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +44 -44
- package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +4 -4
- package/dist/bubbles.json +1 -1
- package/package.json +2 -2
|
@@ -8,12 +8,12 @@ export declare const AshbyEmailSchema: z.ZodObject<{
|
|
|
8
8
|
type: z.ZodEnum<["Personal", "Work", "Other"]>;
|
|
9
9
|
isPrimary: z.ZodBoolean;
|
|
10
10
|
}, "strip", z.ZodTypeAny, {
|
|
11
|
-
type: "Personal" | "Work" | "Other";
|
|
12
11
|
value: string;
|
|
12
|
+
type: "Personal" | "Work" | "Other";
|
|
13
13
|
isPrimary: boolean;
|
|
14
14
|
}, {
|
|
15
|
-
type: "Personal" | "Work" | "Other";
|
|
16
15
|
value: string;
|
|
16
|
+
type: "Personal" | "Work" | "Other";
|
|
17
17
|
isPrimary: boolean;
|
|
18
18
|
}>;
|
|
19
19
|
/**
|
|
@@ -24,12 +24,12 @@ export declare const AshbyPhoneSchema: z.ZodObject<{
|
|
|
24
24
|
type: z.ZodEnum<["Personal", "Work", "Other"]>;
|
|
25
25
|
isPrimary: z.ZodBoolean;
|
|
26
26
|
}, "strip", z.ZodTypeAny, {
|
|
27
|
-
type: "Personal" | "Work" | "Other";
|
|
28
27
|
value: string;
|
|
28
|
+
type: "Personal" | "Work" | "Other";
|
|
29
29
|
isPrimary: boolean;
|
|
30
30
|
}, {
|
|
31
|
-
type: "Personal" | "Work" | "Other";
|
|
32
31
|
value: string;
|
|
32
|
+
type: "Personal" | "Work" | "Other";
|
|
33
33
|
isPrimary: boolean;
|
|
34
34
|
}>;
|
|
35
35
|
/**
|
|
@@ -64,12 +64,12 @@ export declare const AshbyCandidateSchema: z.ZodObject<{
|
|
|
64
64
|
type: z.ZodEnum<["Personal", "Work", "Other"]>;
|
|
65
65
|
isPrimary: z.ZodBoolean;
|
|
66
66
|
}, "strip", z.ZodTypeAny, {
|
|
67
|
-
type: "Personal" | "Work" | "Other";
|
|
68
67
|
value: string;
|
|
68
|
+
type: "Personal" | "Work" | "Other";
|
|
69
69
|
isPrimary: boolean;
|
|
70
70
|
}, {
|
|
71
|
-
type: "Personal" | "Work" | "Other";
|
|
72
71
|
value: string;
|
|
72
|
+
type: "Personal" | "Work" | "Other";
|
|
73
73
|
isPrimary: boolean;
|
|
74
74
|
}>>>;
|
|
75
75
|
primaryPhoneNumber: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -77,12 +77,12 @@ export declare const AshbyCandidateSchema: z.ZodObject<{
|
|
|
77
77
|
type: z.ZodEnum<["Personal", "Work", "Other"]>;
|
|
78
78
|
isPrimary: z.ZodBoolean;
|
|
79
79
|
}, "strip", z.ZodTypeAny, {
|
|
80
|
-
type: "Personal" | "Work" | "Other";
|
|
81
80
|
value: string;
|
|
81
|
+
type: "Personal" | "Work" | "Other";
|
|
82
82
|
isPrimary: boolean;
|
|
83
83
|
}, {
|
|
84
|
-
type: "Personal" | "Work" | "Other";
|
|
85
84
|
value: string;
|
|
85
|
+
type: "Personal" | "Work" | "Other";
|
|
86
86
|
isPrimary: boolean;
|
|
87
87
|
}>>>;
|
|
88
88
|
customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -107,13 +107,13 @@ export declare const AshbyCandidateSchema: z.ZodObject<{
|
|
|
107
107
|
createdAt?: string | undefined;
|
|
108
108
|
updatedAt?: string | undefined;
|
|
109
109
|
primaryEmailAddress?: {
|
|
110
|
-
type: "Personal" | "Work" | "Other";
|
|
111
110
|
value: string;
|
|
111
|
+
type: "Personal" | "Work" | "Other";
|
|
112
112
|
isPrimary: boolean;
|
|
113
113
|
} | null | undefined;
|
|
114
114
|
primaryPhoneNumber?: {
|
|
115
|
-
type: "Personal" | "Work" | "Other";
|
|
116
115
|
value: string;
|
|
116
|
+
type: "Personal" | "Work" | "Other";
|
|
117
117
|
isPrimary: boolean;
|
|
118
118
|
} | null | undefined;
|
|
119
119
|
customFields?: {
|
|
@@ -128,13 +128,13 @@ export declare const AshbyCandidateSchema: z.ZodObject<{
|
|
|
128
128
|
createdAt?: string | undefined;
|
|
129
129
|
updatedAt?: string | undefined;
|
|
130
130
|
primaryEmailAddress?: {
|
|
131
|
-
type: "Personal" | "Work" | "Other";
|
|
132
131
|
value: string;
|
|
132
|
+
type: "Personal" | "Work" | "Other";
|
|
133
133
|
isPrimary: boolean;
|
|
134
134
|
} | null | undefined;
|
|
135
135
|
primaryPhoneNumber?: {
|
|
136
|
-
type: "Personal" | "Work" | "Other";
|
|
137
136
|
value: string;
|
|
137
|
+
type: "Personal" | "Work" | "Other";
|
|
138
138
|
isPrimary: boolean;
|
|
139
139
|
} | null | undefined;
|
|
140
140
|
customFields?: {
|
|
@@ -231,8 +231,8 @@ export declare const AshbyCustomFieldDefinitionSchema: z.ZodObject<{
|
|
|
231
231
|
}, "strip", z.ZodTypeAny, {
|
|
232
232
|
title: string;
|
|
233
233
|
id: string;
|
|
234
|
-
isArchived: boolean;
|
|
235
234
|
isPrivate: boolean;
|
|
235
|
+
isArchived: boolean;
|
|
236
236
|
objectType: string;
|
|
237
237
|
fieldType: string;
|
|
238
238
|
selectableValues?: {
|
|
@@ -243,8 +243,8 @@ export declare const AshbyCustomFieldDefinitionSchema: z.ZodObject<{
|
|
|
243
243
|
}, {
|
|
244
244
|
title: string;
|
|
245
245
|
id: string;
|
|
246
|
-
isArchived: boolean;
|
|
247
246
|
isPrivate: boolean;
|
|
247
|
+
isArchived: boolean;
|
|
248
248
|
objectType: string;
|
|
249
249
|
fieldType: string;
|
|
250
250
|
selectableValues?: {
|
|
@@ -266,12 +266,12 @@ export declare const AshbyCandidateListItemSchema: z.ZodObject<{
|
|
|
266
266
|
type: z.ZodEnum<["Personal", "Work", "Other"]>;
|
|
267
267
|
isPrimary: z.ZodBoolean;
|
|
268
268
|
}, "strip", z.ZodTypeAny, {
|
|
269
|
-
type: "Personal" | "Work" | "Other";
|
|
270
269
|
value: string;
|
|
270
|
+
type: "Personal" | "Work" | "Other";
|
|
271
271
|
isPrimary: boolean;
|
|
272
272
|
}, {
|
|
273
|
-
type: "Personal" | "Work" | "Other";
|
|
274
273
|
value: string;
|
|
274
|
+
type: "Personal" | "Work" | "Other";
|
|
275
275
|
isPrimary: boolean;
|
|
276
276
|
}>>>;
|
|
277
277
|
emailAddresses: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -279,12 +279,12 @@ export declare const AshbyCandidateListItemSchema: z.ZodObject<{
|
|
|
279
279
|
type: z.ZodEnum<["Personal", "Work", "Other"]>;
|
|
280
280
|
isPrimary: z.ZodBoolean;
|
|
281
281
|
}, "strip", z.ZodTypeAny, {
|
|
282
|
-
type: "Personal" | "Work" | "Other";
|
|
283
282
|
value: string;
|
|
283
|
+
type: "Personal" | "Work" | "Other";
|
|
284
284
|
isPrimary: boolean;
|
|
285
285
|
}, {
|
|
286
|
-
type: "Personal" | "Work" | "Other";
|
|
287
286
|
value: string;
|
|
287
|
+
type: "Personal" | "Work" | "Other";
|
|
288
288
|
isPrimary: boolean;
|
|
289
289
|
}>, "many">>;
|
|
290
290
|
primaryPhoneNumber: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -292,12 +292,12 @@ export declare const AshbyCandidateListItemSchema: z.ZodObject<{
|
|
|
292
292
|
type: z.ZodEnum<["Personal", "Work", "Other"]>;
|
|
293
293
|
isPrimary: z.ZodBoolean;
|
|
294
294
|
}, "strip", z.ZodTypeAny, {
|
|
295
|
-
type: "Personal" | "Work" | "Other";
|
|
296
295
|
value: string;
|
|
296
|
+
type: "Personal" | "Work" | "Other";
|
|
297
297
|
isPrimary: boolean;
|
|
298
298
|
}, {
|
|
299
|
-
type: "Personal" | "Work" | "Other";
|
|
300
299
|
value: string;
|
|
300
|
+
type: "Personal" | "Work" | "Other";
|
|
301
301
|
isPrimary: boolean;
|
|
302
302
|
}>>>;
|
|
303
303
|
phoneNumbers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -305,12 +305,12 @@ export declare const AshbyCandidateListItemSchema: z.ZodObject<{
|
|
|
305
305
|
type: z.ZodEnum<["Personal", "Work", "Other"]>;
|
|
306
306
|
isPrimary: z.ZodBoolean;
|
|
307
307
|
}, "strip", z.ZodTypeAny, {
|
|
308
|
-
type: "Personal" | "Work" | "Other";
|
|
309
308
|
value: string;
|
|
309
|
+
type: "Personal" | "Work" | "Other";
|
|
310
310
|
isPrimary: boolean;
|
|
311
311
|
}, {
|
|
312
|
-
type: "Personal" | "Work" | "Other";
|
|
313
312
|
value: string;
|
|
313
|
+
type: "Personal" | "Work" | "Other";
|
|
314
314
|
isPrimary: boolean;
|
|
315
315
|
}>, "many">>;
|
|
316
316
|
socialLinks: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -385,39 +385,45 @@ export declare const AshbyCandidateListItemSchema: z.ZodObject<{
|
|
|
385
385
|
}, "strip", z.ZodTypeAny, {
|
|
386
386
|
name: string;
|
|
387
387
|
id: string;
|
|
388
|
-
company?: string | null | undefined;
|
|
389
388
|
tags?: {
|
|
390
389
|
title: string;
|
|
391
390
|
id: string;
|
|
392
391
|
isArchived?: boolean | undefined;
|
|
393
392
|
}[] | undefined;
|
|
394
393
|
createdAt?: string | undefined;
|
|
395
|
-
position?: string | null | undefined;
|
|
396
394
|
updatedAt?: string | undefined;
|
|
397
395
|
primaryEmailAddress?: {
|
|
398
|
-
type: "Personal" | "Work" | "Other";
|
|
399
396
|
value: string;
|
|
397
|
+
type: "Personal" | "Work" | "Other";
|
|
400
398
|
isPrimary: boolean;
|
|
401
399
|
} | null | undefined;
|
|
402
|
-
|
|
403
|
-
type: "Personal" | "Work" | "Other";
|
|
400
|
+
primaryPhoneNumber?: {
|
|
404
401
|
value: string;
|
|
402
|
+
type: "Personal" | "Work" | "Other";
|
|
405
403
|
isPrimary: boolean;
|
|
404
|
+
} | null | undefined;
|
|
405
|
+
customFields?: {
|
|
406
|
+
title: string;
|
|
407
|
+
id: string;
|
|
408
|
+
value?: unknown;
|
|
409
|
+
isPrivate?: boolean | undefined;
|
|
406
410
|
}[] | undefined;
|
|
407
|
-
|
|
408
|
-
type: "Personal" | "Work" | "Other";
|
|
411
|
+
emailAddresses?: {
|
|
409
412
|
value: string;
|
|
413
|
+
type: "Personal" | "Work" | "Other";
|
|
410
414
|
isPrimary: boolean;
|
|
411
|
-
} |
|
|
415
|
+
}[] | undefined;
|
|
412
416
|
phoneNumbers?: {
|
|
413
|
-
type: "Personal" | "Work" | "Other";
|
|
414
417
|
value: string;
|
|
418
|
+
type: "Personal" | "Work" | "Other";
|
|
415
419
|
isPrimary: boolean;
|
|
416
420
|
}[] | undefined;
|
|
417
421
|
socialLinks?: {
|
|
418
422
|
type: string;
|
|
419
423
|
url: string;
|
|
420
424
|
}[] | undefined;
|
|
425
|
+
position?: string | null | undefined;
|
|
426
|
+
company?: string | null | undefined;
|
|
421
427
|
school?: string | null | undefined;
|
|
422
428
|
applicationIds?: string[] | undefined;
|
|
423
429
|
resumeFileHandle?: {
|
|
@@ -430,48 +436,48 @@ export declare const AshbyCandidateListItemSchema: z.ZodObject<{
|
|
|
430
436
|
id: string;
|
|
431
437
|
handle: string;
|
|
432
438
|
}[] | undefined;
|
|
433
|
-
customFields?: {
|
|
434
|
-
title: string;
|
|
435
|
-
id: string;
|
|
436
|
-
value?: unknown;
|
|
437
|
-
isPrivate?: boolean | undefined;
|
|
438
|
-
}[] | undefined;
|
|
439
439
|
}, {
|
|
440
440
|
name: string;
|
|
441
441
|
id: string;
|
|
442
|
-
company?: string | null | undefined;
|
|
443
442
|
tags?: {
|
|
444
443
|
title: string;
|
|
445
444
|
id: string;
|
|
446
445
|
isArchived?: boolean | undefined;
|
|
447
446
|
}[] | undefined;
|
|
448
447
|
createdAt?: string | undefined;
|
|
449
|
-
position?: string | null | undefined;
|
|
450
448
|
updatedAt?: string | undefined;
|
|
451
449
|
primaryEmailAddress?: {
|
|
452
|
-
type: "Personal" | "Work" | "Other";
|
|
453
450
|
value: string;
|
|
451
|
+
type: "Personal" | "Work" | "Other";
|
|
454
452
|
isPrimary: boolean;
|
|
455
453
|
} | null | undefined;
|
|
456
|
-
|
|
457
|
-
type: "Personal" | "Work" | "Other";
|
|
454
|
+
primaryPhoneNumber?: {
|
|
458
455
|
value: string;
|
|
456
|
+
type: "Personal" | "Work" | "Other";
|
|
459
457
|
isPrimary: boolean;
|
|
458
|
+
} | null | undefined;
|
|
459
|
+
customFields?: {
|
|
460
|
+
title: string;
|
|
461
|
+
id: string;
|
|
462
|
+
value?: unknown;
|
|
463
|
+
isPrivate?: boolean | undefined;
|
|
460
464
|
}[] | undefined;
|
|
461
|
-
|
|
462
|
-
type: "Personal" | "Work" | "Other";
|
|
465
|
+
emailAddresses?: {
|
|
463
466
|
value: string;
|
|
467
|
+
type: "Personal" | "Work" | "Other";
|
|
464
468
|
isPrimary: boolean;
|
|
465
|
-
} |
|
|
469
|
+
}[] | undefined;
|
|
466
470
|
phoneNumbers?: {
|
|
467
|
-
type: "Personal" | "Work" | "Other";
|
|
468
471
|
value: string;
|
|
472
|
+
type: "Personal" | "Work" | "Other";
|
|
469
473
|
isPrimary: boolean;
|
|
470
474
|
}[] | undefined;
|
|
471
475
|
socialLinks?: {
|
|
472
476
|
type: string;
|
|
473
477
|
url: string;
|
|
474
478
|
}[] | undefined;
|
|
479
|
+
position?: string | null | undefined;
|
|
480
|
+
company?: string | null | undefined;
|
|
475
481
|
school?: string | null | undefined;
|
|
476
482
|
applicationIds?: string[] | undefined;
|
|
477
483
|
resumeFileHandle?: {
|
|
@@ -484,12 +490,6 @@ export declare const AshbyCandidateListItemSchema: z.ZodObject<{
|
|
|
484
490
|
id: string;
|
|
485
491
|
handle: string;
|
|
486
492
|
}[] | undefined;
|
|
487
|
-
customFields?: {
|
|
488
|
-
title: string;
|
|
489
|
-
id: string;
|
|
490
|
-
value?: unknown;
|
|
491
|
-
isPrivate?: boolean | undefined;
|
|
492
|
-
}[] | undefined;
|
|
493
493
|
}>;
|
|
494
494
|
export declare const AshbyParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject<{
|
|
495
495
|
operation: z.ZodLiteral<"list_candidates">;
|
|
@@ -551,33 +551,33 @@ export declare const AshbyParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
551
551
|
}, "strip", z.ZodTypeAny, {
|
|
552
552
|
name: string;
|
|
553
553
|
operation: "create_candidate";
|
|
554
|
-
linkedin_url?: string | undefined;
|
|
555
554
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
555
|
+
website?: string | undefined;
|
|
556
556
|
emails?: {
|
|
557
557
|
type: "Personal" | "Work" | "Other";
|
|
558
558
|
email: string;
|
|
559
559
|
}[] | undefined;
|
|
560
|
-
website?: string | undefined;
|
|
561
|
-
tag?: string | undefined;
|
|
562
560
|
phone_number?: string | undefined;
|
|
561
|
+
linkedin_url?: string | undefined;
|
|
563
562
|
github_url?: string | undefined;
|
|
564
563
|
source_id?: string | undefined;
|
|
565
564
|
credited_to_user_id?: string | undefined;
|
|
565
|
+
tag?: string | undefined;
|
|
566
566
|
}, {
|
|
567
567
|
name: string;
|
|
568
568
|
operation: "create_candidate";
|
|
569
|
-
linkedin_url?: string | undefined;
|
|
570
569
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
570
|
+
website?: string | undefined;
|
|
571
571
|
emails?: {
|
|
572
572
|
type: "Personal" | "Work" | "Other";
|
|
573
573
|
email: string;
|
|
574
574
|
}[] | undefined;
|
|
575
|
-
website?: string | undefined;
|
|
576
|
-
tag?: string | undefined;
|
|
577
575
|
phone_number?: string | undefined;
|
|
576
|
+
linkedin_url?: string | undefined;
|
|
578
577
|
github_url?: string | undefined;
|
|
579
578
|
source_id?: string | undefined;
|
|
580
579
|
credited_to_user_id?: string | undefined;
|
|
580
|
+
tag?: string | undefined;
|
|
581
581
|
}>, z.ZodObject<{
|
|
582
582
|
operation: z.ZodLiteral<"search_candidates">;
|
|
583
583
|
email: z.ZodOptional<z.ZodString>;
|
|
@@ -586,13 +586,13 @@ export declare const AshbyParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
586
586
|
}, "strip", z.ZodTypeAny, {
|
|
587
587
|
operation: "search_candidates";
|
|
588
588
|
name?: string | undefined;
|
|
589
|
-
email?: string | undefined;
|
|
590
589
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
590
|
+
email?: string | undefined;
|
|
591
591
|
}, {
|
|
592
592
|
operation: "search_candidates";
|
|
593
593
|
name?: string | undefined;
|
|
594
|
-
email?: string | undefined;
|
|
595
594
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
595
|
+
email?: string | undefined;
|
|
596
596
|
}>, z.ZodObject<{
|
|
597
597
|
operation: z.ZodLiteral<"add_tag">;
|
|
598
598
|
candidate_id: z.ZodString;
|
|
@@ -664,12 +664,12 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
664
664
|
type: z.ZodEnum<["Personal", "Work", "Other"]>;
|
|
665
665
|
isPrimary: z.ZodBoolean;
|
|
666
666
|
}, "strip", z.ZodTypeAny, {
|
|
667
|
-
type: "Personal" | "Work" | "Other";
|
|
668
667
|
value: string;
|
|
668
|
+
type: "Personal" | "Work" | "Other";
|
|
669
669
|
isPrimary: boolean;
|
|
670
670
|
}, {
|
|
671
|
-
type: "Personal" | "Work" | "Other";
|
|
672
671
|
value: string;
|
|
672
|
+
type: "Personal" | "Work" | "Other";
|
|
673
673
|
isPrimary: boolean;
|
|
674
674
|
}>>>;
|
|
675
675
|
emailAddresses: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -677,12 +677,12 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
677
677
|
type: z.ZodEnum<["Personal", "Work", "Other"]>;
|
|
678
678
|
isPrimary: z.ZodBoolean;
|
|
679
679
|
}, "strip", z.ZodTypeAny, {
|
|
680
|
-
type: "Personal" | "Work" | "Other";
|
|
681
680
|
value: string;
|
|
681
|
+
type: "Personal" | "Work" | "Other";
|
|
682
682
|
isPrimary: boolean;
|
|
683
683
|
}, {
|
|
684
|
-
type: "Personal" | "Work" | "Other";
|
|
685
684
|
value: string;
|
|
685
|
+
type: "Personal" | "Work" | "Other";
|
|
686
686
|
isPrimary: boolean;
|
|
687
687
|
}>, "many">>;
|
|
688
688
|
primaryPhoneNumber: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -690,12 +690,12 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
690
690
|
type: z.ZodEnum<["Personal", "Work", "Other"]>;
|
|
691
691
|
isPrimary: z.ZodBoolean;
|
|
692
692
|
}, "strip", z.ZodTypeAny, {
|
|
693
|
-
type: "Personal" | "Work" | "Other";
|
|
694
693
|
value: string;
|
|
694
|
+
type: "Personal" | "Work" | "Other";
|
|
695
695
|
isPrimary: boolean;
|
|
696
696
|
}, {
|
|
697
|
-
type: "Personal" | "Work" | "Other";
|
|
698
697
|
value: string;
|
|
698
|
+
type: "Personal" | "Work" | "Other";
|
|
699
699
|
isPrimary: boolean;
|
|
700
700
|
}>>>;
|
|
701
701
|
phoneNumbers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -703,12 +703,12 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
703
703
|
type: z.ZodEnum<["Personal", "Work", "Other"]>;
|
|
704
704
|
isPrimary: z.ZodBoolean;
|
|
705
705
|
}, "strip", z.ZodTypeAny, {
|
|
706
|
-
type: "Personal" | "Work" | "Other";
|
|
707
706
|
value: string;
|
|
707
|
+
type: "Personal" | "Work" | "Other";
|
|
708
708
|
isPrimary: boolean;
|
|
709
709
|
}, {
|
|
710
|
-
type: "Personal" | "Work" | "Other";
|
|
711
710
|
value: string;
|
|
711
|
+
type: "Personal" | "Work" | "Other";
|
|
712
712
|
isPrimary: boolean;
|
|
713
713
|
}>, "many">>;
|
|
714
714
|
socialLinks: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -783,39 +783,45 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
783
783
|
}, "strip", z.ZodTypeAny, {
|
|
784
784
|
name: string;
|
|
785
785
|
id: string;
|
|
786
|
-
company?: string | null | undefined;
|
|
787
786
|
tags?: {
|
|
788
787
|
title: string;
|
|
789
788
|
id: string;
|
|
790
789
|
isArchived?: boolean | undefined;
|
|
791
790
|
}[] | undefined;
|
|
792
791
|
createdAt?: string | undefined;
|
|
793
|
-
position?: string | null | undefined;
|
|
794
792
|
updatedAt?: string | undefined;
|
|
795
793
|
primaryEmailAddress?: {
|
|
796
|
-
type: "Personal" | "Work" | "Other";
|
|
797
794
|
value: string;
|
|
795
|
+
type: "Personal" | "Work" | "Other";
|
|
798
796
|
isPrimary: boolean;
|
|
799
797
|
} | null | undefined;
|
|
800
|
-
|
|
801
|
-
type: "Personal" | "Work" | "Other";
|
|
798
|
+
primaryPhoneNumber?: {
|
|
802
799
|
value: string;
|
|
800
|
+
type: "Personal" | "Work" | "Other";
|
|
803
801
|
isPrimary: boolean;
|
|
802
|
+
} | null | undefined;
|
|
803
|
+
customFields?: {
|
|
804
|
+
title: string;
|
|
805
|
+
id: string;
|
|
806
|
+
value?: unknown;
|
|
807
|
+
isPrivate?: boolean | undefined;
|
|
804
808
|
}[] | undefined;
|
|
805
|
-
|
|
806
|
-
type: "Personal" | "Work" | "Other";
|
|
809
|
+
emailAddresses?: {
|
|
807
810
|
value: string;
|
|
811
|
+
type: "Personal" | "Work" | "Other";
|
|
808
812
|
isPrimary: boolean;
|
|
809
|
-
} |
|
|
813
|
+
}[] | undefined;
|
|
810
814
|
phoneNumbers?: {
|
|
811
|
-
type: "Personal" | "Work" | "Other";
|
|
812
815
|
value: string;
|
|
816
|
+
type: "Personal" | "Work" | "Other";
|
|
813
817
|
isPrimary: boolean;
|
|
814
818
|
}[] | undefined;
|
|
815
819
|
socialLinks?: {
|
|
816
820
|
type: string;
|
|
817
821
|
url: string;
|
|
818
822
|
}[] | undefined;
|
|
823
|
+
position?: string | null | undefined;
|
|
824
|
+
company?: string | null | undefined;
|
|
819
825
|
school?: string | null | undefined;
|
|
820
826
|
applicationIds?: string[] | undefined;
|
|
821
827
|
resumeFileHandle?: {
|
|
@@ -828,48 +834,48 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
828
834
|
id: string;
|
|
829
835
|
handle: string;
|
|
830
836
|
}[] | undefined;
|
|
831
|
-
customFields?: {
|
|
832
|
-
title: string;
|
|
833
|
-
id: string;
|
|
834
|
-
value?: unknown;
|
|
835
|
-
isPrivate?: boolean | undefined;
|
|
836
|
-
}[] | undefined;
|
|
837
837
|
}, {
|
|
838
838
|
name: string;
|
|
839
839
|
id: string;
|
|
840
|
-
company?: string | null | undefined;
|
|
841
840
|
tags?: {
|
|
842
841
|
title: string;
|
|
843
842
|
id: string;
|
|
844
843
|
isArchived?: boolean | undefined;
|
|
845
844
|
}[] | undefined;
|
|
846
845
|
createdAt?: string | undefined;
|
|
847
|
-
position?: string | null | undefined;
|
|
848
846
|
updatedAt?: string | undefined;
|
|
849
847
|
primaryEmailAddress?: {
|
|
850
|
-
type: "Personal" | "Work" | "Other";
|
|
851
848
|
value: string;
|
|
849
|
+
type: "Personal" | "Work" | "Other";
|
|
852
850
|
isPrimary: boolean;
|
|
853
851
|
} | null | undefined;
|
|
854
|
-
|
|
855
|
-
type: "Personal" | "Work" | "Other";
|
|
852
|
+
primaryPhoneNumber?: {
|
|
856
853
|
value: string;
|
|
854
|
+
type: "Personal" | "Work" | "Other";
|
|
857
855
|
isPrimary: boolean;
|
|
856
|
+
} | null | undefined;
|
|
857
|
+
customFields?: {
|
|
858
|
+
title: string;
|
|
859
|
+
id: string;
|
|
860
|
+
value?: unknown;
|
|
861
|
+
isPrivate?: boolean | undefined;
|
|
858
862
|
}[] | undefined;
|
|
859
|
-
|
|
860
|
-
type: "Personal" | "Work" | "Other";
|
|
863
|
+
emailAddresses?: {
|
|
861
864
|
value: string;
|
|
865
|
+
type: "Personal" | "Work" | "Other";
|
|
862
866
|
isPrimary: boolean;
|
|
863
|
-
} |
|
|
867
|
+
}[] | undefined;
|
|
864
868
|
phoneNumbers?: {
|
|
865
|
-
type: "Personal" | "Work" | "Other";
|
|
866
869
|
value: string;
|
|
870
|
+
type: "Personal" | "Work" | "Other";
|
|
867
871
|
isPrimary: boolean;
|
|
868
872
|
}[] | undefined;
|
|
869
873
|
socialLinks?: {
|
|
870
874
|
type: string;
|
|
871
875
|
url: string;
|
|
872
876
|
}[] | undefined;
|
|
877
|
+
position?: string | null | undefined;
|
|
878
|
+
company?: string | null | undefined;
|
|
873
879
|
school?: string | null | undefined;
|
|
874
880
|
applicationIds?: string[] | undefined;
|
|
875
881
|
resumeFileHandle?: {
|
|
@@ -882,12 +888,6 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
882
888
|
id: string;
|
|
883
889
|
handle: string;
|
|
884
890
|
}[] | undefined;
|
|
885
|
-
customFields?: {
|
|
886
|
-
title: string;
|
|
887
|
-
id: string;
|
|
888
|
-
value?: unknown;
|
|
889
|
-
isPrivate?: boolean | undefined;
|
|
890
|
-
}[] | undefined;
|
|
891
891
|
}>, "many">>;
|
|
892
892
|
next_cursor: z.ZodOptional<z.ZodString>;
|
|
893
893
|
more_data_available: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -902,39 +902,45 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
902
902
|
candidates?: {
|
|
903
903
|
name: string;
|
|
904
904
|
id: string;
|
|
905
|
-
company?: string | null | undefined;
|
|
906
905
|
tags?: {
|
|
907
906
|
title: string;
|
|
908
907
|
id: string;
|
|
909
908
|
isArchived?: boolean | undefined;
|
|
910
909
|
}[] | undefined;
|
|
911
910
|
createdAt?: string | undefined;
|
|
912
|
-
position?: string | null | undefined;
|
|
913
911
|
updatedAt?: string | undefined;
|
|
914
912
|
primaryEmailAddress?: {
|
|
915
|
-
type: "Personal" | "Work" | "Other";
|
|
916
913
|
value: string;
|
|
914
|
+
type: "Personal" | "Work" | "Other";
|
|
917
915
|
isPrimary: boolean;
|
|
918
916
|
} | null | undefined;
|
|
919
|
-
|
|
920
|
-
type: "Personal" | "Work" | "Other";
|
|
917
|
+
primaryPhoneNumber?: {
|
|
921
918
|
value: string;
|
|
919
|
+
type: "Personal" | "Work" | "Other";
|
|
922
920
|
isPrimary: boolean;
|
|
921
|
+
} | null | undefined;
|
|
922
|
+
customFields?: {
|
|
923
|
+
title: string;
|
|
924
|
+
id: string;
|
|
925
|
+
value?: unknown;
|
|
926
|
+
isPrivate?: boolean | undefined;
|
|
923
927
|
}[] | undefined;
|
|
924
|
-
|
|
925
|
-
type: "Personal" | "Work" | "Other";
|
|
928
|
+
emailAddresses?: {
|
|
926
929
|
value: string;
|
|
930
|
+
type: "Personal" | "Work" | "Other";
|
|
927
931
|
isPrimary: boolean;
|
|
928
|
-
} |
|
|
932
|
+
}[] | undefined;
|
|
929
933
|
phoneNumbers?: {
|
|
930
|
-
type: "Personal" | "Work" | "Other";
|
|
931
934
|
value: string;
|
|
935
|
+
type: "Personal" | "Work" | "Other";
|
|
932
936
|
isPrimary: boolean;
|
|
933
937
|
}[] | undefined;
|
|
934
938
|
socialLinks?: {
|
|
935
939
|
type: string;
|
|
936
940
|
url: string;
|
|
937
941
|
}[] | undefined;
|
|
942
|
+
position?: string | null | undefined;
|
|
943
|
+
company?: string | null | undefined;
|
|
938
944
|
school?: string | null | undefined;
|
|
939
945
|
applicationIds?: string[] | undefined;
|
|
940
946
|
resumeFileHandle?: {
|
|
@@ -947,12 +953,6 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
947
953
|
id: string;
|
|
948
954
|
handle: string;
|
|
949
955
|
}[] | undefined;
|
|
950
|
-
customFields?: {
|
|
951
|
-
title: string;
|
|
952
|
-
id: string;
|
|
953
|
-
value?: unknown;
|
|
954
|
-
isPrivate?: boolean | undefined;
|
|
955
|
-
}[] | undefined;
|
|
956
956
|
}[] | undefined;
|
|
957
957
|
more_data_available?: boolean | undefined;
|
|
958
958
|
}, {
|
|
@@ -964,39 +964,45 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
964
964
|
candidates?: {
|
|
965
965
|
name: string;
|
|
966
966
|
id: string;
|
|
967
|
-
company?: string | null | undefined;
|
|
968
967
|
tags?: {
|
|
969
968
|
title: string;
|
|
970
969
|
id: string;
|
|
971
970
|
isArchived?: boolean | undefined;
|
|
972
971
|
}[] | undefined;
|
|
973
972
|
createdAt?: string | undefined;
|
|
974
|
-
position?: string | null | undefined;
|
|
975
973
|
updatedAt?: string | undefined;
|
|
976
974
|
primaryEmailAddress?: {
|
|
977
|
-
type: "Personal" | "Work" | "Other";
|
|
978
975
|
value: string;
|
|
976
|
+
type: "Personal" | "Work" | "Other";
|
|
979
977
|
isPrimary: boolean;
|
|
980
978
|
} | null | undefined;
|
|
981
|
-
|
|
982
|
-
type: "Personal" | "Work" | "Other";
|
|
979
|
+
primaryPhoneNumber?: {
|
|
983
980
|
value: string;
|
|
981
|
+
type: "Personal" | "Work" | "Other";
|
|
984
982
|
isPrimary: boolean;
|
|
983
|
+
} | null | undefined;
|
|
984
|
+
customFields?: {
|
|
985
|
+
title: string;
|
|
986
|
+
id: string;
|
|
987
|
+
value?: unknown;
|
|
988
|
+
isPrivate?: boolean | undefined;
|
|
985
989
|
}[] | undefined;
|
|
986
|
-
|
|
987
|
-
type: "Personal" | "Work" | "Other";
|
|
990
|
+
emailAddresses?: {
|
|
988
991
|
value: string;
|
|
992
|
+
type: "Personal" | "Work" | "Other";
|
|
989
993
|
isPrimary: boolean;
|
|
990
|
-
} |
|
|
994
|
+
}[] | undefined;
|
|
991
995
|
phoneNumbers?: {
|
|
992
|
-
type: "Personal" | "Work" | "Other";
|
|
993
996
|
value: string;
|
|
997
|
+
type: "Personal" | "Work" | "Other";
|
|
994
998
|
isPrimary: boolean;
|
|
995
999
|
}[] | undefined;
|
|
996
1000
|
socialLinks?: {
|
|
997
1001
|
type: string;
|
|
998
1002
|
url: string;
|
|
999
1003
|
}[] | undefined;
|
|
1004
|
+
position?: string | null | undefined;
|
|
1005
|
+
company?: string | null | undefined;
|
|
1000
1006
|
school?: string | null | undefined;
|
|
1001
1007
|
applicationIds?: string[] | undefined;
|
|
1002
1008
|
resumeFileHandle?: {
|
|
@@ -1009,12 +1015,6 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
1009
1015
|
id: string;
|
|
1010
1016
|
handle: string;
|
|
1011
1017
|
}[] | undefined;
|
|
1012
|
-
customFields?: {
|
|
1013
|
-
title: string;
|
|
1014
|
-
id: string;
|
|
1015
|
-
value?: unknown;
|
|
1016
|
-
isPrivate?: boolean | undefined;
|
|
1017
|
-
}[] | undefined;
|
|
1018
1018
|
}[] | undefined;
|
|
1019
1019
|
more_data_available?: boolean | undefined;
|
|
1020
1020
|
}>, z.ZodObject<{
|
|
@@ -1030,12 +1030,12 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
1030
1030
|
type: z.ZodEnum<["Personal", "Work", "Other"]>;
|
|
1031
1031
|
isPrimary: z.ZodBoolean;
|
|
1032
1032
|
}, "strip", z.ZodTypeAny, {
|
|
1033
|
-
type: "Personal" | "Work" | "Other";
|
|
1034
1033
|
value: string;
|
|
1034
|
+
type: "Personal" | "Work" | "Other";
|
|
1035
1035
|
isPrimary: boolean;
|
|
1036
1036
|
}, {
|
|
1037
|
-
type: "Personal" | "Work" | "Other";
|
|
1038
1037
|
value: string;
|
|
1038
|
+
type: "Personal" | "Work" | "Other";
|
|
1039
1039
|
isPrimary: boolean;
|
|
1040
1040
|
}>>>;
|
|
1041
1041
|
primaryPhoneNumber: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -1043,12 +1043,12 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
1043
1043
|
type: z.ZodEnum<["Personal", "Work", "Other"]>;
|
|
1044
1044
|
isPrimary: z.ZodBoolean;
|
|
1045
1045
|
}, "strip", z.ZodTypeAny, {
|
|
1046
|
-
type: "Personal" | "Work" | "Other";
|
|
1047
1046
|
value: string;
|
|
1047
|
+
type: "Personal" | "Work" | "Other";
|
|
1048
1048
|
isPrimary: boolean;
|
|
1049
1049
|
}, {
|
|
1050
|
-
type: "Personal" | "Work" | "Other";
|
|
1051
1050
|
value: string;
|
|
1051
|
+
type: "Personal" | "Work" | "Other";
|
|
1052
1052
|
isPrimary: boolean;
|
|
1053
1053
|
}>>>;
|
|
1054
1054
|
customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -1073,13 +1073,13 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
1073
1073
|
createdAt?: string | undefined;
|
|
1074
1074
|
updatedAt?: string | undefined;
|
|
1075
1075
|
primaryEmailAddress?: {
|
|
1076
|
-
type: "Personal" | "Work" | "Other";
|
|
1077
1076
|
value: string;
|
|
1077
|
+
type: "Personal" | "Work" | "Other";
|
|
1078
1078
|
isPrimary: boolean;
|
|
1079
1079
|
} | null | undefined;
|
|
1080
1080
|
primaryPhoneNumber?: {
|
|
1081
|
-
type: "Personal" | "Work" | "Other";
|
|
1082
1081
|
value: string;
|
|
1082
|
+
type: "Personal" | "Work" | "Other";
|
|
1083
1083
|
isPrimary: boolean;
|
|
1084
1084
|
} | null | undefined;
|
|
1085
1085
|
customFields?: {
|
|
@@ -1094,13 +1094,13 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
1094
1094
|
createdAt?: string | undefined;
|
|
1095
1095
|
updatedAt?: string | undefined;
|
|
1096
1096
|
primaryEmailAddress?: {
|
|
1097
|
-
type: "Personal" | "Work" | "Other";
|
|
1098
1097
|
value: string;
|
|
1098
|
+
type: "Personal" | "Work" | "Other";
|
|
1099
1099
|
isPrimary: boolean;
|
|
1100
1100
|
} | null | undefined;
|
|
1101
1101
|
primaryPhoneNumber?: {
|
|
1102
|
-
type: "Personal" | "Work" | "Other";
|
|
1103
1102
|
value: string;
|
|
1103
|
+
type: "Personal" | "Work" | "Other";
|
|
1104
1104
|
isPrimary: boolean;
|
|
1105
1105
|
} | null | undefined;
|
|
1106
1106
|
customFields?: {
|
|
@@ -1121,13 +1121,13 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
1121
1121
|
createdAt?: string | undefined;
|
|
1122
1122
|
updatedAt?: string | undefined;
|
|
1123
1123
|
primaryEmailAddress?: {
|
|
1124
|
-
type: "Personal" | "Work" | "Other";
|
|
1125
1124
|
value: string;
|
|
1125
|
+
type: "Personal" | "Work" | "Other";
|
|
1126
1126
|
isPrimary: boolean;
|
|
1127
1127
|
} | null | undefined;
|
|
1128
1128
|
primaryPhoneNumber?: {
|
|
1129
|
-
type: "Personal" | "Work" | "Other";
|
|
1130
1129
|
value: string;
|
|
1130
|
+
type: "Personal" | "Work" | "Other";
|
|
1131
1131
|
isPrimary: boolean;
|
|
1132
1132
|
} | null | undefined;
|
|
1133
1133
|
customFields?: {
|
|
@@ -1147,13 +1147,13 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
1147
1147
|
createdAt?: string | undefined;
|
|
1148
1148
|
updatedAt?: string | undefined;
|
|
1149
1149
|
primaryEmailAddress?: {
|
|
1150
|
-
type: "Personal" | "Work" | "Other";
|
|
1151
1150
|
value: string;
|
|
1151
|
+
type: "Personal" | "Work" | "Other";
|
|
1152
1152
|
isPrimary: boolean;
|
|
1153
1153
|
} | null | undefined;
|
|
1154
1154
|
primaryPhoneNumber?: {
|
|
1155
|
-
type: "Personal" | "Work" | "Other";
|
|
1156
1155
|
value: string;
|
|
1156
|
+
type: "Personal" | "Work" | "Other";
|
|
1157
1157
|
isPrimary: boolean;
|
|
1158
1158
|
} | null | undefined;
|
|
1159
1159
|
customFields?: {
|
|
@@ -1176,12 +1176,12 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
1176
1176
|
type: z.ZodEnum<["Personal", "Work", "Other"]>;
|
|
1177
1177
|
isPrimary: z.ZodBoolean;
|
|
1178
1178
|
}, "strip", z.ZodTypeAny, {
|
|
1179
|
-
type: "Personal" | "Work" | "Other";
|
|
1180
1179
|
value: string;
|
|
1180
|
+
type: "Personal" | "Work" | "Other";
|
|
1181
1181
|
isPrimary: boolean;
|
|
1182
1182
|
}, {
|
|
1183
|
-
type: "Personal" | "Work" | "Other";
|
|
1184
1183
|
value: string;
|
|
1184
|
+
type: "Personal" | "Work" | "Other";
|
|
1185
1185
|
isPrimary: boolean;
|
|
1186
1186
|
}>>>;
|
|
1187
1187
|
primaryPhoneNumber: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -1189,12 +1189,12 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
1189
1189
|
type: z.ZodEnum<["Personal", "Work", "Other"]>;
|
|
1190
1190
|
isPrimary: z.ZodBoolean;
|
|
1191
1191
|
}, "strip", z.ZodTypeAny, {
|
|
1192
|
-
type: "Personal" | "Work" | "Other";
|
|
1193
1192
|
value: string;
|
|
1193
|
+
type: "Personal" | "Work" | "Other";
|
|
1194
1194
|
isPrimary: boolean;
|
|
1195
1195
|
}, {
|
|
1196
|
-
type: "Personal" | "Work" | "Other";
|
|
1197
1196
|
value: string;
|
|
1197
|
+
type: "Personal" | "Work" | "Other";
|
|
1198
1198
|
isPrimary: boolean;
|
|
1199
1199
|
}>>>;
|
|
1200
1200
|
customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -1219,13 +1219,13 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
1219
1219
|
createdAt?: string | undefined;
|
|
1220
1220
|
updatedAt?: string | undefined;
|
|
1221
1221
|
primaryEmailAddress?: {
|
|
1222
|
-
type: "Personal" | "Work" | "Other";
|
|
1223
1222
|
value: string;
|
|
1223
|
+
type: "Personal" | "Work" | "Other";
|
|
1224
1224
|
isPrimary: boolean;
|
|
1225
1225
|
} | null | undefined;
|
|
1226
1226
|
primaryPhoneNumber?: {
|
|
1227
|
-
type: "Personal" | "Work" | "Other";
|
|
1228
1227
|
value: string;
|
|
1228
|
+
type: "Personal" | "Work" | "Other";
|
|
1229
1229
|
isPrimary: boolean;
|
|
1230
1230
|
} | null | undefined;
|
|
1231
1231
|
customFields?: {
|
|
@@ -1240,13 +1240,13 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
1240
1240
|
createdAt?: string | undefined;
|
|
1241
1241
|
updatedAt?: string | undefined;
|
|
1242
1242
|
primaryEmailAddress?: {
|
|
1243
|
-
type: "Personal" | "Work" | "Other";
|
|
1244
1243
|
value: string;
|
|
1244
|
+
type: "Personal" | "Work" | "Other";
|
|
1245
1245
|
isPrimary: boolean;
|
|
1246
1246
|
} | null | undefined;
|
|
1247
1247
|
primaryPhoneNumber?: {
|
|
1248
|
-
type: "Personal" | "Work" | "Other";
|
|
1249
1248
|
value: string;
|
|
1249
|
+
type: "Personal" | "Work" | "Other";
|
|
1250
1250
|
isPrimary: boolean;
|
|
1251
1251
|
} | null | undefined;
|
|
1252
1252
|
customFields?: {
|
|
@@ -1267,13 +1267,13 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
1267
1267
|
createdAt?: string | undefined;
|
|
1268
1268
|
updatedAt?: string | undefined;
|
|
1269
1269
|
primaryEmailAddress?: {
|
|
1270
|
-
type: "Personal" | "Work" | "Other";
|
|
1271
1270
|
value: string;
|
|
1271
|
+
type: "Personal" | "Work" | "Other";
|
|
1272
1272
|
isPrimary: boolean;
|
|
1273
1273
|
} | null | undefined;
|
|
1274
1274
|
primaryPhoneNumber?: {
|
|
1275
|
-
type: "Personal" | "Work" | "Other";
|
|
1276
1275
|
value: string;
|
|
1276
|
+
type: "Personal" | "Work" | "Other";
|
|
1277
1277
|
isPrimary: boolean;
|
|
1278
1278
|
} | null | undefined;
|
|
1279
1279
|
customFields?: {
|
|
@@ -1293,13 +1293,13 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
1293
1293
|
createdAt?: string | undefined;
|
|
1294
1294
|
updatedAt?: string | undefined;
|
|
1295
1295
|
primaryEmailAddress?: {
|
|
1296
|
-
type: "Personal" | "Work" | "Other";
|
|
1297
1296
|
value: string;
|
|
1297
|
+
type: "Personal" | "Work" | "Other";
|
|
1298
1298
|
isPrimary: boolean;
|
|
1299
1299
|
} | null | undefined;
|
|
1300
1300
|
primaryPhoneNumber?: {
|
|
1301
|
-
type: "Personal" | "Work" | "Other";
|
|
1302
1301
|
value: string;
|
|
1302
|
+
type: "Personal" | "Work" | "Other";
|
|
1303
1303
|
isPrimary: boolean;
|
|
1304
1304
|
} | null | undefined;
|
|
1305
1305
|
customFields?: {
|
|
@@ -1322,12 +1322,12 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
1322
1322
|
type: z.ZodEnum<["Personal", "Work", "Other"]>;
|
|
1323
1323
|
isPrimary: z.ZodBoolean;
|
|
1324
1324
|
}, "strip", z.ZodTypeAny, {
|
|
1325
|
-
type: "Personal" | "Work" | "Other";
|
|
1326
1325
|
value: string;
|
|
1326
|
+
type: "Personal" | "Work" | "Other";
|
|
1327
1327
|
isPrimary: boolean;
|
|
1328
1328
|
}, {
|
|
1329
|
-
type: "Personal" | "Work" | "Other";
|
|
1330
1329
|
value: string;
|
|
1330
|
+
type: "Personal" | "Work" | "Other";
|
|
1331
1331
|
isPrimary: boolean;
|
|
1332
1332
|
}>>>;
|
|
1333
1333
|
primaryPhoneNumber: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -1335,12 +1335,12 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
1335
1335
|
type: z.ZodEnum<["Personal", "Work", "Other"]>;
|
|
1336
1336
|
isPrimary: z.ZodBoolean;
|
|
1337
1337
|
}, "strip", z.ZodTypeAny, {
|
|
1338
|
-
type: "Personal" | "Work" | "Other";
|
|
1339
1338
|
value: string;
|
|
1339
|
+
type: "Personal" | "Work" | "Other";
|
|
1340
1340
|
isPrimary: boolean;
|
|
1341
1341
|
}, {
|
|
1342
|
-
type: "Personal" | "Work" | "Other";
|
|
1343
1342
|
value: string;
|
|
1343
|
+
type: "Personal" | "Work" | "Other";
|
|
1344
1344
|
isPrimary: boolean;
|
|
1345
1345
|
}>>>;
|
|
1346
1346
|
customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -1365,13 +1365,13 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
1365
1365
|
createdAt?: string | undefined;
|
|
1366
1366
|
updatedAt?: string | undefined;
|
|
1367
1367
|
primaryEmailAddress?: {
|
|
1368
|
-
type: "Personal" | "Work" | "Other";
|
|
1369
1368
|
value: string;
|
|
1369
|
+
type: "Personal" | "Work" | "Other";
|
|
1370
1370
|
isPrimary: boolean;
|
|
1371
1371
|
} | null | undefined;
|
|
1372
1372
|
primaryPhoneNumber?: {
|
|
1373
|
-
type: "Personal" | "Work" | "Other";
|
|
1374
1373
|
value: string;
|
|
1374
|
+
type: "Personal" | "Work" | "Other";
|
|
1375
1375
|
isPrimary: boolean;
|
|
1376
1376
|
} | null | undefined;
|
|
1377
1377
|
customFields?: {
|
|
@@ -1386,13 +1386,13 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
1386
1386
|
createdAt?: string | undefined;
|
|
1387
1387
|
updatedAt?: string | undefined;
|
|
1388
1388
|
primaryEmailAddress?: {
|
|
1389
|
-
type: "Personal" | "Work" | "Other";
|
|
1390
1389
|
value: string;
|
|
1390
|
+
type: "Personal" | "Work" | "Other";
|
|
1391
1391
|
isPrimary: boolean;
|
|
1392
1392
|
} | null | undefined;
|
|
1393
1393
|
primaryPhoneNumber?: {
|
|
1394
|
-
type: "Personal" | "Work" | "Other";
|
|
1395
1394
|
value: string;
|
|
1395
|
+
type: "Personal" | "Work" | "Other";
|
|
1396
1396
|
isPrimary: boolean;
|
|
1397
1397
|
} | null | undefined;
|
|
1398
1398
|
customFields?: {
|
|
@@ -1413,13 +1413,13 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
1413
1413
|
createdAt?: string | undefined;
|
|
1414
1414
|
updatedAt?: string | undefined;
|
|
1415
1415
|
primaryEmailAddress?: {
|
|
1416
|
-
type: "Personal" | "Work" | "Other";
|
|
1417
1416
|
value: string;
|
|
1417
|
+
type: "Personal" | "Work" | "Other";
|
|
1418
1418
|
isPrimary: boolean;
|
|
1419
1419
|
} | null | undefined;
|
|
1420
1420
|
primaryPhoneNumber?: {
|
|
1421
|
-
type: "Personal" | "Work" | "Other";
|
|
1422
1421
|
value: string;
|
|
1422
|
+
type: "Personal" | "Work" | "Other";
|
|
1423
1423
|
isPrimary: boolean;
|
|
1424
1424
|
} | null | undefined;
|
|
1425
1425
|
customFields?: {
|
|
@@ -1439,13 +1439,13 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
1439
1439
|
createdAt?: string | undefined;
|
|
1440
1440
|
updatedAt?: string | undefined;
|
|
1441
1441
|
primaryEmailAddress?: {
|
|
1442
|
-
type: "Personal" | "Work" | "Other";
|
|
1443
1442
|
value: string;
|
|
1443
|
+
type: "Personal" | "Work" | "Other";
|
|
1444
1444
|
isPrimary: boolean;
|
|
1445
1445
|
} | null | undefined;
|
|
1446
1446
|
primaryPhoneNumber?: {
|
|
1447
|
-
type: "Personal" | "Work" | "Other";
|
|
1448
1447
|
value: string;
|
|
1448
|
+
type: "Personal" | "Work" | "Other";
|
|
1449
1449
|
isPrimary: boolean;
|
|
1450
1450
|
} | null | undefined;
|
|
1451
1451
|
customFields?: {
|
|
@@ -1468,12 +1468,12 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
1468
1468
|
type: z.ZodEnum<["Personal", "Work", "Other"]>;
|
|
1469
1469
|
isPrimary: z.ZodBoolean;
|
|
1470
1470
|
}, "strip", z.ZodTypeAny, {
|
|
1471
|
-
type: "Personal" | "Work" | "Other";
|
|
1472
1471
|
value: string;
|
|
1472
|
+
type: "Personal" | "Work" | "Other";
|
|
1473
1473
|
isPrimary: boolean;
|
|
1474
1474
|
}, {
|
|
1475
|
-
type: "Personal" | "Work" | "Other";
|
|
1476
1475
|
value: string;
|
|
1476
|
+
type: "Personal" | "Work" | "Other";
|
|
1477
1477
|
isPrimary: boolean;
|
|
1478
1478
|
}>>>;
|
|
1479
1479
|
primaryPhoneNumber: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
@@ -1481,12 +1481,12 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
1481
1481
|
type: z.ZodEnum<["Personal", "Work", "Other"]>;
|
|
1482
1482
|
isPrimary: z.ZodBoolean;
|
|
1483
1483
|
}, "strip", z.ZodTypeAny, {
|
|
1484
|
-
type: "Personal" | "Work" | "Other";
|
|
1485
1484
|
value: string;
|
|
1485
|
+
type: "Personal" | "Work" | "Other";
|
|
1486
1486
|
isPrimary: boolean;
|
|
1487
1487
|
}, {
|
|
1488
|
-
type: "Personal" | "Work" | "Other";
|
|
1489
1488
|
value: string;
|
|
1489
|
+
type: "Personal" | "Work" | "Other";
|
|
1490
1490
|
isPrimary: boolean;
|
|
1491
1491
|
}>>>;
|
|
1492
1492
|
customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -1511,13 +1511,13 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
1511
1511
|
createdAt?: string | undefined;
|
|
1512
1512
|
updatedAt?: string | undefined;
|
|
1513
1513
|
primaryEmailAddress?: {
|
|
1514
|
-
type: "Personal" | "Work" | "Other";
|
|
1515
1514
|
value: string;
|
|
1515
|
+
type: "Personal" | "Work" | "Other";
|
|
1516
1516
|
isPrimary: boolean;
|
|
1517
1517
|
} | null | undefined;
|
|
1518
1518
|
primaryPhoneNumber?: {
|
|
1519
|
-
type: "Personal" | "Work" | "Other";
|
|
1520
1519
|
value: string;
|
|
1520
|
+
type: "Personal" | "Work" | "Other";
|
|
1521
1521
|
isPrimary: boolean;
|
|
1522
1522
|
} | null | undefined;
|
|
1523
1523
|
customFields?: {
|
|
@@ -1532,13 +1532,13 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
1532
1532
|
createdAt?: string | undefined;
|
|
1533
1533
|
updatedAt?: string | undefined;
|
|
1534
1534
|
primaryEmailAddress?: {
|
|
1535
|
-
type: "Personal" | "Work" | "Other";
|
|
1536
1535
|
value: string;
|
|
1536
|
+
type: "Personal" | "Work" | "Other";
|
|
1537
1537
|
isPrimary: boolean;
|
|
1538
1538
|
} | null | undefined;
|
|
1539
1539
|
primaryPhoneNumber?: {
|
|
1540
|
-
type: "Personal" | "Work" | "Other";
|
|
1541
1540
|
value: string;
|
|
1541
|
+
type: "Personal" | "Work" | "Other";
|
|
1542
1542
|
isPrimary: boolean;
|
|
1543
1543
|
} | null | undefined;
|
|
1544
1544
|
customFields?: {
|
|
@@ -1559,13 +1559,13 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
1559
1559
|
createdAt?: string | undefined;
|
|
1560
1560
|
updatedAt?: string | undefined;
|
|
1561
1561
|
primaryEmailAddress?: {
|
|
1562
|
-
type: "Personal" | "Work" | "Other";
|
|
1563
1562
|
value: string;
|
|
1563
|
+
type: "Personal" | "Work" | "Other";
|
|
1564
1564
|
isPrimary: boolean;
|
|
1565
1565
|
} | null | undefined;
|
|
1566
1566
|
primaryPhoneNumber?: {
|
|
1567
|
-
type: "Personal" | "Work" | "Other";
|
|
1568
1567
|
value: string;
|
|
1568
|
+
type: "Personal" | "Work" | "Other";
|
|
1569
1569
|
isPrimary: boolean;
|
|
1570
1570
|
} | null | undefined;
|
|
1571
1571
|
customFields?: {
|
|
@@ -1585,13 +1585,13 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
1585
1585
|
createdAt?: string | undefined;
|
|
1586
1586
|
updatedAt?: string | undefined;
|
|
1587
1587
|
primaryEmailAddress?: {
|
|
1588
|
-
type: "Personal" | "Work" | "Other";
|
|
1589
1588
|
value: string;
|
|
1589
|
+
type: "Personal" | "Work" | "Other";
|
|
1590
1590
|
isPrimary: boolean;
|
|
1591
1591
|
} | null | undefined;
|
|
1592
1592
|
primaryPhoneNumber?: {
|
|
1593
|
-
type: "Personal" | "Work" | "Other";
|
|
1594
1593
|
value: string;
|
|
1594
|
+
type: "Personal" | "Work" | "Other";
|
|
1595
1595
|
isPrimary: boolean;
|
|
1596
1596
|
} | null | undefined;
|
|
1597
1597
|
customFields?: {
|
|
@@ -1697,8 +1697,8 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
1697
1697
|
}, "strip", z.ZodTypeAny, {
|
|
1698
1698
|
title: string;
|
|
1699
1699
|
id: string;
|
|
1700
|
-
isArchived: boolean;
|
|
1701
1700
|
isPrivate: boolean;
|
|
1701
|
+
isArchived: boolean;
|
|
1702
1702
|
objectType: string;
|
|
1703
1703
|
fieldType: string;
|
|
1704
1704
|
selectableValues?: {
|
|
@@ -1709,8 +1709,8 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
1709
1709
|
}, {
|
|
1710
1710
|
title: string;
|
|
1711
1711
|
id: string;
|
|
1712
|
-
isArchived: boolean;
|
|
1713
1712
|
isPrivate: boolean;
|
|
1713
|
+
isArchived: boolean;
|
|
1714
1714
|
objectType: string;
|
|
1715
1715
|
fieldType: string;
|
|
1716
1716
|
selectableValues?: {
|
|
@@ -1733,8 +1733,8 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
1733
1733
|
custom_fields?: {
|
|
1734
1734
|
title: string;
|
|
1735
1735
|
id: string;
|
|
1736
|
-
isArchived: boolean;
|
|
1737
1736
|
isPrivate: boolean;
|
|
1737
|
+
isArchived: boolean;
|
|
1738
1738
|
objectType: string;
|
|
1739
1739
|
fieldType: string;
|
|
1740
1740
|
selectableValues?: {
|
|
@@ -1753,8 +1753,8 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
1753
1753
|
custom_fields?: {
|
|
1754
1754
|
title: string;
|
|
1755
1755
|
id: string;
|
|
1756
|
-
isArchived: boolean;
|
|
1757
1756
|
isPrivate: boolean;
|
|
1757
|
+
isArchived: boolean;
|
|
1758
1758
|
objectType: string;
|
|
1759
1759
|
fieldType: string;
|
|
1760
1760
|
selectableValues?: {
|