@bubblelab/bubble-core 0.1.51 → 0.1.53
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bubble-bundle.d.ts +50 -50
- package/dist/bubbles/service-bubble/agi-inc.d.ts +8 -8
- package/dist/bubbles/service-bubble/ai-agent.d.ts +8 -8
- package/dist/bubbles/service-bubble/airtable.d.ts +72 -72
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +124 -124
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +16 -16
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +4 -4
- package/dist/bubbles/service-bubble/firecrawl.d.ts +48 -48
- package/dist/bubbles/service-bubble/followupboss.d.ts +4 -4
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +36 -36
- package/dist/bubbles/service-bubble/github.d.ts +56 -56
- package/dist/bubbles/service-bubble/gmail.d.ts +124 -124
- package/dist/bubbles/service-bubble/google-drive.d.ts +8 -8
- package/dist/bubbles/service-bubble/hello-world.d.ts +2 -2
- package/dist/bubbles/service-bubble/jira/jira.d.ts +28 -28
- package/dist/bubbles/service-bubble/notion/notion.d.ts +392 -392
- package/dist/bubbles/service-bubble/resend.d.ts +8 -8
- package/dist/bubbles/service-bubble/slack/slack.d.ts +28 -28
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +221 -32
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/stripe/stripe.js +61 -0
- package/dist/bubbles/service-bubble/stripe/stripe.js.map +1 -1
- package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +233 -40
- package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/stripe/stripe.schema.js +50 -0
- package/dist/bubbles/service-bubble/stripe/stripe.schema.js.map +1 -1
- package/dist/bubbles/service-bubble/telegram.d.ts +140 -140
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +18 -18
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +10 -10
- package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +10 -10
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +18 -18
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +10 -10
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +48 -48
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +16 -16
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +8 -8
- package/dist/bubbles.json +272 -2
- package/package.json +2 -2
|
@@ -88,11 +88,11 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
88
88
|
email: import("zod").ZodString;
|
|
89
89
|
type: import("zod").ZodEnum<["Personal", "Work", "Other"]>;
|
|
90
90
|
}, "strip", import("zod").ZodTypeAny, {
|
|
91
|
-
type: "Personal" | "Work" | "Other";
|
|
92
91
|
email: string;
|
|
93
|
-
}, {
|
|
94
92
|
type: "Personal" | "Work" | "Other";
|
|
93
|
+
}, {
|
|
95
94
|
email: string;
|
|
95
|
+
type: "Personal" | "Work" | "Other";
|
|
96
96
|
}>, "many">>;
|
|
97
97
|
phone_number: import("zod").ZodOptional<import("zod").ZodString>;
|
|
98
98
|
linkedin_url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -108,8 +108,8 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
108
108
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
109
109
|
website?: string | undefined;
|
|
110
110
|
emails?: {
|
|
111
|
-
type: "Personal" | "Work" | "Other";
|
|
112
111
|
email: string;
|
|
112
|
+
type: "Personal" | "Work" | "Other";
|
|
113
113
|
}[] | undefined;
|
|
114
114
|
phone_number?: string | undefined;
|
|
115
115
|
linkedin_url?: string | undefined;
|
|
@@ -123,8 +123,8 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
123
123
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
124
124
|
website?: string | undefined;
|
|
125
125
|
emails?: {
|
|
126
|
-
type: "Personal" | "Work" | "Other";
|
|
127
126
|
email: string;
|
|
127
|
+
type: "Personal" | "Work" | "Other";
|
|
128
128
|
}[] | undefined;
|
|
129
129
|
phone_number?: string | undefined;
|
|
130
130
|
linkedin_url?: string | undefined;
|
|
@@ -218,12 +218,12 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
218
218
|
type: import("zod").ZodEnum<["Personal", "Work", "Other"]>;
|
|
219
219
|
isPrimary: import("zod").ZodBoolean;
|
|
220
220
|
}, "strip", import("zod").ZodTypeAny, {
|
|
221
|
-
type: "Personal" | "Work" | "Other";
|
|
222
221
|
value: string;
|
|
222
|
+
type: "Personal" | "Work" | "Other";
|
|
223
223
|
isPrimary: boolean;
|
|
224
224
|
}, {
|
|
225
|
-
type: "Personal" | "Work" | "Other";
|
|
226
225
|
value: string;
|
|
226
|
+
type: "Personal" | "Work" | "Other";
|
|
227
227
|
isPrimary: boolean;
|
|
228
228
|
}>>>;
|
|
229
229
|
emailAddresses: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -231,12 +231,12 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
231
231
|
type: import("zod").ZodEnum<["Personal", "Work", "Other"]>;
|
|
232
232
|
isPrimary: import("zod").ZodBoolean;
|
|
233
233
|
}, "strip", import("zod").ZodTypeAny, {
|
|
234
|
-
type: "Personal" | "Work" | "Other";
|
|
235
234
|
value: string;
|
|
235
|
+
type: "Personal" | "Work" | "Other";
|
|
236
236
|
isPrimary: boolean;
|
|
237
237
|
}, {
|
|
238
|
-
type: "Personal" | "Work" | "Other";
|
|
239
238
|
value: string;
|
|
239
|
+
type: "Personal" | "Work" | "Other";
|
|
240
240
|
isPrimary: boolean;
|
|
241
241
|
}>, "many">>;
|
|
242
242
|
primaryPhoneNumber: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
@@ -244,12 +244,12 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
244
244
|
type: import("zod").ZodEnum<["Personal", "Work", "Other"]>;
|
|
245
245
|
isPrimary: import("zod").ZodBoolean;
|
|
246
246
|
}, "strip", import("zod").ZodTypeAny, {
|
|
247
|
-
type: "Personal" | "Work" | "Other";
|
|
248
247
|
value: string;
|
|
248
|
+
type: "Personal" | "Work" | "Other";
|
|
249
249
|
isPrimary: boolean;
|
|
250
250
|
}, {
|
|
251
|
-
type: "Personal" | "Work" | "Other";
|
|
252
251
|
value: string;
|
|
252
|
+
type: "Personal" | "Work" | "Other";
|
|
253
253
|
isPrimary: boolean;
|
|
254
254
|
}>>>;
|
|
255
255
|
phoneNumbers: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -257,12 +257,12 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
257
257
|
type: import("zod").ZodEnum<["Personal", "Work", "Other"]>;
|
|
258
258
|
isPrimary: import("zod").ZodBoolean;
|
|
259
259
|
}, "strip", import("zod").ZodTypeAny, {
|
|
260
|
-
type: "Personal" | "Work" | "Other";
|
|
261
260
|
value: string;
|
|
261
|
+
type: "Personal" | "Work" | "Other";
|
|
262
262
|
isPrimary: boolean;
|
|
263
263
|
}, {
|
|
264
|
-
type: "Personal" | "Work" | "Other";
|
|
265
264
|
value: string;
|
|
265
|
+
type: "Personal" | "Work" | "Other";
|
|
266
266
|
isPrimary: boolean;
|
|
267
267
|
}>, "many">>;
|
|
268
268
|
socialLinks: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -280,12 +280,12 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
280
280
|
title: import("zod").ZodString;
|
|
281
281
|
isArchived: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
282
282
|
}, "strip", import("zod").ZodTypeAny, {
|
|
283
|
-
title: string;
|
|
284
283
|
id: string;
|
|
284
|
+
title: string;
|
|
285
285
|
isArchived?: boolean | undefined;
|
|
286
286
|
}, {
|
|
287
|
-
title: string;
|
|
288
287
|
id: string;
|
|
288
|
+
title: string;
|
|
289
289
|
isArchived?: boolean | undefined;
|
|
290
290
|
}>, "many">>;
|
|
291
291
|
position: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
@@ -324,13 +324,13 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
324
324
|
value: import("zod").ZodUnknown;
|
|
325
325
|
isPrivate: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
326
326
|
}, "strip", import("zod").ZodTypeAny, {
|
|
327
|
-
title: string;
|
|
328
327
|
id: string;
|
|
328
|
+
title: string;
|
|
329
329
|
value?: unknown;
|
|
330
330
|
isPrivate?: boolean | undefined;
|
|
331
331
|
}, {
|
|
332
|
-
title: string;
|
|
333
332
|
id: string;
|
|
333
|
+
title: string;
|
|
334
334
|
value?: unknown;
|
|
335
335
|
isPrivate?: boolean | undefined;
|
|
336
336
|
}>, "many">>;
|
|
@@ -338,30 +338,30 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
338
338
|
id: string;
|
|
339
339
|
name: string;
|
|
340
340
|
tags?: {
|
|
341
|
-
title: string;
|
|
342
341
|
id: string;
|
|
342
|
+
title: string;
|
|
343
343
|
isArchived?: boolean | undefined;
|
|
344
344
|
}[] | undefined;
|
|
345
345
|
createdAt?: string | undefined;
|
|
346
346
|
updatedAt?: string | undefined;
|
|
347
347
|
primaryEmailAddress?: {
|
|
348
|
-
type: "Personal" | "Work" | "Other";
|
|
349
348
|
value: string;
|
|
349
|
+
type: "Personal" | "Work" | "Other";
|
|
350
350
|
isPrimary: boolean;
|
|
351
351
|
} | null | undefined;
|
|
352
352
|
emailAddresses?: {
|
|
353
|
-
type: "Personal" | "Work" | "Other";
|
|
354
353
|
value: string;
|
|
354
|
+
type: "Personal" | "Work" | "Other";
|
|
355
355
|
isPrimary: boolean;
|
|
356
356
|
}[] | undefined;
|
|
357
357
|
primaryPhoneNumber?: {
|
|
358
|
-
type: "Personal" | "Work" | "Other";
|
|
359
358
|
value: string;
|
|
359
|
+
type: "Personal" | "Work" | "Other";
|
|
360
360
|
isPrimary: boolean;
|
|
361
361
|
} | null | undefined;
|
|
362
362
|
phoneNumbers?: {
|
|
363
|
-
type: "Personal" | "Work" | "Other";
|
|
364
363
|
value: string;
|
|
364
|
+
type: "Personal" | "Work" | "Other";
|
|
365
365
|
isPrimary: boolean;
|
|
366
366
|
}[] | undefined;
|
|
367
367
|
socialLinks?: {
|
|
@@ -383,8 +383,8 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
383
383
|
handle: string;
|
|
384
384
|
}[] | undefined;
|
|
385
385
|
customFields?: {
|
|
386
|
-
title: string;
|
|
387
386
|
id: string;
|
|
387
|
+
title: string;
|
|
388
388
|
value?: unknown;
|
|
389
389
|
isPrivate?: boolean | undefined;
|
|
390
390
|
}[] | undefined;
|
|
@@ -392,30 +392,30 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
392
392
|
id: string;
|
|
393
393
|
name: string;
|
|
394
394
|
tags?: {
|
|
395
|
-
title: string;
|
|
396
395
|
id: string;
|
|
396
|
+
title: string;
|
|
397
397
|
isArchived?: boolean | undefined;
|
|
398
398
|
}[] | undefined;
|
|
399
399
|
createdAt?: string | undefined;
|
|
400
400
|
updatedAt?: string | undefined;
|
|
401
401
|
primaryEmailAddress?: {
|
|
402
|
-
type: "Personal" | "Work" | "Other";
|
|
403
402
|
value: string;
|
|
403
|
+
type: "Personal" | "Work" | "Other";
|
|
404
404
|
isPrimary: boolean;
|
|
405
405
|
} | null | undefined;
|
|
406
406
|
emailAddresses?: {
|
|
407
|
-
type: "Personal" | "Work" | "Other";
|
|
408
407
|
value: string;
|
|
408
|
+
type: "Personal" | "Work" | "Other";
|
|
409
409
|
isPrimary: boolean;
|
|
410
410
|
}[] | undefined;
|
|
411
411
|
primaryPhoneNumber?: {
|
|
412
|
-
type: "Personal" | "Work" | "Other";
|
|
413
412
|
value: string;
|
|
413
|
+
type: "Personal" | "Work" | "Other";
|
|
414
414
|
isPrimary: boolean;
|
|
415
415
|
} | null | undefined;
|
|
416
416
|
phoneNumbers?: {
|
|
417
|
-
type: "Personal" | "Work" | "Other";
|
|
418
417
|
value: string;
|
|
418
|
+
type: "Personal" | "Work" | "Other";
|
|
419
419
|
isPrimary: boolean;
|
|
420
420
|
}[] | undefined;
|
|
421
421
|
socialLinks?: {
|
|
@@ -437,8 +437,8 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
437
437
|
handle: string;
|
|
438
438
|
}[] | undefined;
|
|
439
439
|
customFields?: {
|
|
440
|
-
title: string;
|
|
441
440
|
id: string;
|
|
441
|
+
title: string;
|
|
442
442
|
value?: unknown;
|
|
443
443
|
isPrivate?: boolean | undefined;
|
|
444
444
|
}[] | undefined;
|
|
@@ -457,30 +457,30 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
457
457
|
id: string;
|
|
458
458
|
name: string;
|
|
459
459
|
tags?: {
|
|
460
|
-
title: string;
|
|
461
460
|
id: string;
|
|
461
|
+
title: string;
|
|
462
462
|
isArchived?: boolean | undefined;
|
|
463
463
|
}[] | undefined;
|
|
464
464
|
createdAt?: string | undefined;
|
|
465
465
|
updatedAt?: string | undefined;
|
|
466
466
|
primaryEmailAddress?: {
|
|
467
|
-
type: "Personal" | "Work" | "Other";
|
|
468
467
|
value: string;
|
|
468
|
+
type: "Personal" | "Work" | "Other";
|
|
469
469
|
isPrimary: boolean;
|
|
470
470
|
} | null | undefined;
|
|
471
471
|
emailAddresses?: {
|
|
472
|
-
type: "Personal" | "Work" | "Other";
|
|
473
472
|
value: string;
|
|
473
|
+
type: "Personal" | "Work" | "Other";
|
|
474
474
|
isPrimary: boolean;
|
|
475
475
|
}[] | undefined;
|
|
476
476
|
primaryPhoneNumber?: {
|
|
477
|
-
type: "Personal" | "Work" | "Other";
|
|
478
477
|
value: string;
|
|
478
|
+
type: "Personal" | "Work" | "Other";
|
|
479
479
|
isPrimary: boolean;
|
|
480
480
|
} | null | undefined;
|
|
481
481
|
phoneNumbers?: {
|
|
482
|
-
type: "Personal" | "Work" | "Other";
|
|
483
482
|
value: string;
|
|
483
|
+
type: "Personal" | "Work" | "Other";
|
|
484
484
|
isPrimary: boolean;
|
|
485
485
|
}[] | undefined;
|
|
486
486
|
socialLinks?: {
|
|
@@ -502,8 +502,8 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
502
502
|
handle: string;
|
|
503
503
|
}[] | undefined;
|
|
504
504
|
customFields?: {
|
|
505
|
-
title: string;
|
|
506
505
|
id: string;
|
|
506
|
+
title: string;
|
|
507
507
|
value?: unknown;
|
|
508
508
|
isPrivate?: boolean | undefined;
|
|
509
509
|
}[] | undefined;
|
|
@@ -519,30 +519,30 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
519
519
|
id: string;
|
|
520
520
|
name: string;
|
|
521
521
|
tags?: {
|
|
522
|
-
title: string;
|
|
523
522
|
id: string;
|
|
523
|
+
title: string;
|
|
524
524
|
isArchived?: boolean | undefined;
|
|
525
525
|
}[] | undefined;
|
|
526
526
|
createdAt?: string | undefined;
|
|
527
527
|
updatedAt?: string | undefined;
|
|
528
528
|
primaryEmailAddress?: {
|
|
529
|
-
type: "Personal" | "Work" | "Other";
|
|
530
529
|
value: string;
|
|
530
|
+
type: "Personal" | "Work" | "Other";
|
|
531
531
|
isPrimary: boolean;
|
|
532
532
|
} | null | undefined;
|
|
533
533
|
emailAddresses?: {
|
|
534
|
-
type: "Personal" | "Work" | "Other";
|
|
535
534
|
value: string;
|
|
535
|
+
type: "Personal" | "Work" | "Other";
|
|
536
536
|
isPrimary: boolean;
|
|
537
537
|
}[] | undefined;
|
|
538
538
|
primaryPhoneNumber?: {
|
|
539
|
-
type: "Personal" | "Work" | "Other";
|
|
540
539
|
value: string;
|
|
540
|
+
type: "Personal" | "Work" | "Other";
|
|
541
541
|
isPrimary: boolean;
|
|
542
542
|
} | null | undefined;
|
|
543
543
|
phoneNumbers?: {
|
|
544
|
-
type: "Personal" | "Work" | "Other";
|
|
545
544
|
value: string;
|
|
545
|
+
type: "Personal" | "Work" | "Other";
|
|
546
546
|
isPrimary: boolean;
|
|
547
547
|
}[] | undefined;
|
|
548
548
|
socialLinks?: {
|
|
@@ -564,8 +564,8 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
564
564
|
handle: string;
|
|
565
565
|
}[] | undefined;
|
|
566
566
|
customFields?: {
|
|
567
|
-
title: string;
|
|
568
567
|
id: string;
|
|
568
|
+
title: string;
|
|
569
569
|
value?: unknown;
|
|
570
570
|
isPrivate?: boolean | undefined;
|
|
571
571
|
}[] | undefined;
|
|
@@ -584,12 +584,12 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
584
584
|
type: import("zod").ZodEnum<["Personal", "Work", "Other"]>;
|
|
585
585
|
isPrimary: import("zod").ZodBoolean;
|
|
586
586
|
}, "strip", import("zod").ZodTypeAny, {
|
|
587
|
-
type: "Personal" | "Work" | "Other";
|
|
588
587
|
value: string;
|
|
588
|
+
type: "Personal" | "Work" | "Other";
|
|
589
589
|
isPrimary: boolean;
|
|
590
590
|
}, {
|
|
591
|
-
type: "Personal" | "Work" | "Other";
|
|
592
591
|
value: string;
|
|
592
|
+
type: "Personal" | "Work" | "Other";
|
|
593
593
|
isPrimary: boolean;
|
|
594
594
|
}>>>;
|
|
595
595
|
primaryPhoneNumber: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
@@ -597,12 +597,12 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
597
597
|
type: import("zod").ZodEnum<["Personal", "Work", "Other"]>;
|
|
598
598
|
isPrimary: import("zod").ZodBoolean;
|
|
599
599
|
}, "strip", import("zod").ZodTypeAny, {
|
|
600
|
-
type: "Personal" | "Work" | "Other";
|
|
601
600
|
value: string;
|
|
601
|
+
type: "Personal" | "Work" | "Other";
|
|
602
602
|
isPrimary: boolean;
|
|
603
603
|
}, {
|
|
604
|
-
type: "Personal" | "Work" | "Other";
|
|
605
604
|
value: string;
|
|
605
|
+
type: "Personal" | "Work" | "Other";
|
|
606
606
|
isPrimary: boolean;
|
|
607
607
|
}>>>;
|
|
608
608
|
customFields: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -611,13 +611,13 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
611
611
|
value: import("zod").ZodUnknown;
|
|
612
612
|
isPrivate: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
613
613
|
}, "strip", import("zod").ZodTypeAny, {
|
|
614
|
-
title: string;
|
|
615
614
|
id: string;
|
|
615
|
+
title: string;
|
|
616
616
|
value?: unknown;
|
|
617
617
|
isPrivate?: boolean | undefined;
|
|
618
618
|
}, {
|
|
619
|
-
title: string;
|
|
620
619
|
id: string;
|
|
620
|
+
title: string;
|
|
621
621
|
value?: unknown;
|
|
622
622
|
isPrivate?: boolean | undefined;
|
|
623
623
|
}>, "many">>;
|
|
@@ -627,18 +627,18 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
627
627
|
createdAt?: string | undefined;
|
|
628
628
|
updatedAt?: string | undefined;
|
|
629
629
|
primaryEmailAddress?: {
|
|
630
|
-
type: "Personal" | "Work" | "Other";
|
|
631
630
|
value: string;
|
|
631
|
+
type: "Personal" | "Work" | "Other";
|
|
632
632
|
isPrimary: boolean;
|
|
633
633
|
} | null | undefined;
|
|
634
634
|
primaryPhoneNumber?: {
|
|
635
|
-
type: "Personal" | "Work" | "Other";
|
|
636
635
|
value: string;
|
|
636
|
+
type: "Personal" | "Work" | "Other";
|
|
637
637
|
isPrimary: boolean;
|
|
638
638
|
} | null | undefined;
|
|
639
639
|
customFields?: {
|
|
640
|
-
title: string;
|
|
641
640
|
id: string;
|
|
641
|
+
title: string;
|
|
642
642
|
value?: unknown;
|
|
643
643
|
isPrivate?: boolean | undefined;
|
|
644
644
|
}[] | undefined;
|
|
@@ -648,18 +648,18 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
648
648
|
createdAt?: string | undefined;
|
|
649
649
|
updatedAt?: string | undefined;
|
|
650
650
|
primaryEmailAddress?: {
|
|
651
|
-
type: "Personal" | "Work" | "Other";
|
|
652
651
|
value: string;
|
|
652
|
+
type: "Personal" | "Work" | "Other";
|
|
653
653
|
isPrimary: boolean;
|
|
654
654
|
} | null | undefined;
|
|
655
655
|
primaryPhoneNumber?: {
|
|
656
|
-
type: "Personal" | "Work" | "Other";
|
|
657
656
|
value: string;
|
|
657
|
+
type: "Personal" | "Work" | "Other";
|
|
658
658
|
isPrimary: boolean;
|
|
659
659
|
} | null | undefined;
|
|
660
660
|
customFields?: {
|
|
661
|
-
title: string;
|
|
662
661
|
id: string;
|
|
662
|
+
title: string;
|
|
663
663
|
value?: unknown;
|
|
664
664
|
isPrivate?: boolean | undefined;
|
|
665
665
|
}[] | undefined;
|
|
@@ -675,18 +675,18 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
675
675
|
createdAt?: string | undefined;
|
|
676
676
|
updatedAt?: string | undefined;
|
|
677
677
|
primaryEmailAddress?: {
|
|
678
|
-
type: "Personal" | "Work" | "Other";
|
|
679
678
|
value: string;
|
|
679
|
+
type: "Personal" | "Work" | "Other";
|
|
680
680
|
isPrimary: boolean;
|
|
681
681
|
} | null | undefined;
|
|
682
682
|
primaryPhoneNumber?: {
|
|
683
|
-
type: "Personal" | "Work" | "Other";
|
|
684
683
|
value: string;
|
|
684
|
+
type: "Personal" | "Work" | "Other";
|
|
685
685
|
isPrimary: boolean;
|
|
686
686
|
} | null | undefined;
|
|
687
687
|
customFields?: {
|
|
688
|
-
title: string;
|
|
689
688
|
id: string;
|
|
689
|
+
title: string;
|
|
690
690
|
value?: unknown;
|
|
691
691
|
isPrivate?: boolean | undefined;
|
|
692
692
|
}[] | undefined;
|
|
@@ -701,18 +701,18 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
701
701
|
createdAt?: string | undefined;
|
|
702
702
|
updatedAt?: string | undefined;
|
|
703
703
|
primaryEmailAddress?: {
|
|
704
|
-
type: "Personal" | "Work" | "Other";
|
|
705
704
|
value: string;
|
|
705
|
+
type: "Personal" | "Work" | "Other";
|
|
706
706
|
isPrimary: boolean;
|
|
707
707
|
} | null | undefined;
|
|
708
708
|
primaryPhoneNumber?: {
|
|
709
|
-
type: "Personal" | "Work" | "Other";
|
|
710
709
|
value: string;
|
|
710
|
+
type: "Personal" | "Work" | "Other";
|
|
711
711
|
isPrimary: boolean;
|
|
712
712
|
} | null | undefined;
|
|
713
713
|
customFields?: {
|
|
714
|
-
title: string;
|
|
715
714
|
id: string;
|
|
715
|
+
title: string;
|
|
716
716
|
value?: unknown;
|
|
717
717
|
isPrivate?: boolean | undefined;
|
|
718
718
|
}[] | undefined;
|
|
@@ -730,12 +730,12 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
730
730
|
type: import("zod").ZodEnum<["Personal", "Work", "Other"]>;
|
|
731
731
|
isPrimary: import("zod").ZodBoolean;
|
|
732
732
|
}, "strip", import("zod").ZodTypeAny, {
|
|
733
|
-
type: "Personal" | "Work" | "Other";
|
|
734
733
|
value: string;
|
|
734
|
+
type: "Personal" | "Work" | "Other";
|
|
735
735
|
isPrimary: boolean;
|
|
736
736
|
}, {
|
|
737
|
-
type: "Personal" | "Work" | "Other";
|
|
738
737
|
value: string;
|
|
738
|
+
type: "Personal" | "Work" | "Other";
|
|
739
739
|
isPrimary: boolean;
|
|
740
740
|
}>>>;
|
|
741
741
|
primaryPhoneNumber: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
@@ -743,12 +743,12 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
743
743
|
type: import("zod").ZodEnum<["Personal", "Work", "Other"]>;
|
|
744
744
|
isPrimary: import("zod").ZodBoolean;
|
|
745
745
|
}, "strip", import("zod").ZodTypeAny, {
|
|
746
|
-
type: "Personal" | "Work" | "Other";
|
|
747
746
|
value: string;
|
|
747
|
+
type: "Personal" | "Work" | "Other";
|
|
748
748
|
isPrimary: boolean;
|
|
749
749
|
}, {
|
|
750
|
-
type: "Personal" | "Work" | "Other";
|
|
751
750
|
value: string;
|
|
751
|
+
type: "Personal" | "Work" | "Other";
|
|
752
752
|
isPrimary: boolean;
|
|
753
753
|
}>>>;
|
|
754
754
|
customFields: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -757,13 +757,13 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
757
757
|
value: import("zod").ZodUnknown;
|
|
758
758
|
isPrivate: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
759
759
|
}, "strip", import("zod").ZodTypeAny, {
|
|
760
|
-
title: string;
|
|
761
760
|
id: string;
|
|
761
|
+
title: string;
|
|
762
762
|
value?: unknown;
|
|
763
763
|
isPrivate?: boolean | undefined;
|
|
764
764
|
}, {
|
|
765
|
-
title: string;
|
|
766
765
|
id: string;
|
|
766
|
+
title: string;
|
|
767
767
|
value?: unknown;
|
|
768
768
|
isPrivate?: boolean | undefined;
|
|
769
769
|
}>, "many">>;
|
|
@@ -773,18 +773,18 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
773
773
|
createdAt?: string | undefined;
|
|
774
774
|
updatedAt?: string | undefined;
|
|
775
775
|
primaryEmailAddress?: {
|
|
776
|
-
type: "Personal" | "Work" | "Other";
|
|
777
776
|
value: string;
|
|
777
|
+
type: "Personal" | "Work" | "Other";
|
|
778
778
|
isPrimary: boolean;
|
|
779
779
|
} | null | undefined;
|
|
780
780
|
primaryPhoneNumber?: {
|
|
781
|
-
type: "Personal" | "Work" | "Other";
|
|
782
781
|
value: string;
|
|
782
|
+
type: "Personal" | "Work" | "Other";
|
|
783
783
|
isPrimary: boolean;
|
|
784
784
|
} | null | undefined;
|
|
785
785
|
customFields?: {
|
|
786
|
-
title: string;
|
|
787
786
|
id: string;
|
|
787
|
+
title: string;
|
|
788
788
|
value?: unknown;
|
|
789
789
|
isPrivate?: boolean | undefined;
|
|
790
790
|
}[] | undefined;
|
|
@@ -794,18 +794,18 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
794
794
|
createdAt?: string | undefined;
|
|
795
795
|
updatedAt?: string | undefined;
|
|
796
796
|
primaryEmailAddress?: {
|
|
797
|
-
type: "Personal" | "Work" | "Other";
|
|
798
797
|
value: string;
|
|
798
|
+
type: "Personal" | "Work" | "Other";
|
|
799
799
|
isPrimary: boolean;
|
|
800
800
|
} | null | undefined;
|
|
801
801
|
primaryPhoneNumber?: {
|
|
802
|
-
type: "Personal" | "Work" | "Other";
|
|
803
802
|
value: string;
|
|
803
|
+
type: "Personal" | "Work" | "Other";
|
|
804
804
|
isPrimary: boolean;
|
|
805
805
|
} | null | undefined;
|
|
806
806
|
customFields?: {
|
|
807
|
-
title: string;
|
|
808
807
|
id: string;
|
|
808
|
+
title: string;
|
|
809
809
|
value?: unknown;
|
|
810
810
|
isPrivate?: boolean | undefined;
|
|
811
811
|
}[] | undefined;
|
|
@@ -821,18 +821,18 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
821
821
|
createdAt?: string | undefined;
|
|
822
822
|
updatedAt?: string | undefined;
|
|
823
823
|
primaryEmailAddress?: {
|
|
824
|
-
type: "Personal" | "Work" | "Other";
|
|
825
824
|
value: string;
|
|
825
|
+
type: "Personal" | "Work" | "Other";
|
|
826
826
|
isPrimary: boolean;
|
|
827
827
|
} | null | undefined;
|
|
828
828
|
primaryPhoneNumber?: {
|
|
829
|
-
type: "Personal" | "Work" | "Other";
|
|
830
829
|
value: string;
|
|
830
|
+
type: "Personal" | "Work" | "Other";
|
|
831
831
|
isPrimary: boolean;
|
|
832
832
|
} | null | undefined;
|
|
833
833
|
customFields?: {
|
|
834
|
-
title: string;
|
|
835
834
|
id: string;
|
|
835
|
+
title: string;
|
|
836
836
|
value?: unknown;
|
|
837
837
|
isPrivate?: boolean | undefined;
|
|
838
838
|
}[] | undefined;
|
|
@@ -847,18 +847,18 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
847
847
|
createdAt?: string | undefined;
|
|
848
848
|
updatedAt?: string | undefined;
|
|
849
849
|
primaryEmailAddress?: {
|
|
850
|
-
type: "Personal" | "Work" | "Other";
|
|
851
850
|
value: string;
|
|
851
|
+
type: "Personal" | "Work" | "Other";
|
|
852
852
|
isPrimary: boolean;
|
|
853
853
|
} | null | undefined;
|
|
854
854
|
primaryPhoneNumber?: {
|
|
855
|
-
type: "Personal" | "Work" | "Other";
|
|
856
855
|
value: string;
|
|
856
|
+
type: "Personal" | "Work" | "Other";
|
|
857
857
|
isPrimary: boolean;
|
|
858
858
|
} | null | undefined;
|
|
859
859
|
customFields?: {
|
|
860
|
-
title: string;
|
|
861
860
|
id: string;
|
|
861
|
+
title: string;
|
|
862
862
|
value?: unknown;
|
|
863
863
|
isPrivate?: boolean | undefined;
|
|
864
864
|
}[] | undefined;
|
|
@@ -876,12 +876,12 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
876
876
|
type: import("zod").ZodEnum<["Personal", "Work", "Other"]>;
|
|
877
877
|
isPrimary: import("zod").ZodBoolean;
|
|
878
878
|
}, "strip", import("zod").ZodTypeAny, {
|
|
879
|
-
type: "Personal" | "Work" | "Other";
|
|
880
879
|
value: string;
|
|
880
|
+
type: "Personal" | "Work" | "Other";
|
|
881
881
|
isPrimary: boolean;
|
|
882
882
|
}, {
|
|
883
|
-
type: "Personal" | "Work" | "Other";
|
|
884
883
|
value: string;
|
|
884
|
+
type: "Personal" | "Work" | "Other";
|
|
885
885
|
isPrimary: boolean;
|
|
886
886
|
}>>>;
|
|
887
887
|
primaryPhoneNumber: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
@@ -889,12 +889,12 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
889
889
|
type: import("zod").ZodEnum<["Personal", "Work", "Other"]>;
|
|
890
890
|
isPrimary: import("zod").ZodBoolean;
|
|
891
891
|
}, "strip", import("zod").ZodTypeAny, {
|
|
892
|
-
type: "Personal" | "Work" | "Other";
|
|
893
892
|
value: string;
|
|
893
|
+
type: "Personal" | "Work" | "Other";
|
|
894
894
|
isPrimary: boolean;
|
|
895
895
|
}, {
|
|
896
|
-
type: "Personal" | "Work" | "Other";
|
|
897
896
|
value: string;
|
|
897
|
+
type: "Personal" | "Work" | "Other";
|
|
898
898
|
isPrimary: boolean;
|
|
899
899
|
}>>>;
|
|
900
900
|
customFields: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -903,13 +903,13 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
903
903
|
value: import("zod").ZodUnknown;
|
|
904
904
|
isPrivate: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
905
905
|
}, "strip", import("zod").ZodTypeAny, {
|
|
906
|
-
title: string;
|
|
907
906
|
id: string;
|
|
907
|
+
title: string;
|
|
908
908
|
value?: unknown;
|
|
909
909
|
isPrivate?: boolean | undefined;
|
|
910
910
|
}, {
|
|
911
|
-
title: string;
|
|
912
911
|
id: string;
|
|
912
|
+
title: string;
|
|
913
913
|
value?: unknown;
|
|
914
914
|
isPrivate?: boolean | undefined;
|
|
915
915
|
}>, "many">>;
|
|
@@ -919,18 +919,18 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
919
919
|
createdAt?: string | undefined;
|
|
920
920
|
updatedAt?: string | undefined;
|
|
921
921
|
primaryEmailAddress?: {
|
|
922
|
-
type: "Personal" | "Work" | "Other";
|
|
923
922
|
value: string;
|
|
923
|
+
type: "Personal" | "Work" | "Other";
|
|
924
924
|
isPrimary: boolean;
|
|
925
925
|
} | null | undefined;
|
|
926
926
|
primaryPhoneNumber?: {
|
|
927
|
-
type: "Personal" | "Work" | "Other";
|
|
928
927
|
value: string;
|
|
928
|
+
type: "Personal" | "Work" | "Other";
|
|
929
929
|
isPrimary: boolean;
|
|
930
930
|
} | null | undefined;
|
|
931
931
|
customFields?: {
|
|
932
|
-
title: string;
|
|
933
932
|
id: string;
|
|
933
|
+
title: string;
|
|
934
934
|
value?: unknown;
|
|
935
935
|
isPrivate?: boolean | undefined;
|
|
936
936
|
}[] | undefined;
|
|
@@ -940,18 +940,18 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
940
940
|
createdAt?: string | undefined;
|
|
941
941
|
updatedAt?: string | undefined;
|
|
942
942
|
primaryEmailAddress?: {
|
|
943
|
-
type: "Personal" | "Work" | "Other";
|
|
944
943
|
value: string;
|
|
944
|
+
type: "Personal" | "Work" | "Other";
|
|
945
945
|
isPrimary: boolean;
|
|
946
946
|
} | null | undefined;
|
|
947
947
|
primaryPhoneNumber?: {
|
|
948
|
-
type: "Personal" | "Work" | "Other";
|
|
949
948
|
value: string;
|
|
949
|
+
type: "Personal" | "Work" | "Other";
|
|
950
950
|
isPrimary: boolean;
|
|
951
951
|
} | null | undefined;
|
|
952
952
|
customFields?: {
|
|
953
|
-
title: string;
|
|
954
953
|
id: string;
|
|
954
|
+
title: string;
|
|
955
955
|
value?: unknown;
|
|
956
956
|
isPrivate?: boolean | undefined;
|
|
957
957
|
}[] | undefined;
|
|
@@ -967,18 +967,18 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
967
967
|
createdAt?: string | undefined;
|
|
968
968
|
updatedAt?: string | undefined;
|
|
969
969
|
primaryEmailAddress?: {
|
|
970
|
-
type: "Personal" | "Work" | "Other";
|
|
971
970
|
value: string;
|
|
971
|
+
type: "Personal" | "Work" | "Other";
|
|
972
972
|
isPrimary: boolean;
|
|
973
973
|
} | null | undefined;
|
|
974
974
|
primaryPhoneNumber?: {
|
|
975
|
-
type: "Personal" | "Work" | "Other";
|
|
976
975
|
value: string;
|
|
976
|
+
type: "Personal" | "Work" | "Other";
|
|
977
977
|
isPrimary: boolean;
|
|
978
978
|
} | null | undefined;
|
|
979
979
|
customFields?: {
|
|
980
|
-
title: string;
|
|
981
980
|
id: string;
|
|
981
|
+
title: string;
|
|
982
982
|
value?: unknown;
|
|
983
983
|
isPrivate?: boolean | undefined;
|
|
984
984
|
}[] | undefined;
|
|
@@ -993,18 +993,18 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
993
993
|
createdAt?: string | undefined;
|
|
994
994
|
updatedAt?: string | undefined;
|
|
995
995
|
primaryEmailAddress?: {
|
|
996
|
-
type: "Personal" | "Work" | "Other";
|
|
997
996
|
value: string;
|
|
997
|
+
type: "Personal" | "Work" | "Other";
|
|
998
998
|
isPrimary: boolean;
|
|
999
999
|
} | null | undefined;
|
|
1000
1000
|
primaryPhoneNumber?: {
|
|
1001
|
-
type: "Personal" | "Work" | "Other";
|
|
1002
1001
|
value: string;
|
|
1002
|
+
type: "Personal" | "Work" | "Other";
|
|
1003
1003
|
isPrimary: boolean;
|
|
1004
1004
|
} | null | undefined;
|
|
1005
1005
|
customFields?: {
|
|
1006
|
-
title: string;
|
|
1007
1006
|
id: string;
|
|
1007
|
+
title: string;
|
|
1008
1008
|
value?: unknown;
|
|
1009
1009
|
isPrivate?: boolean | undefined;
|
|
1010
1010
|
}[] | undefined;
|
|
@@ -1022,12 +1022,12 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
1022
1022
|
type: import("zod").ZodEnum<["Personal", "Work", "Other"]>;
|
|
1023
1023
|
isPrimary: import("zod").ZodBoolean;
|
|
1024
1024
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1025
|
-
type: "Personal" | "Work" | "Other";
|
|
1026
1025
|
value: string;
|
|
1026
|
+
type: "Personal" | "Work" | "Other";
|
|
1027
1027
|
isPrimary: boolean;
|
|
1028
1028
|
}, {
|
|
1029
|
-
type: "Personal" | "Work" | "Other";
|
|
1030
1029
|
value: string;
|
|
1030
|
+
type: "Personal" | "Work" | "Other";
|
|
1031
1031
|
isPrimary: boolean;
|
|
1032
1032
|
}>>>;
|
|
1033
1033
|
primaryPhoneNumber: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
@@ -1035,12 +1035,12 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
1035
1035
|
type: import("zod").ZodEnum<["Personal", "Work", "Other"]>;
|
|
1036
1036
|
isPrimary: import("zod").ZodBoolean;
|
|
1037
1037
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1038
|
-
type: "Personal" | "Work" | "Other";
|
|
1039
1038
|
value: string;
|
|
1039
|
+
type: "Personal" | "Work" | "Other";
|
|
1040
1040
|
isPrimary: boolean;
|
|
1041
1041
|
}, {
|
|
1042
|
-
type: "Personal" | "Work" | "Other";
|
|
1043
1042
|
value: string;
|
|
1043
|
+
type: "Personal" | "Work" | "Other";
|
|
1044
1044
|
isPrimary: boolean;
|
|
1045
1045
|
}>>>;
|
|
1046
1046
|
customFields: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -1049,13 +1049,13 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
1049
1049
|
value: import("zod").ZodUnknown;
|
|
1050
1050
|
isPrivate: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1051
1051
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1052
|
-
title: string;
|
|
1053
1052
|
id: string;
|
|
1053
|
+
title: string;
|
|
1054
1054
|
value?: unknown;
|
|
1055
1055
|
isPrivate?: boolean | undefined;
|
|
1056
1056
|
}, {
|
|
1057
|
-
title: string;
|
|
1058
1057
|
id: string;
|
|
1058
|
+
title: string;
|
|
1059
1059
|
value?: unknown;
|
|
1060
1060
|
isPrivate?: boolean | undefined;
|
|
1061
1061
|
}>, "many">>;
|
|
@@ -1065,18 +1065,18 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
1065
1065
|
createdAt?: string | undefined;
|
|
1066
1066
|
updatedAt?: string | undefined;
|
|
1067
1067
|
primaryEmailAddress?: {
|
|
1068
|
-
type: "Personal" | "Work" | "Other";
|
|
1069
1068
|
value: string;
|
|
1069
|
+
type: "Personal" | "Work" | "Other";
|
|
1070
1070
|
isPrimary: boolean;
|
|
1071
1071
|
} | null | undefined;
|
|
1072
1072
|
primaryPhoneNumber?: {
|
|
1073
|
-
type: "Personal" | "Work" | "Other";
|
|
1074
1073
|
value: string;
|
|
1074
|
+
type: "Personal" | "Work" | "Other";
|
|
1075
1075
|
isPrimary: boolean;
|
|
1076
1076
|
} | null | undefined;
|
|
1077
1077
|
customFields?: {
|
|
1078
|
-
title: string;
|
|
1079
1078
|
id: string;
|
|
1079
|
+
title: string;
|
|
1080
1080
|
value?: unknown;
|
|
1081
1081
|
isPrivate?: boolean | undefined;
|
|
1082
1082
|
}[] | undefined;
|
|
@@ -1086,18 +1086,18 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
1086
1086
|
createdAt?: string | undefined;
|
|
1087
1087
|
updatedAt?: string | undefined;
|
|
1088
1088
|
primaryEmailAddress?: {
|
|
1089
|
-
type: "Personal" | "Work" | "Other";
|
|
1090
1089
|
value: string;
|
|
1090
|
+
type: "Personal" | "Work" | "Other";
|
|
1091
1091
|
isPrimary: boolean;
|
|
1092
1092
|
} | null | undefined;
|
|
1093
1093
|
primaryPhoneNumber?: {
|
|
1094
|
-
type: "Personal" | "Work" | "Other";
|
|
1095
1094
|
value: string;
|
|
1095
|
+
type: "Personal" | "Work" | "Other";
|
|
1096
1096
|
isPrimary: boolean;
|
|
1097
1097
|
} | null | undefined;
|
|
1098
1098
|
customFields?: {
|
|
1099
|
-
title: string;
|
|
1100
1099
|
id: string;
|
|
1100
|
+
title: string;
|
|
1101
1101
|
value?: unknown;
|
|
1102
1102
|
isPrivate?: boolean | undefined;
|
|
1103
1103
|
}[] | undefined;
|
|
@@ -1113,18 +1113,18 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
1113
1113
|
createdAt?: string | undefined;
|
|
1114
1114
|
updatedAt?: string | undefined;
|
|
1115
1115
|
primaryEmailAddress?: {
|
|
1116
|
-
type: "Personal" | "Work" | "Other";
|
|
1117
1116
|
value: string;
|
|
1117
|
+
type: "Personal" | "Work" | "Other";
|
|
1118
1118
|
isPrimary: boolean;
|
|
1119
1119
|
} | null | undefined;
|
|
1120
1120
|
primaryPhoneNumber?: {
|
|
1121
|
-
type: "Personal" | "Work" | "Other";
|
|
1122
1121
|
value: string;
|
|
1122
|
+
type: "Personal" | "Work" | "Other";
|
|
1123
1123
|
isPrimary: boolean;
|
|
1124
1124
|
} | null | undefined;
|
|
1125
1125
|
customFields?: {
|
|
1126
|
-
title: string;
|
|
1127
1126
|
id: string;
|
|
1127
|
+
title: string;
|
|
1128
1128
|
value?: unknown;
|
|
1129
1129
|
isPrivate?: boolean | undefined;
|
|
1130
1130
|
}[] | undefined;
|
|
@@ -1139,18 +1139,18 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
1139
1139
|
createdAt?: string | undefined;
|
|
1140
1140
|
updatedAt?: string | undefined;
|
|
1141
1141
|
primaryEmailAddress?: {
|
|
1142
|
-
type: "Personal" | "Work" | "Other";
|
|
1143
1142
|
value: string;
|
|
1143
|
+
type: "Personal" | "Work" | "Other";
|
|
1144
1144
|
isPrimary: boolean;
|
|
1145
1145
|
} | null | undefined;
|
|
1146
1146
|
primaryPhoneNumber?: {
|
|
1147
|
-
type: "Personal" | "Work" | "Other";
|
|
1148
1147
|
value: string;
|
|
1148
|
+
type: "Personal" | "Work" | "Other";
|
|
1149
1149
|
isPrimary: boolean;
|
|
1150
1150
|
} | null | undefined;
|
|
1151
1151
|
customFields?: {
|
|
1152
|
-
title: string;
|
|
1153
1152
|
id: string;
|
|
1153
|
+
title: string;
|
|
1154
1154
|
value?: unknown;
|
|
1155
1155
|
isPrivate?: boolean | undefined;
|
|
1156
1156
|
}[] | undefined;
|
|
@@ -1163,12 +1163,12 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
1163
1163
|
title: import("zod").ZodString;
|
|
1164
1164
|
isArchived: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1165
1165
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1166
|
-
title: string;
|
|
1167
1166
|
id: string;
|
|
1167
|
+
title: string;
|
|
1168
1168
|
isArchived?: boolean | undefined;
|
|
1169
1169
|
}, {
|
|
1170
|
-
title: string;
|
|
1171
1170
|
id: string;
|
|
1171
|
+
title: string;
|
|
1172
1172
|
isArchived?: boolean | undefined;
|
|
1173
1173
|
}>, "many">>;
|
|
1174
1174
|
error: import("zod").ZodString;
|
|
@@ -1177,8 +1177,8 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
1177
1177
|
success: boolean;
|
|
1178
1178
|
error: string;
|
|
1179
1179
|
tags?: {
|
|
1180
|
-
title: string;
|
|
1181
1180
|
id: string;
|
|
1181
|
+
title: string;
|
|
1182
1182
|
isArchived?: boolean | undefined;
|
|
1183
1183
|
}[] | undefined;
|
|
1184
1184
|
}, {
|
|
@@ -1186,8 +1186,8 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
1186
1186
|
success: boolean;
|
|
1187
1187
|
error: string;
|
|
1188
1188
|
tags?: {
|
|
1189
|
-
title: string;
|
|
1190
1189
|
id: string;
|
|
1190
|
+
title: string;
|
|
1191
1191
|
isArchived?: boolean | undefined;
|
|
1192
1192
|
}[] | undefined;
|
|
1193
1193
|
}>, import("zod").ZodObject<{
|
|
@@ -1198,12 +1198,12 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
1198
1198
|
title: import("zod").ZodString;
|
|
1199
1199
|
isArchived: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1200
1200
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1201
|
-
title: string;
|
|
1202
1201
|
id: string;
|
|
1202
|
+
title: string;
|
|
1203
1203
|
isArchived?: boolean | undefined;
|
|
1204
1204
|
}, {
|
|
1205
|
-
title: string;
|
|
1206
1205
|
id: string;
|
|
1206
|
+
title: string;
|
|
1207
1207
|
isArchived?: boolean | undefined;
|
|
1208
1208
|
}>>;
|
|
1209
1209
|
error: import("zod").ZodString;
|
|
@@ -1212,8 +1212,8 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
1212
1212
|
success: boolean;
|
|
1213
1213
|
error: string;
|
|
1214
1214
|
tag?: {
|
|
1215
|
-
title: string;
|
|
1216
1215
|
id: string;
|
|
1216
|
+
title: string;
|
|
1217
1217
|
isArchived?: boolean | undefined;
|
|
1218
1218
|
} | undefined;
|
|
1219
1219
|
}, {
|
|
@@ -1221,8 +1221,8 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
1221
1221
|
success: boolean;
|
|
1222
1222
|
error: string;
|
|
1223
1223
|
tag?: {
|
|
1224
|
-
title: string;
|
|
1225
1224
|
id: string;
|
|
1225
|
+
title: string;
|
|
1226
1226
|
isArchived?: boolean | undefined;
|
|
1227
1227
|
} | undefined;
|
|
1228
1228
|
}>, import("zod").ZodObject<{
|
|
@@ -1249,8 +1249,8 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
1249
1249
|
isArchived: boolean;
|
|
1250
1250
|
}>, "many">>;
|
|
1251
1251
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1252
|
-
title: string;
|
|
1253
1252
|
id: string;
|
|
1253
|
+
title: string;
|
|
1254
1254
|
isArchived: boolean;
|
|
1255
1255
|
isPrivate: boolean;
|
|
1256
1256
|
objectType: string;
|
|
@@ -1261,8 +1261,8 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
1261
1261
|
isArchived: boolean;
|
|
1262
1262
|
}[] | undefined;
|
|
1263
1263
|
}, {
|
|
1264
|
-
title: string;
|
|
1265
1264
|
id: string;
|
|
1265
|
+
title: string;
|
|
1266
1266
|
isArchived: boolean;
|
|
1267
1267
|
isPrivate: boolean;
|
|
1268
1268
|
objectType: string;
|
|
@@ -1285,8 +1285,8 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
1285
1285
|
sync_token?: string | undefined;
|
|
1286
1286
|
more_data_available?: boolean | undefined;
|
|
1287
1287
|
custom_fields?: {
|
|
1288
|
-
title: string;
|
|
1289
1288
|
id: string;
|
|
1289
|
+
title: string;
|
|
1290
1290
|
isArchived: boolean;
|
|
1291
1291
|
isPrivate: boolean;
|
|
1292
1292
|
objectType: string;
|
|
@@ -1305,8 +1305,8 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
1305
1305
|
sync_token?: string | undefined;
|
|
1306
1306
|
more_data_available?: boolean | undefined;
|
|
1307
1307
|
custom_fields?: {
|
|
1308
|
-
title: string;
|
|
1309
1308
|
id: string;
|
|
1309
|
+
title: string;
|
|
1310
1310
|
isArchived: boolean;
|
|
1311
1311
|
isPrivate: boolean;
|
|
1312
1312
|
objectType: string;
|