@bubblelab/bubble-core 0.1.65 → 0.1.66

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 (54) hide show
  1. package/dist/bubble-bundle.d.ts +76 -76
  2. package/dist/bubbles/service-bubble/ai-agent.d.ts +113 -104
  3. package/dist/bubbles/service-bubble/ai-agent.d.ts.map +1 -1
  4. package/dist/bubbles/service-bubble/ai-agent.js +129 -0
  5. package/dist/bubbles/service-bubble/ai-agent.js.map +1 -1
  6. package/dist/bubbles/service-bubble/airtable.d.ts +100 -100
  7. package/dist/bubbles/service-bubble/apify/apify.d.ts +10 -10
  8. package/dist/bubbles/service-bubble/ashby/ashby.d.ts +95 -74
  9. package/dist/bubbles/service-bubble/ashby/ashby.d.ts.map +1 -1
  10. package/dist/bubbles/service-bubble/ashby/ashby.js +96 -0
  11. package/dist/bubbles/service-bubble/ashby/ashby.js.map +1 -1
  12. package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +108 -102
  13. package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts.map +1 -1
  14. package/dist/bubbles/service-bubble/ashby/ashby.schema.js +10 -1
  15. package/dist/bubbles/service-bubble/ashby/ashby.schema.js.map +1 -1
  16. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +2 -2
  17. package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +2 -2
  18. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +8 -8
  19. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +16 -16
  20. package/dist/bubbles/service-bubble/firecrawl.d.ts +272 -272
  21. package/dist/bubbles/service-bubble/followupboss.d.ts +4 -4
  22. package/dist/bubbles/service-bubble/github.d.ts +40 -40
  23. package/dist/bubbles/service-bubble/gmail.d.ts +104 -104
  24. package/dist/bubbles/service-bubble/google-calendar.d.ts +80 -80
  25. package/dist/bubbles/service-bubble/google-drive.d.ts +40 -40
  26. package/dist/bubbles/service-bubble/http.d.ts +8 -8
  27. package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
  28. package/dist/bubbles/service-bubble/notion/notion.d.ts +68 -68
  29. package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
  30. package/dist/bubbles/service-bubble/slack/slack.d.ts +32 -32
  31. package/dist/bubbles/service-bubble/stripe/stripe.d.ts +4 -4
  32. package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +4 -4
  33. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +2 -2
  34. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.schema.d.ts +2 -2
  35. package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +18 -18
  36. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +52 -52
  37. package/dist/bubbles/tool-bubble/people-search-tool.d.ts +10 -10
  38. package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +10 -10
  39. package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
  40. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +16 -16
  41. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +46 -46
  42. package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +4 -4
  43. package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
  44. package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +8 -8
  45. package/dist/bubbles/tool-bubble/youtube-tool.d.ts +10 -10
  46. package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +10 -10
  47. package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +10 -10
  48. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +36 -36
  49. package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +20 -20
  50. package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +8 -8
  51. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +20 -20
  52. package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +10 -10
  53. package/dist/bubbles.json +50 -21
  54. package/package.json +2 -2
@@ -101,10 +101,12 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
101
101
  source_id: import("zod").ZodOptional<import("zod").ZodString>;
102
102
  credited_to_user_id: import("zod").ZodOptional<import("zod").ZodString>;
103
103
  tag: import("zod").ZodOptional<import("zod").ZodString>;
104
+ allow_duplicate_linkedin: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
104
105
  credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
