@bubblelab/bubble-core 0.1.38 → 0.1.39
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 +73 -73
- package/dist/bubbles/service-bubble/agi-inc.d.ts +60 -60
- package/dist/bubbles/service-bubble/airtable.d.ts +132 -132
- package/dist/bubbles/service-bubble/apify/apify.d.ts +4 -4
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +88 -71
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/ashby/ashby.js +25 -6
- package/dist/bubbles/service-bubble/ashby/ashby.js.map +1 -1
- package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +18 -3
- package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/ashby/ashby.schema.js +9 -5
- package/dist/bubbles/service-bubble/ashby/ashby.schema.js.map +1 -1
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +23 -23
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +63 -63
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +142 -92
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.js +104 -2
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.js.map +1 -1
- package/dist/bubbles/service-bubble/crustdata/index.d.ts +1 -1
- package/dist/bubbles/service-bubble/crustdata/index.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/crustdata/index.js +2 -0
- package/dist/bubbles/service-bubble/crustdata/index.js.map +1 -1
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +32 -32
- package/dist/bubbles/service-bubble/firecrawl.d.ts +156 -156
- package/dist/bubbles/service-bubble/followupboss.d.ts +230 -230
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +108 -108
- package/dist/bubbles/service-bubble/github.d.ts +124 -124
- package/dist/bubbles/service-bubble/gmail.d.ts +70 -70
- package/dist/bubbles/service-bubble/google-calendar.d.ts +36 -36
- package/dist/bubbles/service-bubble/google-drive.d.ts +58 -58
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +30 -30
- package/dist/bubbles/service-bubble/http.d.ts +8 -8
- package/dist/bubbles/service-bubble/jira/jira.d.ts +33 -33
- package/dist/bubbles/service-bubble/notion/notion.d.ts +80 -80
- package/dist/bubbles/service-bubble/resend.d.ts +8 -8
- package/dist/bubbles/service-bubble/slack/slack.d.ts +112 -112
- package/dist/bubbles/service-bubble/storage.d.ts +30 -30
- package/dist/bubbles/service-bubble/telegram.d.ts +214 -214
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +138 -138
- package/dist/bubbles/tool-bubble/get-bubble-details-tool.d.ts +42 -6
- package/dist/bubbles/tool-bubble/get-bubble-details-tool.d.ts.map +1 -1
- package/dist/bubbles/tool-bubble/get-bubble-details-tool.js +18 -7
- package/dist/bubbles/tool-bubble/get-bubble-details-tool.js.map +1 -1
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +24 -24
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +346 -346
- package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +165 -165
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts.map +1 -1
- package/dist/bubbles/tool-bubble/people-search-tool.js +28 -13
- package/dist/bubbles/tool-bubble/people-search-tool.js.map +1 -1
- package/dist/bubbles/tool-bubble/people-search-utils.d.ts +19 -0
- package/dist/bubbles/tool-bubble/people-search-utils.d.ts.map +1 -0
- package/dist/bubbles/tool-bubble/people-search-utils.js +268 -0
- package/dist/bubbles/tool-bubble/people-search-utils.js.map +1 -0
- package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +102 -102
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +34 -34
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +4 -4
- package/dist/bubbles.json +56 -77
- package/package.json +2 -2
|
@@ -11,8 +11,8 @@ declare const FUBParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
11
11
|
includeTrash: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
12
12
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
13
13
|
}, "strip", z.ZodTypeAny, {
|
|
14
|
-
limit: number;
|
|
15
14
|
operation: "list_people";
|
|
15
|
+
limit: number;
|
|
16
16
|
offset: number;
|
|
17
17
|
includeTrash: boolean;
|
|
18
18
|
sort?: string | undefined;
|
|
@@ -84,12 +84,12 @@ declare const FUBParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
84
84
|
type?: string | undefined;
|
|
85
85
|
isPrimary?: boolean | undefined;
|
|
86
86
|
}[] | undefined;
|
|
87
|
+
tags?: string[] | undefined;
|
|
87
88
|
phones?: {
|
|
88
89
|
value: string;
|
|
89
90
|
type?: string | undefined;
|
|
90
91
|
isPrimary?: boolean | undefined;
|
|
91
92
|
}[] | undefined;
|
|
92
|
-
tags?: string[] | undefined;
|
|
93
93
|
source?: string | undefined;
|
|
94
94
|
firstName?: string | undefined;
|
|
95
95
|
lastName?: string | undefined;
|
|
@@ -103,12 +103,12 @@ declare const FUBParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
103
103
|
type?: string | undefined;
|
|
104
104
|
isPrimary?: boolean | undefined;
|
|
105
105
|
}[] | undefined;
|
|
106
|
+
tags?: string[] | undefined;
|
|
106
107
|
phones?: {
|
|
107
108
|
value: string;
|
|
108
109
|
type?: string | undefined;
|
|
109
110
|
isPrimary?: boolean | undefined;
|
|
110
111
|
}[] | undefined;
|
|
111
|
-
tags?: string[] | undefined;
|
|
112
112
|
source?: string | undefined;
|
|
113
113
|
firstName?: string | undefined;
|
|
114
114
|
lastName?: string | undefined;
|
|
@@ -159,12 +159,12 @@ declare const FUBParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
159
159
|
type?: string | undefined;
|
|
160
160
|
isPrimary?: boolean | undefined;
|
|
161
161
|
}[] | undefined;
|
|
162
|
+
tags?: string[] | undefined;
|
|
162
163
|
phones?: {
|
|
163
164
|
value: string;
|
|
164
165
|
type?: string | undefined;
|
|
165
166
|
isPrimary?: boolean | undefined;
|
|
166
167
|
}[] | undefined;
|
|
167
|
-
tags?: string[] | undefined;
|
|
168
168
|
source?: string | undefined;
|
|
169
169
|
firstName?: string | undefined;
|
|
170
170
|
lastName?: string | undefined;
|
|
@@ -179,12 +179,12 @@ declare const FUBParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
179
179
|
type?: string | undefined;
|
|
180
180
|
isPrimary?: boolean | undefined;
|
|
181
181
|
}[] | undefined;
|
|
182
|
+
tags?: string[] | undefined;
|
|
182
183
|
phones?: {
|
|
183
184
|
value: string;
|
|
184
185
|
type?: string | undefined;
|
|
185
186
|
isPrimary?: boolean | undefined;
|
|
186
187
|
}[] | undefined;
|
|
187
|
-
tags?: string[] | undefined;
|
|
188
188
|
source?: string | undefined;
|
|
189
189
|
firstName?: string | undefined;
|
|
190
190
|
lastName?: string | undefined;
|
|
@@ -209,8 +209,8 @@ declare const FUBParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
209
209
|
offset: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
210
210
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
211
211
|
}, "strip", z.ZodTypeAny, {
|
|
212
|
-
limit: number;
|
|
213
212
|
operation: "list_tasks";
|
|
213
|
+
limit: number;
|
|
214
214
|
offset: number;
|
|
215
215
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
216
216
|
personId?: number | undefined;
|
|
@@ -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
|
-
name: string;
|
|
245
244
|
operation: "create_task";
|
|
245
|
+
name: string;
|
|
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
|
-
name: string;
|
|
253
252
|
operation: "create_task";
|
|
253
|
+
name: string;
|
|
254
254
|
description?: string | undefined;
|
|
255
255
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
256
256
|
assignedTo?: number | undefined;
|
|
@@ -302,8 +302,8 @@ declare const FUBParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
302
302
|
offset: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
303
303
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
304
304
|
}, "strip", z.ZodTypeAny, {
|
|
305
|
-
limit: number;
|
|
306
305
|
operation: "list_notes";
|
|
306
|
+
limit: number;
|
|
307
307
|
offset: number;
|
|
308
308
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
309
309
|
personId?: number | undefined;
|
|
@@ -368,8 +368,8 @@ declare const FUBParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
368
368
|
offset: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
369
369
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
370
370
|
}, "strip", z.ZodTypeAny, {
|
|
371
|
-
limit: number;
|
|
372
371
|
operation: "list_deals";
|
|
372
|
+
limit: number;
|
|
373
373
|
offset: number;
|
|
374
374
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
375
375
|
personId?: number | undefined;
|
|
@@ -446,8 +446,8 @@ declare const FUBParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
446
446
|
personId: z.ZodOptional<z.ZodNumber>;
|
|
447
447
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
448
448
|
}, "strip", z.ZodTypeAny, {
|
|
449
|
-
limit: number;
|
|
450
449
|
operation: "list_events";
|
|
450
|
+
limit: number;
|
|
451
451
|
offset: number;
|
|
452
452
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
453
453
|
personId?: number | undefined;
|
|
@@ -496,35 +496,35 @@ declare const FUBParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
496
496
|
emails?: {
|
|
497
497
|
value: string;
|
|
498
498
|
}[] | undefined;
|
|
499
|
+
tags?: string[] | undefined;
|
|
499
500
|
phones?: {
|
|
500
501
|
value: string;
|
|
501
502
|
}[] | undefined;
|
|
502
|
-
tags?: string[] | undefined;
|
|
503
503
|
firstName?: string | undefined;
|
|
504
504
|
lastName?: string | undefined;
|
|
505
505
|
}, {
|
|
506
506
|
emails?: {
|
|
507
507
|
value: string;
|
|
508
508
|
}[] | undefined;
|
|
509
|
+
tags?: string[] | undefined;
|
|
509
510
|
phones?: {
|
|
510
511
|
value: string;
|
|
511
512
|
}[] | undefined;
|
|
512
|
-
tags?: string[] | undefined;
|
|
513
513
|
firstName?: string | undefined;
|
|
514
514
|
lastName?: string | undefined;
|
|
515
515
|
}>;
|
|
516
516
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
517
517
|
}, "strip", z.ZodTypeAny, {
|
|
518
|
-
type: string;
|
|
519
518
|
operation: "create_event";
|
|
519
|
+
type: string;
|
|
520
520
|
person: {
|
|
521
521
|
emails?: {
|
|
522
522
|
value: string;
|
|
523
523
|
}[] | undefined;
|
|
524
|
+
tags?: string[] | undefined;
|
|
524
525
|
phones?: {
|
|
525
526
|
value: string;
|
|
526
527
|
}[] | undefined;
|
|
527
|
-
tags?: string[] | undefined;
|
|
528
528
|
firstName?: string | undefined;
|
|
529
529
|
lastName?: string | undefined;
|
|
530
530
|
};
|
|
@@ -532,16 +532,16 @@ declare const FUBParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
532
532
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
533
533
|
source?: string | undefined;
|
|
534
534
|
}, {
|
|
535
|
-
type: string;
|
|
536
535
|
operation: "create_event";
|
|
536
|
+
type: string;
|
|
537
537
|
person: {
|
|
538
538
|
emails?: {
|
|
539
539
|
value: string;
|
|
540
540
|
}[] | undefined;
|
|
541
|
+
tags?: string[] | undefined;
|
|
541
542
|
phones?: {
|
|
542
543
|
value: string;
|
|
543
544
|
}[] | undefined;
|
|
544
|
-
tags?: string[] | undefined;
|
|
545
545
|
firstName?: string | undefined;
|
|
546
546
|
lastName?: string | undefined;
|
|
547
547
|
};
|
|
@@ -555,8 +555,8 @@ declare const FUBParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
555
555
|
offset: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
556
556
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
557
557
|
}, "strip", z.ZodTypeAny, {
|
|
558
|
-
limit: number;
|
|
559
558
|
operation: "list_calls";
|
|
559
|
+
limit: number;
|
|
560
560
|
offset: number;
|
|
561
561
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
562
562
|
personId?: number | undefined;
|
|
@@ -594,8 +594,8 @@ declare const FUBParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
594
594
|
offset: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
595
595
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
596
596
|
}, "strip", z.ZodTypeAny, {
|
|
597
|
-
limit: number;
|
|
598
597
|
operation: "list_appointments";
|
|
598
|
+
limit: number;
|
|
599
599
|
offset: number;
|
|
600
600
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
601
601
|
personId?: number | undefined;
|
|
@@ -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
|
-
title: string;
|
|
618
617
|
operation: "create_appointment";
|
|
618
|
+
title: string;
|
|
619
619
|
startTime: string;
|
|
620
|
-
location?: string | undefined;
|
|
621
620
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
621
|
+
location?: string | undefined;
|
|
622
622
|
personId?: number | undefined;
|
|
623
623
|
endTime?: string | undefined;
|
|
624
624
|
}, {
|
|
625
|
-
title: string;
|
|
626
625
|
operation: "create_appointment";
|
|
626
|
+
title: string;
|
|
627
627
|
startTime: string;
|
|
628
|
-
location?: string | undefined;
|
|
629
628
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
629
|
+
location?: string | undefined;
|
|
630
630
|
personId?: number | undefined;
|
|
631
631
|
endTime?: string | undefined;
|
|
632
632
|
}>, z.ZodObject<{
|
|
@@ -656,13 +656,13 @@ declare const FUBParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
656
656
|
url: z.ZodString;
|
|
657
657
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
658
658
|
}, "strip", z.ZodTypeAny, {
|
|
659
|
-
url: string;
|
|
660
659
|
operation: "create_webhook";
|
|
660
|
+
url: string;
|
|
661
661
|
event: "peopleCreated" | "peopleUpdated" | "peopleDeleted" | "peopleTagsCreated" | "peopleStageUpdated" | "peopleRelationshipCreated" | "peopleRelationshipUpdated" | "peopleRelationshipDeleted" | "notesCreated" | "notesUpdated" | "notesDeleted" | "emailsCreated" | "emailsUpdated" | "emailsDeleted" | "tasksCreated" | "tasksUpdated" | "tasksDeleted" | "appointmentsCreated" | "appointmentsUpdated" | "appointmentsDeleted" | "textMessagesCreated" | "textMessagesUpdated" | "textMessagesDeleted" | "callsCreated" | "callsUpdated" | "callsDeleted" | "dealsCreated" | "dealsUpdated" | "dealsDeleted" | "eventsCreated" | "stageCreated" | "stageUpdated" | "stageDeleted" | "pipelineCreated" | "pipelineUpdated" | "pipelineDeleted" | "pipelineStageCreated" | "pipelineStageUpdated" | "pipelineStageDeleted" | "customFieldsCreated" | "customFieldsUpdated" | "customFieldsDeleted" | "dealCustomFieldsCreated" | "dealCustomFieldsUpdated" | "dealCustomFieldsDeleted" | "emEventsOpened" | "emEventsClicked" | "emEventsUnsubscribed" | "reactionCreated" | "reactionDeleted" | "threadedReplyCreated" | "threadedReplyUpdated" | "threadedReplyDeleted";
|
|
662
662
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
663
663
|
}, {
|
|
664
|
-
url: string;
|
|
665
664
|
operation: "create_webhook";
|
|
665
|
+
url: string;
|
|
666
666
|
event: "peopleCreated" | "peopleUpdated" | "peopleDeleted" | "peopleTagsCreated" | "peopleStageUpdated" | "peopleRelationshipCreated" | "peopleRelationshipUpdated" | "peopleRelationshipDeleted" | "notesCreated" | "notesUpdated" | "notesDeleted" | "emailsCreated" | "emailsUpdated" | "emailsDeleted" | "tasksCreated" | "tasksUpdated" | "tasksDeleted" | "appointmentsCreated" | "appointmentsUpdated" | "appointmentsDeleted" | "textMessagesCreated" | "textMessagesUpdated" | "textMessagesDeleted" | "callsCreated" | "callsUpdated" | "callsDeleted" | "dealsCreated" | "dealsUpdated" | "dealsDeleted" | "eventsCreated" | "stageCreated" | "stageUpdated" | "stageDeleted" | "pipelineCreated" | "pipelineUpdated" | "pipelineDeleted" | "pipelineStageCreated" | "pipelineStageUpdated" | "pipelineStageDeleted" | "customFieldsCreated" | "customFieldsUpdated" | "customFieldsDeleted" | "dealCustomFieldsCreated" | "dealCustomFieldsUpdated" | "dealCustomFieldsDeleted" | "emEventsOpened" | "emEventsClicked" | "emEventsUnsubscribed" | "reactionCreated" | "reactionDeleted" | "threadedReplyCreated" | "threadedReplyUpdated" | "threadedReplyDeleted";
|
|
667
667
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
668
668
|
}>, z.ZodObject<{
|
|
@@ -823,9 +823,9 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
823
823
|
}>>;
|
|
824
824
|
error: z.ZodString;
|
|
825
825
|
}, "strip", z.ZodTypeAny, {
|
|
826
|
+
operation: "list_people";
|
|
826
827
|
success: boolean;
|
|
827
828
|
error: string;
|
|
828
|
-
operation: "list_people";
|
|
829
829
|
people?: z.objectOutputType<{
|
|
830
830
|
id: z.ZodNumber;
|
|
831
831
|
firstName: z.ZodOptional<z.ZodString>;
|
|
@@ -869,9 +869,9 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
869
869
|
total?: number | undefined;
|
|
870
870
|
} | undefined;
|
|
871
871
|
}, {
|
|
872
|
+
operation: "list_people";
|
|
872
873
|
success: boolean;
|
|
873
874
|
error: string;
|
|
874
|
-
operation: "list_people";
|
|
875
875
|
people?: z.objectInputType<{
|
|
876
876
|
id: z.ZodNumber;
|
|
877
877
|
firstName: z.ZodOptional<z.ZodString>;
|
|
@@ -1028,9 +1028,9 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
1028
1028
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
1029
1029
|
error: z.ZodString;
|
|
1030
1030
|
}, "strip", z.ZodTypeAny, {
|
|
1031
|
+
operation: "get_person";
|
|
1031
1032
|
success: boolean;
|
|
1032
1033
|
error: string;
|
|
1033
|
-
operation: "get_person";
|
|
1034
1034
|
person?: z.objectOutputType<{
|
|
1035
1035
|
id: z.ZodNumber;
|
|
1036
1036
|
firstName: z.ZodOptional<z.ZodString>;
|
|
@@ -1069,9 +1069,9 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
1069
1069
|
updated: z.ZodOptional<z.ZodString>;
|
|
1070
1070
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1071
1071
|
}, {
|
|
1072
|
+
operation: "get_person";
|
|
1072
1073
|
success: boolean;
|
|
1073
1074
|
error: string;
|
|
1074
|
-
operation: "get_person";
|
|
1075
1075
|
person?: z.objectInputType<{
|
|
1076
1076
|
id: z.ZodNumber;
|
|
1077
1077
|
firstName: z.ZodOptional<z.ZodString>;
|
|
@@ -1223,9 +1223,9 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
1223
1223
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
1224
1224
|
error: z.ZodString;
|
|
1225
1225
|
}, "strip", z.ZodTypeAny, {
|
|
1226
|
+
operation: "create_person";
|
|
1226
1227
|
success: boolean;
|
|
1227
1228
|
error: string;
|
|
1228
|
-
operation: "create_person";
|
|
1229
1229
|
person?: z.objectOutputType<{
|
|
1230
1230
|
id: z.ZodNumber;
|
|
1231
1231
|
firstName: z.ZodOptional<z.ZodString>;
|
|
@@ -1264,9 +1264,9 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
1264
1264
|
updated: z.ZodOptional<z.ZodString>;
|
|
1265
1265
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1266
1266
|
}, {
|
|
1267
|
+
operation: "create_person";
|
|
1267
1268
|
success: boolean;
|
|
1268
1269
|
error: string;
|
|
1269
|
-
operation: "create_person";
|
|
1270
1270
|
person?: z.objectInputType<{
|
|
1271
1271
|
id: z.ZodNumber;
|
|
1272
1272
|
firstName: z.ZodOptional<z.ZodString>;
|
|
@@ -1418,9 +1418,9 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
1418
1418
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
1419
1419
|
error: z.ZodString;
|
|
1420
1420
|
}, "strip", z.ZodTypeAny, {
|
|
1421
|
+
operation: "update_person";
|
|
1421
1422
|
success: boolean;
|
|
1422
1423
|
error: string;
|
|
1423
|
-
operation: "update_person";
|
|
1424
1424
|
person?: z.objectOutputType<{
|
|
1425
1425
|
id: z.ZodNumber;
|
|
1426
1426
|
firstName: z.ZodOptional<z.ZodString>;
|
|
@@ -1459,9 +1459,9 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
1459
1459
|
updated: z.ZodOptional<z.ZodString>;
|
|
1460
1460
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1461
1461
|
}, {
|
|
1462
|
+
operation: "update_person";
|
|
1462
1463
|
success: boolean;
|
|
1463
1464
|
error: string;
|
|
1464
|
-
operation: "update_person";
|
|
1465
1465
|
person?: z.objectInputType<{
|
|
1466
1466
|
id: z.ZodNumber;
|
|
1467
1467
|
firstName: z.ZodOptional<z.ZodString>;
|
|
@@ -1505,14 +1505,14 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
1505
1505
|
deleted_id: z.ZodOptional<z.ZodNumber>;
|
|
1506
1506
|
error: z.ZodString;
|
|
1507
1507
|
}, "strip", z.ZodTypeAny, {
|
|
1508
|
+
operation: "delete_person";
|
|
1508
1509
|
success: boolean;
|
|
1509
1510
|
error: string;
|
|
1510
|
-
operation: "delete_person";
|
|
1511
1511
|
deleted_id?: number | undefined;
|
|
1512
1512
|
}, {
|
|
1513
|
+
operation: "delete_person";
|
|
1513
1514
|
success: boolean;
|
|
1514
1515
|
error: string;
|
|
1515
|
-
operation: "delete_person";
|
|
1516
1516
|
deleted_id?: number | undefined;
|
|
1517
1517
|
}>, z.ZodObject<{
|
|
1518
1518
|
operation: z.ZodLiteral<"list_tasks">;
|
|
@@ -1560,9 +1560,9 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
1560
1560
|
}>>;
|
|
1561
1561
|
error: z.ZodString;
|
|
1562
1562
|
}, "strip", z.ZodTypeAny, {
|
|
1563
|
+
operation: "list_tasks";
|
|
1563
1564
|
success: boolean;
|
|
1564
1565
|
error: string;
|
|
1565
|
-
operation: "list_tasks";
|
|
1566
1566
|
tasks?: z.objectOutputType<{
|
|
1567
1567
|
id: z.ZodNumber;
|
|
1568
1568
|
personId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1579,9 +1579,9 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
1579
1579
|
total?: number | undefined;
|
|
1580
1580
|
} | undefined;
|
|
1581
1581
|
}, {
|
|
1582
|
+
operation: "list_tasks";
|
|
1582
1583
|
success: boolean;
|
|
1583
1584
|
error: string;
|
|
1584
|
-
operation: "list_tasks";
|
|
1585
1585
|
tasks?: z.objectInputType<{
|
|
1586
1586
|
id: z.ZodNumber;
|
|
1587
1587
|
personId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1630,9 +1630,9 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
1630
1630
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
1631
1631
|
error: z.ZodString;
|
|
1632
1632
|
}, "strip", z.ZodTypeAny, {
|
|
1633
|
+
operation: "get_task";
|
|
1633
1634
|
success: boolean;
|
|
1634
1635
|
error: string;
|
|
1635
|
-
operation: "get_task";
|
|
1636
1636
|
task?: z.objectOutputType<{
|
|
1637
1637
|
id: z.ZodNumber;
|
|
1638
1638
|
personId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1644,9 +1644,9 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
1644
1644
|
created: z.ZodOptional<z.ZodString>;
|
|
1645
1645
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1646
1646
|
}, {
|
|
1647
|
+
operation: "get_task";
|
|
1647
1648
|
success: boolean;
|
|
1648
1649
|
error: string;
|
|
1649
|
-
operation: "get_task";
|
|
1650
1650
|
task?: z.objectInputType<{
|
|
1651
1651
|
id: z.ZodNumber;
|
|
1652
1652
|
personId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1690,9 +1690,9 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
1690
1690
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
1691
1691
|
error: z.ZodString;
|
|
1692
1692
|
}, "strip", z.ZodTypeAny, {
|
|
1693
|
+
operation: "create_task";
|
|
1693
1694
|
success: boolean;
|
|
1694
1695
|
error: string;
|
|
1695
|
-
operation: "create_task";
|
|
1696
1696
|
task?: z.objectOutputType<{
|
|
1697
1697
|
id: z.ZodNumber;
|
|
1698
1698
|
personId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1704,9 +1704,9 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
1704
1704
|
created: z.ZodOptional<z.ZodString>;
|
|
1705
1705
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1706
1706
|
}, {
|
|
1707
|
+
operation: "create_task";
|
|
1707
1708
|
success: boolean;
|
|
1708
1709
|
error: string;
|
|
1709
|
-
operation: "create_task";
|
|
1710
1710
|
task?: z.objectInputType<{
|
|
1711
1711
|
id: z.ZodNumber;
|
|
1712
1712
|
personId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1750,9 +1750,9 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
1750
1750
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
1751
1751
|
error: z.ZodString;
|
|
1752
1752
|
}, "strip", z.ZodTypeAny, {
|
|
1753
|
+
operation: "update_task";
|
|
1753
1754
|
success: boolean;
|
|
1754
1755
|
error: string;
|
|
1755
|
-
operation: "update_task";
|
|
1756
1756
|
task?: z.objectOutputType<{
|
|
1757
1757
|
id: z.ZodNumber;
|
|
1758
1758
|
personId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1764,9 +1764,9 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
1764
1764
|
created: z.ZodOptional<z.ZodString>;
|
|
1765
1765
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1766
1766
|
}, {
|
|
1767
|
+
operation: "update_task";
|
|
1767
1768
|
success: boolean;
|
|
1768
1769
|
error: string;
|
|
1769
|
-
operation: "update_task";
|
|
1770
1770
|
task?: z.objectInputType<{
|
|
1771
1771
|
id: z.ZodNumber;
|
|
1772
1772
|
personId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1783,14 +1783,14 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
1783
1783
|
deleted_id: z.ZodOptional<z.ZodNumber>;
|
|
1784
1784
|
error: z.ZodString;
|
|
1785
1785
|
}, "strip", z.ZodTypeAny, {
|
|
1786
|
+
operation: "delete_task";
|
|
1786
1787
|
success: boolean;
|
|
1787
1788
|
error: string;
|
|
1788
|
-
operation: "delete_task";
|
|
1789
1789
|
deleted_id?: number | undefined;
|
|
1790
1790
|
}, {
|
|
1791
|
+
operation: "delete_task";
|
|
1791
1792
|
success: boolean;
|
|
1792
1793
|
error: string;
|
|
1793
|
-
operation: "delete_task";
|
|
1794
1794
|
deleted_id?: number | undefined;
|
|
1795
1795
|
}>, z.ZodObject<{
|
|
1796
1796
|
operation: z.ZodLiteral<"list_notes">;
|
|
@@ -1829,9 +1829,9 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
1829
1829
|
}>>;
|
|
1830
1830
|
error: z.ZodString;
|
|
1831
1831
|
}, "strip", z.ZodTypeAny, {
|
|
1832
|
+
operation: "list_notes";
|
|
1832
1833
|
success: boolean;
|
|
1833
1834
|
error: string;
|
|
1834
|
-
operation: "list_notes";
|
|
1835
1835
|
_metadata?: {
|
|
1836
1836
|
limit?: number | undefined;
|
|
1837
1837
|
offset?: number | undefined;
|
|
@@ -1845,9 +1845,9 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
1845
1845
|
created: z.ZodOptional<z.ZodString>;
|
|
1846
1846
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
1847
1847
|
}, {
|
|
1848
|
+
operation: "list_notes";
|
|
1848
1849
|
success: boolean;
|
|
1849
1850
|
error: string;
|
|
1850
|
-
operation: "list_notes";
|
|
1851
1851
|
_metadata?: {
|
|
1852
1852
|
limit?: number | undefined;
|
|
1853
1853
|
offset?: number | undefined;
|
|
@@ -1884,9 +1884,9 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
1884
1884
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
1885
1885
|
error: z.ZodString;
|
|
1886
1886
|
}, "strip", z.ZodTypeAny, {
|
|
1887
|
+
operation: "create_note";
|
|
1887
1888
|
success: boolean;
|
|
1888
1889
|
error: string;
|
|
1889
|
-
operation: "create_note";
|
|
1890
1890
|
note?: z.objectOutputType<{
|
|
1891
1891
|
id: z.ZodNumber;
|
|
1892
1892
|
personId: z.ZodNumber;
|
|
@@ -1895,9 +1895,9 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
1895
1895
|
created: z.ZodOptional<z.ZodString>;
|
|
1896
1896
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1897
1897
|
}, {
|
|
1898
|
+
operation: "create_note";
|
|
1898
1899
|
success: boolean;
|
|
1899
1900
|
error: string;
|
|
1900
|
-
operation: "create_note";
|
|
1901
1901
|
note?: z.objectInputType<{
|
|
1902
1902
|
id: z.ZodNumber;
|
|
1903
1903
|
personId: z.ZodNumber;
|
|
@@ -1929,9 +1929,9 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
1929
1929
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
1930
1930
|
error: z.ZodString;
|
|
1931
1931
|
}, "strip", z.ZodTypeAny, {
|
|
1932
|
+
operation: "update_note";
|
|
1932
1933
|
success: boolean;
|
|
1933
1934
|
error: string;
|
|
1934
|
-
operation: "update_note";
|
|
1935
1935
|
note?: z.objectOutputType<{
|
|
1936
1936
|
id: z.ZodNumber;
|
|
1937
1937
|
personId: z.ZodNumber;
|
|
@@ -1940,9 +1940,9 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
1940
1940
|
created: z.ZodOptional<z.ZodString>;
|
|
1941
1941
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1942
1942
|
}, {
|
|
1943
|
+
operation: "update_note";
|
|
1943
1944
|
success: boolean;
|
|
1944
1945
|
error: string;
|
|
1945
|
-
operation: "update_note";
|
|
1946
1946
|
note?: z.objectInputType<{
|
|
1947
1947
|
id: z.ZodNumber;
|
|
1948
1948
|
personId: z.ZodNumber;
|
|
@@ -1956,14 +1956,14 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
1956
1956
|
deleted_id: z.ZodOptional<z.ZodNumber>;
|
|
1957
1957
|
error: z.ZodString;
|
|
1958
1958
|
}, "strip", z.ZodTypeAny, {
|
|
1959
|
+
operation: "delete_note";
|
|
1959
1960
|
success: boolean;
|
|
1960
1961
|
error: string;
|
|
1961
|
-
operation: "delete_note";
|
|
1962
1962
|
deleted_id?: number | undefined;
|
|
1963
1963
|
}, {
|
|
1964
|
+
operation: "delete_note";
|
|
1964
1965
|
success: boolean;
|
|
1965
1966
|
error: string;
|
|
1966
|
-
operation: "delete_note";
|
|
1967
1967
|
deleted_id?: number | undefined;
|
|
1968
1968
|
}>, z.ZodObject<{
|
|
1969
1969
|
operation: z.ZodLiteral<"list_deals">;
|
|
@@ -2008,9 +2008,9 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
2008
2008
|
}>>;
|
|
2009
2009
|
error: z.ZodString;
|
|
2010
2010
|
}, "strip", z.ZodTypeAny, {
|
|
2011
|
+
operation: "list_deals";
|
|
2011
2012
|
success: boolean;
|
|
2012
2013
|
error: string;
|
|
2013
|
-
operation: "list_deals";
|
|
2014
2014
|
_metadata?: {
|
|
2015
2015
|
limit?: number | undefined;
|
|
2016
2016
|
offset?: number | undefined;
|
|
@@ -2026,9 +2026,9 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
2026
2026
|
created: z.ZodOptional<z.ZodString>;
|
|
2027
2027
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
2028
2028
|
}, {
|
|
2029
|
+
operation: "list_deals";
|
|
2029
2030
|
success: boolean;
|
|
2030
2031
|
error: string;
|
|
2031
|
-
operation: "list_deals";
|
|
2032
2032
|
_metadata?: {
|
|
2033
2033
|
limit?: number | undefined;
|
|
2034
2034
|
offset?: number | undefined;
|
|
@@ -2073,9 +2073,9 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
2073
2073
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
2074
2074
|
error: z.ZodString;
|
|
2075
2075
|
}, "strip", z.ZodTypeAny, {
|
|
2076
|
+
operation: "get_deal";
|
|
2076
2077
|
success: boolean;
|
|
2077
2078
|
error: string;
|
|
2078
|
-
operation: "get_deal";
|
|
2079
2079
|
deal?: z.objectOutputType<{
|
|
2080
2080
|
id: z.ZodNumber;
|
|
2081
2081
|
personId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2086,9 +2086,9 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
2086
2086
|
created: z.ZodOptional<z.ZodString>;
|
|
2087
2087
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2088
2088
|
}, {
|
|
2089
|
+
operation: "get_deal";
|
|
2089
2090
|
success: boolean;
|
|
2090
2091
|
error: string;
|
|
2091
|
-
operation: "get_deal";
|
|
2092
2092
|
deal?: z.objectInputType<{
|
|
2093
2093
|
id: z.ZodNumber;
|
|
2094
2094
|
personId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2128,9 +2128,9 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
2128
2128
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
2129
2129
|
error: z.ZodString;
|
|
2130
2130
|
}, "strip", z.ZodTypeAny, {
|
|
2131
|
+
operation: "create_deal";
|
|
2131
2132
|
success: boolean;
|
|
2132
2133
|
error: string;
|
|
2133
|
-
operation: "create_deal";
|
|
2134
2134
|
deal?: z.objectOutputType<{
|
|
2135
2135
|
id: z.ZodNumber;
|
|
2136
2136
|
personId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2141,9 +2141,9 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
2141
2141
|
created: z.ZodOptional<z.ZodString>;
|
|
2142
2142
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2143
2143
|
}, {
|
|
2144
|
+
operation: "create_deal";
|
|
2144
2145
|
success: boolean;
|
|
2145
2146
|
error: string;
|
|
2146
|
-
operation: "create_deal";
|
|
2147
2147
|
deal?: z.objectInputType<{
|
|
2148
2148
|
id: z.ZodNumber;
|
|
2149
2149
|
personId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2183,9 +2183,9 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
2183
2183
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
2184
2184
|
error: z.ZodString;
|
|
2185
2185
|
}, "strip", z.ZodTypeAny, {
|
|
2186
|
+
operation: "update_deal";
|
|
2186
2187
|
success: boolean;
|
|
2187
2188
|
error: string;
|
|
2188
|
-
operation: "update_deal";
|
|
2189
2189
|
deal?: z.objectOutputType<{
|
|
2190
2190
|
id: z.ZodNumber;
|
|
2191
2191
|
personId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2196,9 +2196,9 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
2196
2196
|
created: z.ZodOptional<z.ZodString>;
|
|
2197
2197
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2198
2198
|
}, {
|
|
2199
|
+
operation: "update_deal";
|
|
2199
2200
|
success: boolean;
|
|
2200
2201
|
error: string;
|
|
2201
|
-
operation: "update_deal";
|
|
2202
2202
|
deal?: z.objectInputType<{
|
|
2203
2203
|
id: z.ZodNumber;
|
|
2204
2204
|
personId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2238,20 +2238,20 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
2238
2238
|
emails?: {
|
|
2239
2239
|
value: string;
|
|
2240
2240
|
}[] | undefined;
|
|
2241
|
+
tags?: string[] | undefined;
|
|
2241
2242
|
phones?: {
|
|
2242
2243
|
value: string;
|
|
2243
2244
|
}[] | undefined;
|
|
2244
|
-
tags?: string[] | undefined;
|
|
2245
2245
|
firstName?: string | undefined;
|
|
2246
2246
|
lastName?: string | undefined;
|
|
2247
2247
|
}, {
|
|
2248
2248
|
emails?: {
|
|
2249
2249
|
value: string;
|
|
2250
2250
|
}[] | undefined;
|
|
2251
|
+
tags?: string[] | undefined;
|
|
2251
2252
|
phones?: {
|
|
2252
2253
|
value: string;
|
|
2253
2254
|
}[] | undefined;
|
|
2254
|
-
tags?: string[] | undefined;
|
|
2255
2255
|
firstName?: string | undefined;
|
|
2256
2256
|
lastName?: string | undefined;
|
|
2257
2257
|
}>>;
|
|
@@ -2283,20 +2283,20 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
2283
2283
|
emails?: {
|
|
2284
2284
|
value: string;
|
|
2285
2285
|
}[] | undefined;
|
|
2286
|
+
tags?: string[] | undefined;
|
|
2286
2287
|
phones?: {
|
|
2287
2288
|
value: string;
|
|
2288
2289
|
}[] | undefined;
|
|
2289
|
-
tags?: string[] | undefined;
|
|
2290
2290
|
firstName?: string | undefined;
|
|
2291
2291
|
lastName?: string | undefined;
|
|
2292
2292
|
}, {
|
|
2293
2293
|
emails?: {
|
|
2294
2294
|
value: string;
|
|
2295
2295
|
}[] | undefined;
|
|
2296
|
+
tags?: string[] | undefined;
|
|
2296
2297
|
phones?: {
|
|
2297
2298
|
value: string;
|
|
2298
2299
|
}[] | undefined;
|
|
2299
|
-
tags?: string[] | undefined;
|
|
2300
2300
|
firstName?: string | undefined;
|
|
2301
2301
|
lastName?: string | undefined;
|
|
2302
2302
|
}>>;
|
|
@@ -2328,20 +2328,20 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
2328
2328
|
emails?: {
|
|
2329
2329
|
value: string;
|
|
2330
2330
|
}[] | undefined;
|
|
2331
|
+
tags?: string[] | undefined;
|
|
2331
2332
|
phones?: {
|
|
2332
2333
|
value: string;
|
|
2333
2334
|
}[] | undefined;
|
|
2334
|
-
tags?: string[] | undefined;
|
|
2335
2335
|
firstName?: string | undefined;
|
|
2336
2336
|
lastName?: string | undefined;
|
|
2337
2337
|
}, {
|
|
2338
2338
|
emails?: {
|
|
2339
2339
|
value: string;
|
|
2340
2340
|
}[] | undefined;
|
|
2341
|
+
tags?: string[] | undefined;
|
|
2341
2342
|
phones?: {
|
|
2342
2343
|
value: string;
|
|
2343
2344
|
}[] | undefined;
|
|
2344
|
-
tags?: string[] | undefined;
|
|
2345
2345
|
firstName?: string | undefined;
|
|
2346
2346
|
lastName?: string | undefined;
|
|
2347
2347
|
}>>;
|
|
@@ -2362,9 +2362,9 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
2362
2362
|
}>>;
|
|
2363
2363
|
error: z.ZodString;
|
|
2364
2364
|
}, "strip", z.ZodTypeAny, {
|
|
2365
|
+
operation: "list_events";
|
|
2365
2366
|
success: boolean;
|
|
2366
2367
|
error: string;
|
|
2367
|
-
operation: "list_events";
|
|
2368
2368
|
events?: z.objectOutputType<{
|
|
2369
2369
|
id: z.ZodOptional<z.ZodNumber>;
|
|
2370
2370
|
type: z.ZodString;
|
|
@@ -2392,20 +2392,20 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
2392
2392
|
emails?: {
|
|
2393
2393
|
value: string;
|
|
2394
2394
|
}[] | undefined;
|
|
2395
|
+
tags?: string[] | undefined;
|
|
2395
2396
|
phones?: {
|
|
2396
2397
|
value: string;
|
|
2397
2398
|
}[] | undefined;
|
|
2398
|
-
tags?: string[] | undefined;
|
|
2399
2399
|
firstName?: string | undefined;
|
|
2400
2400
|
lastName?: string | undefined;
|
|
2401
2401
|
}, {
|
|
2402
2402
|
emails?: {
|
|
2403
2403
|
value: string;
|
|
2404
2404
|
}[] | undefined;
|
|
2405
|
+
tags?: string[] | undefined;
|
|
2405
2406
|
phones?: {
|
|
2406
2407
|
value: string;
|
|
2407
2408
|
}[] | undefined;
|
|
2408
|
-
tags?: string[] | undefined;
|
|
2409
2409
|
firstName?: string | undefined;
|
|
2410
2410
|
lastName?: string | undefined;
|
|
2411
2411
|
}>>;
|
|
@@ -2417,9 +2417,9 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
2417
2417
|
total?: number | undefined;
|
|
2418
2418
|
} | undefined;
|
|
2419
2419
|
}, {
|
|
2420
|
+
operation: "list_events";
|
|
2420
2421
|
success: boolean;
|
|
2421
2422
|
error: string;
|
|
2422
|
-
operation: "list_events";
|
|
2423
2423
|
events?: z.objectInputType<{
|
|
2424
2424
|
id: z.ZodOptional<z.ZodNumber>;
|
|
2425
2425
|
type: z.ZodString;
|
|
@@ -2447,20 +2447,20 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
2447
2447
|
emails?: {
|
|
2448
2448
|
value: string;
|
|
2449
2449
|
}[] | undefined;
|
|
2450
|
+
tags?: string[] | undefined;
|
|
2450
2451
|
phones?: {
|
|
2451
2452
|
value: string;
|
|
2452
2453
|
}[] | undefined;
|
|
2453
|
-
tags?: string[] | undefined;
|
|
2454
2454
|
firstName?: string | undefined;
|
|
2455
2455
|
lastName?: string | undefined;
|
|
2456
2456
|
}, {
|
|
2457
2457
|
emails?: {
|
|
2458
2458
|
value: string;
|
|
2459
2459
|
}[] | undefined;
|
|
2460
|
+
tags?: string[] | undefined;
|
|
2460
2461
|
phones?: {
|
|
2461
2462
|
value: string;
|
|
2462
2463
|
}[] | undefined;
|
|
2463
|
-
tags?: string[] | undefined;
|
|
2464
2464
|
firstName?: string | undefined;
|
|
2465
2465
|
lastName?: string | undefined;
|
|
2466
2466
|
}>>;
|
|
@@ -2501,20 +2501,20 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
2501
2501
|
emails?: {
|
|
2502
2502
|
value: string;
|
|
2503
2503
|
}[] | undefined;
|
|
2504
|
+
tags?: string[] | undefined;
|
|
2504
2505
|
phones?: {
|
|
2505
2506
|
value: string;
|
|
2506
2507
|
}[] | undefined;
|
|
2507
|
-
tags?: string[] | undefined;
|
|
2508
2508
|
firstName?: string | undefined;
|
|
2509
2509
|
lastName?: string | undefined;
|
|
2510
2510
|
}, {
|
|
2511
2511
|
emails?: {
|
|
2512
2512
|
value: string;
|
|
2513
2513
|
}[] | undefined;
|
|
2514
|
+
tags?: string[] | undefined;
|
|
2514
2515
|
phones?: {
|
|
2515
2516
|
value: string;
|
|
2516
2517
|
}[] | undefined;
|
|
2517
|
-
tags?: string[] | undefined;
|
|
2518
2518
|
firstName?: string | undefined;
|
|
2519
2519
|
lastName?: string | undefined;
|
|
2520
2520
|
}>>;
|
|
@@ -2546,20 +2546,20 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
2546
2546
|
emails?: {
|
|
2547
2547
|
value: string;
|
|
2548
2548
|
}[] | undefined;
|
|
2549
|
+
tags?: string[] | undefined;
|
|
2549
2550
|
phones?: {
|
|
2550
2551
|
value: string;
|
|
2551
2552
|
}[] | undefined;
|
|
2552
|
-
tags?: string[] | undefined;
|
|
2553
2553
|
firstName?: string | undefined;
|
|
2554
2554
|
lastName?: string | undefined;
|
|
2555
2555
|
}, {
|
|
2556
2556
|
emails?: {
|
|
2557
2557
|
value: string;
|
|
2558
2558
|
}[] | undefined;
|
|
2559
|
+
tags?: string[] | undefined;
|
|
2559
2560
|
phones?: {
|
|
2560
2561
|
value: string;
|
|
2561
2562
|
}[] | undefined;
|
|
2562
|
-
tags?: string[] | undefined;
|
|
2563
2563
|
firstName?: string | undefined;
|
|
2564
2564
|
lastName?: string | undefined;
|
|
2565
2565
|
}>>;
|
|
@@ -2591,20 +2591,20 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
2591
2591
|
emails?: {
|
|
2592
2592
|
value: string;
|
|
2593
2593
|
}[] | undefined;
|
|
2594
|
+
tags?: string[] | undefined;
|
|
2594
2595
|
phones?: {
|
|
2595
2596
|
value: string;
|
|
2596
2597
|
}[] | undefined;
|
|
2597
|
-
tags?: string[] | undefined;
|
|
2598
2598
|
firstName?: string | undefined;
|
|
2599
2599
|
lastName?: string | undefined;
|
|
2600
2600
|
}, {
|
|
2601
2601
|
emails?: {
|
|
2602
2602
|
value: string;
|
|
2603
2603
|
}[] | undefined;
|
|
2604
|
+
tags?: string[] | undefined;
|
|
2604
2605
|
phones?: {
|
|
2605
2606
|
value: string;
|
|
2606
2607
|
}[] | undefined;
|
|
2607
|
-
tags?: string[] | undefined;
|
|
2608
2608
|
firstName?: string | undefined;
|
|
2609
2609
|
lastName?: string | undefined;
|
|
2610
2610
|
}>>;
|
|
@@ -2612,9 +2612,9 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
2612
2612
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
2613
2613
|
error: z.ZodString;
|
|
2614
2614
|
}, "strip", z.ZodTypeAny, {
|
|
2615
|
+
operation: "get_event";
|
|
2615
2616
|
success: boolean;
|
|
2616
2617
|
error: string;
|
|
2617
|
-
operation: "get_event";
|
|
2618
2618
|
event?: z.objectOutputType<{
|
|
2619
2619
|
id: z.ZodOptional<z.ZodNumber>;
|
|
2620
2620
|
type: z.ZodString;
|
|
@@ -2642,29 +2642,29 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
2642
2642
|
emails?: {
|
|
2643
2643
|
value: string;
|
|
2644
2644
|
}[] | undefined;
|
|
2645
|
+
tags?: string[] | undefined;
|
|
2645
2646
|
phones?: {
|
|
2646
2647
|
value: string;
|
|
2647
2648
|
}[] | undefined;
|
|
2648
|
-
tags?: string[] | undefined;
|
|
2649
2649
|
firstName?: string | undefined;
|
|
2650
2650
|
lastName?: string | undefined;
|
|
2651
2651
|
}, {
|
|
2652
2652
|
emails?: {
|
|
2653
2653
|
value: string;
|
|
2654
2654
|
}[] | undefined;
|
|
2655
|
+
tags?: string[] | undefined;
|
|
2655
2656
|
phones?: {
|
|
2656
2657
|
value: string;
|
|
2657
2658
|
}[] | undefined;
|
|
2658
|
-
tags?: string[] | undefined;
|
|
2659
2659
|
firstName?: string | undefined;
|
|
2660
2660
|
lastName?: string | undefined;
|
|
2661
2661
|
}>>;
|
|
2662
2662
|
created: z.ZodOptional<z.ZodString>;
|
|
2663
2663
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2664
2664
|
}, {
|
|
2665
|
+
operation: "get_event";
|
|
2665
2666
|
success: boolean;
|
|
2666
2667
|
error: string;
|
|
2667
|
-
operation: "get_event";
|
|
2668
2668
|
event?: z.objectInputType<{
|
|
2669
2669
|
id: z.ZodOptional<z.ZodNumber>;
|
|
2670
2670
|
type: z.ZodString;
|
|
@@ -2692,20 +2692,20 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
2692
2692
|
emails?: {
|
|
2693
2693
|
value: string;
|
|
2694
2694
|
}[] | undefined;
|
|
2695
|
+
tags?: string[] | undefined;
|
|
2695
2696
|
phones?: {
|
|
2696
2697
|
value: string;
|
|
2697
2698
|
}[] | undefined;
|
|
2698
|
-
tags?: string[] | undefined;
|
|
2699
2699
|
firstName?: string | undefined;
|
|
2700
2700
|
lastName?: string | undefined;
|
|
2701
2701
|
}, {
|
|
2702
2702
|
emails?: {
|
|
2703
2703
|
value: string;
|
|
2704
2704
|
}[] | undefined;
|
|
2705
|
+
tags?: string[] | undefined;
|
|
2705
2706
|
phones?: {
|
|
2706
2707
|
value: string;
|
|
2707
2708
|
}[] | undefined;
|
|
2708
|
-
tags?: string[] | undefined;
|
|
2709
2709
|
firstName?: string | undefined;
|
|
2710
2710
|
lastName?: string | undefined;
|
|
2711
2711
|
}>>;
|
|
@@ -2741,20 +2741,20 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
2741
2741
|
emails?: {
|
|
2742
2742
|
value: string;
|
|
2743
2743
|
}[] | undefined;
|
|
2744
|
+
tags?: string[] | undefined;
|
|
2744
2745
|
phones?: {
|
|
2745
2746
|
value: string;
|
|
2746
2747
|
}[] | undefined;
|
|
2747
|
-
tags?: string[] | undefined;
|
|
2748
2748
|
firstName?: string | undefined;
|
|
2749
2749
|
lastName?: string | undefined;
|
|
2750
2750
|
}, {
|
|
2751
2751
|
emails?: {
|
|
2752
2752
|
value: string;
|
|
2753
2753
|
}[] | undefined;
|
|
2754
|
+
tags?: string[] | undefined;
|
|
2754
2755
|
phones?: {
|
|
2755
2756
|
value: string;
|
|
2756
2757
|
}[] | undefined;
|
|
2757
|
-
tags?: string[] | undefined;
|
|
2758
2758
|
firstName?: string | undefined;
|
|
2759
2759
|
lastName?: string | undefined;
|
|
2760
2760
|
}>>;
|
|
@@ -2786,20 +2786,20 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
2786
2786
|
emails?: {
|
|
2787
2787
|
value: string;
|
|
2788
2788
|
}[] | undefined;
|
|
2789
|
+
tags?: string[] | undefined;
|
|
2789
2790
|
phones?: {
|
|
2790
2791
|
value: string;
|
|
2791
2792
|
}[] | undefined;
|
|
2792
|
-
tags?: string[] | undefined;
|
|
2793
2793
|
firstName?: string | undefined;
|
|
2794
2794
|
lastName?: string | undefined;
|
|
2795
2795
|
}, {
|
|
2796
2796
|
emails?: {
|
|
2797
2797
|
value: string;
|
|
2798
2798
|
}[] | undefined;
|
|
2799
|
+
tags?: string[] | undefined;
|
|
2799
2800
|
phones?: {
|
|
2800
2801
|
value: string;
|
|
2801
2802
|
}[] | undefined;
|
|
2802
|
-
tags?: string[] | undefined;
|
|
2803
2803
|
firstName?: string | undefined;
|
|
2804
2804
|
lastName?: string | undefined;
|
|
2805
2805
|
}>>;
|
|
@@ -2831,20 +2831,20 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
2831
2831
|
emails?: {
|
|
2832
2832
|
value: string;
|
|
2833
2833
|
}[] | undefined;
|
|
2834
|
+
tags?: string[] | undefined;
|
|
2834
2835
|
phones?: {
|
|
2835
2836
|
value: string;
|
|
2836
2837
|
}[] | undefined;
|
|
2837
|
-
tags?: string[] | undefined;
|
|
2838
2838
|
firstName?: string | undefined;
|
|
2839
2839
|
lastName?: string | undefined;
|
|
2840
2840
|
}, {
|
|
2841
2841
|
emails?: {
|
|
2842
2842
|
value: string;
|
|
2843
2843
|
}[] | undefined;
|
|
2844
|
+
tags?: string[] | undefined;
|
|
2844
2845
|
phones?: {
|
|
2845
2846
|
value: string;
|
|
2846
2847
|
}[] | undefined;
|
|
2847
|
-
tags?: string[] | undefined;
|
|
2848
2848
|
firstName?: string | undefined;
|
|
2849
2849
|
lastName?: string | undefined;
|
|
2850
2850
|
}>>;
|
|
@@ -2852,9 +2852,9 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
2852
2852
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
2853
2853
|
error: z.ZodString;
|
|
2854
2854
|
}, "strip", z.ZodTypeAny, {
|
|
2855
|
+
operation: "create_event";
|
|
2855
2856
|
success: boolean;
|
|
2856
2857
|
error: string;
|
|
2857
|
-
operation: "create_event";
|
|
2858
2858
|
event?: z.objectOutputType<{
|
|
2859
2859
|
id: z.ZodOptional<z.ZodNumber>;
|
|
2860
2860
|
type: z.ZodString;
|
|
@@ -2882,29 +2882,29 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
2882
2882
|
emails?: {
|
|
2883
2883
|
value: string;
|
|
2884
2884
|
}[] | undefined;
|
|
2885
|
+
tags?: string[] | undefined;
|
|
2885
2886
|
phones?: {
|
|
2886
2887
|
value: string;
|
|
2887
2888
|
}[] | undefined;
|
|
2888
|
-
tags?: string[] | undefined;
|
|
2889
2889
|
firstName?: string | undefined;
|
|
2890
2890
|
lastName?: string | undefined;
|
|
2891
2891
|
}, {
|
|
2892
2892
|
emails?: {
|
|
2893
2893
|
value: string;
|
|
2894
2894
|
}[] | undefined;
|
|
2895
|
+
tags?: string[] | undefined;
|
|
2895
2896
|
phones?: {
|
|
2896
2897
|
value: string;
|
|
2897
2898
|
}[] | undefined;
|
|
2898
|
-
tags?: string[] | undefined;
|
|
2899
2899
|
firstName?: string | undefined;
|
|
2900
2900
|
lastName?: string | undefined;
|
|
2901
2901
|
}>>;
|
|
2902
2902
|
created: z.ZodOptional<z.ZodString>;
|
|
2903
2903
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2904
2904
|
}, {
|
|
2905
|
+
operation: "create_event";
|
|
2905
2906
|
success: boolean;
|
|
2906
2907
|
error: string;
|
|
2907
|
-
operation: "create_event";
|
|
2908
2908
|
event?: z.objectInputType<{
|
|
2909
2909
|
id: z.ZodOptional<z.ZodNumber>;
|
|
2910
2910
|
type: z.ZodString;
|
|
@@ -2932,20 +2932,20 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
2932
2932
|
emails?: {
|
|
2933
2933
|
value: string;
|
|
2934
2934
|
}[] | undefined;
|
|
2935
|
+
tags?: string[] | undefined;
|
|
2935
2936
|
phones?: {
|
|
2936
2937
|
value: string;
|
|
2937
2938
|
}[] | undefined;
|
|
2938
|
-
tags?: string[] | undefined;
|
|
2939
2939
|
firstName?: string | undefined;
|
|
2940
2940
|
lastName?: string | undefined;
|
|
2941
2941
|
}, {
|
|
2942
2942
|
emails?: {
|
|
2943
2943
|
value: string;
|
|
2944
2944
|
}[] | undefined;
|
|
2945
|
+
tags?: string[] | undefined;
|
|
2945
2946
|
phones?: {
|
|
2946
2947
|
value: string;
|
|
2947
2948
|
}[] | undefined;
|
|
2948
|
-
tags?: string[] | undefined;
|
|
2949
2949
|
firstName?: string | undefined;
|
|
2950
2950
|
lastName?: string | undefined;
|
|
2951
2951
|
}>>;
|
|
@@ -2991,9 +2991,9 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
2991
2991
|
}>>;
|
|
2992
2992
|
error: z.ZodString;
|
|
2993
2993
|
}, "strip", z.ZodTypeAny, {
|
|
2994
|
+
operation: "list_calls";
|
|
2994
2995
|
success: boolean;
|
|
2995
2996
|
error: string;
|
|
2996
|
-
operation: "list_calls";
|
|
2997
2997
|
_metadata?: {
|
|
2998
2998
|
limit?: number | undefined;
|
|
2999
2999
|
offset?: number | undefined;
|
|
@@ -3008,9 +3008,9 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
3008
3008
|
created: z.ZodOptional<z.ZodString>;
|
|
3009
3009
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
3010
3010
|
}, {
|
|
3011
|
+
operation: "list_calls";
|
|
3011
3012
|
success: boolean;
|
|
3012
3013
|
error: string;
|
|
3013
|
-
operation: "list_calls";
|
|
3014
3014
|
_metadata?: {
|
|
3015
3015
|
limit?: number | undefined;
|
|
3016
3016
|
offset?: number | undefined;
|
|
@@ -3051,9 +3051,9 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
3051
3051
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
3052
3052
|
error: z.ZodString;
|
|
3053
3053
|
}, "strip", z.ZodTypeAny, {
|
|
3054
|
+
operation: "create_call";
|
|
3054
3055
|
success: boolean;
|
|
3055
3056
|
error: string;
|
|
3056
|
-
operation: "create_call";
|
|
3057
3057
|
call?: z.objectOutputType<{
|
|
3058
3058
|
id: z.ZodNumber;
|
|
3059
3059
|
personId: z.ZodNumber;
|
|
@@ -3063,9 +3063,9 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
3063
3063
|
created: z.ZodOptional<z.ZodString>;
|
|
3064
3064
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
3065
3065
|
}, {
|
|
3066
|
+
operation: "create_call";
|
|
3066
3067
|
success: boolean;
|
|
3067
3068
|
error: string;
|
|
3068
|
-
operation: "create_call";
|
|
3069
3069
|
call?: z.objectInputType<{
|
|
3070
3070
|
id: z.ZodNumber;
|
|
3071
3071
|
personId: z.ZodNumber;
|
|
@@ -3117,9 +3117,9 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
3117
3117
|
}>>;
|
|
3118
3118
|
error: z.ZodString;
|
|
3119
3119
|
}, "strip", z.ZodTypeAny, {
|
|
3120
|
+
operation: "list_appointments";
|
|
3120
3121
|
success: boolean;
|
|
3121
3122
|
error: string;
|
|
3122
|
-
operation: "list_appointments";
|
|
3123
3123
|
_metadata?: {
|
|
3124
3124
|
limit?: number | undefined;
|
|
3125
3125
|
offset?: number | undefined;
|
|
@@ -3135,9 +3135,9 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
3135
3135
|
created: z.ZodOptional<z.ZodString>;
|
|
3136
3136
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
3137
3137
|
}, {
|
|
3138
|
+
operation: "list_appointments";
|
|
3138
3139
|
success: boolean;
|
|
3139
3140
|
error: string;
|
|
3140
|
-
operation: "list_appointments";
|
|
3141
3141
|
_metadata?: {
|
|
3142
3142
|
limit?: number | undefined;
|
|
3143
3143
|
offset?: number | undefined;
|
|
@@ -3182,9 +3182,9 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
3182
3182
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
3183
3183
|
error: z.ZodString;
|
|
3184
3184
|
}, "strip", z.ZodTypeAny, {
|
|
3185
|
+
operation: "create_appointment";
|
|
3185
3186
|
success: boolean;
|
|
3186
3187
|
error: string;
|
|
3187
|
-
operation: "create_appointment";
|
|
3188
3188
|
appointment?: z.objectOutputType<{
|
|
3189
3189
|
id: z.ZodNumber;
|
|
3190
3190
|
personId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -3195,9 +3195,9 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
3195
3195
|
created: z.ZodOptional<z.ZodString>;
|
|
3196
3196
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
3197
3197
|
}, {
|
|
3198
|
+
operation: "create_appointment";
|
|
3198
3199
|
success: boolean;
|
|
3199
3200
|
error: string;
|
|
3200
|
-
operation: "create_appointment";
|
|
3201
3201
|
appointment?: z.objectInputType<{
|
|
3202
3202
|
id: z.ZodNumber;
|
|
3203
3203
|
personId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -3228,9 +3228,9 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
3228
3228
|
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
3229
3229
|
error: z.ZodString;
|
|
3230
3230
|
}, "strip", z.ZodTypeAny, {
|
|
3231
|
+
operation: "list_webhooks";
|
|
3231
3232
|
success: boolean;
|
|
3232
3233
|
error: string;
|
|
3233
|
-
operation: "list_webhooks";
|
|
3234
3234
|
webhooks?: z.objectOutputType<{
|
|
3235
3235
|
id: z.ZodNumber;
|
|
3236
3236
|
event: z.ZodString;
|
|
@@ -3238,9 +3238,9 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
3238
3238
|
status: z.ZodOptional<z.ZodString>;
|
|
3239
3239
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
3240
3240
|
}, {
|
|
3241
|
+
operation: "list_webhooks";
|
|
3241
3242
|
success: boolean;
|
|
3242
3243
|
error: string;
|
|
3243
|
-
operation: "list_webhooks";
|
|
3244
3244
|
webhooks?: z.objectInputType<{
|
|
3245
3245
|
id: z.ZodNumber;
|
|
3246
3246
|
event: z.ZodString;
|
|
@@ -3268,9 +3268,9 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
3268
3268
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
3269
3269
|
error: z.ZodString;
|
|
3270
3270
|
}, "strip", z.ZodTypeAny, {
|
|
3271
|
+
operation: "get_webhook";
|
|
3271
3272
|
success: boolean;
|
|
3272
3273
|
error: string;
|
|
3273
|
-
operation: "get_webhook";
|
|
3274
3274
|
webhook?: z.objectOutputType<{
|
|
3275
3275
|
id: z.ZodNumber;
|
|
3276
3276
|
event: z.ZodString;
|
|
@@ -3278,9 +3278,9 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
3278
3278
|
status: z.ZodOptional<z.ZodString>;
|
|
3279
3279
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
3280
3280
|
}, {
|
|
3281
|
+
operation: "get_webhook";
|
|
3281
3282
|
success: boolean;
|
|
3282
3283
|
error: string;
|
|
3283
|
-
operation: "get_webhook";
|
|
3284
3284
|
webhook?: z.objectInputType<{
|
|
3285
3285
|
id: z.ZodNumber;
|
|
3286
3286
|
event: z.ZodString;
|
|
@@ -3308,9 +3308,9 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
3308
3308
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
3309
3309
|
error: z.ZodString;
|
|
3310
3310
|
}, "strip", z.ZodTypeAny, {
|
|
3311
|
+
operation: "create_webhook";
|
|
3311
3312
|
success: boolean;
|
|
3312
3313
|
error: string;
|
|
3313
|
-
operation: "create_webhook";
|
|
3314
3314
|
webhook?: z.objectOutputType<{
|
|
3315
3315
|
id: z.ZodNumber;
|
|
3316
3316
|
event: z.ZodString;
|
|
@@ -3318,9 +3318,9 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
3318
3318
|
status: z.ZodOptional<z.ZodString>;
|
|
3319
3319
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
3320
3320
|
}, {
|
|
3321
|
+
operation: "create_webhook";
|
|
3321
3322
|
success: boolean;
|
|
3322
3323
|
error: string;
|
|
3323
|
-
operation: "create_webhook";
|
|
3324
3324
|
webhook?: z.objectInputType<{
|
|
3325
3325
|
id: z.ZodNumber;
|
|
3326
3326
|
event: z.ZodString;
|
|
@@ -3348,9 +3348,9 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
3348
3348
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
3349
3349
|
error: z.ZodString;
|
|
3350
3350
|
}, "strip", z.ZodTypeAny, {
|
|
3351
|
+
operation: "update_webhook";
|
|
3351
3352
|
success: boolean;
|
|
3352
3353
|
error: string;
|
|
3353
|
-
operation: "update_webhook";
|
|
3354
3354
|
webhook?: z.objectOutputType<{
|
|
3355
3355
|
id: z.ZodNumber;
|
|
3356
3356
|
event: z.ZodString;
|
|
@@ -3358,9 +3358,9 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
3358
3358
|
status: z.ZodOptional<z.ZodString>;
|
|
3359
3359
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
3360
3360
|
}, {
|
|
3361
|
+
operation: "update_webhook";
|
|
3361
3362
|
success: boolean;
|
|
3362
3363
|
error: string;
|
|
3363
|
-
operation: "update_webhook";
|
|
3364
3364
|
webhook?: z.objectInputType<{
|
|
3365
3365
|
id: z.ZodNumber;
|
|
3366
3366
|
event: z.ZodString;
|
|
@@ -3373,14 +3373,14 @@ declare const FUBResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject
|
|
|
3373
3373
|
deleted_id: z.ZodOptional<z.ZodNumber>;
|
|
3374
3374
|
error: z.ZodString;
|
|
3375
3375
|
}, "strip", z.ZodTypeAny, {
|
|
3376
|
+
operation: "delete_webhook";
|
|
3376
3377
|
success: boolean;
|
|
3377
3378
|
error: string;
|
|
3378
|
-
operation: "delete_webhook";
|
|
3379
3379
|
deleted_id?: number | undefined;
|
|
3380
3380
|
}, {
|
|
3381
|
+
operation: "delete_webhook";
|
|
3381
3382
|
success: boolean;
|
|
3382
3383
|
error: string;
|
|
3383
|
-
operation: "delete_webhook";
|
|
3384
3384
|
deleted_id?: number | undefined;
|
|
3385
3385
|
}>]>;
|
|
3386
3386
|
type FUBResult = z.output<typeof FUBResultSchema>;
|
|
@@ -3405,8 +3405,8 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
3405
3405
|
includeTrash: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
3406
3406
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
3407
3407
|
}, "strip", z.ZodTypeAny, {
|
|
3408
|
-
limit: number;
|
|
3409
3408
|
operation: "list_people";
|
|
3409
|
+
limit: number;
|
|
3410
3410
|
offset: number;
|
|
3411
3411
|
includeTrash: boolean;
|
|
3412
3412
|
sort?: string | undefined;
|
|
@@ -3478,12 +3478,12 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
3478
3478
|
type?: string | undefined;
|
|
3479
3479
|
isPrimary?: boolean | undefined;
|
|
3480
3480
|
}[] | undefined;
|
|
3481
|
+
tags?: string[] | undefined;
|
|
3481
3482
|
phones?: {
|
|
3482
3483
|
value: string;
|
|
3483
3484
|
type?: string | undefined;
|
|
3484
3485
|
isPrimary?: boolean | undefined;
|
|
3485
3486
|
}[] | undefined;
|
|
3486
|
-
tags?: string[] | undefined;
|
|
3487
3487
|
source?: string | undefined;
|
|
3488
3488
|
firstName?: string | undefined;
|
|
3489
3489
|
lastName?: string | undefined;
|
|
@@ -3497,12 +3497,12 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
3497
3497
|
type?: string | undefined;
|
|
3498
3498
|
isPrimary?: boolean | undefined;
|
|
3499
3499
|
}[] | undefined;
|
|
3500
|
+
tags?: string[] | undefined;
|
|
3500
3501
|
phones?: {
|
|
3501
3502
|
value: string;
|
|
3502
3503
|
type?: string | undefined;
|
|
3503
3504
|
isPrimary?: boolean | undefined;
|
|
3504
3505
|
}[] | undefined;
|
|
3505
|
-
tags?: string[] | undefined;
|
|
3506
3506
|
source?: string | undefined;
|
|
3507
3507
|
firstName?: string | undefined;
|
|
3508
3508
|
lastName?: string | undefined;
|
|
@@ -3553,12 +3553,12 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
3553
3553
|
type?: string | undefined;
|
|
3554
3554
|
isPrimary?: boolean | undefined;
|
|
3555
3555
|
}[] | undefined;
|
|
3556
|
+
tags?: string[] | undefined;
|
|
3556
3557
|
phones?: {
|
|
3557
3558
|
value: string;
|
|
3558
3559
|
type?: string | undefined;
|
|
3559
3560
|
isPrimary?: boolean | undefined;
|
|
3560
3561
|
}[] | undefined;
|
|
3561
|
-
tags?: string[] | undefined;
|
|
3562
3562
|
source?: string | undefined;
|
|
3563
3563
|
firstName?: string | undefined;
|
|
3564
3564
|
lastName?: string | undefined;
|
|
@@ -3573,12 +3573,12 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
3573
3573
|
type?: string | undefined;
|
|
3574
3574
|
isPrimary?: boolean | undefined;
|
|
3575
3575
|
}[] | undefined;
|
|
3576
|
+
tags?: string[] | undefined;
|
|
3576
3577
|
phones?: {
|
|
3577
3578
|
value: string;
|
|
3578
3579
|
type?: string | undefined;
|
|
3579
3580
|
isPrimary?: boolean | undefined;
|
|
3580
3581
|
}[] | undefined;
|
|
3581
|
-
tags?: string[] | undefined;
|
|
3582
3582
|
source?: string | undefined;
|
|
3583
3583
|
firstName?: string | undefined;
|
|
3584
3584
|
lastName?: string | undefined;
|
|
@@ -3603,8 +3603,8 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
3603
3603
|
offset: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
3604
3604
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
3605
3605
|
}, "strip", z.ZodTypeAny, {
|
|
3606
|
-
limit: number;
|
|
3607
3606
|
operation: "list_tasks";
|
|
3607
|
+
limit: number;
|
|
3608
3608
|
offset: number;
|
|
3609
3609
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
3610
3610
|
personId?: number | undefined;
|
|
@@ -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
|
-
name: string;
|
|
3639
3638
|
operation: "create_task";
|
|
3639
|
+
name: string;
|
|
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
|
-
name: string;
|
|
3647
3646
|
operation: "create_task";
|
|
3647
|
+
name: string;
|
|
3648
3648
|
description?: string | undefined;
|
|
3649
3649
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
3650
3650
|
assignedTo?: number | undefined;
|
|
@@ -3696,8 +3696,8 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
3696
3696
|
offset: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
3697
3697
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
3698
3698
|
}, "strip", z.ZodTypeAny, {
|
|
3699
|
-
limit: number;
|
|
3700
3699
|
operation: "list_notes";
|
|
3700
|
+
limit: number;
|
|
3701
3701
|
offset: number;
|
|
3702
3702
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
3703
3703
|
personId?: number | undefined;
|
|
@@ -3762,8 +3762,8 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
3762
3762
|
offset: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
3763
3763
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
3764
3764
|
}, "strip", z.ZodTypeAny, {
|
|
3765
|
-
limit: number;
|
|
3766
3765
|
operation: "list_deals";
|
|
3766
|
+
limit: number;
|
|
3767
3767
|
offset: number;
|
|
3768
3768
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
3769
3769
|
personId?: number | undefined;
|
|
@@ -3840,8 +3840,8 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
3840
3840
|
personId: z.ZodOptional<z.ZodNumber>;
|
|
3841
3841
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
3842
3842
|
}, "strip", z.ZodTypeAny, {
|
|
3843
|
-
limit: number;
|
|
3844
3843
|
operation: "list_events";
|
|
3844
|
+
limit: number;
|
|
3845
3845
|
offset: number;
|
|
3846
3846
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
3847
3847
|
personId?: number | undefined;
|
|
@@ -3890,35 +3890,35 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
3890
3890
|
emails?: {
|
|
3891
3891
|
value: string;
|
|
3892
3892
|
}[] | undefined;
|
|
3893
|
+
tags?: string[] | undefined;
|
|
3893
3894
|
phones?: {
|
|
3894
3895
|
value: string;
|
|
3895
3896
|
}[] | undefined;
|
|
3896
|
-
tags?: string[] | undefined;
|
|
3897
3897
|
firstName?: string | undefined;
|
|
3898
3898
|
lastName?: string | undefined;
|
|
3899
3899
|
}, {
|
|
3900
3900
|
emails?: {
|
|
3901
3901
|
value: string;
|
|
3902
3902
|
}[] | undefined;
|
|
3903
|
+
tags?: string[] | undefined;
|
|
3903
3904
|
phones?: {
|
|
3904
3905
|
value: string;
|
|
3905
3906
|
}[] | undefined;
|
|
3906
|
-
tags?: string[] | undefined;
|
|
3907
3907
|
firstName?: string | undefined;
|
|
3908
3908
|
lastName?: string | undefined;
|
|
3909
3909
|
}>;
|
|
3910
3910
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
3911
3911
|
}, "strip", z.ZodTypeAny, {
|
|
3912
|
-
type: string;
|
|
3913
3912
|
operation: "create_event";
|
|
3913
|
+
type: string;
|
|
3914
3914
|
person: {
|
|
3915
3915
|
emails?: {
|
|
3916
3916
|
value: string;
|
|
3917
3917
|
}[] | undefined;
|
|
3918
|
+
tags?: string[] | undefined;
|
|
3918
3919
|
phones?: {
|
|
3919
3920
|
value: string;
|
|
3920
3921
|
}[] | undefined;
|
|
3921
|
-
tags?: string[] | undefined;
|
|
3922
3922
|
firstName?: string | undefined;
|
|
3923
3923
|
lastName?: string | undefined;
|
|
3924
3924
|
};
|
|
@@ -3926,16 +3926,16 @@ 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
|
-
type: string;
|
|
3930
3929
|
operation: "create_event";
|
|
3930
|
+
type: string;
|
|
3931
3931
|
person: {
|
|
3932
3932
|
emails?: {
|
|
3933
3933
|
value: string;
|
|
3934
3934
|
}[] | undefined;
|
|
3935
|
+
tags?: string[] | undefined;
|
|
3935
3936
|
phones?: {
|
|
3936
3937
|
value: string;
|
|
3937
3938
|
}[] | undefined;
|
|
3938
|
-
tags?: string[] | undefined;
|
|
3939
3939
|
firstName?: string | undefined;
|
|
3940
3940
|
lastName?: string | undefined;
|
|
3941
3941
|
};
|
|
@@ -3949,8 +3949,8 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
3949
3949
|
offset: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
3950
3950
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
3951
3951
|
}, "strip", z.ZodTypeAny, {
|
|
3952
|
-
limit: number;
|
|
3953
3952
|
operation: "list_calls";
|
|
3953
|
+
limit: number;
|
|
3954
3954
|
offset: number;
|
|
3955
3955
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
3956
3956
|
personId?: number | undefined;
|
|
@@ -3988,8 +3988,8 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
3988
3988
|
offset: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
|
|
3989
3989
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
3990
3990
|
}, "strip", z.ZodTypeAny, {
|
|
3991
|
-
limit: number;
|
|
3992
3991
|
operation: "list_appointments";
|
|
3992
|
+
limit: number;
|
|
3993
3993
|
offset: number;
|
|
3994
3994
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
3995
3995
|
personId?: number | undefined;
|
|
@@ -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
|
-
title: string;
|
|
4012
4011
|
operation: "create_appointment";
|
|
4012
|
+
title: string;
|
|
4013
4013
|
startTime: string;
|
|
4014
|
-
location?: string | undefined;
|
|
4015
4014
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4015
|
+
location?: string | undefined;
|
|
4016
4016
|
personId?: number | undefined;
|
|
4017
4017
|
endTime?: string | undefined;
|
|
4018
4018
|
}, {
|
|
4019
|
-
title: string;
|
|
4020
4019
|
operation: "create_appointment";
|
|
4020
|
+
title: string;
|
|
4021
4021
|
startTime: string;
|
|
4022
|
-
location?: string | undefined;
|
|
4023
4022
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4023
|
+
location?: string | undefined;
|
|
4024
4024
|
personId?: number | undefined;
|
|
4025
4025
|
endTime?: string | undefined;
|
|
4026
4026
|
}>, z.ZodObject<{
|
|
@@ -4050,13 +4050,13 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
4050
4050
|
url: z.ZodString;
|
|
4051
4051
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
4052
4052
|
}, "strip", z.ZodTypeAny, {
|
|
4053
|
-
url: string;
|
|
4054
4053
|
operation: "create_webhook";
|
|
4054
|
+
url: string;
|
|
4055
4055
|
event: "peopleCreated" | "peopleUpdated" | "peopleDeleted" | "peopleTagsCreated" | "peopleStageUpdated" | "peopleRelationshipCreated" | "peopleRelationshipUpdated" | "peopleRelationshipDeleted" | "notesCreated" | "notesUpdated" | "notesDeleted" | "emailsCreated" | "emailsUpdated" | "emailsDeleted" | "tasksCreated" | "tasksUpdated" | "tasksDeleted" | "appointmentsCreated" | "appointmentsUpdated" | "appointmentsDeleted" | "textMessagesCreated" | "textMessagesUpdated" | "textMessagesDeleted" | "callsCreated" | "callsUpdated" | "callsDeleted" | "dealsCreated" | "dealsUpdated" | "dealsDeleted" | "eventsCreated" | "stageCreated" | "stageUpdated" | "stageDeleted" | "pipelineCreated" | "pipelineUpdated" | "pipelineDeleted" | "pipelineStageCreated" | "pipelineStageUpdated" | "pipelineStageDeleted" | "customFieldsCreated" | "customFieldsUpdated" | "customFieldsDeleted" | "dealCustomFieldsCreated" | "dealCustomFieldsUpdated" | "dealCustomFieldsDeleted" | "emEventsOpened" | "emEventsClicked" | "emEventsUnsubscribed" | "reactionCreated" | "reactionDeleted" | "threadedReplyCreated" | "threadedReplyUpdated" | "threadedReplyDeleted";
|
|
4056
4056
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4057
4057
|
}, {
|
|
4058
|
-
url: string;
|
|
4059
4058
|
operation: "create_webhook";
|
|
4059
|
+
url: string;
|
|
4060
4060
|
event: "peopleCreated" | "peopleUpdated" | "peopleDeleted" | "peopleTagsCreated" | "peopleStageUpdated" | "peopleRelationshipCreated" | "peopleRelationshipUpdated" | "peopleRelationshipDeleted" | "notesCreated" | "notesUpdated" | "notesDeleted" | "emailsCreated" | "emailsUpdated" | "emailsDeleted" | "tasksCreated" | "tasksUpdated" | "tasksDeleted" | "appointmentsCreated" | "appointmentsUpdated" | "appointmentsDeleted" | "textMessagesCreated" | "textMessagesUpdated" | "textMessagesDeleted" | "callsCreated" | "callsUpdated" | "callsDeleted" | "dealsCreated" | "dealsUpdated" | "dealsDeleted" | "eventsCreated" | "stageCreated" | "stageUpdated" | "stageDeleted" | "pipelineCreated" | "pipelineUpdated" | "pipelineDeleted" | "pipelineStageCreated" | "pipelineStageUpdated" | "pipelineStageDeleted" | "customFieldsCreated" | "customFieldsUpdated" | "customFieldsDeleted" | "dealCustomFieldsCreated" | "dealCustomFieldsUpdated" | "dealCustomFieldsDeleted" | "emEventsOpened" | "emEventsClicked" | "emEventsUnsubscribed" | "reactionCreated" | "reactionDeleted" | "threadedReplyCreated" | "threadedReplyUpdated" | "threadedReplyDeleted";
|
|
4061
4061
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
4062
4062
|
}>, z.ZodObject<{
|
|
@@ -4217,9 +4217,9 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
4217
4217
|
}>>;
|
|
4218
4218
|
error: z.ZodString;
|
|
4219
4219
|
}, "strip", z.ZodTypeAny, {
|
|
4220
|
+
operation: "list_people";
|
|
4220
4221
|
success: boolean;
|
|
4221
4222
|
error: string;
|
|
4222
|
-
operation: "list_people";
|
|
4223
4223
|
people?: z.objectOutputType<{
|
|
4224
4224
|
id: z.ZodNumber;
|
|
4225
4225
|
firstName: z.ZodOptional<z.ZodString>;
|
|
@@ -4263,9 +4263,9 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
4263
4263
|
total?: number | undefined;
|
|
4264
4264
|
} | undefined;
|
|
4265
4265
|
}, {
|
|
4266
|
+
operation: "list_people";
|
|
4266
4267
|
success: boolean;
|
|
4267
4268
|
error: string;
|
|
4268
|
-
operation: "list_people";
|
|
4269
4269
|
people?: z.objectInputType<{
|
|
4270
4270
|
id: z.ZodNumber;
|
|
4271
4271
|
firstName: z.ZodOptional<z.ZodString>;
|
|
@@ -4422,9 +4422,9 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
4422
4422
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
4423
4423
|
error: z.ZodString;
|
|
4424
4424
|
}, "strip", z.ZodTypeAny, {
|
|
4425
|
+
operation: "get_person";
|
|
4425
4426
|
success: boolean;
|
|
4426
4427
|
error: string;
|
|
4427
|
-
operation: "get_person";
|
|
4428
4428
|
person?: z.objectOutputType<{
|
|
4429
4429
|
id: z.ZodNumber;
|
|
4430
4430
|
firstName: z.ZodOptional<z.ZodString>;
|
|
@@ -4463,9 +4463,9 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
4463
4463
|
updated: z.ZodOptional<z.ZodString>;
|
|
4464
4464
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
4465
4465
|
}, {
|
|
4466
|
+
operation: "get_person";
|
|
4466
4467
|
success: boolean;
|
|
4467
4468
|
error: string;
|
|
4468
|
-
operation: "get_person";
|
|
4469
4469
|
person?: z.objectInputType<{
|
|
4470
4470
|
id: z.ZodNumber;
|
|
4471
4471
|
firstName: z.ZodOptional<z.ZodString>;
|
|
@@ -4617,9 +4617,9 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
4617
4617
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
4618
4618
|
error: z.ZodString;
|
|
4619
4619
|
}, "strip", z.ZodTypeAny, {
|
|
4620
|
+
operation: "create_person";
|
|
4620
4621
|
success: boolean;
|
|
4621
4622
|
error: string;
|
|
4622
|
-
operation: "create_person";
|
|
4623
4623
|
person?: z.objectOutputType<{
|
|
4624
4624
|
id: z.ZodNumber;
|
|
4625
4625
|
firstName: z.ZodOptional<z.ZodString>;
|
|
@@ -4658,9 +4658,9 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
4658
4658
|
updated: z.ZodOptional<z.ZodString>;
|
|
4659
4659
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
4660
4660
|
}, {
|
|
4661
|
+
operation: "create_person";
|
|
4661
4662
|
success: boolean;
|
|
4662
4663
|
error: string;
|
|
4663
|
-
operation: "create_person";
|
|
4664
4664
|
person?: z.objectInputType<{
|
|
4665
4665
|
id: z.ZodNumber;
|
|
4666
4666
|
firstName: z.ZodOptional<z.ZodString>;
|
|
@@ -4812,9 +4812,9 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
4812
4812
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
4813
4813
|
error: z.ZodString;
|
|
4814
4814
|
}, "strip", z.ZodTypeAny, {
|
|
4815
|
+
operation: "update_person";
|
|
4815
4816
|
success: boolean;
|
|
4816
4817
|
error: string;
|
|
4817
|
-
operation: "update_person";
|
|
4818
4818
|
person?: z.objectOutputType<{
|
|
4819
4819
|
id: z.ZodNumber;
|
|
4820
4820
|
firstName: z.ZodOptional<z.ZodString>;
|
|
@@ -4853,9 +4853,9 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
4853
4853
|
updated: z.ZodOptional<z.ZodString>;
|
|
4854
4854
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
4855
4855
|
}, {
|
|
4856
|
+
operation: "update_person";
|
|
4856
4857
|
success: boolean;
|
|
4857
4858
|
error: string;
|
|
4858
|
-
operation: "update_person";
|
|
4859
4859
|
person?: z.objectInputType<{
|
|
4860
4860
|
id: z.ZodNumber;
|
|
4861
4861
|
firstName: z.ZodOptional<z.ZodString>;
|
|
@@ -4899,14 +4899,14 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
4899
4899
|
deleted_id: z.ZodOptional<z.ZodNumber>;
|
|
4900
4900
|
error: z.ZodString;
|
|
4901
4901
|
}, "strip", z.ZodTypeAny, {
|
|
4902
|
+
operation: "delete_person";
|
|
4902
4903
|
success: boolean;
|
|
4903
4904
|
error: string;
|
|
4904
|
-
operation: "delete_person";
|
|
4905
4905
|
deleted_id?: number | undefined;
|
|
4906
4906
|
}, {
|
|
4907
|
+
operation: "delete_person";
|
|
4907
4908
|
success: boolean;
|
|
4908
4909
|
error: string;
|
|
4909
|
-
operation: "delete_person";
|
|
4910
4910
|
deleted_id?: number | undefined;
|
|
4911
4911
|
}>, z.ZodObject<{
|
|
4912
4912
|
operation: z.ZodLiteral<"list_tasks">;
|
|
@@ -4954,9 +4954,9 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
4954
4954
|
}>>;
|
|
4955
4955
|
error: z.ZodString;
|
|
4956
4956
|
}, "strip", z.ZodTypeAny, {
|
|
4957
|
+
operation: "list_tasks";
|
|
4957
4958
|
success: boolean;
|
|
4958
4959
|
error: string;
|
|
4959
|
-
operation: "list_tasks";
|
|
4960
4960
|
tasks?: z.objectOutputType<{
|
|
4961
4961
|
id: z.ZodNumber;
|
|
4962
4962
|
personId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4973,9 +4973,9 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
4973
4973
|
total?: number | undefined;
|
|
4974
4974
|
} | undefined;
|
|
4975
4975
|
}, {
|
|
4976
|
+
operation: "list_tasks";
|
|
4976
4977
|
success: boolean;
|
|
4977
4978
|
error: string;
|
|
4978
|
-
operation: "list_tasks";
|
|
4979
4979
|
tasks?: z.objectInputType<{
|
|
4980
4980
|
id: z.ZodNumber;
|
|
4981
4981
|
personId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -5024,9 +5024,9 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
5024
5024
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
5025
5025
|
error: z.ZodString;
|
|
5026
5026
|
}, "strip", z.ZodTypeAny, {
|
|
5027
|
+
operation: "get_task";
|
|
5027
5028
|
success: boolean;
|
|
5028
5029
|
error: string;
|
|
5029
|
-
operation: "get_task";
|
|
5030
5030
|
task?: z.objectOutputType<{
|
|
5031
5031
|
id: z.ZodNumber;
|
|
5032
5032
|
personId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -5038,9 +5038,9 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
5038
5038
|
created: z.ZodOptional<z.ZodString>;
|
|
5039
5039
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
5040
5040
|
}, {
|
|
5041
|
+
operation: "get_task";
|
|
5041
5042
|
success: boolean;
|
|
5042
5043
|
error: string;
|
|
5043
|
-
operation: "get_task";
|
|
5044
5044
|
task?: z.objectInputType<{
|
|
5045
5045
|
id: z.ZodNumber;
|
|
5046
5046
|
personId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -5084,9 +5084,9 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
5084
5084
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
5085
5085
|
error: z.ZodString;
|
|
5086
5086
|
}, "strip", z.ZodTypeAny, {
|
|
5087
|
+
operation: "create_task";
|
|
5087
5088
|
success: boolean;
|
|
5088
5089
|
error: string;
|
|
5089
|
-
operation: "create_task";
|
|
5090
5090
|
task?: z.objectOutputType<{
|
|
5091
5091
|
id: z.ZodNumber;
|
|
5092
5092
|
personId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -5098,9 +5098,9 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
5098
5098
|
created: z.ZodOptional<z.ZodString>;
|
|
5099
5099
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
5100
5100
|
}, {
|
|
5101
|
+
operation: "create_task";
|
|
5101
5102
|
success: boolean;
|
|
5102
5103
|
error: string;
|
|
5103
|
-
operation: "create_task";
|
|
5104
5104
|
task?: z.objectInputType<{
|
|
5105
5105
|
id: z.ZodNumber;
|
|
5106
5106
|
personId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -5144,9 +5144,9 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
5144
5144
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
5145
5145
|
error: z.ZodString;
|
|
5146
5146
|
}, "strip", z.ZodTypeAny, {
|
|
5147
|
+
operation: "update_task";
|
|
5147
5148
|
success: boolean;
|
|
5148
5149
|
error: string;
|
|
5149
|
-
operation: "update_task";
|
|
5150
5150
|
task?: z.objectOutputType<{
|
|
5151
5151
|
id: z.ZodNumber;
|
|
5152
5152
|
personId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -5158,9 +5158,9 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
5158
5158
|
created: z.ZodOptional<z.ZodString>;
|
|
5159
5159
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
5160
5160
|
}, {
|
|
5161
|
+
operation: "update_task";
|
|
5161
5162
|
success: boolean;
|
|
5162
5163
|
error: string;
|
|
5163
|
-
operation: "update_task";
|
|
5164
5164
|
task?: z.objectInputType<{
|
|
5165
5165
|
id: z.ZodNumber;
|
|
5166
5166
|
personId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -5177,14 +5177,14 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
5177
5177
|
deleted_id: z.ZodOptional<z.ZodNumber>;
|
|
5178
5178
|
error: z.ZodString;
|
|
5179
5179
|
}, "strip", z.ZodTypeAny, {
|
|
5180
|
+
operation: "delete_task";
|
|
5180
5181
|
success: boolean;
|
|
5181
5182
|
error: string;
|
|
5182
|
-
operation: "delete_task";
|
|
5183
5183
|
deleted_id?: number | undefined;
|
|
5184
5184
|
}, {
|
|
5185
|
+
operation: "delete_task";
|
|
5185
5186
|
success: boolean;
|
|
5186
5187
|
error: string;
|
|
5187
|
-
operation: "delete_task";
|
|
5188
5188
|
deleted_id?: number | undefined;
|
|
5189
5189
|
}>, z.ZodObject<{
|
|
5190
5190
|
operation: z.ZodLiteral<"list_notes">;
|
|
@@ -5223,9 +5223,9 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
5223
5223
|
}>>;
|
|
5224
5224
|
error: z.ZodString;
|
|
5225
5225
|
}, "strip", z.ZodTypeAny, {
|
|
5226
|
+
operation: "list_notes";
|
|
5226
5227
|
success: boolean;
|
|
5227
5228
|
error: string;
|
|
5228
|
-
operation: "list_notes";
|
|
5229
5229
|
_metadata?: {
|
|
5230
5230
|
limit?: number | undefined;
|
|
5231
5231
|
offset?: number | undefined;
|
|
@@ -5239,9 +5239,9 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
5239
5239
|
created: z.ZodOptional<z.ZodString>;
|
|
5240
5240
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
5241
5241
|
}, {
|
|
5242
|
+
operation: "list_notes";
|
|
5242
5243
|
success: boolean;
|
|
5243
5244
|
error: string;
|
|
5244
|
-
operation: "list_notes";
|
|
5245
5245
|
_metadata?: {
|
|
5246
5246
|
limit?: number | undefined;
|
|
5247
5247
|
offset?: number | undefined;
|
|
@@ -5278,9 +5278,9 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
5278
5278
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
5279
5279
|
error: z.ZodString;
|
|
5280
5280
|
}, "strip", z.ZodTypeAny, {
|
|
5281
|
+
operation: "create_note";
|
|
5281
5282
|
success: boolean;
|
|
5282
5283
|
error: string;
|
|
5283
|
-
operation: "create_note";
|
|
5284
5284
|
note?: z.objectOutputType<{
|
|
5285
5285
|
id: z.ZodNumber;
|
|
5286
5286
|
personId: z.ZodNumber;
|
|
@@ -5289,9 +5289,9 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
5289
5289
|
created: z.ZodOptional<z.ZodString>;
|
|
5290
5290
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
5291
5291
|
}, {
|
|
5292
|
+
operation: "create_note";
|
|
5292
5293
|
success: boolean;
|
|
5293
5294
|
error: string;
|
|
5294
|
-
operation: "create_note";
|
|
5295
5295
|
note?: z.objectInputType<{
|
|
5296
5296
|
id: z.ZodNumber;
|
|
5297
5297
|
personId: z.ZodNumber;
|
|
@@ -5323,9 +5323,9 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
5323
5323
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
5324
5324
|
error: z.ZodString;
|
|
5325
5325
|
}, "strip", z.ZodTypeAny, {
|
|
5326
|
+
operation: "update_note";
|
|
5326
5327
|
success: boolean;
|
|
5327
5328
|
error: string;
|
|
5328
|
-
operation: "update_note";
|
|
5329
5329
|
note?: z.objectOutputType<{
|
|
5330
5330
|
id: z.ZodNumber;
|
|
5331
5331
|
personId: z.ZodNumber;
|
|
@@ -5334,9 +5334,9 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
5334
5334
|
created: z.ZodOptional<z.ZodString>;
|
|
5335
5335
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
5336
5336
|
}, {
|
|
5337
|
+
operation: "update_note";
|
|
5337
5338
|
success: boolean;
|
|
5338
5339
|
error: string;
|
|
5339
|
-
operation: "update_note";
|
|
5340
5340
|
note?: z.objectInputType<{
|
|
5341
5341
|
id: z.ZodNumber;
|
|
5342
5342
|
personId: z.ZodNumber;
|
|
@@ -5350,14 +5350,14 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
5350
5350
|
deleted_id: z.ZodOptional<z.ZodNumber>;
|
|
5351
5351
|
error: z.ZodString;
|
|
5352
5352
|
}, "strip", z.ZodTypeAny, {
|
|
5353
|
+
operation: "delete_note";
|
|
5353
5354
|
success: boolean;
|
|
5354
5355
|
error: string;
|
|
5355
|
-
operation: "delete_note";
|
|
5356
5356
|
deleted_id?: number | undefined;
|
|
5357
5357
|
}, {
|
|
5358
|
+
operation: "delete_note";
|
|
5358
5359
|
success: boolean;
|
|
5359
5360
|
error: string;
|
|
5360
|
-
operation: "delete_note";
|
|
5361
5361
|
deleted_id?: number | undefined;
|
|
5362
5362
|
}>, z.ZodObject<{
|
|
5363
5363
|
operation: z.ZodLiteral<"list_deals">;
|
|
@@ -5402,9 +5402,9 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
5402
5402
|
}>>;
|
|
5403
5403
|
error: z.ZodString;
|
|
5404
5404
|
}, "strip", z.ZodTypeAny, {
|
|
5405
|
+
operation: "list_deals";
|
|
5405
5406
|
success: boolean;
|
|
5406
5407
|
error: string;
|
|
5407
|
-
operation: "list_deals";
|
|
5408
5408
|
_metadata?: {
|
|
5409
5409
|
limit?: number | undefined;
|
|
5410
5410
|
offset?: number | undefined;
|
|
@@ -5420,9 +5420,9 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
5420
5420
|
created: z.ZodOptional<z.ZodString>;
|
|
5421
5421
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
5422
5422
|
}, {
|
|
5423
|
+
operation: "list_deals";
|
|
5423
5424
|
success: boolean;
|
|
5424
5425
|
error: string;
|
|
5425
|
-
operation: "list_deals";
|
|
5426
5426
|
_metadata?: {
|
|
5427
5427
|
limit?: number | undefined;
|
|
5428
5428
|
offset?: number | undefined;
|
|
@@ -5467,9 +5467,9 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
5467
5467
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
5468
5468
|
error: z.ZodString;
|
|
5469
5469
|
}, "strip", z.ZodTypeAny, {
|
|
5470
|
+
operation: "get_deal";
|
|
5470
5471
|
success: boolean;
|
|
5471
5472
|
error: string;
|
|
5472
|
-
operation: "get_deal";
|
|
5473
5473
|
deal?: z.objectOutputType<{
|
|
5474
5474
|
id: z.ZodNumber;
|
|
5475
5475
|
personId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -5480,9 +5480,9 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
5480
5480
|
created: z.ZodOptional<z.ZodString>;
|
|
5481
5481
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
5482
5482
|
}, {
|
|
5483
|
+
operation: "get_deal";
|
|
5483
5484
|
success: boolean;
|
|
5484
5485
|
error: string;
|
|
5485
|
-
operation: "get_deal";
|
|
5486
5486
|
deal?: z.objectInputType<{
|
|
5487
5487
|
id: z.ZodNumber;
|
|
5488
5488
|
personId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -5522,9 +5522,9 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
5522
5522
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
5523
5523
|
error: z.ZodString;
|
|
5524
5524
|
}, "strip", z.ZodTypeAny, {
|
|
5525
|
+
operation: "create_deal";
|
|
5525
5526
|
success: boolean;
|
|
5526
5527
|
error: string;
|
|
5527
|
-
operation: "create_deal";
|
|
5528
5528
|
deal?: z.objectOutputType<{
|
|
5529
5529
|
id: z.ZodNumber;
|
|
5530
5530
|
personId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -5535,9 +5535,9 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
5535
5535
|
created: z.ZodOptional<z.ZodString>;
|
|
5536
5536
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
5537
5537
|
}, {
|
|
5538
|
+
operation: "create_deal";
|
|
5538
5539
|
success: boolean;
|
|
5539
5540
|
error: string;
|
|
5540
|
-
operation: "create_deal";
|
|
5541
5541
|
deal?: z.objectInputType<{
|
|
5542
5542
|
id: z.ZodNumber;
|
|
5543
5543
|
personId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -5577,9 +5577,9 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
5577
5577
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
5578
5578
|
error: z.ZodString;
|
|
5579
5579
|
}, "strip", z.ZodTypeAny, {
|
|
5580
|
+
operation: "update_deal";
|
|
5580
5581
|
success: boolean;
|
|
5581
5582
|
error: string;
|
|
5582
|
-
operation: "update_deal";
|
|
5583
5583
|
deal?: z.objectOutputType<{
|
|
5584
5584
|
id: z.ZodNumber;
|
|
5585
5585
|
personId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -5590,9 +5590,9 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
5590
5590
|
created: z.ZodOptional<z.ZodString>;
|
|
5591
5591
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
5592
5592
|
}, {
|
|
5593
|
+
operation: "update_deal";
|
|
5593
5594
|
success: boolean;
|
|
5594
5595
|
error: string;
|
|
5595
|
-
operation: "update_deal";
|
|
5596
5596
|
deal?: z.objectInputType<{
|
|
5597
5597
|
id: z.ZodNumber;
|
|
5598
5598
|
personId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -5632,20 +5632,20 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
5632
5632
|
emails?: {
|
|
5633
5633
|
value: string;
|
|
5634
5634
|
}[] | undefined;
|
|
5635
|
+
tags?: string[] | undefined;
|
|
5635
5636
|
phones?: {
|
|
5636
5637
|
value: string;
|
|
5637
5638
|
}[] | undefined;
|
|
5638
|
-
tags?: string[] | undefined;
|
|
5639
5639
|
firstName?: string | undefined;
|
|
5640
5640
|
lastName?: string | undefined;
|
|
5641
5641
|
}, {
|
|
5642
5642
|
emails?: {
|
|
5643
5643
|
value: string;
|
|
5644
5644
|
}[] | undefined;
|
|
5645
|
+
tags?: string[] | undefined;
|
|
5645
5646
|
phones?: {
|
|
5646
5647
|
value: string;
|
|
5647
5648
|
}[] | undefined;
|
|
5648
|
-
tags?: string[] | undefined;
|
|
5649
5649
|
firstName?: string | undefined;
|
|
5650
5650
|
lastName?: string | undefined;
|
|
5651
5651
|
}>>;
|
|
@@ -5677,20 +5677,20 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
5677
5677
|
emails?: {
|
|
5678
5678
|
value: string;
|
|
5679
5679
|
}[] | undefined;
|
|
5680
|
+
tags?: string[] | undefined;
|
|
5680
5681
|
phones?: {
|
|
5681
5682
|
value: string;
|
|
5682
5683
|
}[] | undefined;
|
|
5683
|
-
tags?: string[] | undefined;
|
|
5684
5684
|
firstName?: string | undefined;
|
|
5685
5685
|
lastName?: string | undefined;
|
|
5686
5686
|
}, {
|
|
5687
5687
|
emails?: {
|
|
5688
5688
|
value: string;
|
|
5689
5689
|
}[] | undefined;
|
|
5690
|
+
tags?: string[] | undefined;
|
|
5690
5691
|
phones?: {
|
|
5691
5692
|
value: string;
|
|
5692
5693
|
}[] | undefined;
|
|
5693
|
-
tags?: string[] | undefined;
|
|
5694
5694
|
firstName?: string | undefined;
|
|
5695
5695
|
lastName?: string | undefined;
|
|
5696
5696
|
}>>;
|
|
@@ -5722,20 +5722,20 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
5722
5722
|
emails?: {
|
|
5723
5723
|
value: string;
|
|
5724
5724
|
}[] | undefined;
|
|
5725
|
+
tags?: string[] | undefined;
|
|
5725
5726
|
phones?: {
|
|
5726
5727
|
value: string;
|
|
5727
5728
|
}[] | undefined;
|
|
5728
|
-
tags?: string[] | undefined;
|
|
5729
5729
|
firstName?: string | undefined;
|
|
5730
5730
|
lastName?: string | undefined;
|
|
5731
5731
|
}, {
|
|
5732
5732
|
emails?: {
|
|
5733
5733
|
value: string;
|
|
5734
5734
|
}[] | undefined;
|
|
5735
|
+
tags?: string[] | undefined;
|
|
5735
5736
|
phones?: {
|
|
5736
5737
|
value: string;
|
|
5737
5738
|
}[] | undefined;
|
|
5738
|
-
tags?: string[] | undefined;
|
|
5739
5739
|
firstName?: string | undefined;
|
|
5740
5740
|
lastName?: string | undefined;
|
|
5741
5741
|
}>>;
|
|
@@ -5756,9 +5756,9 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
5756
5756
|
}>>;
|
|
5757
5757
|
error: z.ZodString;
|
|
5758
5758
|
}, "strip", z.ZodTypeAny, {
|
|
5759
|
+
operation: "list_events";
|
|
5759
5760
|
success: boolean;
|
|
5760
5761
|
error: string;
|
|
5761
|
-
operation: "list_events";
|
|
5762
5762
|
events?: z.objectOutputType<{
|
|
5763
5763
|
id: z.ZodOptional<z.ZodNumber>;
|
|
5764
5764
|
type: z.ZodString;
|
|
@@ -5786,20 +5786,20 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
5786
5786
|
emails?: {
|
|
5787
5787
|
value: string;
|
|
5788
5788
|
}[] | undefined;
|
|
5789
|
+
tags?: string[] | undefined;
|
|
5789
5790
|
phones?: {
|
|
5790
5791
|
value: string;
|
|
5791
5792
|
}[] | undefined;
|
|
5792
|
-
tags?: string[] | undefined;
|
|
5793
5793
|
firstName?: string | undefined;
|
|
5794
5794
|
lastName?: string | undefined;
|
|
5795
5795
|
}, {
|
|
5796
5796
|
emails?: {
|
|
5797
5797
|
value: string;
|
|
5798
5798
|
}[] | undefined;
|
|
5799
|
+
tags?: string[] | undefined;
|
|
5799
5800
|
phones?: {
|
|
5800
5801
|
value: string;
|
|
5801
5802
|
}[] | undefined;
|
|
5802
|
-
tags?: string[] | undefined;
|
|
5803
5803
|
firstName?: string | undefined;
|
|
5804
5804
|
lastName?: string | undefined;
|
|
5805
5805
|
}>>;
|
|
@@ -5811,9 +5811,9 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
5811
5811
|
total?: number | undefined;
|
|
5812
5812
|
} | undefined;
|
|
5813
5813
|
}, {
|
|
5814
|
+
operation: "list_events";
|
|
5814
5815
|
success: boolean;
|
|
5815
5816
|
error: string;
|
|
5816
|
-
operation: "list_events";
|
|
5817
5817
|
events?: z.objectInputType<{
|
|
5818
5818
|
id: z.ZodOptional<z.ZodNumber>;
|
|
5819
5819
|
type: z.ZodString;
|
|
@@ -5841,20 +5841,20 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
5841
5841
|
emails?: {
|
|
5842
5842
|
value: string;
|
|
5843
5843
|
}[] | undefined;
|
|
5844
|
+
tags?: string[] | undefined;
|
|
5844
5845
|
phones?: {
|
|
5845
5846
|
value: string;
|
|
5846
5847
|
}[] | undefined;
|
|
5847
|
-
tags?: string[] | undefined;
|
|
5848
5848
|
firstName?: string | undefined;
|
|
5849
5849
|
lastName?: string | undefined;
|
|
5850
5850
|
}, {
|
|
5851
5851
|
emails?: {
|
|
5852
5852
|
value: string;
|
|
5853
5853
|
}[] | undefined;
|
|
5854
|
+
tags?: string[] | undefined;
|
|
5854
5855
|
phones?: {
|
|
5855
5856
|
value: string;
|
|
5856
5857
|
}[] | undefined;
|
|
5857
|
-
tags?: string[] | undefined;
|
|
5858
5858
|
firstName?: string | undefined;
|
|
5859
5859
|
lastName?: string | undefined;
|
|
5860
5860
|
}>>;
|
|
@@ -5895,20 +5895,20 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
5895
5895
|
emails?: {
|
|
5896
5896
|
value: string;
|
|
5897
5897
|
}[] | undefined;
|
|
5898
|
+
tags?: string[] | undefined;
|
|
5898
5899
|
phones?: {
|
|
5899
5900
|
value: string;
|
|
5900
5901
|
}[] | undefined;
|
|
5901
|
-
tags?: string[] | undefined;
|
|
5902
5902
|
firstName?: string | undefined;
|
|
5903
5903
|
lastName?: string | undefined;
|
|
5904
5904
|
}, {
|
|
5905
5905
|
emails?: {
|
|
5906
5906
|
value: string;
|
|
5907
5907
|
}[] | undefined;
|
|
5908
|
+
tags?: string[] | undefined;
|
|
5908
5909
|
phones?: {
|
|
5909
5910
|
value: string;
|
|
5910
5911
|
}[] | undefined;
|
|
5911
|
-
tags?: string[] | undefined;
|
|
5912
5912
|
firstName?: string | undefined;
|
|
5913
5913
|
lastName?: string | undefined;
|
|
5914
5914
|
}>>;
|
|
@@ -5940,20 +5940,20 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
5940
5940
|
emails?: {
|
|
5941
5941
|
value: string;
|
|
5942
5942
|
}[] | undefined;
|
|
5943
|
+
tags?: string[] | undefined;
|
|
5943
5944
|
phones?: {
|
|
5944
5945
|
value: string;
|
|
5945
5946
|
}[] | undefined;
|
|
5946
|
-
tags?: string[] | undefined;
|
|
5947
5947
|
firstName?: string | undefined;
|
|
5948
5948
|
lastName?: string | undefined;
|
|
5949
5949
|
}, {
|
|
5950
5950
|
emails?: {
|
|
5951
5951
|
value: string;
|
|
5952
5952
|
}[] | undefined;
|
|
5953
|
+
tags?: string[] | undefined;
|
|
5953
5954
|
phones?: {
|
|
5954
5955
|
value: string;
|
|
5955
5956
|
}[] | undefined;
|
|
5956
|
-
tags?: string[] | undefined;
|
|
5957
5957
|
firstName?: string | undefined;
|
|
5958
5958
|
lastName?: string | undefined;
|
|
5959
5959
|
}>>;
|
|
@@ -5985,20 +5985,20 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
5985
5985
|
emails?: {
|
|
5986
5986
|
value: string;
|
|
5987
5987
|
}[] | undefined;
|
|
5988
|
+
tags?: string[] | undefined;
|
|
5988
5989
|
phones?: {
|
|
5989
5990
|
value: string;
|
|
5990
5991
|
}[] | undefined;
|
|
5991
|
-
tags?: string[] | undefined;
|
|
5992
5992
|
firstName?: string | undefined;
|
|
5993
5993
|
lastName?: string | undefined;
|
|
5994
5994
|
}, {
|
|
5995
5995
|
emails?: {
|
|
5996
5996
|
value: string;
|
|
5997
5997
|
}[] | undefined;
|
|
5998
|
+
tags?: string[] | undefined;
|
|
5998
5999
|
phones?: {
|
|
5999
6000
|
value: string;
|
|
6000
6001
|
}[] | undefined;
|
|
6001
|
-
tags?: string[] | undefined;
|
|
6002
6002
|
firstName?: string | undefined;
|
|
6003
6003
|
lastName?: string | undefined;
|
|
6004
6004
|
}>>;
|
|
@@ -6006,9 +6006,9 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
6006
6006
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
6007
6007
|
error: z.ZodString;
|
|
6008
6008
|
}, "strip", z.ZodTypeAny, {
|
|
6009
|
+
operation: "get_event";
|
|
6009
6010
|
success: boolean;
|
|
6010
6011
|
error: string;
|
|
6011
|
-
operation: "get_event";
|
|
6012
6012
|
event?: z.objectOutputType<{
|
|
6013
6013
|
id: z.ZodOptional<z.ZodNumber>;
|
|
6014
6014
|
type: z.ZodString;
|
|
@@ -6036,29 +6036,29 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
6036
6036
|
emails?: {
|
|
6037
6037
|
value: string;
|
|
6038
6038
|
}[] | undefined;
|
|
6039
|
+
tags?: string[] | undefined;
|
|
6039
6040
|
phones?: {
|
|
6040
6041
|
value: string;
|
|
6041
6042
|
}[] | undefined;
|
|
6042
|
-
tags?: string[] | undefined;
|
|
6043
6043
|
firstName?: string | undefined;
|
|
6044
6044
|
lastName?: string | undefined;
|
|
6045
6045
|
}, {
|
|
6046
6046
|
emails?: {
|
|
6047
6047
|
value: string;
|
|
6048
6048
|
}[] | undefined;
|
|
6049
|
+
tags?: string[] | undefined;
|
|
6049
6050
|
phones?: {
|
|
6050
6051
|
value: string;
|
|
6051
6052
|
}[] | undefined;
|
|
6052
|
-
tags?: string[] | undefined;
|
|
6053
6053
|
firstName?: string | undefined;
|
|
6054
6054
|
lastName?: string | undefined;
|
|
6055
6055
|
}>>;
|
|
6056
6056
|
created: z.ZodOptional<z.ZodString>;
|
|
6057
6057
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
6058
6058
|
}, {
|
|
6059
|
+
operation: "get_event";
|
|
6059
6060
|
success: boolean;
|
|
6060
6061
|
error: string;
|
|
6061
|
-
operation: "get_event";
|
|
6062
6062
|
event?: z.objectInputType<{
|
|
6063
6063
|
id: z.ZodOptional<z.ZodNumber>;
|
|
6064
6064
|
type: z.ZodString;
|
|
@@ -6086,20 +6086,20 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
6086
6086
|
emails?: {
|
|
6087
6087
|
value: string;
|
|
6088
6088
|
}[] | undefined;
|
|
6089
|
+
tags?: string[] | undefined;
|
|
6089
6090
|
phones?: {
|
|
6090
6091
|
value: string;
|
|
6091
6092
|
}[] | undefined;
|
|
6092
|
-
tags?: string[] | undefined;
|
|
6093
6093
|
firstName?: string | undefined;
|
|
6094
6094
|
lastName?: string | undefined;
|
|
6095
6095
|
}, {
|
|
6096
6096
|
emails?: {
|
|
6097
6097
|
value: string;
|
|
6098
6098
|
}[] | undefined;
|
|
6099
|
+
tags?: string[] | undefined;
|
|
6099
6100
|
phones?: {
|
|
6100
6101
|
value: string;
|
|
6101
6102
|
}[] | undefined;
|
|
6102
|
-
tags?: string[] | undefined;
|
|
6103
6103
|
firstName?: string | undefined;
|
|
6104
6104
|
lastName?: string | undefined;
|
|
6105
6105
|
}>>;
|
|
@@ -6135,20 +6135,20 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
6135
6135
|
emails?: {
|
|
6136
6136
|
value: string;
|
|
6137
6137
|
}[] | undefined;
|
|
6138
|
+
tags?: string[] | undefined;
|
|
6138
6139
|
phones?: {
|
|
6139
6140
|
value: string;
|
|
6140
6141
|
}[] | undefined;
|
|
6141
|
-
tags?: string[] | undefined;
|
|
6142
6142
|
firstName?: string | undefined;
|
|
6143
6143
|
lastName?: string | undefined;
|
|
6144
6144
|
}, {
|
|
6145
6145
|
emails?: {
|
|
6146
6146
|
value: string;
|
|
6147
6147
|
}[] | undefined;
|
|
6148
|
+
tags?: string[] | undefined;
|
|
6148
6149
|
phones?: {
|
|
6149
6150
|
value: string;
|
|
6150
6151
|
}[] | undefined;
|
|
6151
|
-
tags?: string[] | undefined;
|
|
6152
6152
|
firstName?: string | undefined;
|
|
6153
6153
|
lastName?: string | undefined;
|
|
6154
6154
|
}>>;
|
|
@@ -6180,20 +6180,20 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
6180
6180
|
emails?: {
|
|
6181
6181
|
value: string;
|
|
6182
6182
|
}[] | undefined;
|
|
6183
|
+
tags?: string[] | undefined;
|
|
6183
6184
|
phones?: {
|
|
6184
6185
|
value: string;
|
|
6185
6186
|
}[] | undefined;
|
|
6186
|
-
tags?: string[] | undefined;
|
|
6187
6187
|
firstName?: string | undefined;
|
|
6188
6188
|
lastName?: string | undefined;
|
|
6189
6189
|
}, {
|
|
6190
6190
|
emails?: {
|
|
6191
6191
|
value: string;
|
|
6192
6192
|
}[] | undefined;
|
|
6193
|
+
tags?: string[] | undefined;
|
|
6193
6194
|
phones?: {
|
|
6194
6195
|
value: string;
|
|
6195
6196
|
}[] | undefined;
|
|
6196
|
-
tags?: string[] | undefined;
|
|
6197
6197
|
firstName?: string | undefined;
|
|
6198
6198
|
lastName?: string | undefined;
|
|
6199
6199
|
}>>;
|
|
@@ -6225,20 +6225,20 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
6225
6225
|
emails?: {
|
|
6226
6226
|
value: string;
|
|
6227
6227
|
}[] | undefined;
|
|
6228
|
+
tags?: string[] | undefined;
|
|
6228
6229
|
phones?: {
|
|
6229
6230
|
value: string;
|
|
6230
6231
|
}[] | undefined;
|
|
6231
|
-
tags?: string[] | undefined;
|
|
6232
6232
|
firstName?: string | undefined;
|
|
6233
6233
|
lastName?: string | undefined;
|
|
6234
6234
|
}, {
|
|
6235
6235
|
emails?: {
|
|
6236
6236
|
value: string;
|
|
6237
6237
|
}[] | undefined;
|
|
6238
|
+
tags?: string[] | undefined;
|
|
6238
6239
|
phones?: {
|
|
6239
6240
|
value: string;
|
|
6240
6241
|
}[] | undefined;
|
|
6241
|
-
tags?: string[] | undefined;
|
|
6242
6242
|
firstName?: string | undefined;
|
|
6243
6243
|
lastName?: string | undefined;
|
|
6244
6244
|
}>>;
|
|
@@ -6246,9 +6246,9 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
6246
6246
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
6247
6247
|
error: z.ZodString;
|
|
6248
6248
|
}, "strip", z.ZodTypeAny, {
|
|
6249
|
+
operation: "create_event";
|
|
6249
6250
|
success: boolean;
|
|
6250
6251
|
error: string;
|
|
6251
|
-
operation: "create_event";
|
|
6252
6252
|
event?: z.objectOutputType<{
|
|
6253
6253
|
id: z.ZodOptional<z.ZodNumber>;
|
|
6254
6254
|
type: z.ZodString;
|
|
@@ -6276,29 +6276,29 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
6276
6276
|
emails?: {
|
|
6277
6277
|
value: string;
|
|
6278
6278
|
}[] | undefined;
|
|
6279
|
+
tags?: string[] | undefined;
|
|
6279
6280
|
phones?: {
|
|
6280
6281
|
value: string;
|
|
6281
6282
|
}[] | undefined;
|
|
6282
|
-
tags?: string[] | undefined;
|
|
6283
6283
|
firstName?: string | undefined;
|
|
6284
6284
|
lastName?: string | undefined;
|
|
6285
6285
|
}, {
|
|
6286
6286
|
emails?: {
|
|
6287
6287
|
value: string;
|
|
6288
6288
|
}[] | undefined;
|
|
6289
|
+
tags?: string[] | undefined;
|
|
6289
6290
|
phones?: {
|
|
6290
6291
|
value: string;
|
|
6291
6292
|
}[] | undefined;
|
|
6292
|
-
tags?: string[] | undefined;
|
|
6293
6293
|
firstName?: string | undefined;
|
|
6294
6294
|
lastName?: string | undefined;
|
|
6295
6295
|
}>>;
|
|
6296
6296
|
created: z.ZodOptional<z.ZodString>;
|
|
6297
6297
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
6298
6298
|
}, {
|
|
6299
|
+
operation: "create_event";
|
|
6299
6300
|
success: boolean;
|
|
6300
6301
|
error: string;
|
|
6301
|
-
operation: "create_event";
|
|
6302
6302
|
event?: z.objectInputType<{
|
|
6303
6303
|
id: z.ZodOptional<z.ZodNumber>;
|
|
6304
6304
|
type: z.ZodString;
|
|
@@ -6326,20 +6326,20 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
6326
6326
|
emails?: {
|
|
6327
6327
|
value: string;
|
|
6328
6328
|
}[] | undefined;
|
|
6329
|
+
tags?: string[] | undefined;
|
|
6329
6330
|
phones?: {
|
|
6330
6331
|
value: string;
|
|
6331
6332
|
}[] | undefined;
|
|
6332
|
-
tags?: string[] | undefined;
|
|
6333
6333
|
firstName?: string | undefined;
|
|
6334
6334
|
lastName?: string | undefined;
|
|
6335
6335
|
}, {
|
|
6336
6336
|
emails?: {
|
|
6337
6337
|
value: string;
|
|
6338
6338
|
}[] | undefined;
|
|
6339
|
+
tags?: string[] | undefined;
|
|
6339
6340
|
phones?: {
|
|
6340
6341
|
value: string;
|
|
6341
6342
|
}[] | undefined;
|
|
6342
|
-
tags?: string[] | undefined;
|
|
6343
6343
|
firstName?: string | undefined;
|
|
6344
6344
|
lastName?: string | undefined;
|
|
6345
6345
|
}>>;
|
|
@@ -6385,9 +6385,9 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
6385
6385
|
}>>;
|
|
6386
6386
|
error: z.ZodString;
|
|
6387
6387
|
}, "strip", z.ZodTypeAny, {
|
|
6388
|
+
operation: "list_calls";
|
|
6388
6389
|
success: boolean;
|
|
6389
6390
|
error: string;
|
|
6390
|
-
operation: "list_calls";
|
|
6391
6391
|
_metadata?: {
|
|
6392
6392
|
limit?: number | undefined;
|
|
6393
6393
|
offset?: number | undefined;
|
|
@@ -6402,9 +6402,9 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
6402
6402
|
created: z.ZodOptional<z.ZodString>;
|
|
6403
6403
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
6404
6404
|
}, {
|
|
6405
|
+
operation: "list_calls";
|
|
6405
6406
|
success: boolean;
|
|
6406
6407
|
error: string;
|
|
6407
|
-
operation: "list_calls";
|
|
6408
6408
|
_metadata?: {
|
|
6409
6409
|
limit?: number | undefined;
|
|
6410
6410
|
offset?: number | undefined;
|
|
@@ -6445,9 +6445,9 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
6445
6445
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
6446
6446
|
error: z.ZodString;
|
|
6447
6447
|
}, "strip", z.ZodTypeAny, {
|
|
6448
|
+
operation: "create_call";
|
|
6448
6449
|
success: boolean;
|
|
6449
6450
|
error: string;
|
|
6450
|
-
operation: "create_call";
|
|
6451
6451
|
call?: z.objectOutputType<{
|
|
6452
6452
|
id: z.ZodNumber;
|
|
6453
6453
|
personId: z.ZodNumber;
|
|
@@ -6457,9 +6457,9 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
6457
6457
|
created: z.ZodOptional<z.ZodString>;
|
|
6458
6458
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
6459
6459
|
}, {
|
|
6460
|
+
operation: "create_call";
|
|
6460
6461
|
success: boolean;
|
|
6461
6462
|
error: string;
|
|
6462
|
-
operation: "create_call";
|
|
6463
6463
|
call?: z.objectInputType<{
|
|
6464
6464
|
id: z.ZodNumber;
|
|
6465
6465
|
personId: z.ZodNumber;
|
|
@@ -6511,9 +6511,9 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
6511
6511
|
}>>;
|
|
6512
6512
|
error: z.ZodString;
|
|
6513
6513
|
}, "strip", z.ZodTypeAny, {
|
|
6514
|
+
operation: "list_appointments";
|
|
6514
6515
|
success: boolean;
|
|
6515
6516
|
error: string;
|
|
6516
|
-
operation: "list_appointments";
|
|
6517
6517
|
_metadata?: {
|
|
6518
6518
|
limit?: number | undefined;
|
|
6519
6519
|
offset?: number | undefined;
|
|
@@ -6529,9 +6529,9 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
6529
6529
|
created: z.ZodOptional<z.ZodString>;
|
|
6530
6530
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
6531
6531
|
}, {
|
|
6532
|
+
operation: "list_appointments";
|
|
6532
6533
|
success: boolean;
|
|
6533
6534
|
error: string;
|
|
6534
|
-
operation: "list_appointments";
|
|
6535
6535
|
_metadata?: {
|
|
6536
6536
|
limit?: number | undefined;
|
|
6537
6537
|
offset?: number | undefined;
|
|
@@ -6576,9 +6576,9 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
6576
6576
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
6577
6577
|
error: z.ZodString;
|
|
6578
6578
|
}, "strip", z.ZodTypeAny, {
|
|
6579
|
+
operation: "create_appointment";
|
|
6579
6580
|
success: boolean;
|
|
6580
6581
|
error: string;
|
|
6581
|
-
operation: "create_appointment";
|
|
6582
6582
|
appointment?: z.objectOutputType<{
|
|
6583
6583
|
id: z.ZodNumber;
|
|
6584
6584
|
personId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -6589,9 +6589,9 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
6589
6589
|
created: z.ZodOptional<z.ZodString>;
|
|
6590
6590
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
6591
6591
|
}, {
|
|
6592
|
+
operation: "create_appointment";
|
|
6592
6593
|
success: boolean;
|
|
6593
6594
|
error: string;
|
|
6594
|
-
operation: "create_appointment";
|
|
6595
6595
|
appointment?: z.objectInputType<{
|
|
6596
6596
|
id: z.ZodNumber;
|
|
6597
6597
|
personId: z.ZodOptional<z.ZodNumber>;
|
|
@@ -6622,9 +6622,9 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
6622
6622
|
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
6623
6623
|
error: z.ZodString;
|
|
6624
6624
|
}, "strip", z.ZodTypeAny, {
|
|
6625
|
+
operation: "list_webhooks";
|
|
6625
6626
|
success: boolean;
|
|
6626
6627
|
error: string;
|
|
6627
|
-
operation: "list_webhooks";
|
|
6628
6628
|
webhooks?: z.objectOutputType<{
|
|
6629
6629
|
id: z.ZodNumber;
|
|
6630
6630
|
event: z.ZodString;
|
|
@@ -6632,9 +6632,9 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
6632
6632
|
status: z.ZodOptional<z.ZodString>;
|
|
6633
6633
|
}, z.ZodTypeAny, "passthrough">[] | undefined;
|
|
6634
6634
|
}, {
|
|
6635
|
+
operation: "list_webhooks";
|
|
6635
6636
|
success: boolean;
|
|
6636
6637
|
error: string;
|
|
6637
|
-
operation: "list_webhooks";
|
|
6638
6638
|
webhooks?: z.objectInputType<{
|
|
6639
6639
|
id: z.ZodNumber;
|
|
6640
6640
|
event: z.ZodString;
|
|
@@ -6662,9 +6662,9 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
6662
6662
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
6663
6663
|
error: z.ZodString;
|
|
6664
6664
|
}, "strip", z.ZodTypeAny, {
|
|
6665
|
+
operation: "get_webhook";
|
|
6665
6666
|
success: boolean;
|
|
6666
6667
|
error: string;
|
|
6667
|
-
operation: "get_webhook";
|
|
6668
6668
|
webhook?: z.objectOutputType<{
|
|
6669
6669
|
id: z.ZodNumber;
|
|
6670
6670
|
event: z.ZodString;
|
|
@@ -6672,9 +6672,9 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
6672
6672
|
status: z.ZodOptional<z.ZodString>;
|
|
6673
6673
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
6674
6674
|
}, {
|
|
6675
|
+
operation: "get_webhook";
|
|
6675
6676
|
success: boolean;
|
|
6676
6677
|
error: string;
|
|
6677
|
-
operation: "get_webhook";
|
|
6678
6678
|
webhook?: z.objectInputType<{
|
|
6679
6679
|
id: z.ZodNumber;
|
|
6680
6680
|
event: z.ZodString;
|
|
@@ -6702,9 +6702,9 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
6702
6702
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
6703
6703
|
error: z.ZodString;
|
|
6704
6704
|
}, "strip", z.ZodTypeAny, {
|
|
6705
|
+
operation: "create_webhook";
|
|
6705
6706
|
success: boolean;
|
|
6706
6707
|
error: string;
|
|
6707
|
-
operation: "create_webhook";
|
|
6708
6708
|
webhook?: z.objectOutputType<{
|
|
6709
6709
|
id: z.ZodNumber;
|
|
6710
6710
|
event: z.ZodString;
|
|
@@ -6712,9 +6712,9 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
6712
6712
|
status: z.ZodOptional<z.ZodString>;
|
|
6713
6713
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
6714
6714
|
}, {
|
|
6715
|
+
operation: "create_webhook";
|
|
6715
6716
|
success: boolean;
|
|
6716
6717
|
error: string;
|
|
6717
|
-
operation: "create_webhook";
|
|
6718
6718
|
webhook?: z.objectInputType<{
|
|
6719
6719
|
id: z.ZodNumber;
|
|
6720
6720
|
event: z.ZodString;
|
|
@@ -6742,9 +6742,9 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
6742
6742
|
}, z.ZodTypeAny, "passthrough">>>;
|
|
6743
6743
|
error: z.ZodString;
|
|
6744
6744
|
}, "strip", z.ZodTypeAny, {
|
|
6745
|
+
operation: "update_webhook";
|
|
6745
6746
|
success: boolean;
|
|
6746
6747
|
error: string;
|
|
6747
|
-
operation: "update_webhook";
|
|
6748
6748
|
webhook?: z.objectOutputType<{
|
|
6749
6749
|
id: z.ZodNumber;
|
|
6750
6750
|
event: z.ZodString;
|
|
@@ -6752,9 +6752,9 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
6752
6752
|
status: z.ZodOptional<z.ZodString>;
|
|
6753
6753
|
}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
6754
6754
|
}, {
|
|
6755
|
+
operation: "update_webhook";
|
|
6755
6756
|
success: boolean;
|
|
6756
6757
|
error: string;
|
|
6757
|
-
operation: "update_webhook";
|
|
6758
6758
|
webhook?: z.objectInputType<{
|
|
6759
6759
|
id: z.ZodNumber;
|
|
6760
6760
|
event: z.ZodString;
|
|
@@ -6767,14 +6767,14 @@ export declare class FollowUpBossBubble<T extends FUBParams = FUBParams> extends
|
|
|
6767
6767
|
deleted_id: z.ZodOptional<z.ZodNumber>;
|
|
6768
6768
|
error: z.ZodString;
|
|
6769
6769
|
}, "strip", z.ZodTypeAny, {
|
|
6770
|
+
operation: "delete_webhook";
|
|
6770
6771
|
success: boolean;
|
|
6771
6772
|
error: string;
|
|
6772
|
-
operation: "delete_webhook";
|
|
6773
6773
|
deleted_id?: number | undefined;
|
|
6774
6774
|
}, {
|
|
6775
|
+
operation: "delete_webhook";
|
|
6775
6776
|
success: boolean;
|
|
6776
6777
|
error: string;
|
|
6777
|
-
operation: "delete_webhook";
|
|
6778
6778
|
deleted_id?: number | undefined;
|
|
6779
6779
|
}>]>;
|
|
6780
6780
|
static readonly shortDescription = "Follow Up Boss CRM integration";
|