@bubblelab/bubble-core 0.1.69 → 0.1.70

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 (27) hide show
  1. package/dist/bubble-bundle.d.ts +37 -37
  2. package/dist/bubbles/service-bubble/airtable.d.ts +24 -24
  3. package/dist/bubbles/service-bubble/apify/apify.d.ts +4 -4
  4. package/dist/bubbles/service-bubble/ashby/ashby.d.ts +32 -32
  5. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +12 -12
  6. package/dist/bubbles/service-bubble/eleven-labs.d.ts +4 -4
  7. package/dist/bubbles/service-bubble/firecrawl.d.ts +72 -72
  8. package/dist/bubbles/service-bubble/followupboss.d.ts +236 -236
  9. package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +76 -76
  10. package/dist/bubbles/service-bubble/google-drive.d.ts +61 -0
  11. package/dist/bubbles/service-bubble/google-drive.d.ts.map +1 -1
  12. package/dist/bubbles/service-bubble/google-drive.js +57 -0
  13. package/dist/bubbles/service-bubble/google-drive.js.map +1 -1
  14. package/dist/bubbles/service-bubble/http.d.ts +8 -8
  15. package/dist/bubbles/service-bubble/jira/jira.d.ts +1 -1
  16. package/dist/bubbles/service-bubble/notion/notion.d.ts +20 -20
  17. package/dist/bubbles/service-bubble/slack/slack.d.ts +122 -122
  18. package/dist/bubbles/service-bubble/telegram.d.ts +2 -2
  19. package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +20 -20
  20. package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +8 -8
  21. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +94 -94
  22. package/dist/bubbles/tool-bubble/people-search-tool.d.ts +30 -30
  23. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +28 -28
  24. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +8 -8
  25. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +8 -8
  26. package/dist/bubbles.json +67 -2
  27. package/package.json +2 -2