105
106
  }, "strip", import("zod").ZodTypeAny, {
106
107
  name: string;
107
108
  operation: "create_candidate";
109
+ allow_duplicate_linkedin: boolean;
108
110
  credentials?: Partial<Record<CredentialType, string>> | undefined;
109
111
  website?: string | undefined;
110
112
  emails?: {
@@ -132,6 +134,7 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
132
134
  source_id?: string | undefined;
133
135
  credited_to_user_id?: string | undefined;
134
136
  tag?: string | undefined;
137
+ allow_duplicate_linkedin?: boolean | undefined;
135
138
  }>, import("zod").ZodObject<{
136
139
  operation: import("zod").ZodLiteral<"search_candidates">;
137
140
  email: import("zod").ZodOptional<import("zod").ZodString>;
@@ -140,13 +143,13 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
140
143
  }, "strip", import("zod").ZodTypeAny, {
141
144
  operation: "search_candidates";
142
145
  name?: string | undefined;
143
- credentials?: Partial<Record<CredentialType, string>> | undefined;
144
146
  email?: string | undefined;
147
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
145
148
  }, {
146
149
  operation: "search_candidates";
147
150
  name?: string | undefined;
148
- credentials?: Partial<Record<CredentialType, string>> | undefined;
149
151
  email?: string | undefined;
152
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
150
153
  }>, import("zod").ZodObject<{
151
154
  operation: import("zod").ZodLiteral<"add_tag">;
152
155
  candidate_id: import("zod").ZodString;
@@ -218,12 +221,12 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
218
221
  type: import("zod").ZodEnum<["Personal", "Work", "Other"]>;
219
222
  isPrimary: import("zod").ZodBoolean;
220
223
  }, "strip", import("zod").ZodTypeAny, {
221
- value: string;
222
224
  type: "Personal" | "Work" | "Other";
225
+ value: string;
223
226
  isPrimary: boolean;
224
227
  }, {
225
- value: string;
226
228
  type: "Personal" | "Work" | "Other";
229
+ value: string;
227
230
  isPrimary: boolean;
228
231
  }>>>;
229
232
  emailAddresses: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
@@ -231,12 +234,12 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
231
234
  type: import("zod").ZodEnum<["Personal", "Work", "Other"]>;
232
235
  isPrimary: import("zod").ZodBoolean;
233
236
  }, "strip", import("zod").ZodTypeAny, {
234
- value: string;
235
237
  type: "Personal" | "Work" | "Other";
238
+ value: string;
236
239
  isPrimary: boolean;
237
240
  }, {
238
- value: string;
239
241
  type: "Personal" | "Work" | "Other";
242
+ value: string;
240
243
  isPrimary: boolean;
241
244
  }>, "many">>;
242
245
  primaryPhoneNumber: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
@@ -244,12 +247,12 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
244
247
  type: import("zod").ZodEnum<["Personal", "Work", "Other"]>;
245
248
  isPrimary: import("zod").ZodBoolean;
246
249
  }, "strip", import("zod").ZodTypeAny, {
247
- value: string;
248
250
  type: "Personal" | "Work" | "Other";
251
+ value: string;
249
252
  isPrimary: boolean;
250
253
  }, {
251
- value: string;
252
254
  type: "Personal" | "Work" | "Other";
255
+ value: string;
253
256
  isPrimary: boolean;
254
257
  }>>>;
255
258
  phoneNumbers: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
@@ -257,12 +260,12 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
257
260
  type: import("zod").ZodEnum<["Personal", "Work", "Other"]>;
258
261
  isPrimary: import("zod").ZodBoolean;
259
262
  }, "strip", import("zod").ZodTypeAny, {
260
- value: string;
261
263
  type: "Personal" | "Work" | "Other";
264
+ value: string;
262
265
  isPrimary: boolean;
263
266
  }, {
264
- value: string;
265
267
  type: "Personal" | "Work" | "Other";
268
+ value: string;
266
269
  isPrimary: boolean;
267
270
  }>, "many">>;
268
271
  socialLinks: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
@@ -345,13 +348,13 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
345
348
  createdAt?: string | undefined;
346
349
  updatedAt?: string | undefined;
347
350
  primaryEmailAddress?: {
348
- value: string;
349
351
  type: "Personal" | "Work" | "Other";
352
+ value: string;
350
353
  isPrimary: boolean;
351
354
  } | null | undefined;
352
355
  primaryPhoneNumber?: {
353
- value: string;
354
356
  type: "Personal" | "Work" | "Other";
357
+ value: string;
355
358
  isPrimary: boolean;
356
359
  } | null | undefined;
357
360
  customFields?: {
@@ -361,13 +364,13 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
361
364
  isPrivate?: boolean | undefined;
362
365
  }[] | undefined;
363
366
  emailAddresses?: {
364
- value: string;
365
367
  type: "Personal" | "Work" | "Other";
368
+ value: string;
366
369
  isPrimary: boolean;
367
370
  }[] | undefined;
