@bubblelab/bubble-core 0.1.23 → 0.1.25
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 +55 -55
- package/dist/bubbles/service-bubble/agi-inc.d.ts +4 -4
- package/dist/bubbles/service-bubble/ai-agent.d.ts +8 -8
- package/dist/bubbles/service-bubble/airtable.d.ts +80 -80
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +9 -9
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +382 -382
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/crustdata/crustdata.js +7 -6
- package/dist/bubbles/service-bubble/crustdata/crustdata.js.map +1 -1
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +432 -432
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.js +15 -9
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.js.map +1 -1
- package/dist/bubbles/service-bubble/firecrawl.d.ts +36 -36
- package/dist/bubbles/service-bubble/followupboss.d.ts +40 -40
- package/dist/bubbles/service-bubble/github.d.ts +52 -52
- package/dist/bubbles/service-bubble/gmail.d.ts +114 -114
- package/dist/bubbles/service-bubble/google-calendar.d.ts +16 -16
- package/dist/bubbles/service-bubble/google-drive.d.ts +14 -14
- package/dist/bubbles/service-bubble/google-drive.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/google-drive.js +22 -1
- package/dist/bubbles/service-bubble/google-drive.js.map +1 -1
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +8 -8
- package/dist/bubbles/service-bubble/hello-world.d.ts +2 -2
- package/dist/bubbles/service-bubble/http.d.ts +8 -8
- package/dist/bubbles/service-bubble/notion/notion.d.ts +444 -444
- package/dist/bubbles/service-bubble/resend.d.ts +8 -8
- package/dist/bubbles/service-bubble/slack/slack.d.ts +132 -132
- package/dist/bubbles/service-bubble/storage.d.ts +20 -20
- package/dist/bubbles/service-bubble/telegram.d.ts +148 -148
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +101 -101
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts.map +1 -1
- package/dist/bubbles/tool-bubble/company-enrichment-tool.js +29 -8
- package/dist/bubbles/tool-bubble/company-enrichment-tool.js.map +1 -1
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +20 -20
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +44 -44
- package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +119 -119
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts.map +1 -1
- package/dist/bubbles/tool-bubble/people-search-tool.js +31 -10
- package/dist/bubbles/tool-bubble/people-search-tool.js.map +1 -1
- package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +18 -18
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +4 -4
- 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 +22 -22
- package/dist/bubbles.json +7 -7
- package/package.json +2 -2
|
@@ -32,13 +32,13 @@ declare const FUBParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
32
32
|
fields: z.ZodOptional<z.ZodString>;
|
|
33
33
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
34
34
|
}, "strip", z.ZodTypeAny, {
|
|
35
|
-
operation: "get_person";
|
|
36
35
|
person_id: number;
|
|
36
|
+
operation: "get_person";
|
|
37
37
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
38
38
|
fields?: string | undefined;
|
|
39
39
|
}, {
|
|
40
|
-
operation: "get_person";
|
|
41
40
|
person_id: number;
|
|
41
|
+
operation: "get_person";
|
|
42
42
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
43
43
|
fields?: string | undefined;
|
|
44
44
|
}>, z.ZodObject<{
|
|
@@ -78,12 +78,12 @@ declare const FUBParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
78
78
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
79
79
|
}, "strip", z.ZodTypeAny, {
|
|
80
80
|
operation: "create_person";
|
|
81
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
82
81
|
emails?: {
|
|
83
82
|
value: string;
|
|
84
83
|
type?: string | undefined;
|
|
85
84
|
isPrimary?: boolean | undefined;
|
|
86
85
|
}[] | undefined;
|
|
86
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
87
87
|
tags?: string[] | undefined;
|
|
88
88
|
source?: string | undefined;
|
|
89
89
|
firstName?: string | undefined;
|
|
@@ -97,12 +97,12 @@ declare const FUBParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
97
97
|
assignedTo?: number | undefined;
|
|
98
98
|
}, {
|
|
99
99
|
operation: "create_person";
|
|
100
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
101
100
|
emails?: {
|
|
102
101
|
value: string;
|
|
103
102
|
type?: string | undefined;
|
|
104
103
|
isPrimary?: boolean | undefined;
|
|
105
104
|
}[] | undefined;
|
|
105
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
106
106
|
tags?: string[] | undefined;
|
|
107
107
|
source?: string | undefined;
|
|
108
108
|
firstName?: string | undefined;
|
|
@@ -151,14 +151,14 @@ declare const FUBParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
151
151
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
152
152
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
153
153
|
}, "strip", z.ZodTypeAny, {
|
|
154
|
-
operation: "update_person";
|
|
155
154
|
person_id: number;
|
|
156
|
-
|
|
155
|
+
operation: "update_person";
|
|
157
156
|
emails?: {
|
|
158
157
|
value: string;
|
|
159
158
|
type?: string | undefined;
|
|
160
159
|
isPrimary?: boolean | undefined;
|
|
161
160
|
}[] | undefined;
|
|
161
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
162
162
|
tags?: string[] | undefined;
|
|
163
163
|
source?: string | undefined;
|
|
164
164
|
firstName?: string | undefined;
|
|
@@ -171,14 +171,14 @@ declare const FUBParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
171
171
|
stage?: string | undefined;
|
|
172
172
|
assignedTo?: number | undefined;
|
|
173
173
|
}, {
|
|
174
|
-
operation: "update_person";
|
|
175
174
|
person_id: number;
|
|
176
|
-
|
|
175
|
+
operation: "update_person";
|
|
177
176
|
emails?: {
|
|
178
177
|
value: string;
|
|
179
178
|
type?: string | undefined;
|
|
180
179
|
isPrimary?: boolean | undefined;
|
|
181
180
|
}[] | undefined;
|
|
181
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
182
182
|
tags?: string[] | undefined;
|
|
183
183
|
source?: string | undefined;
|
|
184
184
|
firstName?: string | undefined;
|
|
@@ -195,12 +195,12 @@ declare const FUBParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
195
195
|
person_id: z.ZodNumber;
|
|
196
196
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
197
197
|
}, "strip", z.ZodTypeAny, {
|
|
198
|
-
operation: "delete_person";
|
|
199
198
|
person_id: number;
|
|
199
|
+
operation: "delete_person";
|
|
200
200
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
201
201
|
}, {
|
|
202
|
-
operation: "delete_person";
|
|
203
202
|
person_id: number;
|
|
203
|
+
operation: "delete_person";
|
|
204
204
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
205
205
|
}>, z.ZodObject<{
|
|
206
206
|
operation: z.ZodLiteral<"list_tasks">;
|
|
@@ -241,16 +241,16 @@ declare const FUBParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
241
241
|
assignedTo: z.ZodOptional<z.ZodNumber>;
|
|
242
242
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
243
243
|
}, "strip", z.ZodTypeAny, {
|
|
244
|
-
operation: "create_task";
|
|
245
244
|
name: string;
|
|
245
|
+
operation: "create_task";
|
|
246
246
|
description?: string | undefined;
|
|
247
247
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
248
248
|
assignedTo?: number | undefined;
|
|
249
249
|
personId?: number | undefined;
|
|
250
250
|
dueDate?: string | undefined;
|
|
251
251
|
}, {
|
|
252
|
-
operation: "create_task";
|
|
253
252
|
name: string;
|
|
253
|
+
operation: "create_task";
|
|
254
254
|
description?: string | undefined;
|
|
255
255
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
256
256
|
assignedTo?: number | undefined;
|
|
@@ -268,8 +268,8 @@ declare const FUBParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
268
268
|
}, "strip", z.ZodTypeAny, {
|
|
269
269
|
operation: "update_task";
|
|
270
270
|
task_id: number;
|
|
271
|
-
description?: string | undefined;
|
|
272
271
|
name?: string | undefined;
|
|
272
|
+
description?: string | undefined;
|
|
273
273
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
274
274
|
assignedTo?: number | undefined;
|
|
275
275
|
dueDate?: string | undefined;
|
|
@@ -277,8 +277,8 @@ declare const FUBParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
277
277
|
}, {
|
|
278
278
|
operation: "update_task";
|
|
279
279
|
task_id: number;
|
|
280
|
-
description?: string | undefined;
|
|
281
280
|
name?: string | undefined;
|
|
281
|
+
description?: string | undefined;
|
|
282
282
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
283
283
|
assignedTo?: number | undefined;
|
|
284
284
|
dueDate?: string | undefined;
|
|
@@ -515,8 +515,8 @@ declare const FUBParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
515
515
|
}>;
|
|
516
516
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
517
517
|
}, "strip", z.ZodTypeAny, {
|
|
518
|
-
operation: "create_event";
|
|
519
518
|
type: string;
|
|
519
|
+
operation: "create_event";
|
|
520
520
|
person: {
|
|
521
521
|
emails?: {
|
|
522
522
|
value: string;
|
|
@@ -532,8 +532,8 @@ declare const FUBParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
532
532
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
533
533
|
source?: string | undefined;
|
|
534
534
|
}, {
|
|
535
|
-
operation: "create_event";
|
|
536
535
|
type: string;
|
|
536
|
+
operation: "create_event";
|
|
537
537
|
person: {
|
|
538
538
|
emails?: {
|
|
539
539
|
value: string;
|
|
@@ -614,19 +614,19 @@ declare const FUBParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
614
614
|
location: z.ZodOptional<z.ZodString>;
|
|
615
615
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
616
616
|
}, "strip", z.ZodTypeAny, {
|
|
617
|
-
operation: "create_appointment";
|
|
618
617
|
title: string;
|
|
618
|
+
operation: "create_appointment";
|
|
619
619
|
startTime: string;
|
|
620
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
621
620
|
location?: string | undefined;
|
|
621
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
622
622
|
personId?: number | undefined;
|
|
623
623
|
endTime?: string | undefined;
|
|
624
624
|
}, {
|
|
625
|
-
operation: "create_appointment";
|
|
626
625
|
title: string;
|
|
626
|
+
operation: "create_appointment";
|
|
627
627
|
startTime: string;
|
|
628
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
629
628
|
location?: string | undefined;
|
|
629
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
630
630
|
personId?: number | undefined;
|
|
631
631
|
endTime?: string | undefined;
|
|
632
632
|
}>, z.ZodObject<{
|
|
@@ -3426,13 +3426,13 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
3426
3426
|
fields: z.ZodOptional<z.ZodString>;
|
|
3427
3427
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
3428
3428
|
}, "strip", z.ZodTypeAny, {
|
|
3429
|
-
operation: "get_person";
|
|
3430
3429
|
person_id: number;
|
|
3430
|
+
operation: "get_person";
|
|
3431
3431
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
3432
3432
|
fields?: string | undefined;
|
|
3433
3433
|
}, {
|
|
3434
|
-
operation: "get_person";
|
|
3435
3434
|
person_id: number;
|
|
3435
|
+
operation: "get_person";
|
|
3436
3436
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
3437
3437
|
fields?: string | undefined;
|
|
3438
3438
|
}>, z.ZodObject<{
|
|
@@ -3472,12 +3472,12 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
3472
3472
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
3473
3473
|
}, "strip", z.ZodTypeAny, {
|
|
3474
3474
|
operation: "create_person";
|
|
3475
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
3476
3475
|
emails?: {
|
|
3477
3476
|
value: string;
|
|
3478
3477
|
type?: string | undefined;
|
|
3479
3478
|
isPrimary?: boolean | undefined;
|
|
3480
3479
|
}[] | undefined;
|
|
3480
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
3481
3481
|
tags?: string[] | undefined;
|
|
3482
3482
|
source?: string | undefined;
|
|
3483
3483
|
firstName?: string | undefined;
|
|
@@ -3491,12 +3491,12 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
3491
3491
|
assignedTo?: number | undefined;
|
|
3492
3492
|
}, {
|
|
3493
3493
|
operation: "create_person";
|
|
3494
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
3495
3494
|
emails?: {
|
|
3496
3495
|
value: string;
|
|
3497
3496
|
type?: string | undefined;
|
|
3498
3497
|
isPrimary?: boolean | undefined;
|
|
3499
3498
|
}[] | undefined;
|
|
3499
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
3500
3500
|
tags?: string[] | undefined;
|
|
3501
3501
|
source?: string | undefined;
|
|
3502
3502
|
firstName?: string | undefined;
|
|
@@ -3545,14 +3545,14 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
3545
3545
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3546
3546
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
3547
3547
|
}, "strip", z.ZodTypeAny, {
|
|
3548
|
-
operation: "update_person";
|
|
3549
3548
|
person_id: number;
|
|
3550
|
-
|
|
3549
|
+
operation: "update_person";
|
|
3551
3550
|
emails?: {
|
|
3552
3551
|
value: string;
|
|
3553
3552
|
type?: string | undefined;
|
|
3554
3553
|
isPrimary?: boolean | undefined;
|
|
3555
3554
|
}[] | undefined;
|
|
3555
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
3556
3556
|
tags?: string[] | undefined;
|
|
3557
3557
|
source?: string | undefined;
|
|
3558
3558
|
firstName?: string | undefined;
|
|
@@ -3565,14 +3565,14 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
3565
3565
|
stage?: string | undefined;
|
|
3566
3566
|
assignedTo?: number | undefined;
|
|
3567
3567
|
}, {
|
|
3568
|
-
operation: "update_person";
|
|
3569
3568
|
person_id: number;
|
|
3570
|
-
|
|
3569
|
+
operation: "update_person";
|
|
3571
3570
|
emails?: {
|
|
3572
3571
|
value: string;
|
|
3573
3572
|
type?: string | undefined;
|
|
3574
3573
|
isPrimary?: boolean | undefined;
|
|
3575
3574
|
}[] | undefined;
|
|
3575
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
3576
3576
|
tags?: string[] | undefined;
|
|
3577
3577
|
source?: string | undefined;
|
|
3578
3578
|
firstName?: string | undefined;
|
|
@@ -3589,12 +3589,12 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
3589
3589
|
person_id: z.ZodNumber;
|
|
3590
3590
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
3591
3591
|
}, "strip", z.ZodTypeAny, {
|
|
3592
|
-
operation: "delete_person";
|
|
3593
3592
|
person_id: number;
|
|
3593
|
+
operation: "delete_person";
|
|
3594
3594
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
3595
3595
|
}, {
|
|
3596
|
-
operation: "delete_person";
|
|
3597
3596
|
person_id: number;
|
|
3597
|
+
operation: "delete_person";
|
|
3598
3598
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
3599
3599
|
}>, z.ZodObject<{
|
|
3600
3600
|
operation: z.ZodLiteral<"list_tasks">;
|
|
@@ -3635,16 +3635,16 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
3635
3635
|
assignedTo: z.ZodOptional<z.ZodNumber>;
|
|
3636
3636
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
3637
3637
|
}, "strip", z.ZodTypeAny, {
|
|
3638
|
-
operation: "create_task";
|
|
3639
3638
|
name: string;
|
|
3639
|
+
operation: "create_task";
|
|
3640
3640
|
description?: string | undefined;
|
|
3641
3641
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
3642
3642
|
assignedTo?: number | undefined;
|
|
3643
3643
|
personId?: number | undefined;
|
|
3644
3644
|
dueDate?: string | undefined;
|
|
3645
3645
|
}, {
|
|
3646
|
-
operation: "create_task";
|
|
3647
3646
|
name: string;
|
|
3647
|
+
operation: "create_task";
|
|
3648
3648
|
description?: string | undefined;
|
|
3649
3649
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
3650
3650
|
assignedTo?: number | undefined;
|
|
@@ -3662,8 +3662,8 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
3662
3662
|
}, "strip", z.ZodTypeAny, {
|
|
3663
3663
|
operation: "update_task";
|
|
3664
3664
|
task_id: number;
|
|
3665
|
-
description?: string | undefined;
|
|
3666
3665
|
name?: string | undefined;
|
|
3666
|
+
description?: string | undefined;
|
|
3667
3667
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
3668
3668
|
assignedTo?: number | undefined;
|
|
3669
3669
|
dueDate?: string | undefined;
|
|
@@ -3671,8 +3671,8 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
3671
3671
|
}, {
|
|
3672
3672
|
operation: "update_task";
|
|
3673
3673
|
task_id: number;
|
|
3674
|
-
description?: string | undefined;
|
|
3675
3674
|
name?: string | undefined;
|
|
3675
|
+
description?: string | undefined;
|
|
3676
3676
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
3677
3677
|
assignedTo?: number | undefined;
|
|
3678
3678
|
dueDate?: string | undefined;
|
|
@@ -3909,8 +3909,8 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
3909
3909
|
}>;
|
|
3910
3910
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
3911
3911
|
}, "strip", z.ZodTypeAny, {
|
|
3912
|
-
operation: "create_event";
|
|
3913
3912
|
type: string;
|
|
3913
|
+
operation: "create_event";
|
|
3914
3914
|
person: {
|
|
3915
3915
|
emails?: {
|
|
3916
3916
|
value: string;
|
|
@@ -3926,8 +3926,8 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
3926
3926
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
3927
3927
|
source?: string | undefined;
|
|
3928
3928
|
}, {
|
|
3929
|
-
operation: "create_event";
|
|
3930
3929
|
type: string;
|
|
3930
|
+
operation: "create_event";
|
|
3931
3931
|
person: {
|
|
3932
3932
|
emails?: {
|
|
3933
3933
|
value: string;
|
|
@@ -4008,19 +4008,19 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
4008
4008
|
location: z.ZodOptional<z.ZodString>;
|
|
4009
4009
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
4010
4010
|
}, "strip", z.ZodTypeAny, {
|
|
4011
|
-
operation: "create_appointment";
|
|
4012
4011
|
title: string;
|
|
4012
|
+
operation: "create_appointment";
|
|
4013
4013
|
startTime: string;
|
|
4014
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4015
4014
|
location?: string | undefined;
|
|
4015
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4016
4016
|
personId?: number | undefined;
|
|
4017
4017
|
endTime?: string | undefined;
|
|
4018
4018
|
}, {
|
|
4019
|
-
operation: "create_appointment";
|
|
4020
4019
|
title: string;
|
|
4020
|
+
operation: "create_appointment";
|
|
4021
4021
|
startTime: string;
|
|
4022
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4023
4022
|
location?: string | undefined;
|
|
4023
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4024
4024
|
personId?: number | undefined;
|
|
4025
4025
|
endTime?: string | undefined;
|
|
4026
4026
|
}>, z.ZodObject<{
|