@bubblelab/bubble-core 0.1.238 → 0.1.239

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.
Files changed (60) hide show
  1. package/dist/bubble-bundle.d.ts +112 -112
  2. package/dist/bubbles/service-bubble/ai-agent.d.ts +82 -82
  3. package/dist/bubbles/service-bubble/airtable.d.ts +100 -100
  4. package/dist/bubbles/service-bubble/apify/apify.d.ts +18 -18
  5. package/dist/bubbles/service-bubble/ashby/ashby.d.ts +114 -114
  6. package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +162 -162
  7. package/dist/bubbles/service-bubble/assembled/assembled.d.ts +4 -4
  8. package/dist/bubbles/service-bubble/attio/attio.d.ts +2 -2
  9. package/dist/bubbles/service-bubble/attio/attio.schema.d.ts +2 -2
  10. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +5 -5
  11. package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +7 -7
  12. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +82 -82
  13. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +102 -102
  14. package/dist/bubbles/service-bubble/firecrawl.d.ts +270 -270
  15. package/dist/bubbles/service-bubble/followupboss.d.ts +4 -4
  16. package/dist/bubbles/service-bubble/github.d.ts +12 -12
  17. package/dist/bubbles/service-bubble/gmail.d.ts +104 -104
  18. package/dist/bubbles/service-bubble/google-calendar.d.ts +80 -80
  19. package/dist/bubbles/service-bubble/google-drive.d.ts +40 -40
  20. package/dist/bubbles/service-bubble/http.d.ts +10 -10
  21. package/dist/bubbles/service-bubble/hubspot/hubspot.d.ts +8 -8
  22. package/dist/bubbles/service-bubble/hubspot/hubspot.schema.d.ts +8 -8
  23. package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
  24. package/dist/bubbles/service-bubble/jira/jira.d.ts +4 -4
  25. package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +4 -4
  26. package/dist/bubbles/service-bubble/notion/notion.d.ts +28 -28
  27. package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
  28. package/dist/bubbles/service-bubble/posthog/posthog.d.ts +9 -9
  29. package/dist/bubbles/service-bubble/posthog/posthog.schema.d.ts +13 -13
  30. package/dist/bubbles/service-bubble/sendsafely/sendsafely.d.ts +4 -4
  31. package/dist/bubbles/service-bubble/sendsafely/sendsafely.schema.d.ts +6 -6
  32. package/dist/bubbles/service-bubble/slab/slab.d.ts +16 -16
  33. package/dist/bubbles/service-bubble/slab/slab.schema.d.ts +20 -20
  34. package/dist/bubbles/service-bubble/slack/slack.d.ts +140 -140
  35. package/dist/bubbles/service-bubble/stripe/stripe.d.ts +34 -34
  36. package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +40 -40
  37. package/dist/bubbles/service-bubble/xero/xero.d.ts +2 -2
  38. package/dist/bubbles/service-bubble/xero/xero.schema.d.ts +2 -2
  39. package/dist/bubbles/service-bubble/zendesk/zendesk.d.ts +22 -22
  40. package/dist/bubbles/service-bubble/zendesk/zendesk.schema.d.ts +22 -22
  41. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +2 -2
  42. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.schema.d.ts +2 -2
  43. package/dist/bubbles/tool-bubble/app-rankings-tool.d.ts +8 -8
  44. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +316 -316
  45. package/dist/bubbles/tool-bubble/list-capabilities-tool.d.ts +8 -8
  46. package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
  47. package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
  48. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +52 -52
  49. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +124 -124
  50. package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +4 -4
  51. package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
  52. package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +8 -8
  53. package/dist/bubbles/tool-bubble/yc-scraper-tool.d.ts +8 -8
  54. package/dist/bubbles/tool-bubble/youtube-tool.d.ts +20 -20
  55. package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +12 -12
  56. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +36 -36
  57. package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +2 -2
  58. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +18 -18
  59. package/dist/bubbles.json +1 -1
  60. 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?: {
@@ -232,8 +232,8 @@ export declare const AshbyCustomFieldDefinitionSchema: z.ZodObject<{
232
232
  title: string;
233
233
  id: string;
234
234
  fieldType: string;
235
- isArchived: boolean;
236
235
  isPrivate: boolean;
236
+ isArchived: boolean;
237
237
  objectType: string;
238
238
  selectableValues?: {
239
239
  value: string;
@@ -244,8 +244,8 @@ export declare const AshbyCustomFieldDefinitionSchema: z.ZodObject<{
244
244
  title: string;
245
245
  id: string;
246
246
  fieldType: string;
247
- isArchived: boolean;
248
247
  isPrivate: boolean;
248
+ isArchived: boolean;
249
249
  objectType: string;
250
250
  selectableValues?: {
251
251
  value: string;
@@ -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<{
@@ -394,23 +394,29 @@ export declare const AshbyCandidateListItemSchema: z.ZodObject<{
394
394
  createdAt?: string | undefined;
395
395
  updatedAt?: string | undefined;
396
396
  primaryEmailAddress?: {
397
- type: "Personal" | "Work" | "Other";
398
397
  value: string;
398
+ type: "Personal" | "Work" | "Other";
399
399
  isPrimary: boolean;
400
400
  } | null | undefined;
401
- emailAddresses?: {
402
- type: "Personal" | "Work" | "Other";
401
+ primaryPhoneNumber?: {
403
402
  value: string;
403
+ type: "Personal" | "Work" | "Other";
404
404
  isPrimary: boolean;
405
+ } | null | undefined;
406
+ customFields?: {
407
+ title: string;
408
+ id: string;
409
+ value?: unknown;
410
+ isPrivate?: boolean | undefined;
405
411
  }[] | undefined;
406
- primaryPhoneNumber?: {
407
- type: "Personal" | "Work" | "Other";
412
+ emailAddresses?: {
408
413
  value: string;
414
+ type: "Personal" | "Work" | "Other";
409
415
  isPrimary: boolean;
410
- } | null | undefined;
416
+ }[] | undefined;
411
417
  phoneNumbers?: {
412
- type: "Personal" | "Work" | "Other";
413
418
  value: string;
419
+ type: "Personal" | "Work" | "Other";
414
420
  isPrimary: boolean;
415
421
  }[] | undefined;
416
422
  socialLinks?: {
@@ -430,12 +436,6 @@ 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;
@@ -448,23 +448,29 @@ export declare const AshbyCandidateListItemSchema: z.ZodObject<{
448
448
  createdAt?: string | undefined;
449
449
  updatedAt?: string | undefined;
450
450
  primaryEmailAddress?: {
451
- type: "Personal" | "Work" | "Other";
452
451
  value: string;
452
+ type: "Personal" | "Work" | "Other";
453
453
  isPrimary: boolean;
454
454
  } | null | undefined;
455
- emailAddresses?: {
456
- type: "Personal" | "Work" | "Other";
455
+ primaryPhoneNumber?: {
457
456
  value: string;
457
+ type: "Personal" | "Work" | "Other";
458
458
  isPrimary: boolean;
459
+ } | null | undefined;
460
+ customFields?: {
461
+ title: string;
462
+ id: string;
463
+ value?: unknown;
464
+ isPrivate?: boolean | undefined;
459
465
  }[] | undefined;
460
- primaryPhoneNumber?: {
461
- type: "Personal" | "Work" | "Other";
466
+ emailAddresses?: {
462
467
  value: string;
468
+ type: "Personal" | "Work" | "Other";
463
469
  isPrimary: boolean;
464
- } | null | undefined;
470
+ }[] | undefined;
465
471
  phoneNumbers?: {
466
- type: "Personal" | "Work" | "Other";
467
472
  value: string;
473
+ type: "Personal" | "Work" | "Other";
468
474
  isPrimary: boolean;
469
475
  }[] | undefined;
470
476
  socialLinks?: {
@@ -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">;
@@ -589,13 +589,13 @@ export declare const AshbyParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.
589
589
  }, "strip", z.ZodTypeAny, {
590
590
  operation: "search_candidates";
591
591
  name?: string | undefined;
592
- email?: string | undefined;
593
592
  credentials?: Partial<Record<CredentialType, string>> | undefined;
593
+ email?: string | undefined;
594
594
  }, {
595
595
  operation: "search_candidates";
596
596
  name?: string | undefined;
597
- email?: string | undefined;
598
597
  credentials?: Partial<Record<CredentialType, string>> | undefined;
598
+ email?: string | undefined;
599
599
  }>, z.ZodObject<{
600
600
  operation: z.ZodLiteral<"add_tag">;
601
601
  candidate_id: z.ZodString;
@@ -667,12 +667,12 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
667
667
  type: z.ZodEnum<["Personal", "Work", "Other"]>;
668
668
  isPrimary: z.ZodBoolean;
669
669
  }, "strip", z.ZodTypeAny, {
670
- type: "Personal" | "Work" | "Other";
671
670
  value: string;
671
+ type: "Personal" | "Work" | "Other";
672
672
  isPrimary: boolean;
673
673
  }, {
674
- type: "Personal" | "Work" | "Other";
675
674
  value: string;
675
+ type: "Personal" | "Work" | "Other";
676
676
  isPrimary: boolean;
677
677
  }>>>;
678
678
  emailAddresses: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -680,12 +680,12 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
680
680
  type: z.ZodEnum<["Personal", "Work", "Other"]>;
681
681
  isPrimary: z.ZodBoolean;
682
682
  }, "strip", z.ZodTypeAny, {
683
- type: "Personal" | "Work" | "Other";
684
683
  value: string;
684
+ type: "Personal" | "Work" | "Other";
685
685
  isPrimary: boolean;
686
686
  }, {
687
- type: "Personal" | "Work" | "Other";
688
687
  value: string;
688
+ type: "Personal" | "Work" | "Other";
689
689
  isPrimary: boolean;
690
690
  }>, "many">>;
691
691
  primaryPhoneNumber: z.ZodNullable<z.ZodOptional<z.ZodObject<{
@@ -693,12 +693,12 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
693
693
  type: z.ZodEnum<["Personal", "Work", "Other"]>;
694
694
  isPrimary: z.ZodBoolean;
695
695
  }, "strip", z.ZodTypeAny, {
696
- type: "Personal" | "Work" | "Other";
697
696
  value: string;
697
+ type: "Personal" | "Work" | "Other";
698
698
  isPrimary: boolean;
699
699
  }, {
700
- type: "Personal" | "Work" | "Other";
701
700
  value: string;
701
+ type: "Personal" | "Work" | "Other";
702
702
  isPrimary: boolean;
703
703
  }>>>;
704
704
  phoneNumbers: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -706,12 +706,12 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
706
706
  type: z.ZodEnum<["Personal", "Work", "Other"]>;
707
707
  isPrimary: z.ZodBoolean;
708
708
  }, "strip", z.ZodTypeAny, {
709
- type: "Personal" | "Work" | "Other";
710
709
  value: string;
710
+ type: "Personal" | "Work" | "Other";
711
711
  isPrimary: boolean;
712
712
  }, {
713
- type: "Personal" | "Work" | "Other";
714
713
  value: string;
714
+ type: "Personal" | "Work" | "Other";
715
715
  isPrimary: boolean;
716
716
  }>, "many">>;
717
717
  socialLinks: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -795,23 +795,29 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
795
795
  createdAt?: string | undefined;
796
796
  updatedAt?: string | undefined;
797
797
  primaryEmailAddress?: {
798
- type: "Personal" | "Work" | "Other";
799
798
  value: string;
799
+ type: "Personal" | "Work" | "Other";
800
800
  isPrimary: boolean;
801
801
  } | null | undefined;
802
- emailAddresses?: {
803
- type: "Personal" | "Work" | "Other";
802
+ primaryPhoneNumber?: {
804
803
  value: string;
804
+ type: "Personal" | "Work" | "Other";
805
805
  isPrimary: boolean;
806
+ } | null | undefined;
807
+ customFields?: {
808
+ title: string;
809
+ id: string;
810
+ value?: unknown;
811
+ isPrivate?: boolean | undefined;
806
812
  }[] | undefined;
807
- primaryPhoneNumber?: {
808
- type: "Personal" | "Work" | "Other";
813
+ emailAddresses?: {
809
814
  value: string;
815
+ type: "Personal" | "Work" | "Other";
810
816
  isPrimary: boolean;
811
- } | null | undefined;
817
+ }[] | undefined;
812
818
  phoneNumbers?: {
813
- type: "Personal" | "Work" | "Other";
814
819
  value: string;
820
+ type: "Personal" | "Work" | "Other";
815
821
  isPrimary: boolean;
816
822
  }[] | undefined;
817
823
  socialLinks?: {
@@ -831,12 +837,6 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
831
837
  id: string;
832
838
  handle: string;
833
839
  }[] | undefined;
834
- customFields?: {
835
- title: string;
836
- id: string;
837
- value?: unknown;
838
- isPrivate?: boolean | undefined;
839
- }[] | undefined;
840
840
  }, {
841
841
  name: string;
842
842
  id: string;
@@ -849,23 +849,29 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
849
849
  createdAt?: string | undefined;
850
850
  updatedAt?: string | undefined;
851
851
  primaryEmailAddress?: {
852
- type: "Personal" | "Work" | "Other";
853
852
  value: string;
853
+ type: "Personal" | "Work" | "Other";
854
854
  isPrimary: boolean;
855
855
  } | null | undefined;
856
- emailAddresses?: {
857
- type: "Personal" | "Work" | "Other";
856
+ primaryPhoneNumber?: {
858
857
  value: string;
858
+ type: "Personal" | "Work" | "Other";
859
859
  isPrimary: boolean;
860
+ } | null | undefined;
861
+ customFields?: {
862
+ title: string;
863
+ id: string;
864
+ value?: unknown;
865
+ isPrivate?: boolean | undefined;
860
866
  }[] | undefined;
861
- primaryPhoneNumber?: {
862
- type: "Personal" | "Work" | "Other";
867
+ emailAddresses?: {
863
868
  value: string;
869
+ type: "Personal" | "Work" | "Other";
864
870
  isPrimary: boolean;
865
- } | null | undefined;
871
+ }[] | undefined;
866
872
  phoneNumbers?: {
867
- type: "Personal" | "Work" | "Other";
868
873
  value: string;
874
+ type: "Personal" | "Work" | "Other";
869
875
  isPrimary: boolean;
870
876
  }[] | undefined;
871
877
  socialLinks?: {
@@ -885,12 +891,6 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
885
891
  id: string;
886
892
  handle: string;
887
893
  }[] | undefined;
888
- customFields?: {
889
- title: string;
890
- id: string;
891
- value?: unknown;
892
- isPrivate?: boolean | undefined;
893
- }[] | undefined;
894
894
  }>, "many">>;
895
895
  next_cursor: z.ZodOptional<z.ZodString>;
896
896
  more_data_available: z.ZodOptional<z.ZodBoolean>;
@@ -914,23 +914,29 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
914
914
  createdAt?: string | undefined;
915
915
  updatedAt?: string | undefined;
916
916
  primaryEmailAddress?: {
917
- type: "Personal" | "Work" | "Other";
918
917
  value: string;
918
+ type: "Personal" | "Work" | "Other";
919
919
  isPrimary: boolean;
920
920
  } | null | undefined;
921
- emailAddresses?: {
922
- type: "Personal" | "Work" | "Other";
921
+ primaryPhoneNumber?: {
923
922
  value: string;
923
+ type: "Personal" | "Work" | "Other";
924
924
  isPrimary: boolean;
925
+ } | null | undefined;
926
+ customFields?: {
927
+ title: string;
928
+ id: string;
929
+ value?: unknown;
930
+ isPrivate?: boolean | undefined;
925
931
  }[] | undefined;
926
- primaryPhoneNumber?: {
927
- type: "Personal" | "Work" | "Other";
932
+ emailAddresses?: {
928
933
  value: string;
934
+ type: "Personal" | "Work" | "Other";
929
935
  isPrimary: boolean;
930
- } | null | undefined;
936
+ }[] | undefined;
931
937
  phoneNumbers?: {
932
- type: "Personal" | "Work" | "Other";
933
938
  value: string;
939
+ type: "Personal" | "Work" | "Other";
934
940
  isPrimary: boolean;
935
941
  }[] | undefined;
936
942
  socialLinks?: {
@@ -950,12 +956,6 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
950
956
  id: string;
951
957
  handle: string;
952
958
  }[] | undefined;
953
- customFields?: {
954
- title: string;
955
- id: string;
956
- value?: unknown;
957
- isPrivate?: boolean | undefined;
958
- }[] | undefined;
959
959
  }[] | undefined;
960
960
  more_data_available?: boolean | undefined;
961
961
  }, {
@@ -976,23 +976,29 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
976
976
  createdAt?: string | undefined;
977
977
  updatedAt?: string | undefined;
978
978
  primaryEmailAddress?: {
979
- type: "Personal" | "Work" | "Other";
980
979
  value: string;
980
+ type: "Personal" | "Work" | "Other";
981
981
  isPrimary: boolean;
982
982
  } | null | undefined;
983
- emailAddresses?: {
984
- type: "Personal" | "Work" | "Other";
983
+ primaryPhoneNumber?: {
985
984
  value: string;
985
+ type: "Personal" | "Work" | "Other";
986
986
  isPrimary: boolean;
987
+ } | null | undefined;
988
+ customFields?: {
989
+ title: string;
990
+ id: string;
991
+ value?: unknown;
992
+ isPrivate?: boolean | undefined;
987
993
  }[] | undefined;
988
- primaryPhoneNumber?: {
989
- type: "Personal" | "Work" | "Other";
994
+ emailAddresses?: {
990
995
  value: string;
996
+ type: "Personal" | "Work" | "Other";
991
997
  isPrimary: boolean;
992
- } | null | undefined;
998
+ }[] | undefined;
993
999
  phoneNumbers?: {
994
- type: "Personal" | "Work" | "Other";
995
1000
  value: string;
1001
+ type: "Personal" | "Work" | "Other";
996
1002
  isPrimary: boolean;
997
1003
  }[] | undefined;
998
1004
  socialLinks?: {
@@ -1012,12 +1018,6 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
1012
1018
  id: string;
1013
1019
  handle: string;
1014
1020
  }[] | undefined;
1015
- customFields?: {
1016
- title: string;
1017
- id: string;
1018
- value?: unknown;
1019
- isPrivate?: boolean | undefined;
1020
- }[] | undefined;
1021
1021
  }[] | undefined;
1022
1022
  more_data_available?: boolean | undefined;
1023
1023
  }>, z.ZodObject<{
@@ -1033,12 +1033,12 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
1033
1033
  type: z.ZodEnum<["Personal", "Work", "Other"]>;
1034
1034
  isPrimary: z.ZodBoolean;
1035
1035
  }, "strip", z.ZodTypeAny, {
1036
- type: "Personal" | "Work" | "Other";
1037
1036
  value: string;
1037
+ type: "Personal" | "Work" | "Other";
1038
1038
  isPrimary: boolean;
1039
1039
  }, {
1040
- type: "Personal" | "Work" | "Other";
1041
1040
  value: string;
1041
+ type: "Personal" | "Work" | "Other";
1042
1042
  isPrimary: boolean;
1043
1043
  }>>>;
1044
1044
  primaryPhoneNumber: z.ZodNullable<z.ZodOptional<z.ZodObject<{
@@ -1046,12 +1046,12 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
1046
1046
  type: z.ZodEnum<["Personal", "Work", "Other"]>;
1047
1047
  isPrimary: z.ZodBoolean;
1048
1048
  }, "strip", z.ZodTypeAny, {
1049
- type: "Personal" | "Work" | "Other";
1050
1049
  value: string;
1050
+ type: "Personal" | "Work" | "Other";
1051
1051
  isPrimary: boolean;
1052
1052
  }, {
1053
- type: "Personal" | "Work" | "Other";
1054
1053
  value: string;
1054
+ type: "Personal" | "Work" | "Other";
1055
1055
  isPrimary: boolean;
1056
1056
  }>>>;
1057
1057
  customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -1076,13 +1076,13 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
1076
1076
  createdAt?: string | undefined;
1077
1077
  updatedAt?: string | undefined;
1078
1078
  primaryEmailAddress?: {
1079
- type: "Personal" | "Work" | "Other";
1080
1079
  value: string;
1080
+ type: "Personal" | "Work" | "Other";
1081
1081
  isPrimary: boolean;
1082
1082
  } | null | undefined;
1083
1083
  primaryPhoneNumber?: {
1084
- type: "Personal" | "Work" | "Other";
1085
1084
  value: string;
1085
+ type: "Personal" | "Work" | "Other";
1086
1086
  isPrimary: boolean;
1087
1087
  } | null | undefined;
1088
1088
  customFields?: {
@@ -1097,13 +1097,13 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
1097
1097
  createdAt?: string | undefined;
1098
1098
  updatedAt?: string | undefined;
1099
1099
  primaryEmailAddress?: {
1100
- type: "Personal" | "Work" | "Other";
1101
1100
  value: string;
1101
+ type: "Personal" | "Work" | "Other";
1102
1102
  isPrimary: boolean;
1103
1103
  } | null | undefined;
1104
1104
  primaryPhoneNumber?: {
1105
- type: "Personal" | "Work" | "Other";
1106
1105
  value: string;
1106
+ type: "Personal" | "Work" | "Other";
1107
1107
  isPrimary: boolean;
1108
1108
  } | null | undefined;
1109
1109
  customFields?: {
@@ -1124,13 +1124,13 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
1124
1124
  createdAt?: string | undefined;
1125
1125
  updatedAt?: string | undefined;
1126
1126
  primaryEmailAddress?: {
1127
- type: "Personal" | "Work" | "Other";
1128
1127
  value: string;
1128
+ type: "Personal" | "Work" | "Other";
1129
1129
  isPrimary: boolean;
1130
1130
  } | null | undefined;
1131
1131
  primaryPhoneNumber?: {
1132
- type: "Personal" | "Work" | "Other";
1133
1132
  value: string;
1133
+ type: "Personal" | "Work" | "Other";
1134
1134
  isPrimary: boolean;
1135
1135
  } | null | undefined;
1136
1136
  customFields?: {
@@ -1150,13 +1150,13 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
1150
1150
  createdAt?: string | undefined;
1151
1151
  updatedAt?: string | undefined;
1152
1152
  primaryEmailAddress?: {
1153
- type: "Personal" | "Work" | "Other";
1154
1153
  value: string;
1154
+ type: "Personal" | "Work" | "Other";
1155
1155
  isPrimary: boolean;
1156
1156
  } | null | undefined;
1157
1157
  primaryPhoneNumber?: {
1158
- type: "Personal" | "Work" | "Other";
1159
1158
  value: string;
1159
+ type: "Personal" | "Work" | "Other";
1160
1160
  isPrimary: boolean;
1161
1161
  } | null | undefined;
1162
1162
  customFields?: {
@@ -1179,12 +1179,12 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
1179
1179
  type: z.ZodEnum<["Personal", "Work", "Other"]>;
1180
1180
  isPrimary: z.ZodBoolean;
1181
1181
  }, "strip", z.ZodTypeAny, {
1182
- type: "Personal" | "Work" | "Other";
1183
1182
  value: string;
1183
+ type: "Personal" | "Work" | "Other";
1184
1184
  isPrimary: boolean;
1185
1185
  }, {
1186
- type: "Personal" | "Work" | "Other";
1187
1186
  value: string;
1187
+ type: "Personal" | "Work" | "Other";
1188
1188
  isPrimary: boolean;
1189
1189
  }>>>;
1190
1190
  primaryPhoneNumber: z.ZodNullable<z.ZodOptional<z.ZodObject<{
@@ -1192,12 +1192,12 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
1192
1192
  type: z.ZodEnum<["Personal", "Work", "Other"]>;
1193
1193
  isPrimary: z.ZodBoolean;
1194
1194
  }, "strip", z.ZodTypeAny, {
1195
- type: "Personal" | "Work" | "Other";
1196
1195
  value: string;
1196
+ type: "Personal" | "Work" | "Other";
1197
1197
  isPrimary: boolean;
1198
1198
  }, {
1199
- type: "Personal" | "Work" | "Other";
1200
1199
  value: string;
1200
+ type: "Personal" | "Work" | "Other";
1201
1201
  isPrimary: boolean;
1202
1202
  }>>>;
1203
1203
  customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -1222,13 +1222,13 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
1222
1222
  createdAt?: string | undefined;
1223
1223
  updatedAt?: string | undefined;
1224
1224
  primaryEmailAddress?: {
1225
- type: "Personal" | "Work" | "Other";
1226
1225
  value: string;
1226
+ type: "Personal" | "Work" | "Other";
1227
1227
  isPrimary: boolean;
1228
1228
  } | null | undefined;
1229
1229
  primaryPhoneNumber?: {
1230
- type: "Personal" | "Work" | "Other";
1231
1230
  value: string;
1231
+ type: "Personal" | "Work" | "Other";
1232
1232
  isPrimary: boolean;
1233
1233
  } | null | undefined;
1234
1234
  customFields?: {
@@ -1243,13 +1243,13 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
1243
1243
  createdAt?: string | undefined;
1244
1244
  updatedAt?: string | undefined;
1245
1245
  primaryEmailAddress?: {
1246
- type: "Personal" | "Work" | "Other";
1247
1246
  value: string;
1247
+ type: "Personal" | "Work" | "Other";
1248
1248
  isPrimary: boolean;
1249
1249
  } | null | undefined;
1250
1250
  primaryPhoneNumber?: {
1251
- type: "Personal" | "Work" | "Other";
1252
1251
  value: string;
1252
+ type: "Personal" | "Work" | "Other";
1253
1253
  isPrimary: boolean;
1254
1254
  } | null | undefined;
1255
1255
  customFields?: {
@@ -1271,13 +1271,13 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
1271
1271
  createdAt?: string | undefined;
1272
1272
  updatedAt?: string | undefined;
1273
1273
  primaryEmailAddress?: {
1274
- type: "Personal" | "Work" | "Other";
1275
1274
  value: string;
1275
+ type: "Personal" | "Work" | "Other";
1276
1276
  isPrimary: boolean;
1277
1277
  } | null | undefined;
1278
1278
  primaryPhoneNumber?: {
1279
- type: "Personal" | "Work" | "Other";
1280
1279
  value: string;
1280
+ type: "Personal" | "Work" | "Other";
1281
1281
  isPrimary: boolean;
1282
1282
  } | null | undefined;
1283
1283
  customFields?: {
@@ -1298,13 +1298,13 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
1298
1298
  createdAt?: string | undefined;
1299
1299
  updatedAt?: string | undefined;
1300
1300
  primaryEmailAddress?: {
1301
- type: "Personal" | "Work" | "Other";
1302
1301
  value: string;
1302
+ type: "Personal" | "Work" | "Other";
1303
1303
  isPrimary: boolean;
1304
1304
  } | null | undefined;
1305
1305
  primaryPhoneNumber?: {
1306
- type: "Personal" | "Work" | "Other";
1307
1306
  value: string;
1307
+ type: "Personal" | "Work" | "Other";
1308
1308
  isPrimary: boolean;
1309
1309
  } | null | undefined;
1310
1310
  customFields?: {
@@ -1328,12 +1328,12 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
1328
1328
  type: z.ZodEnum<["Personal", "Work", "Other"]>;
1329
1329
  isPrimary: z.ZodBoolean;
1330
1330
  }, "strip", z.ZodTypeAny, {
1331
- type: "Personal" | "Work" | "Other";
1332
1331
  value: string;
1332
+ type: "Personal" | "Work" | "Other";
1333
1333
  isPrimary: boolean;
1334
1334
  }, {
1335
- type: "Personal" | "Work" | "Other";
1336
1335
  value: string;
1336
+ type: "Personal" | "Work" | "Other";
1337
1337
  isPrimary: boolean;
1338
1338
  }>>>;
1339
1339
  primaryPhoneNumber: z.ZodNullable<z.ZodOptional<z.ZodObject<{
@@ -1341,12 +1341,12 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
1341
1341
  type: z.ZodEnum<["Personal", "Work", "Other"]>;
1342
1342
  isPrimary: z.ZodBoolean;
1343
1343
  }, "strip", z.ZodTypeAny, {
1344
- type: "Personal" | "Work" | "Other";
1345
1344
  value: string;
1345
+ type: "Personal" | "Work" | "Other";
1346
1346
  isPrimary: boolean;
1347
1347
  }, {
1348
- type: "Personal" | "Work" | "Other";
1349
1348
  value: string;
1349
+ type: "Personal" | "Work" | "Other";
1350
1350
  isPrimary: boolean;
1351
1351
  }>>>;
1352
1352
  customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -1371,13 +1371,13 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
1371
1371
  createdAt?: string | undefined;
1372
1372
  updatedAt?: string | undefined;
1373
1373
  primaryEmailAddress?: {
1374
- type: "Personal" | "Work" | "Other";
1375
1374
  value: string;
1375
+ type: "Personal" | "Work" | "Other";
1376
1376
  isPrimary: boolean;
1377
1377
  } | null | undefined;
1378
1378
  primaryPhoneNumber?: {
1379
- type: "Personal" | "Work" | "Other";
1380
1379
  value: string;
1380
+ type: "Personal" | "Work" | "Other";
1381
1381
  isPrimary: boolean;
1382
1382
  } | null | undefined;
1383
1383
  customFields?: {
@@ -1392,13 +1392,13 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
1392
1392
  createdAt?: string | undefined;
1393
1393
  updatedAt?: string | undefined;
1394
1394
  primaryEmailAddress?: {
1395
- type: "Personal" | "Work" | "Other";
1396
1395
  value: string;
1396
+ type: "Personal" | "Work" | "Other";
1397
1397
  isPrimary: boolean;
1398
1398
  } | null | undefined;
1399
1399
  primaryPhoneNumber?: {
1400
- type: "Personal" | "Work" | "Other";
1401
1400
  value: string;
1401
+ type: "Personal" | "Work" | "Other";
1402
1402
  isPrimary: boolean;
1403
1403
  } | null | undefined;
1404
1404
  customFields?: {
@@ -1419,13 +1419,13 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
1419
1419
  createdAt?: string | undefined;
1420
1420
  updatedAt?: string | undefined;
1421
1421
  primaryEmailAddress?: {
1422
- type: "Personal" | "Work" | "Other";
1423
1422
  value: string;
1423
+ type: "Personal" | "Work" | "Other";
1424
1424
  isPrimary: boolean;
1425
1425
  } | null | undefined;
1426
1426
  primaryPhoneNumber?: {
1427
- type: "Personal" | "Work" | "Other";
1428
1427
  value: string;
1428
+ type: "Personal" | "Work" | "Other";
1429
1429
  isPrimary: boolean;
1430
1430
  } | null | undefined;
1431
1431
  customFields?: {
@@ -1445,13 +1445,13 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
1445
1445
  createdAt?: string | undefined;
1446
1446
  updatedAt?: string | undefined;
1447
1447
  primaryEmailAddress?: {
1448
- type: "Personal" | "Work" | "Other";
1449
1448
  value: string;
1449
+ type: "Personal" | "Work" | "Other";
1450
1450
  isPrimary: boolean;
1451
1451
  } | null | undefined;
1452
1452
  primaryPhoneNumber?: {
1453
- type: "Personal" | "Work" | "Other";
1454
1453
  value: string;
1454
+ type: "Personal" | "Work" | "Other";
1455
1455
  isPrimary: boolean;
1456
1456
  } | null | undefined;
1457
1457
  customFields?: {
@@ -1474,12 +1474,12 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
1474
1474
  type: z.ZodEnum<["Personal", "Work", "Other"]>;
1475
1475
  isPrimary: z.ZodBoolean;
1476
1476
  }, "strip", z.ZodTypeAny, {
1477
- type: "Personal" | "Work" | "Other";
1478
1477
  value: string;
1478
+ type: "Personal" | "Work" | "Other";
1479
1479
  isPrimary: boolean;
1480
1480
  }, {
1481
- type: "Personal" | "Work" | "Other";
1482
1481
  value: string;
1482
+ type: "Personal" | "Work" | "Other";
1483
1483
  isPrimary: boolean;
1484
1484
  }>>>;
1485
1485
  primaryPhoneNumber: z.ZodNullable<z.ZodOptional<z.ZodObject<{
@@ -1487,12 +1487,12 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
1487
1487
  type: z.ZodEnum<["Personal", "Work", "Other"]>;
1488
1488
  isPrimary: z.ZodBoolean;
1489
1489
  }, "strip", z.ZodTypeAny, {
1490
- type: "Personal" | "Work" | "Other";
1491
1490
  value: string;
1491
+ type: "Personal" | "Work" | "Other";
1492
1492
  isPrimary: boolean;
1493
1493
  }, {
1494
- type: "Personal" | "Work" | "Other";
1495
1494
  value: string;
1495
+ type: "Personal" | "Work" | "Other";
1496
1496
  isPrimary: boolean;
1497
1497
  }>>>;
1498
1498
  customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -1517,13 +1517,13 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
1517
1517
  createdAt?: string | undefined;
1518
1518
  updatedAt?: string | undefined;
1519
1519
  primaryEmailAddress?: {
1520
- type: "Personal" | "Work" | "Other";
1521
1520
  value: string;
1521
+ type: "Personal" | "Work" | "Other";
1522
1522
  isPrimary: boolean;
1523
1523
  } | null | undefined;
1524
1524
  primaryPhoneNumber?: {
1525
- type: "Personal" | "Work" | "Other";
1526
1525
  value: string;
1526
+ type: "Personal" | "Work" | "Other";
1527
1527
  isPrimary: boolean;
1528
1528
  } | null | undefined;
1529
1529
  customFields?: {
@@ -1538,13 +1538,13 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
1538
1538
  createdAt?: string | undefined;
1539
1539
  updatedAt?: string | undefined;
1540
1540
  primaryEmailAddress?: {
1541
- type: "Personal" | "Work" | "Other";
1542
1541
  value: string;
1542
+ type: "Personal" | "Work" | "Other";
1543
1543
  isPrimary: boolean;
1544
1544
  } | null | undefined;
1545
1545
  primaryPhoneNumber?: {
1546
- type: "Personal" | "Work" | "Other";
1547
1546
  value: string;
1547
+ type: "Personal" | "Work" | "Other";
1548
1548
  isPrimary: boolean;
1549
1549
  } | null | undefined;
1550
1550
  customFields?: {
@@ -1565,13 +1565,13 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
1565
1565
  createdAt?: string | undefined;
1566
1566
  updatedAt?: string | undefined;
1567
1567
  primaryEmailAddress?: {
1568
- type: "Personal" | "Work" | "Other";
1569
1568
  value: string;
1569
+ type: "Personal" | "Work" | "Other";
1570
1570
  isPrimary: boolean;
1571
1571
  } | null | undefined;
1572
1572
  primaryPhoneNumber?: {
1573
- type: "Personal" | "Work" | "Other";
1574
1573
  value: string;
1574
+ type: "Personal" | "Work" | "Other";
1575
1575
  isPrimary: boolean;
1576
1576
  } | null | undefined;
1577
1577
  customFields?: {
@@ -1591,13 +1591,13 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
1591
1591
  createdAt?: string | undefined;
1592
1592
  updatedAt?: string | undefined;
1593
1593
  primaryEmailAddress?: {
1594
- type: "Personal" | "Work" | "Other";
1595
1594
  value: string;
1595
+ type: "Personal" | "Work" | "Other";
1596
1596
  isPrimary: boolean;
1597
1597
  } | null | undefined;
1598
1598
  primaryPhoneNumber?: {
1599
- type: "Personal" | "Work" | "Other";
1600
1599
  value: string;
1600
+ type: "Personal" | "Work" | "Other";
1601
1601
  isPrimary: boolean;
1602
1602
  } | null | undefined;
1603
1603
  customFields?: {
@@ -1704,8 +1704,8 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
1704
1704
  title: string;
1705
1705
  id: string;
1706
1706
  fieldType: string;
1707
- isArchived: boolean;
1708
1707
  isPrivate: boolean;
1708
+ isArchived: boolean;
1709
1709
  objectType: string;
1710
1710
  selectableValues?: {
1711
1711
  value: string;
@@ -1716,8 +1716,8 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
1716
1716
  title: string;
1717
1717
  id: string;
1718
1718
  fieldType: string;
1719
- isArchived: boolean;
1720
1719
  isPrivate: boolean;
1720
+ isArchived: boolean;
1721
1721
  objectType: string;
1722
1722
  selectableValues?: {
1723
1723
  value: string;
@@ -1738,8 +1738,8 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
1738
1738
  title: string;
1739
1739
  id: string;
1740
1740
  fieldType: string;
1741
- isArchived: boolean;
1742
1741
  isPrivate: boolean;
1742
+ isArchived: boolean;
1743
1743
  objectType: string;
1744
1744
  selectableValues?: {
1745
1745
  value: string;
@@ -1758,8 +1758,8 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
1758
1758
  title: string;
1759
1759
  id: string;
1760
1760
  fieldType: string;
1761
- isArchived: boolean;
1762
1761
  isPrivate: boolean;
1762
+ isArchived: boolean;
1763
1763
  objectType: string;
1764
1764
  selectableValues?: {
1765
1765
  value: string;