368
371
  phoneNumbers?: {
369
- value: string;
370
372
  type: "Personal" | "Work" | "Other";
373
+ value: string;
371
374
  isPrimary: boolean;
372
375
  }[] | undefined;
373
376
  socialLinks?: {
@@ -399,13 +402,13 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
399
402
  createdAt?: string | undefined;
400
403
  updatedAt?: string | undefined;
401
404
  primaryEmailAddress?: {
402
- value: string;
403
405
  type: "Personal" | "Work" | "Other";
406
+ value: string;
404
407
  isPrimary: boolean;
405
408
  } | null | undefined;
406
409
  primaryPhoneNumber?: {
407
- value: string;
408
410
  type: "Personal" | "Work" | "Other";
411
+ value: string;
409
412
  isPrimary: boolean;
410
413
  } | null | undefined;
411
414
  customFields?: {
@@ -415,13 +418,13 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
415
418
  isPrivate?: boolean | undefined;
416
419
  }[] | undefined;
417
420
  emailAddresses?: {
418
- value: string;
419
421
  type: "Personal" | "Work" | "Other";
422
+ value: string;
420
423
  isPrimary: boolean;
421
424
  }[] | undefined;
422
425
  phoneNumbers?: {
423
- value: string;
424
426
  type: "Personal" | "Work" | "Other";
427
+ value: string;
425
428
  isPrimary: boolean;
426
429
  }[] | undefined;
427
430
  socialLinks?: {
@@ -464,13 +467,13 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
464
467
  createdAt?: string | undefined;
465
468
  updatedAt?: string | undefined;
466
469
  primaryEmailAddress?: {
467
- value: string;
468
470
  type: "Personal" | "Work" | "Other";
471
+ value: string;
469
472
  isPrimary: boolean;
470
473
  } | null | undefined;
471
474
  primaryPhoneNumber?: {
472
- value: string;
473
475
  type: "Personal" | "Work" | "Other";
476
+ value: string;
474
477
  isPrimary: boolean;
475
478
  } | null | undefined;
476
479
  customFields?: {
@@ -480,13 +483,13 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
480
483
  isPrivate?: boolean | undefined;
481
484
  }[] | undefined;
482
485
  emailAddresses?: {
483
- value: string;
484
486
  type: "Personal" | "Work" | "Other";
487
+ value: string;
485
488
  isPrimary: boolean;
486
489
  }[] | undefined;
487
490
  phoneNumbers?: {
488
- value: string;
489
491
  type: "Personal" | "Work" | "Other";
492
+ value: string;
490
493
  isPrimary: boolean;
491
494
  }[] | undefined;
492
495
  socialLinks?: {
@@ -526,13 +529,13 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
526
529
  createdAt?: string | undefined;
527
530
  updatedAt?: string | undefined;
528
531
  primaryEmailAddress?: {
529
- value: string;
530
532
  type: "Personal" | "Work" | "Other";
533
+ value: string;
531
534
  isPrimary: boolean;
532
535
  } | null | undefined;
533
536
  primaryPhoneNumber?: {
534
- value: string;
535
537
  type: "Personal" | "Work" | "Other";
538
+ value: string;
536
539
  isPrimary: boolean;
537
540
  } | null | undefined;
538
541
  customFields?: {
@@ -542,13 +545,13 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
542
545
  isPrivate?: boolean | undefined;
543
546
  }[] | undefined;
544
547
  emailAddresses?: {
545
- value: string;
546
548
  type: "Personal" | "Work" | "Other";
549
+ value: string;
547
550
  isPrimary: boolean;
548
551
  }[] | undefined;
549
552
  phoneNumbers?: {
550
- value: string;
551
553
  type: "Personal" | "Work" | "Other";
554
+ value: string;
552
555
  isPrimary: boolean;
553
556
  }[] | undefined;
554
557
  socialLinks?: {
@@ -584,12 +587,12 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
584
587
  type: import("zod").ZodEnum<["Personal", "Work", "Other"]>;
585
588
  isPrimary: import("zod").ZodBoolean;
586
589
  }, "strip", import("zod").ZodTypeAny, {
587
- value: string;
588
590
  type: "Personal" | "Work" | "Other";
591
+ value: string;
589
592
  isPrimary: boolean;
590
593
  }, {
591
- value: string;
592
594
  type: "Personal" | "Work" | "Other";
595
+ value: string;
593
596
  isPrimary: boolean;
594
597
  }>>>;
595
598
  primaryPhoneNumber: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
@@ -597,12 +600,12 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
597
600
  type: import("zod").ZodEnum<["Personal", "Work", "Other"]>;
598
601
  isPrimary: import("zod").ZodBoolean;
599
602
  }, "strip", import("zod").ZodTypeAny, {
600
- value: string;
601
603
  type: "Personal" | "Work" | "Other";
604
+ value: string;
602
605
  isPrimary: boolean;
603
606
  }, {
604
- value: string;
605
607
  type: "Personal" | "Work" | "Other";
608
+ value: string;
606
609
  isPrimary: boolean;
607
610
  }>>>;
608
611
  customFields: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
@@ -627,13 +630,13 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
627
630
  createdAt?: string | undefined;
628
631
  updatedAt?: string | undefined;
629
632
  primaryEmailAddress?: {
630
- value: string;
631
633
  type: "Personal" | "Work" | "Other";
634
+ value: string;
632
635
  isPrimary: boolean;
633
636
  } | null | undefined;
634
637
  primaryPhoneNumber?: {
635
- value: string;
636
638
  type: "Personal" | "Work" | "Other";
639
+ value: string;
637
640
  isPrimary: boolean;
638
641
  } | null | undefined;
639
642
  customFields?: {
@@ -648,13 +651,13 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
648
651
  createdAt?: string | undefined;
649
652
  updatedAt?: string | undefined;
650
653
  primaryEmailAddress?: {
651
- value: string;
652
654
  type: "Personal" | "Work" | "Other";
655
+ value: string;
653
656
  isPrimary: boolean;
654
657
  } | null | undefined;
655
658
  primaryPhoneNumber?: {
656
- value: string;
657
659
  type: "Personal" | "Work" | "Other";
660
+ value: string;
658
661
  isPrimary: boolean;
659
662
  } | null | undefined;
660
663
  customFields?: {
@@ -675,13 +678,13 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
675
678
  createdAt?: string | undefined;
676
679
  updatedAt?: string | undefined;
677
680
  primaryEmailAddress?: {
678
- value: string;
679
681
  type: "Personal" | "Work" | "Other";
682
+ value: string;
680
683
  isPrimary: boolean;
681
684
  } | null | undefined;
682
685
  primaryPhoneNumber?: {
683
- value: string;
684
686
  type: "Personal" | "Work" | "Other";
687
+ value: string;
685
688
  isPrimary: boolean;
686
689
  } | null | undefined;
687
690
  customFields?: {
@@ -701,13 +704,13 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
701
704
  createdAt?: string | undefined;
702
705
  updatedAt?: string | undefined;
703
706
  primaryEmailAddress?: {
704
- value: string;
705
707
  type: "Personal" | "Work" | "Other";
708
+ value: string;
706
709
  isPrimary: boolean;
707
710
  } | null | undefined;
708
711
  primaryPhoneNumber?: {
709
- value: string;
710
712
  type: "Personal" | "Work" | "Other";
713
+ value: string;
711
714
  isPrimary: boolean;
712
715
  } | null | undefined;
713
716
  customFields?: {
@@ -730,12 +733,12 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
730
733
  type: import("zod").ZodEnum<["Personal", "Work", "Other"]>;
731
734
  isPrimary: import("zod").ZodBoolean;
732
735
  }, "strip", import("zod").ZodTypeAny, {
733
- value: string;
734
736
  type: "Personal" | "Work" | "Other";
737
+ value: string;
735
738
  isPrimary: boolean;
736
739
  }, {
737
- value: string;
738
740
  type: "Personal" | "Work" | "Other";
741
+ value: string;
739
742
  isPrimary: boolean;
740
743
  }>>>;
741
744
  primaryPhoneNumber: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
@@ -743,12 +746,12 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
743
746
  type: import("zod").ZodEnum<["Personal", "Work", "Other"]>;
744
747
  isPrimary: import("zod").ZodBoolean;
745
748
  }, "strip", import("zod").ZodTypeAny, {
746
- value: string;
747
749
  type: "Personal" | "Work" | "Other";
750
+ value: string;
748
751
  isPrimary: boolean;
749
752
  }, {
750
- value: string;
751
753
  type: "Personal" | "Work" | "Other";
754
+ value: string;
752
755
  isPrimary: boolean;
753
756
  }>>>;
754
757
  customFields: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
@@ -773,13 +776,13 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
773
776
  createdAt?: string | undefined;
774
777
  updatedAt?: string | undefined;
775
778
  primaryEmailAddress?: {
776
- value: string;
777
779
  type: "Personal" | "Work" | "Other";
780
+ value: string;
778
781
  isPrimary: boolean;
779
782
  } | null | undefined;
780
783
  primaryPhoneNumber?: {
781
- value: string;
782
784
  type: "Personal" | "Work" | "Other";
785
+ value: string;
783
786
  isPrimary: boolean;
784
787
  } | null | undefined;
785
788
  customFields?: {
@@ -794,13 +797,13 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
794
797
  createdAt?: string | undefined;
795
798
  updatedAt?: string | undefined;
796
799
  primaryEmailAddress?: {
797
- value: string;
798
800
  type: "Personal" | "Work" | "Other";
801
+ value: string;
799
802
  isPrimary: boolean;
800
803
  } | null | undefined;
801
804
  primaryPhoneNumber?: {
802
- value: string;
803
805
  type: "Personal" | "Work" | "Other";
806
+ value: string;
804
807
  isPrimary: boolean;
805
808
  } | null | undefined;
806
809
  customFields?: {
@@ -810,6 +813,7 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
810
813
  isPrivate?: boolean | undefined;
811
814
  }[] | undefined;
812
815
  }>>;
816
+ duplicate: import("zod").ZodOptional<import("zod").ZodBoolean>;
813
817
  error: import("zod").ZodString;
814
818
  }, "strip", import("zod").ZodTypeAny, {
815
819
  error: string;
@@ -821,13 +825,13 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
821
825
  createdAt?: string | undefined;
822
826
  updatedAt?: string | undefined;
823
827
  primaryEmailAddress?: {
824
- value: string;
825
828
  type: "Personal" | "Work" | "Other";
829
+ value: string;
826
830
  isPrimary: boolean;
827
831
  } | null | undefined;
828
832
  primaryPhoneNumber?: {
829
- value: string;
830
833
  type: "Personal" | "Work" | "Other";
834
+ value: string;
831
835
  isPrimary: boolean;
832
836
  } | null | undefined;
833
837
  customFields?: {
@@ -837,6 +841,7 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
837
841
  isPrivate?: boolean | undefined;
838
842
  }[] | undefined;
839
843
  } | undefined;
844
+ duplicate?: boolean | undefined;
840
845
  }, {
841
846
  error: string;
842
847
  success: boolean;
@@ -847,13 +852,13 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
847
852
  createdAt?: string | undefined;
848
853
  updatedAt?: string | undefined;
849
854
  primaryEmailAddress?: {
850
- value: string;
851
855
  type: "Personal" | "Work" | "Other";
856
+ value: string;
852
857
  isPrimary: boolean;
853
858
  } | null | undefined;
854
859
  primaryPhoneNumber?: {
855
- value: string;
856
860
  type: "Personal" | "Work" | "Other";
861
+ value: string;
857
862
  isPrimary: boolean;
858
863
  } | null | undefined;
859
864
  customFields?: {
@@ -863,6 +868,7 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
863
868
  isPrivate?: boolean | undefined;
864
869
  }[] | undefined;
865
870
  } | undefined;
871
+ duplicate?: boolean | undefined;
866
872
  }>, import("zod").ZodObject<{
867
873
  operation: import("zod").ZodLiteral<"search_candidates">;
868
874
  success: import("zod").ZodBoolean;
@@ -876,12 +882,12 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
876
882
  type: import("zod").ZodEnum<["Personal", "Work", "Other"]>;
877
883
  isPrimary: import("zod").ZodBoolean;
878
884
  }, "strip", import("zod").ZodTypeAny, {
879
- value: string;
880
885
  type: "Personal" | "Work" | "Other";
886
+ value: string;
881
887
  isPrimary: boolean;
882
888
  }, {
883
- value: string;
884
889
  type: "Personal" | "Work" | "Other";
890
+ value: string;
885
891
  isPrimary: boolean;
886
892
  }>>>;
887
893
  primaryPhoneNumber: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
@@ -889,12 +895,12 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
889
895
  type: import("zod").ZodEnum<["Personal", "Work", "Other"]>;
890
896
  isPrimary: import("zod").ZodBoolean;
891
897
  }, "strip", import("zod").ZodTypeAny, {
892
- value: string;
893
898
  type: "Personal" | "Work" | "Other";
899
+ value: string;
894
900
  isPrimary: boolean;
895
901
  }, {
896
- value: string;
897
902
  type: "Personal" | "Work" | "Other";
903
+ value: string;
898
904
  isPrimary: boolean;
899
905
  }>>>;