@@ -79,15 +79,15 @@ declare const FUBParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
79
79
  }, "strip", z.ZodTypeAny, {
80
80
  operation: "create_person";
81
81
  credentials?: Partial<Record<CredentialType, string>> | undefined;
82
+ tags?: string[] | undefined;
83
+ source?: string | undefined;
84
+ firstName?: string | undefined;
85
+ lastName?: string | undefined;
82
86
  emails?: {
83
87
  value: string;
84
88
  type?: string | undefined;
85
89
  isPrimary?: boolean | undefined;
86
90
  }[] | undefined;
87
- tags?: string[] | undefined;
88
- source?: string | undefined;
89
- firstName?: string | undefined;
90
- lastName?: string | undefined;
91
91
  phones?: {
92
92
  value: string;
93
93
  type?: string | undefined;
@@ -98,15 +98,15 @@ declare const FUBParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
98
98
  }, {
99
99
  operation: "create_person";
100
100
  credentials?: Partial<Record<CredentialType, string>> | undefined;
101
+ tags?: string[] | undefined;
102
+ source?: string | undefined;
103
+ firstName?: string | undefined;
104
+ lastName?: string | undefined;
101
105
  emails?: {
102
106
  value: string;
103
107
  type?: string | undefined;
104
108
  isPrimary?: boolean | undefined;
105
109
  }[] | undefined;
106
- tags?: string[] | undefined;
107
- source?: string | undefined;
108
- firstName?: string | undefined;
109
- lastName?: string | undefined;
110
110
  phones?: {
111
111
  value: string;
112
112
  type?: string | undefined;
@@ -154,15 +154,15 @@ declare const FUBParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
154
154
  operation: "update_person";
155
155
  person_id: number;
156
156
  credentials?: Partial<Record<CredentialType, string>> | undefined;
157
+ tags?: string[] | undefined;
158
+ source?: string | undefined;
159
+ firstName?: string | undefined;
160
+ lastName?: string | undefined;
157
161
  emails?: {
158
162
  value: string;
159
163
  type?: string | undefined;
160
164
  isPrimary?: boolean | undefined;
161
165
  }[] | undefined;
162
- tags?: string[] | undefined;
163
- source?: string | undefined;
164
- firstName?: string | undefined;
165
- lastName?: string | undefined;
166
166
  phones?: {
167
167
  value: string;
168
168
  type?: string | undefined;
@@ -174,15 +174,15 @@ declare const FUBParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
174
174
  operation: "update_person";
175
175
  person_id: number;
176
176
  credentials?: Partial<Record<CredentialType, string>> | undefined;
177
+ tags?: string[] | undefined;
178
+ source?: string | undefined;
179
+ firstName?: string | undefined;
180
+ lastName?: string | undefined;
177
181
  emails?: {
178
182
  value: string;
179
183
  type?: string | undefined;
180
184
  isPrimary?: boolean | undefined;
181
185
  }[] | undefined;
182
- tags?: string[] | undefined;
183
- source?: string | undefined;
184
- firstName?: string | undefined;
185
- lastName?: string | undefined;
186
186
  phones?: {
187
187
  value: string;
188
188
  type?: string | undefined;
@@ -493,22 +493,22 @@ declare const FUBParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
493
493
  }>, "many">>;
494
494
  tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
495
495
  }, "strip", z.ZodTypeAny, {
496
- emails?: {
497
- value: string;
498
- }[] | undefined;
499
496
  tags?: string[] | undefined;
500
497
  firstName?: string | undefined;
501
498
  lastName?: string | undefined;
502
- phones?: {
499
+ emails?: {
503
500
  value: string;
504
501
  }[] | undefined;
505
- }, {
506
- emails?: {
502
+ phones?: {
507
503
  value: string;
508
504
  }[] | undefined;
505
+ }, {
509
506
  tags?: string[] | undefined;
510
507
  firstName?: string | undefined;
511
508
  lastName?: string | undefined;
509
+ emails?: {
510
+ value: string;
511
+ }[] | undefined;
512
512
  phones?: {
513
513
  value: string;
514
514
  }[] | undefined;
@@ -518,12 +518,12 @@ declare const FUBParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
518
518
  operation: "create_event";
519
519
  type: string;
520
520
  person: {
521
- emails?: {
522
- value: string;
523
- }[] | undefined;
524
521
  tags?: string[] | undefined;
525
522
  firstName?: string | undefined;
526
523
  lastName?: string | undefined;
524
+ emails?: {
525
+ value: string;
526
+ }[] | undefined;
527
527
  phones?: {
528
528
  value: string;
529
529
  }[] | undefined;
@@ -535,12 +535,12 @@ declare const FUBParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
535
535
  operation: "create_event";
536
536
  type: string;
537
537
  person: {
538
- emails?: {
539
- value: string;
540
- }[] | undefined;
541
538
  tags?: string[] | undefined;
542
539
  firstName?: string | undefined;
543
540
  lastName?: string | undefined;
541
+ emails?: {
542
+ value: string;
543
+ }[] | undefined;
544
544
  phones?: {
545
545
  value: string;
546
546
  }[] | undefined;
@@ -2235,22 +2235,22 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
2235
2235
  }>, "many">>;
2236
2236
  tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2237
2237
  }, "strip", z.ZodTypeAny, {
2238
- emails?: {
2239
- value: string;
2240
- }[] | undefined;
2241
2238
  tags?: string[] | undefined;
2242
2239
  firstName?: string | undefined;
2243
2240
  lastName?: string | undefined;
2244
- phones?: {
2241
+ emails?: {
2245
2242
  value: string;
2246
2243
  }[] | undefined;
2247
- }, {
2248
- emails?: {
2244
+ phones?: {
2249
2245
  value: string;
2250
2246
  }[] | undefined;
2247
+ }, {
2251
2248
  tags?: string[] | undefined;
2252
2249
  firstName?: string | undefined;
2253
2250
  lastName?: string | undefined;
2251
+ emails?: {
2252
+ value: string;
2253
+ }[] | undefined;
2254
2254
  phones?: {
2255
2255
  value: string;
2256
2256
  }[] | undefined;
@@ -2280,22 +2280,22 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
2280
2280
  }>, "many">>;
2281
2281
  tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2282
2282
  }, "strip", z.ZodTypeAny, {
2283
- emails?: {
2284
- value: string;
2285
- }[] | undefined;
2286
2283
  tags?: string[] | undefined;
2287
2284
  firstName?: string | undefined;
2288
2285
  lastName?: string | undefined;
2289
- phones?: {
2286
+ emails?: {
2290
2287
  value: string;
2291
2288
  }[] | undefined;
2292
- }, {
2293
- emails?: {
2289
+ phones?: {
2294
2290
  value: string;
2295
2291
  }[] | undefined;
2292
+ }, {
2296
2293
  tags?: string[] | undefined;
2297
2294
  firstName?: string | undefined;
2298
2295
  lastName?: string | undefined;
2296
+ emails?: {
2297
+ value: string;
2298
+ }[] | undefined;
2299
2299
  phones?: {
2300
2300
  value: string;
2301
2301
  }[] | undefined;
@@ -2325,22 +2325,22 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
2325
2325
  }>, "many">>;
2326
2326
  tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2327
2327
  }, "strip", z.ZodTypeAny, {
2328
- emails?: {
2329
- value: string;
2330
- }[] | undefined;
2331
2328
  tags?: string[] | undefined;
2332
2329
  firstName?: string | undefined;
2333
2330
  lastName?: string | undefined;
2334
- phones?: {
2331
+ emails?: {
2335
2332
  value: string;
2336
2333
  }[] | undefined;
2337
- }, {
2338
- emails?: {
2334
+ phones?: {
2339
2335
  value: string;
2340
2336
  }[] | undefined;
2337
+ }, {
2341
2338
  tags?: string[] | undefined;
2342
2339
  firstName?: string | undefined;
2343
2340
  lastName?: string | undefined;
2341
+ emails?: {
2342
+ value: string;
2343
+ }[] | undefined;
2344
2344
  phones?: {
2345
2345
  value: string;
2346
2346
  }[] | undefined;
@@ -2389,22 +2389,22 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
2389
2389
  }>, "many">>;
2390
2390
  tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2391
2391
  }, "strip", z.ZodTypeAny, {
2392
- emails?: {
2393
- value: string;
2394
- }[] | undefined;
2395
2392
  tags?: string[] | undefined;
2396
2393
  firstName?: string | undefined;
2397
2394
  lastName?: string | undefined;
2398
- phones?: {
2395
+ emails?: {
2399
2396
  value: string;
2400
2397
  }[] | undefined;
2401
- }, {
2402
- emails?: {
2398
+ phones?: {
2403
2399
  value: string;
2404
2400
  }[] | undefined;
2401
+ }, {
2405
2402
  tags?: string[] | undefined;
2406
2403
  firstName?: string | undefined;
2407
2404
  lastName?: string | undefined;
2405
+ emails?: {
2406
+ value: string;
2407
+ }[] | undefined;
2408
2408
  phones?: {
2409
2409
  value: string;
2410
2410
  }[] | undefined;
@@ -2444,22 +2444,22 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
2444
2444
  }>, "many">>;
2445
2445
  tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2446
2446
  }, "strip", z.ZodTypeAny, {
2447
- emails?: {
2448
- value: string;
2449
- }[] | undefined;
2450
2447
  tags?: string[] | undefined;
2451
2448
  firstName?: string | undefined;
2452
2449
  lastName?: string | undefined;
2453
- phones?: {
2450
+ emails?: {
2454
2451
  value: string;
2455
2452
  }[] | undefined;
2456
- }, {
2457
- emails?: {
2453
+ phones?: {
2458
2454
  value: string;
2459
2455
  }[] | undefined;
2456
+ }, {
2460
2457
  tags?: string[] | undefined;
2461
2458
  firstName?: string | undefined;
2462
2459
  lastName?: string | undefined;
2460
+ emails?: {
2461
+ value: string;
2462
+ }[] | undefined;
2463
2463
  phones?: {
2464
2464
  value: string;
2465
2465
  }[] | undefined;
@@ -2498,22 +2498,22 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
2498
2498
  }>, "many">>;
2499
2499
  tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2500
2500
  }, "strip", z.ZodTypeAny, {
2501
- emails?: {
2502
- value: string;
2503
- }[] | undefined;
2504
2501
  tags?: string[] | undefined;
2505
2502
  firstName?: string | undefined;
2506
2503
  lastName?: string | undefined;
2507
- phones?: {
2504
+ emails?: {
2508
2505
  value: string;
2509
2506
  }[] | undefined;
2510
- }, {
2511
- emails?: {
2507
+ phones?: {
2512
2508
  value: string;
2513
2509
  }[] | undefined;
2510
+ }, {
2514
2511
  tags?: string[] | undefined;
2515
2512
  firstName?: string | undefined;
2516
2513
  lastName?: string | undefined;
2514
+ emails?: {
2515
+ value: string;
2516
+ }[] | undefined;
2517
2517
  phones?: {
2518
2518
  value: string;
2519
2519
  }[] | undefined;
@@ -2543,22 +2543,22 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
2543
2543
  }>, "many">>;
2544
2544
  tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2545
2545
  }, "strip", z.ZodTypeAny, {
2546
- emails?: {
2547
- value: string;
2548
- }[] | undefined;
2549
2546
  tags?: string[] | undefined;
2550
2547
  firstName?: string | undefined;
2551
2548
  lastName?: string | undefined;
2552
- phones?: {
2549
+ emails?: {
2553
2550
  value: string;
2554
2551
  }[] | undefined;
2555
- }, {
2556
- emails?: {
2552
+ phones?: {
2557
2553
  value: string;
2558
2554
  }[] | undefined;
2555
+ }, {
2559
2556
  tags?: string[] | undefined;
2560
2557
  firstName?: string | undefined;
2561
2558
  lastName?: string | undefined;
2559
+ emails?: {
2560
+ value: string;
2561
+ }[] | undefined;
2562
2562
  phones?: {
2563
2563
  value: string;
2564
2564
  }[] | undefined;
@@ -2588,22 +2588,22 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
2588
2588
  }>, "many">>;
2589
2589
  tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2590
2590
  }, "strip", z.ZodTypeAny, {
2591
- emails?: {
2592
- value: string;
2593
- }[] | undefined;
2594
2591
  tags?: string[] | undefined;
2595
2592
  firstName?: string | undefined;
2596
2593
  lastName?: string | undefined;
2597
- phones?: {
2594
+ emails?: {
2598
2595
  value: string;
2599
2596
  }[] | undefined;
2600
- }, {
2601
- emails?: {
2597
+ phones?: {
2602
2598
  value: string;
2603
2599
  }[] | undefined;
2600
+ }, {
2604
2601
  tags?: string[] | undefined;
2605
2602
  firstName?: string | undefined;
2606
2603
  lastName?: string | undefined;
2604
+ emails?: {
2605
+ value: string;
2606
+ }[] | undefined;
2607
2607
  phones?: {
2608
2608
  value: string;
2609
2609
  }[] | undefined;
@@ -2639,22 +2639,22 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
2639
2639
  }>, "many">>;
2640
2640
  tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2641
2641
  }, "strip", z.ZodTypeAny, {
2642
- emails?: {
2643
- value: string;
2644
- }[] | undefined;
2645
2642
  tags?: string[] | undefined;
2646
2643
  firstName?: string | undefined;
2647
2644
  lastName?: string | undefined;
2648
- phones?: {
2645
+ emails?: {
2649
2646
  value: string;
2650
2647
  }[] | undefined;
2651
- }, {
2652
- emails?: {
2648
+ phones?: {
2653
2649
  value: string;
2654
2650
  }[] | undefined;
2651
+ }, {
2655
2652
  tags?: string[] | undefined;
2656
2653
  firstName?: string | undefined;
2657
2654
  lastName?: string | undefined;
2655
+ emails?: {
2656
+ value: string;
2657
+ }[] | undefined;
2658
2658
  phones?: {
2659
2659
  value: string;
2660
2660
  }[] | undefined;
@@ -2689,22 +2689,22 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
2689
2689
  }>, "many">>;
2690
2690
  tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2691
2691
  }, "strip", z.ZodTypeAny, {
2692
- emails?: {
2693
- value: string;
2694
- }[] | undefined;
2695
2692
  tags?: string[] | undefined;
2696
2693
  firstName?: string | undefined;
2697
2694
  lastName?: string | undefined;
2698
- phones?: {
2695
+ emails?: {
2699
2696
  value: string;
2700
2697
  }[] | undefined;
2701
- }, {
2702
- emails?: {
2698
+ phones?: {
2703
2699
  value: string;
2704
2700
  }[] | undefined;
2701
+ }, {
2705
2702
  tags?: string[] | undefined;
2706
2703
  firstName?: string | undefined;
2707
2704
  lastName?: string | undefined;
2705
+ emails?: {
2706
+ value: string;
2707
+ }[] | undefined;
2708
2708
  phones?: {
2709
2709
  value: string;
2710
2710
  }[] | undefined;
@@ -2738,22 +2738,22 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
2738
2738
  }>, "many">>;
2739
2739
  tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2740
2740
  }, "strip", z.ZodTypeAny, {
2741
- emails?: {
2742
- value: string;
2743
- }[] | undefined;
2744
2741
  tags?: string[] | undefined;
2745
2742
  firstName?: string | undefined;
2746
2743
  lastName?: string | undefined;
2747
- phones?: {
2744
+ emails?: {
2748
2745
  value: string;
2749
2746
  }[] | undefined;
2750
- }, {
2751
- emails?: {
2747
+ phones?: {
2752
2748
  value: string;
2753
2749
  }[] | undefined;
2750
+ }, {
2754
2751
  tags?: string[] | undefined;
2755
2752
  firstName?: string | undefined;
2756
2753
  lastName?: string | undefined;
2754
+ emails?: {
2755
+ value: string;
2756
+ }[] | undefined;
2757
2757
  phones?: {
2758
2758
  value: string;
2759
2759
  }[] | undefined;
@@ -2783,22 +2783,22 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
2783
2783
  }>, "many">>;
2784
2784
  tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2785
2785
  }, "strip", z.ZodTypeAny, {
2786
- emails?: {
2787
- value: string;
2788
- }[] | undefined;
2789
2786
  tags?: string[] | undefined;
2790
2787
  firstName?: string | undefined;
2791
2788
  lastName?: string | undefined;
2792
- phones?: {
2789
+ emails?: {
2793
2790
  value: string;
2794
2791
  }[] | undefined;
2795
- }, {
2796
- emails?: {
2792
+ phones?: {
2797
2793
  value: string;
2798
2794
  }[] | undefined;
2795
+ }, {
2799
2796
  tags?: string[] | undefined;
2800
2797
  firstName?: string | undefined;
2801
2798
  lastName?: string | undefined;
2799
+ emails?: {
2800
+ value: string;
2801
+ }[] | undefined;
2802
2802
  phones?: {
2803
2803
  value: string;
2804
2804
  }[] | undefined;
@@ -2828,22 +2828,22 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
2828
2828
  }>, "many">>;
2829
2829
  tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2830
2830
  }, "strip", z.ZodTypeAny, {
2831
- emails?: {
2832
- value: string;
2833
- }[] | undefined;
2834
2831
  tags?: string[] | undefined;
2835
2832
  firstName?: string | undefined;
2836
2833
  lastName?: string | undefined;
2837
- phones?: {
2834
+ emails?: {
2838
2835
  value: string;
2839
2836
  }[] | undefined;
2840
- }, {
2841
- emails?: {
2837
+ phones?: {
2842
2838
  value: string;
2843
2839
  }[] | undefined;
2840
+ }, {
2844
2841
  tags?: string[] | undefined;
2845
2842
  firstName?: string | undefined;
2846
2843
  lastName?: string | undefined;
2844
+ emails?: {
2845
+ value: string;
2846
+ }[] | undefined;
2847
2847
  phones?: {
2848
2848
  value: string;
2849
2849
  }[] | undefined;
@@ -2879,22 +2879,22 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
2879
2879
  }>, "many">>;
2880
2880
  tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2881
2881
  }, "strip", z.ZodTypeAny, {
2882
- emails?: {
2883
- value: string;
2884
- }[] | undefined;
2885
2882
  tags?: string[] | undefined;
2886
2883
  firstName?: string | undefined;
2887
2884
  lastName?: string | undefined;
2888
- phones?: {
2885
+ emails?: {
2889
2886
  value: string;
2890
2887
  }[] | undefined;
2891
- }, {
2892
- emails?: {
2888
+ phones?: {
2893
2889
  value: string;
2894
2890
  }[] | undefined;
2891
+ }, {
2895
2892
  tags?: string[] | undefined;
2896
2893
  firstName?: string | undefined;
2897
2894
  lastName?: string | undefined;
2895
+ emails?: {
2896
+ value: string;
2897
+ }[] | undefined;
2898
2898
  phones?: {
2899
2899
  value: string;
2900
2900
  }[] | undefined;
@@ -2929,22 +2929,22 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
2929
2929
  }>, "many">>;
2930
2930
  tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
2931
2931
  }, "strip", z.ZodTypeAny, {
2932
- emails?: {
2933
- value: string;
2934
- }[] | undefined;
2935
2932
  tags?: string[] | undefined;
2936
2933
  firstName?: string | undefined;
2937
2934
  lastName?: string | undefined;
2938
- phones?: {
2935
+ emails?: {
2939
2936
  value: string;
2940
2937
  }[] | undefined;
2941
- }, {
2942
- emails?: {
2938
+ phones?: {
2943
2939
  value: string;
2944
2940
  }[] | undefined;
2941
+ }, {
2945
2942
  tags?: string[] | undefined;
2946
2943
  firstName?: string | undefined;
2947
2944
  lastName?: string | undefined;
2945
+ emails?: {
2946
+ value: string;
2947
+ }[] | undefined;
2948
2948
  phones?: {
2949
2949
  value: string;
2950
2950
  }[] | undefined;
@@ -3473,15 +3473,15 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
3473
3473
  }, "strip", z.ZodTypeAny, {
3474
3474
  operation: "create_person";
3475
3475
  credentials?: Partial<Record<CredentialType, string>> | undefined;
3476
+ tags?: string[] | undefined;
3477
+ source?: string | undefined;
3478
+ firstName?: string | undefined;
3479
+ lastName?: string | undefined;
3476
3480
  emails?: {
3477
3481
  value: string;
3478
3482
  type?: string | undefined;
3479
3483
  isPrimary?: boolean | undefined;
3480
3484
  }[] | undefined;
3481
- tags?: string[] | undefined;
3482
- source?: string | undefined;
3483
- firstName?: string | undefined;
3484
- lastName?: string | undefined;
3485
3485
  phones?: {
3486
3486
  value: string;
3487
3487
  type?: string | undefined;
@@ -3492,15 +3492,15 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
3492
3492
  }, {
3493
3493
  operation: "create_person";
3494
3494
  credentials?: Partial<Record<CredentialType, string>> | undefined;
3495
+ tags?: string[] | undefined;
3496
+ source?: string | undefined;
3497
+ firstName?: string | undefined;
3498
+ lastName?: string | undefined;
3495
3499
  emails?: {
3496
3500
  value: string;
3497
3501
  type?: string | undefined;
3498
3502
  isPrimary?: boolean | undefined;
3499
3503
  }[] | undefined;
3500
- tags?: string[] | undefined;
3501
- source?: string | undefined;
3502
- firstName?: string | undefined;
3503
- lastName?: string | undefined;
3504
3504
  phones?: {
3505
3505
  value: string;
3506
3506
  type?: string | undefined;
@@ -3548,15 +3548,15 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
3548
3548
  operation: "update_person";
3549
3549
  person_id: number;
3550
3550
  credentials?: Partial<Record<CredentialType, string>> | undefined;
3551
+ tags?: string[] | undefined;
3552
+ source?: string | undefined;
3553
+ firstName?: string | undefined;
3554
+ lastName?: string | undefined;
3551
3555
  emails?: {
3552
3556
  value: string;
3553
3557
  type?: string | undefined;
3554
3558
  isPrimary?: boolean | undefined;
3555
3559
  }[] | undefined;
3556
- tags?: string[] | undefined;
3557
- source?: string | undefined;
3558
- firstName?: string | undefined;
3559
- lastName?: string | undefined;
3560
3560
  phones?: {
3561
3561
  value: string;
3562
3562
  type?: string | undefined;
@@ -3568,15 +3568,15 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
3568
3568
  operation: "update_person";
3569
3569
  person_id: number;
3570
3570
  credentials?: Partial<Record<CredentialType, string>> | undefined;
3571
+ tags?: string[] | undefined;
3572
+ source?: string | undefined;
3573
+ firstName?: string | undefined;
3574
+ lastName?: string | undefined;
3571
3575
  emails?: {
3572
3576
  value: string;
3573
3577
  type?: string | undefined;
3574
3578
  isPrimary?: boolean | undefined;
3575
3579
  }[] | undefined;
3576
- tags?: string[] | undefined;
3577
- source?: string | undefined;
3578
- firstName?: string | undefined;
3579
- lastName?: string | undefined;
3580
3580
  phones?: {
3581
3581
  value: string;
3582
3582
  type?: string | undefined;
@@ -3887,22 +3887,22 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
3887
3887
  }>, "many">>;
3888
3888
  tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3889
3889
  }, "strip", z.ZodTypeAny, {
3890
- emails?: {
3891
- value: string;
3892
- }[] | undefined;
3893
3890
  tags?: string[] | undefined;
3894
3891
  firstName?: string | undefined;
3895
3892
  lastName?: string | undefined;
3896
- phones?: {
3893
+ emails?: {
3897
3894
  value: string;
3898
3895
  }[] | undefined;
3899
- }, {
3900
- emails?: {
3896
+ phones?: {
3901
3897
  value: string;
3902
3898
  }[] | undefined;
3899
+ }, {
3903
3900
  tags?: string[] | undefined;
3904
3901
  firstName?: string | undefined;
3905
3902
  lastName?: string | undefined;
3903
+ emails?: {
3904
+ value: string;
3905
+ }[] | undefined;
3906
3906
  phones?: {
3907
3907
  value: string;
3908
3908
  }[] | undefined;
@@ -3912,12 +3912,12 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
3912
3912
  operation: "create_event";
3913
3913
  type: string;
3914
3914
  person: {
3915
- emails?: {
3916
- value: string;
3917
- }[] | undefined;
3918
3915
  tags?: string[] | undefined;
3919
3916
  firstName?: string | undefined;
3920
3917
  lastName?: string | undefined;
3918
+ emails?: {
3919
+ value: string;
3920
+ }[] | undefined;
3921
3921
  phones?: {
3922
3922
  value: string;
3923
3923
  }[] | undefined;
@@ -3929,12 +3929,12 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
3929
3929
  operation: "create_event";
3930
3930
  type: string;
3931
3931
  person: {
3932
- emails?: {
3933
- value: string;
3934
- }[] | undefined;
3935
3932
  tags?: string[] | undefined;
3936
3933
  firstName?: string | undefined;
3937
3934
  lastName?: string | undefined;
3935
+ emails?: {
3936
+ value: string;
3937
+ }[] | undefined;
3938
3938
  phones?: {
3939
3939
  value: string;
3940
3940
  }[] | undefined;
@@ -5629,22 +5629,22 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
5629
5629
  }>, "many">>;
5630
5630
  tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
5631
5631
  }, "strip", z.ZodTypeAny, {
5632
- emails?: {
5633
- value: string;
5634
- }[] | undefined;
5635
5632
  tags?: string[] | undefined;
5636
5633
  firstName?: string | undefined;
5637
5634
  lastName?: string | undefined;
5638
- phones?: {
5635
+ emails?: {
5639
5636
  value: string;
5640
5637
  }[] | undefined;
5641
- }, {
5642
- emails?: {
5638
+ phones?: {
5643
5639
  value: string;
5644
5640
  }[] | undefined;
5641
+ }, {
5645
5642
  tags?: string[] | undefined;
5646
5643
  firstName?: string | undefined;
5647
5644
  lastName?: string | undefined;
5645
+ emails?: {
5646
+ value: string;
5647
+ }[] | undefined;
5648
5648
  phones?: {
5649
5649
  value: string;
5650
5650
  }[] | undefined;
@@ -5674,22 +5674,22 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
5674
5674
  }>, "many">>;
5675
5675
  tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
5676
5676
  }, "strip", z.ZodTypeAny, {
5677
- emails?: {
5678
- value: string;
5679
- }[] | undefined;
5680
5677
  tags?: string[] | undefined;
5681
5678
  firstName?: string | undefined;
5682
5679
  lastName?: string | undefined;
5683
- phones?: {
5680
+ emails?: {
5684
5681
  value: string;
5685
5682
  }[] | undefined;
5686
- }, {
5687
- emails?: {
5683
+ phones?: {
5688
5684
  value: string;
5689
5685
  }[] | undefined;
5686
+ }, {
5690
5687
  tags?: string[] | undefined;
5691
5688
  firstName?: string | undefined;
5692
5689
  lastName?: string | undefined;
5690
+ emails?: {
5691
+ value: string;
5692
+ }[] | undefined;
5693
5693
  phones?: {
5694
5694
  value: string;
5695
5695
  }[] | undefined;
@@ -5719,22 +5719,22 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
5719
5719
  }>, "many">>;
5720
5720
  tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
5721
5721
  }, "strip", z.ZodTypeAny, {
5722
- emails?: {
5723
- value: string;
5724
- }[] | undefined;
5725
5722
  tags?: string[] | undefined;
5726
5723
  firstName?: string | undefined;
5727
5724
  lastName?: string | undefined;
5728
- phones?: {
5725
+ emails?: {
5729
5726
  value: string;
5730
5727
  }[] | undefined;
5731
- }, {
5732
- emails?: {
5728
+ phones?: {
5733
5729
  value: string;
5734
5730
  }[] | undefined;
5731
+ }, {
5735
5732
  tags?: string[] | undefined;
5736
5733
  firstName?: string | undefined;
5737
5734
  lastName?: string | undefined;
5735
+ emails?: {
5736
+ value: string;
5737
+ }[] | undefined;
5738
5738
  phones?: {
5739
5739
  value: string;
5740
5740
  }[] | undefined;
@@ -5783,22 +5783,22 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
5783
5783
  }>, "many">>;
5784
5784
  tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
5785
5785
  }, "strip", z.ZodTypeAny, {
5786
- emails?: {
5787
- value: string;
5788
- }[] | undefined;
5789
5786
  tags?: string[] | undefined;
5790
5787
  firstName?: string | undefined;
5791
5788
  lastName?: string | undefined;
5792
- phones?: {
5789
+ emails?: {
5793
5790
  value: string;
5794
5791
  }[] | undefined;
5795
- }, {
5796
- emails?: {
5792
+ phones?: {
5797
5793
  value: string;
5798
5794
  }[] | undefined;
5795
+ }, {
5799
5796
  tags?: string[] | undefined;
5800
5797
  firstName?: string | undefined;
5801
5798
  lastName?: string | undefined;
5799
+ emails?: {
5800
+ value: string;
5801
+ }[] | undefined;
5802
5802
  phones?: {
5803
5803
  value: string;
5804
5804
  }[] | undefined;
@@ -5838,22 +5838,22 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
5838
5838
  }>, "many">>;
5839
5839
  tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
5840
5840
  }, "strip", z.ZodTypeAny, {
5841
- emails?: {
5842
- value: string;
5843
- }[] | undefined;
5844
5841
  tags?: string[] | undefined;
5845
5842
  firstName?: string | undefined;
5846
5843
  lastName?: string | undefined;
5847
- phones?: {
5844
+ emails?: {
5848
5845
  value: string;
5849
5846
  }[] | undefined;
5850
- }, {
5851
- emails?: {
5847
+ phones?: {
5852
5848
  value: string;
5853
5849
  }[] | undefined;
5850
+ }, {
5854
5851
  tags?: string[] | undefined;
5855
5852
  firstName?: string | undefined;
5856
5853
  lastName?: string | undefined;
5854
+ emails?: {
5855
+ value: string;
5856
+ }[] | undefined;
5857
5857
  phones?: {
5858
5858
  value: string;
5859
5859
  }[] | undefined;
@@ -5892,22 +5892,22 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
5892
5892
  }>, "many">>;
5893
5893
  tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
5894
5894
  }, "strip", z.ZodTypeAny, {
5895
- emails?: {
5896
- value: string;
5897
- }[] | undefined;
5898
5895
  tags?: string[] | undefined;
5899
5896
  firstName?: string | undefined;
5900
5897
  lastName?: string | undefined;
5901
- phones?: {
5898
+ emails?: {
5902
5899
  value: string;
5903
5900
  }[] | undefined;
5904
- }, {
5905
- emails?: {
5901
+ phones?: {
5906
5902
  value: string;
5907
5903
  }[] | undefined;
5904
+ }, {
5908
5905
  tags?: string[] | undefined;
5909
5906
  firstName?: string | undefined;
5910
5907
  lastName?: string | undefined;
5908
+ emails?: {
5909
+ value: string;
5910
+ }[] | undefined;
5911
5911
  phones?: {
5912
5912
  value: string;
5913
5913
  }[] | undefined;
@@ -5937,22 +5937,22 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
5937
5937
  }>, "many">>;
5938
5938
  tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
5939
5939
  }, "strip", z.ZodTypeAny, {
5940
- emails?: {
5941
- value: string;
5942
- }[] | undefined;
5943
5940
  tags?: string[] | undefined;
5944
5941
  firstName?: string | undefined;
5945
5942
  lastName?: string | undefined;
5946
- phones?: {
5943
+ emails?: {
5947
5944
  value: string;
5948
5945
  }[] | undefined;
5949
- }, {
5950
- emails?: {
5946
+ phones?: {
5951
5947
  value: string;
5952
5948
  }[] | undefined;
5949
+ }, {
5953
5950
  tags?: string[] | undefined;
5954
5951
  firstName?: string | undefined;
5955
5952
  lastName?: string | undefined;
5953
+ emails?: {
5954
+ value: string;
5955
+ }[] | undefined;
5956
5956
  phones?: {
5957
5957
  value: string;
5958
5958
  }[] | undefined;
@@ -5982,22 +5982,22 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
5982
5982
  }>, "many">>;
5983
5983
  tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
5984
5984
  }, "strip", z.ZodTypeAny, {
5985
- emails?: {
5986
- value: string;
5987
- }[] | undefined;
5988
5985
  tags?: string[] | undefined;
5989
5986
  firstName?: string | undefined;
5990
5987
  lastName?: string | undefined;
5991
- phones?: {
5988
+ emails?: {
5992
5989
  value: string;
5993
5990
  }[] | undefined;
5994
- }, {
5995
- emails?: {
5991
+ phones?: {
5996
5992
  value: string;
5997
5993
  }[] | undefined;
5994
+ }, {
5998
5995
  tags?: string[] | undefined;
5999
5996
  firstName?: string | undefined;
6000
5997
  lastName?: string | undefined;
5998
+ emails?: {
5999
+ value: string;
6000
+ }[] | undefined;
6001
6001
  phones?: {
6002
6002
  value: string;
6003
6003
  }[] | undefined;
@@ -6033,22 +6033,22 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
6033
6033
  }>, "many">>;
6034
6034
  tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
6035
6035
  }, "strip", z.ZodTypeAny, {
6036
- emails?: {
6037
- value: string;
6038
- }[] | undefined;
6039
6036
  tags?: string[] | undefined;
6040
6037
  firstName?: string | undefined;
6041
6038
  lastName?: string | undefined;
6042
- phones?: {
6039
+ emails?: {
6043
6040
  value: string;
6044
6041
  }[] | undefined;
6045
- }, {
6046
- emails?: {
6042
+ phones?: {
6047
6043
  value: string;
6048
6044
  }[] | undefined;
6045
+ }, {
6049
6046
  tags?: string[] | undefined;
6050
6047
  firstName?: string | undefined;
6051
6048
  lastName?: string | undefined;
6049
+ emails?: {
6050
+ value: string;
6051
+ }[] | undefined;
6052
6052
  phones?: {
6053
6053
  value: string;
6054
6054
  }[] | undefined;
@@ -6083,22 +6083,22 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
6083
6083
  }>, "many">>;
6084
6084
  tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
6085
6085
  }, "strip", z.ZodTypeAny, {
6086
- emails?: {
6087
- value: string;
6088
- }[] | undefined;
6089
6086
  tags?: string[] | undefined;
6090
6087
  firstName?: string | undefined;
6091
6088
  lastName?: string | undefined;
6092
- phones?: {
6089
+ emails?: {
6093
6090
  value: string;
6094
6091
  }[] | undefined;
6095
- }, {
6096
- emails?: {
6092
+ phones?: {
6097
6093
  value: string;
6098
6094
  }[] | undefined;
6095
+ }, {
6099
6096
  tags?: string[] | undefined;
6100
6097
  firstName?: string | undefined;
6101
6098
  lastName?: string | undefined;
6099
+ emails?: {
6100
+ value: string;
6101
+ }[] | undefined;
6102
6102
  phones?: {
6103
6103
  value: string;
6104
6104
  }[] | undefined;
@@ -6132,22 +6132,22 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
6132
6132
  }>, "many">>;
6133
6133
  tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
6134
6134
  }, "strip", z.ZodTypeAny, {
6135
- emails?: {
6136
- value: string;
6137
- }[] | undefined;
6138
6135
  tags?: string[] | undefined;
6139
6136
  firstName?: string | undefined;
6140
6137
  lastName?: string | undefined;
6141
- phones?: {
6138
+ emails?: {
6142
6139
  value: string;
6143
6140
  }[] | undefined;
6144
- }, {
6145
- emails?: {
6141
+ phones?: {
6146
6142
  value: string;
6147
6143
  }[] | undefined;
6144
+ }, {
6148
6145
  tags?: string[] | undefined;
6149
6146
  firstName?: string | undefined;
6150
6147
  lastName?: string | undefined;
6148
+ emails?: {
6149
+ value: string;
6150
+ }[] | undefined;
6151
6151
  phones?: {
6152
6152
  value: string;
6153
6153
  }[] | undefined;
@@ -6177,22 +6177,22 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
6177
6177
  }>, "many">>;
6178
6178
  tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
6179
6179
  }, "strip", z.ZodTypeAny, {
6180
- emails?: {
6181
- value: string;
6182
- }[] | undefined;
6183
6180
  tags?: string[] | undefined;
6184
6181
  firstName?: string | undefined;
6185
6182
  lastName?: string | undefined;
6186
- phones?: {
6183
+ emails?: {
6187
6184
  value: string;
6188
6185
  }[] | undefined;
6189
- }, {
6190
- emails?: {
6186
+ phones?: {
6191
6187
  value: string;
6192
6188
  }[] | undefined;
6189
+ }, {
6193
6190
  tags?: string[] | undefined;
6194
6191
  firstName?: string | undefined;
6195
6192
  lastName?: string | undefined;
6193
+ emails?: {
6194
+ value: string;
6195
+ }[] | undefined;
6196
6196
  phones?: {
6197
6197
  value: string;
6198
6198
  }[] | undefined;
@@ -6222,22 +6222,22 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
6222
6222
  }>, "many">>;
6223
6223
  tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
6224
6224
  }, "strip", z.ZodTypeAny, {
6225
- emails?: {
6226
- value: string;
6227
- }[] | undefined;
6228
6225
  tags?: string[] | undefined;
6229
6226
  firstName?: string | undefined;
6230
6227
  lastName?: string | undefined;
6231
- phones?: {
6228
+ emails?: {
6232
6229
  value: string;
6233
6230
  }[] | undefined;
6234
- }, {
6235
- emails?: {
6231
+ phones?: {
6236
6232
  value: string;
6237
6233
  }[] | undefined;
6234
+ }, {
6238
6235
  tags?: string[] | undefined;
6239
6236
  firstName?: string | undefined;
6240
6237
  lastName?: string | undefined;
6238
+ emails?: {
6239
+ value: string;
6240
+ }[] | undefined;
6241
6241
  phones?: {
6242
6242
  value: string;
6243
6243
  }[] | undefined;
@@ -6273,22 +6273,22 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
6273
6273
  }>, "many">>;
6274
6274
  tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
6275
6275
  }, "strip", z.ZodTypeAny, {
6276
- emails?: {
6277
- value: string;
6278
- }[] | undefined;
6279
6276
  tags?: string[] | undefined;
6280
6277
  firstName?: string | undefined;
6281
6278
  lastName?: string | undefined;
6282
- phones?: {
6279
+ emails?: {
6283
6280
  value: string;
6284
6281
  }[] | undefined;
6285
- }, {
6286
- emails?: {
6282
+ phones?: {
6287
6283
  value: string;
6288
6284
  }[] | undefined;
6285
+ }, {
6289
6286
  tags?: string[] | undefined;
6290
6287
  firstName?: string | undefined;
6291
6288
  lastName?: string | undefined;
6289
+ emails?: {
6290
+ value: string;
6291
+ }[] | undefined;
6292
6292
  phones?: {
6293
6293
  value: string;
6294
6294
  }[] | undefined;
@@ -6323,22 +6323,22 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
6323
6323
  }>, "many">>;
6324
6324
  tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
6325
6325
  }, "strip", z.ZodTypeAny, {
6326
- emails?: {
6327
- value: string;
6328
- }[] | undefined;
6329
6326
  tags?: string[] | undefined;
6330
6327
  firstName?: string | undefined;
6331
6328
  lastName?: string | undefined;
6332
- phones?: {
6329
+ emails?: {
6333
6330
  value: string;
6334
6331
  }[] | undefined;
6335
- }, {
6336
- emails?: {
6332
+ phones?: {
6337
6333
  value: string;
6338
6334
  }[] | undefined;
6335
+ }, {
6339
6336
  tags?: string[] | undefined;
6340
6337
  firstName?: string | undefined;
6341
6338
  lastName?: string | undefined;
6339
+ emails?: {
6340
+ value: string;
6341
+ }[] | undefined;
6342
6342
  phones?: {
6343
6343
  value: string;
6344
6344
  }[] | undefined;