900
906
  customFields: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
@@ -919,13 +925,13 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
919
925
  createdAt?: string | undefined;
920
926
  updatedAt?: string | undefined;
921
927
  primaryEmailAddress?: {
922
- value: string;
923
928
  type: "Personal" | "Work" | "Other";
929
+ value: string;
924
930
  isPrimary: boolean;
925
931
  } | null | undefined;
926
932
  primaryPhoneNumber?: {
927
- value: string;
928
933
  type: "Personal" | "Work" | "Other";
934
+ value: string;
929
935
  isPrimary: boolean;
930
936
  } | null | undefined;
931
937
  customFields?: {
@@ -940,13 +946,13 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
940
946
  createdAt?: string | undefined;
941
947
  updatedAt?: string | undefined;
942
948
  primaryEmailAddress?: {
943
- value: string;
944
949
  type: "Personal" | "Work" | "Other";
950
+ value: string;
945
951
  isPrimary: boolean;
946
952
  } | null | undefined;
947
953
  primaryPhoneNumber?: {
948
- value: string;
949
954
  type: "Personal" | "Work" | "Other";
955
+ value: string;
950
956
  isPrimary: boolean;
951
957
  } | null | undefined;
952
958
  customFields?: {
@@ -967,13 +973,13 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
967
973
  createdAt?: string | undefined;
968
974
  updatedAt?: string | undefined;
969
975
  primaryEmailAddress?: {
970
- value: string;
971
976
  type: "Personal" | "Work" | "Other";
977
+ value: string;
972
978
  isPrimary: boolean;
973
979
  } | null | undefined;
974
980
  primaryPhoneNumber?: {
975
- value: string;
976
981
  type: "Personal" | "Work" | "Other";
982
+ value: string;
977
983
  isPrimary: boolean;
978
984
  } | null | undefined;
979
985
  customFields?: {
@@ -993,13 +999,13 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
993
999
  createdAt?: string | undefined;
994
1000
  updatedAt?: string | undefined;
995
1001
  primaryEmailAddress?: {
996
- value: string;
997
1002
  type: "Personal" | "Work" | "Other";
1003
+ value: string;
998
1004
  isPrimary: boolean;
999
1005
  } | null | undefined;
1000
1006
  primaryPhoneNumber?: {
1001
- value: string;
1002
1007
  type: "Personal" | "Work" | "Other";
1008
+ value: string;
1003
1009
  isPrimary: boolean;
1004
1010
  } | null | undefined;
1005
1011
  customFields?: {
@@ -1022,12 +1028,12 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
1022
1028
  type: import("zod").ZodEnum<["Personal", "Work", "Other"]>;
1023
1029
  isPrimary: import("zod").ZodBoolean;
1024
1030
  }, "strip", import("zod").ZodTypeAny, {
1025
- value: string;
1026
1031
  type: "Personal" | "Work" | "Other";
1032
+ value: string;
1027
1033
  isPrimary: boolean;
1028
1034
  }, {
1029
- value: string;
1030
1035
  type: "Personal" | "Work" | "Other";
1036
+ value: string;
1031
1037
  isPrimary: boolean;
1032
1038
  }>>>;
1033
1039
  primaryPhoneNumber: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
@@ -1035,12 +1041,12 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
1035
1041
  type: import("zod").ZodEnum<["Personal", "Work", "Other"]>;
1036
1042
  isPrimary: import("zod").ZodBoolean;
1037
1043
  }, "strip", import("zod").ZodTypeAny, {
1038
- value: string;
1039
1044
  type: "Personal" | "Work" | "Other";
1045
+ value: string;
1040
1046
  isPrimary: boolean;
1041
1047
  }, {
1042
- value: string;
1043
1048
  type: "Personal" | "Work" | "Other";
1049
+ value: string;
1044
1050
  isPrimary: boolean;
1045
1051
  }>>>;
1046
1052
  customFields: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
@@ -1065,13 +1071,13 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
1065
1071
  createdAt?: string | undefined;
1066
1072
  updatedAt?: string | undefined;
1067
1073
  primaryEmailAddress?: {
1068
- value: string;
1069
1074
  type: "Personal" | "Work" | "Other";
1075
+ value: string;
1070
1076
  isPrimary: boolean;
1071
1077
  } | null | undefined;
1072
1078
  primaryPhoneNumber?: {
1073
- value: string;
1074
1079
  type: "Personal" | "Work" | "Other";
1080
+ value: string;
1075
1081
  isPrimary: boolean;
1076
1082
  } | null | undefined;
1077
1083
  customFields?: {
@@ -1086,13 +1092,13 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
1086
1092
  createdAt?: string | undefined;
1087
1093
  updatedAt?: string | undefined;
1088
1094
  primaryEmailAddress?: {
1089
- value: string;
1090
1095
  type: "Personal" | "Work" | "Other";
1096
+ value: string;
1091
1097
  isPrimary: boolean;
1092
1098
  } | null | undefined;
1093
1099
  primaryPhoneNumber?: {
1094
- value: string;
1095
1100
  type: "Personal" | "Work" | "Other";
1101
+ value: string;
1096
1102
  isPrimary: boolean;
1097
1103
  } | null | undefined;
1098
1104
  customFields?: {
@@ -1113,13 +1119,13 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
1113
1119
  createdAt?: string | undefined;
1114
1120
  updatedAt?: string | undefined;
1115
1121
  primaryEmailAddress?: {
1116
- value: string;
1117
1122
  type: "Personal" | "Work" | "Other";
1123
+ value: string;
1118
1124
  isPrimary: boolean;
1119
1125
  } | null | undefined;
1120
1126
  primaryPhoneNumber?: {
1121
- value: string;
1122
1127
  type: "Personal" | "Work" | "Other";
1128
+ value: string;
1123
1129
  isPrimary: boolean;
1124
1130
  } | null | undefined;
1125
1131
  customFields?: {
@@ -1139,13 +1145,13 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
1139
1145
  createdAt?: string | undefined;
1140
1146
  updatedAt?: string | undefined;
1141
1147
  primaryEmailAddress?: {
1142
- value: string;
1143
1148
  type: "Personal" | "Work" | "Other";
1149
+ value: string;
1144
1150
  isPrimary: boolean;
1145
1151
  } | null | undefined;
1146
1152
  primaryPhoneNumber?: {
1147
- value: string;
1148
1153
  type: "Personal" | "Work" | "Other";
1154
+ value: string;
1149
1155
  isPrimary: boolean;
1150
1156
  } | null | undefined;
1151
1157
  customFields?: {
@@ -1352,6 +1358,21 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
1352
1358
  * Get detailed information about a specific candidate
1353
1359
  */
1354
1360
  private getCandidate;
1361
+ /**
1362
+ * Normalize LinkedIn URL for comparison
1363
+ * Removes protocol, www, trailing slashes, and query params
1364
+ */
1365
+ private normalizeLinkedInUrl;
1366
+ /**
1367
+ * Extract a searchable name from LinkedIn URL
1368
+ * e.g., "https://linkedin.com/in/john-doe" -> "john doe"
1369
+ */
1370
+ private extractNameFromLinkedInUrl;
1371
+ /**
1372
+ * Find existing candidates with the same LinkedIn URL
1373
+ * Uses search by name extracted from LinkedIn URL for faster lookup
1374
+ */
1375
+ private findCandidateByLinkedIn;
1355
1376
  /**
1356
1377
  * Create a new candidate
1357
1378
  */
@@ -1 +1 @@
1
- {"version":3,"file":"ashby.d.ts","sourceRoot":"","sources":["../../../../src/bubbles/service-bubble/ashby/ashby.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"ashby.d.ts","sourceRoot":"","sources":["../../../../src/bubbles/service-bubble/ashby/ashby.ts"],"names":[],"mappings":"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"}