@bubblelab/bubble-core 0.1.75 → 0.1.76
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 +92 -92
- package/dist/bubbles/service-bubble/agi-inc.d.ts +112 -112
- package/dist/bubbles/service-bubble/ai-agent.d.ts +8 -8
- package/dist/bubbles/service-bubble/airtable.d.ts +222 -222
- package/dist/bubbles/service-bubble/apify/apify.d.ts +12 -12
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +22 -22
- package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +22 -22
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +29 -29
- package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +29 -29
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +16 -16
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +20 -20
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +28 -28
- package/dist/bubbles/service-bubble/firecrawl.d.ts +88 -88
- package/dist/bubbles/service-bubble/followupboss.d.ts +232 -232
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +16 -16
- package/dist/bubbles/service-bubble/fullenrich/fullenrich.schema.d.ts +16 -16
- package/dist/bubbles/service-bubble/github.d.ts +60 -60
- package/dist/bubbles/service-bubble/gmail.d.ts +74 -74
- package/dist/bubbles/service-bubble/google-calendar.d.ts +28 -28
- package/dist/bubbles/service-bubble/google-drive.d.ts +94 -94
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +42 -42
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.schema.d.ts +46 -46
- package/dist/bubbles/service-bubble/http.d.ts +8 -8
- package/dist/bubbles/service-bubble/insforge-db.d.ts +10 -10
- package/dist/bubbles/service-bubble/jira/jira.d.ts +54 -54
- package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +56 -56
- package/dist/bubbles/service-bubble/notion/notion.d.ts +208 -208
- package/dist/bubbles/service-bubble/postgresql.d.ts +10 -10
- package/dist/bubbles/service-bubble/resend.d.ts +8 -8
- package/dist/bubbles/service-bubble/slack/slack.d.ts +278 -278
- package/dist/bubbles/service-bubble/storage.d.ts +20 -20
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +71 -71
- package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +77 -77
- package/dist/bubbles/service-bubble/telegram.d.ts +110 -110
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +24 -24
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.schema.d.ts +28 -28
- 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-connection-tool/linkedin-connection-tool.d.ts +2 -2
- package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.schema.d.ts +2 -2
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +46 -46
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +40 -40
- package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +14 -14
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +50 -50
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +52 -52
- package/dist/bubbles.json +1 -1
- package/package.json +2 -2
|
@@ -27,14 +27,14 @@ declare const ApifyParamsSchema: z.ZodObject<{
|
|
|
27
27
|
input: Record<string, unknown>;
|
|
28
28
|
limit: number;
|
|
29
29
|
waitForFinish: boolean;
|
|
30
|
-
search?: string | undefined;
|
|
31
30
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
31
|
+
search?: string | undefined;
|
|
32
32
|
actorId?: string | undefined;
|
|
33
33
|
}, {
|
|
34
34
|
input: Record<string, unknown>;
|
|
35
|
-
search?: string | undefined;
|
|
36
35
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
37
36
|
timeout?: number | undefined;
|
|
37
|
+
search?: string | undefined;
|
|
38
38
|
limit?: number | undefined;
|
|
39
39
|
actorId?: string | undefined;
|
|
40
40
|
waitForFinish?: boolean | undefined;
|
|
@@ -69,22 +69,22 @@ declare const ApifyResultSchema: z.ZodObject<{
|
|
|
69
69
|
name: string;
|
|
70
70
|
id: string;
|
|
71
71
|
inputSchemaUrl: string;
|
|
72
|
-
description?: string | null | undefined;
|
|
73
72
|
usage?: {
|
|
74
73
|
totalRuns?: number | undefined;
|
|
75
74
|
usersCount?: number | undefined;
|
|
76
75
|
} | null | undefined;
|
|
76
|
+
description?: string | null | undefined;
|
|
77
77
|
stars?: number | null | undefined;
|
|
78
78
|
requiresRental?: boolean | undefined;
|
|
79
79
|
}, {
|
|
80
80
|
name: string;
|
|
81
81
|
id: string;
|
|
82
82
|
inputSchemaUrl: string;
|
|
83
|
-
description?: string | null | undefined;
|
|
84
83
|
usage?: {
|
|
85
84
|
totalRuns?: number | undefined;
|
|
86
85
|
usersCount?: number | undefined;
|
|
87
86
|
} | null | undefined;
|
|
87
|
+
description?: string | null | undefined;
|
|
88
88
|
stars?: number | null | undefined;
|
|
89
89
|
requiresRental?: boolean | undefined;
|
|
90
90
|
}>, "many">>;
|
|
@@ -101,11 +101,11 @@ declare const ApifyResultSchema: z.ZodObject<{
|
|
|
101
101
|
name: string;
|
|
102
102
|
id: string;
|
|
103
103
|
inputSchemaUrl: string;
|
|
104
|
-
description?: string | null | undefined;
|
|
105
104
|
usage?: {
|
|
106
105
|
totalRuns?: number | undefined;
|
|
107
106
|
usersCount?: number | undefined;
|
|
108
107
|
} | null | undefined;
|
|
108
|
+
description?: string | null | undefined;
|
|
109
109
|
stars?: number | null | undefined;
|
|
110
110
|
requiresRental?: boolean | undefined;
|
|
111
111
|
}[] | undefined;
|
|
@@ -122,11 +122,11 @@ declare const ApifyResultSchema: z.ZodObject<{
|
|
|
122
122
|
name: string;
|
|
123
123
|
id: string;
|
|
124
124
|
inputSchemaUrl: string;
|
|
125
|
-
description?: string | null | undefined;
|
|
126
125
|
usage?: {
|
|
127
126
|
totalRuns?: number | undefined;
|
|
128
127
|
usersCount?: number | undefined;
|
|
129
128
|
} | null | undefined;
|
|
129
|
+
description?: string | null | undefined;
|
|
130
130
|
stars?: number | null | undefined;
|
|
131
131
|
requiresRental?: boolean | undefined;
|
|
132
132
|
}[] | undefined;
|
|
@@ -163,14 +163,14 @@ export declare class ApifyBubble<T extends string = string> extends ServiceBubbl
|
|
|
163
163
|
input: Record<string, unknown>;
|
|
164
164
|
limit: number;
|
|
165
165
|
waitForFinish: boolean;
|
|
166
|
-
search?: string | undefined;
|
|
167
166
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
167
|
+
search?: string | undefined;
|
|
168
168
|
actorId?: string | undefined;
|
|
169
169
|
}, {
|
|
170
170
|
input: Record<string, unknown>;
|
|
171
|
-
search?: string | undefined;
|
|
172
171
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
173
172
|
timeout?: number | undefined;
|
|
173
|
+
search?: string | undefined;
|
|
174
174
|
limit?: number | undefined;
|
|
175
175
|
actorId?: string | undefined;
|
|
176
176
|
waitForFinish?: boolean | undefined;
|
|
@@ -205,22 +205,22 @@ export declare class ApifyBubble<T extends string = string> extends ServiceBubbl
|
|
|
205
205
|
name: string;
|
|
206
206
|
id: string;
|
|
207
207
|
inputSchemaUrl: string;
|
|
208
|
-
description?: string | null | undefined;
|
|
209
208
|
usage?: {
|
|
210
209
|
totalRuns?: number | undefined;
|
|
211
210
|
usersCount?: number | undefined;
|
|
212
211
|
} | null | undefined;
|
|
212
|
+
description?: string | null | undefined;
|
|
213
213
|
stars?: number | null | undefined;
|
|
214
214
|
requiresRental?: boolean | undefined;
|
|
215
215
|
}, {
|
|
216
216
|
name: string;
|
|
217
217
|
id: string;
|
|
218
218
|
inputSchemaUrl: string;
|
|
219
|
-
description?: string | null | undefined;
|
|
220
219
|
usage?: {
|
|
221
220
|
totalRuns?: number | undefined;
|
|
222
221
|
usersCount?: number | undefined;
|
|
223
222
|
} | null | undefined;
|
|
223
|
+
description?: string | null | undefined;
|
|
224
224
|
stars?: number | null | undefined;
|
|
225
225
|
requiresRental?: boolean | undefined;
|
|
226
226
|
}>, "many">>;
|
|
@@ -237,11 +237,11 @@ export declare class ApifyBubble<T extends string = string> extends ServiceBubbl
|
|
|
237
237
|
name: string;
|
|
238
238
|
id: string;
|
|
239
239
|
inputSchemaUrl: string;
|
|
240
|
-
description?: string | null | undefined;
|
|
241
240
|
usage?: {
|
|
242
241
|
totalRuns?: number | undefined;
|
|
243
242
|
usersCount?: number | undefined;
|
|
244
243
|
} | null | undefined;
|
|
244
|
+
description?: string | null | undefined;
|
|
245
245
|
stars?: number | null | undefined;
|
|
246
246
|
requiresRental?: boolean | undefined;
|
|
247
247
|
}[] | undefined;
|
|
@@ -258,11 +258,11 @@ export declare class ApifyBubble<T extends string = string> extends ServiceBubbl
|
|
|
258
258
|
name: string;
|
|
259
259
|
id: string;
|
|
260
260
|
inputSchemaUrl: string;
|
|
261
|
-
description?: string | null | undefined;
|
|
262
261
|
usage?: {
|
|
263
262
|
totalRuns?: number | undefined;
|
|
264
263
|
usersCount?: number | undefined;
|
|
265
264
|
} | null | undefined;
|
|
265
|
+
description?: string | null | undefined;
|
|
266
266
|
stars?: number | null | undefined;
|
|
267
267
|
requiresRental?: boolean | undefined;
|
|
268
268
|
}[] | undefined;
|
|
@@ -104,8 +104,8 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
104
104
|
allow_duplicate_linkedin: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
105
105
|
credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
|
|
106
106
|
}, "strip", import("zod").ZodTypeAny, {
|
|
107
|
-
operation: "create_candidate";
|
|
108
107
|
name: string;
|
|
108
|
+
operation: "create_candidate";
|
|
109
109
|
allow_duplicate_linkedin: boolean;
|
|
110
110
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
111
111
|
website?: string | undefined;
|
|
@@ -120,8 +120,8 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
120
120
|
credited_to_user_id?: string | undefined;
|
|
121
121
|
tag?: string | undefined;
|
|
122
122
|
}, {
|
|
123
|
-
operation: "create_candidate";
|
|
124
123
|
name: string;
|
|
124
|
+
operation: "create_candidate";
|
|
125
125
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
126
126
|
website?: string | undefined;
|
|
127
127
|
emails?: {
|
|
@@ -143,13 +143,13 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
143
143
|
}, "strip", import("zod").ZodTypeAny, {
|
|
144
144
|
operation: "search_candidates";
|
|
145
145
|
name?: string | undefined;
|
|
146
|
-
email?: string | undefined;
|
|
147
146
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
147
|
+
email?: string | undefined;
|
|
148
148
|
}, {
|
|
149
149
|
operation: "search_candidates";
|
|
150
150
|
name?: string | undefined;
|
|
151
|
-
email?: string | undefined;
|
|
152
151
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
152
|
+
email?: string | undefined;
|
|
153
153
|
}>, import("zod").ZodObject<{
|
|
154
154
|
operation: import("zod").ZodLiteral<"add_tag">;
|
|
155
155
|
candidate_id: import("zod").ZodString;
|
|
@@ -182,12 +182,12 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
182
182
|
title: import("zod").ZodString;
|
|
183
183
|
credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
|
|
184
184
|
}, "strip", import("zod").ZodTypeAny, {
|
|
185
|
-
operation: "create_tag";
|
|
186
185
|
title: string;
|
|
186
|
+
operation: "create_tag";
|
|
187
187
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
188
188
|
}, {
|
|
189
|
-
operation: "create_tag";
|
|
190
189
|
title: string;
|
|
190
|
+
operation: "create_tag";
|
|
191
191
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
192
192
|
}>, import("zod").ZodObject<{
|
|
193
193
|
operation: import("zod").ZodLiteral<"list_custom_fields">;
|
|
@@ -451,9 +451,9 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
451
451
|
sync_token: import("zod").ZodOptional<import("zod").ZodString>;
|
|
452
452
|
error: import("zod").ZodString;
|
|
453
453
|
}, "strip", import("zod").ZodTypeAny, {
|
|
454
|
-
operation: "list_candidates";
|
|
455
454
|
error: string;
|
|
456
455
|
success: boolean;
|
|
456
|
+
operation: "list_candidates";
|
|
457
457
|
next_cursor?: string | undefined;
|
|
458
458
|
sync_token?: string | undefined;
|
|
459
459
|
candidates?: {
|
|
@@ -513,9 +513,9 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
513
513
|
}[] | undefined;
|
|
514
514
|
more_data_available?: boolean | undefined;
|
|
515
515
|
}, {
|
|
516
|
-
operation: "list_candidates";
|
|
517
516
|
error: string;
|
|
518
517
|
success: boolean;
|
|
518
|
+
operation: "list_candidates";
|
|
519
519
|
next_cursor?: string | undefined;
|
|
520
520
|
sync_token?: string | undefined;
|
|
521
521
|
candidates?: {
|
|
@@ -669,9 +669,9 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
669
669
|
}>>;
|
|
670
670
|
error: import("zod").ZodString;
|
|
671
671
|
}, "strip", import("zod").ZodTypeAny, {
|
|
672
|
-
operation: "get_candidate";
|
|
673
672
|
error: string;
|
|
674
673
|
success: boolean;
|
|
674
|
+
operation: "get_candidate";
|
|
675
675
|
candidate?: {
|
|
676
676
|
name: string;
|
|
677
677
|
id: string;
|
|
@@ -695,9 +695,9 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
695
695
|
}[] | undefined;
|
|
696
696
|
} | undefined;
|
|
697
697
|
}, {
|
|
698
|
-
operation: "get_candidate";
|
|
699
698
|
error: string;
|
|
700
699
|
success: boolean;
|
|
700
|
+
operation: "get_candidate";
|
|
701
701
|
candidate?: {
|
|
702
702
|
name: string;
|
|
703
703
|
id: string;
|
|
@@ -816,9 +816,9 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
816
816
|
duplicate: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
817
817
|
error: import("zod").ZodString;
|
|
818
818
|
}, "strip", import("zod").ZodTypeAny, {
|
|
819
|
-
operation: "create_candidate";
|
|
820
819
|
error: string;
|
|
821
820
|
success: boolean;
|
|
821
|
+
operation: "create_candidate";
|
|
822
822
|
candidate?: {
|
|
823
823
|
name: string;
|
|
824
824
|
id: string;
|
|
@@ -843,9 +843,9 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
843
843
|
} | undefined;
|
|
844
844
|
duplicate?: boolean | undefined;
|
|
845
845
|
}, {
|
|
846
|
-
operation: "create_candidate";
|
|
847
846
|
error: string;
|
|
848
847
|
success: boolean;
|
|
848
|
+
operation: "create_candidate";
|
|
849
849
|
candidate?: {
|
|
850
850
|
name: string;
|
|
851
851
|
id: string;
|
|
@@ -964,9 +964,9 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
964
964
|
}>, "many">>;
|
|
965
965
|
error: import("zod").ZodString;
|
|
966
966
|
}, "strip", import("zod").ZodTypeAny, {
|
|
967
|
-
operation: "search_candidates";
|
|
968
967
|
error: string;
|
|
969
968
|
success: boolean;
|
|
969
|
+
operation: "search_candidates";
|
|
970
970
|
candidates?: {
|
|
971
971
|
name: string;
|
|
972
972
|
id: string;
|
|
@@ -990,9 +990,9 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
990
990
|
}[] | undefined;
|
|
991
991
|
}[] | undefined;
|
|
992
992
|
}, {
|
|
993
|
-
operation: "search_candidates";
|
|
994
993
|
error: string;
|
|
995
994
|
success: boolean;
|
|
995
|
+
operation: "search_candidates";
|
|
996
996
|
candidates?: {
|
|
997
997
|
name: string;
|
|
998
998
|
id: string;
|
|
@@ -1110,9 +1110,9 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
1110
1110
|
}>>;
|
|
1111
1111
|
error: import("zod").ZodString;
|
|
1112
1112
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1113
|
-
operation: "add_tag";
|
|
1114
1113
|
error: string;
|
|
1115
1114
|
success: boolean;
|
|
1115
|
+
operation: "add_tag";
|
|
1116
1116
|
candidate?: {
|
|
1117
1117
|
name: string;
|
|
1118
1118
|
id: string;
|
|
@@ -1136,9 +1136,9 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
1136
1136
|
}[] | undefined;
|
|
1137
1137
|
} | undefined;
|
|
1138
1138
|
}, {
|
|
1139
|
-
operation: "add_tag";
|
|
1140
1139
|
error: string;
|
|
1141
1140
|
success: boolean;
|
|
1141
|
+
operation: "add_tag";
|
|
1142
1142
|
candidate?: {
|
|
1143
1143
|
name: string;
|
|
1144
1144
|
id: string;
|
|
@@ -1179,18 +1179,18 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
1179
1179
|
}>, "many">>;
|
|
1180
1180
|
error: import("zod").ZodString;
|
|
1181
1181
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1182
|
-
operation: "list_tags";
|
|
1183
1182
|
error: string;
|
|
1184
1183
|
success: boolean;
|
|
1184
|
+
operation: "list_tags";
|
|
1185
1185
|
tags?: {
|
|
1186
1186
|
title: string;
|
|
1187
1187
|
id: string;
|
|
1188
1188
|
isArchived?: boolean | undefined;
|
|
1189
1189
|
}[] | undefined;
|
|
1190
1190
|
}, {
|
|
1191
|
-
operation: "list_tags";
|
|
1192
1191
|
error: string;
|
|
1193
1192
|
success: boolean;
|
|
1193
|
+
operation: "list_tags";
|
|
1194
1194
|
tags?: {
|
|
1195
1195
|
title: string;
|
|
1196
1196
|
id: string;
|
|
@@ -1214,18 +1214,18 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
1214
1214
|
}>>;
|
|
1215
1215
|
error: import("zod").ZodString;
|
|
1216
1216
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1217
|
-
operation: "create_tag";
|
|
1218
1217
|
error: string;
|
|
1219
1218
|
success: boolean;
|
|
1219
|
+
operation: "create_tag";
|
|
1220
1220
|
tag?: {
|
|
1221
1221
|
title: string;
|
|
1222
1222
|
id: string;
|
|
1223
1223
|
isArchived?: boolean | undefined;
|
|
1224
1224
|
} | undefined;
|
|
1225
1225
|
}, {
|
|
1226
|
-
operation: "create_tag";
|
|
1227
1226
|
error: string;
|
|
1228
1227
|
success: boolean;
|
|
1228
|
+
operation: "create_tag";
|
|
1229
1229
|
tag?: {
|
|
1230
1230
|
title: string;
|
|
1231
1231
|
id: string;
|
|
@@ -1284,9 +1284,9 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
1284
1284
|
sync_token: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1285
1285
|
error: import("zod").ZodString;
|
|
1286
1286
|
}, "strip", import("zod").ZodTypeAny, {
|
|
1287
|
-
operation: "list_custom_fields";
|
|
1288
1287
|
error: string;
|
|
1289
1288
|
success: boolean;
|
|
1289
|
+
operation: "list_custom_fields";
|
|
1290
1290
|
next_cursor?: string | undefined;
|
|
1291
1291
|
sync_token?: string | undefined;
|
|
1292
1292
|
more_data_available?: boolean | undefined;
|
|
@@ -1304,9 +1304,9 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
|
|
|
1304
1304
|
}[] | undefined;
|
|
1305
1305
|
}[] | undefined;
|
|
1306
1306
|
}, {
|
|
1307
|
-
operation: "list_custom_fields";
|
|
1308
1307
|
error: string;
|
|
1309
1308
|
success: boolean;
|
|
1309
|
+
operation: "list_custom_fields";
|
|
1310
1310
|
next_cursor?: string | undefined;
|
|
1311
1311
|
sync_token?: string | undefined;
|
|
1312
1312
|
more_data_available?: boolean | undefined;
|
|
@@ -550,8 +550,8 @@ export declare const AshbyParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
550
550
|
allow_duplicate_linkedin: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
551
551
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
552
552
|
}, "strip", z.ZodTypeAny, {
|
|
553
|
-
operation: "create_candidate";
|
|
554
553
|
name: string;
|
|
554
|
+
operation: "create_candidate";
|
|
555
555
|
allow_duplicate_linkedin: boolean;
|
|
556
556
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
557
557
|
website?: string | undefined;
|
|
@@ -566,8 +566,8 @@ export declare const AshbyParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
566
566
|
credited_to_user_id?: string | undefined;
|
|
567
567
|
tag?: string | undefined;
|
|
568
568
|
}, {
|
|
569
|
-
operation: "create_candidate";
|
|
570
569
|
name: string;
|
|
570
|
+
operation: "create_candidate";
|
|
571
571
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
572
572
|
website?: string | undefined;
|
|
573
573
|
emails?: {
|
|
@@ -589,13 +589,13 @@ export declare const AshbyParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
589
589
|
}, "strip", z.ZodTypeAny, {
|
|
590
590
|
operation: "search_candidates";
|
|
591
591
|
name?: string | undefined;
|
|
592
|
-
email?: string | undefined;
|
|
593
592
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
593
|
+
email?: string | undefined;
|
|
594
594
|
}, {
|
|
595
595
|
operation: "search_candidates";
|
|
596
596
|
name?: string | undefined;
|
|
597
|
-
email?: string | undefined;
|
|
598
597
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
598
|
+
email?: string | undefined;
|
|
599
599
|
}>, z.ZodObject<{
|
|
600
600
|
operation: z.ZodLiteral<"add_tag">;
|
|
601
601
|
candidate_id: z.ZodString;
|
|
@@ -628,12 +628,12 @@ export declare const AshbyParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
628
628
|
title: z.ZodString;
|
|
629
629
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
630
630
|
}, "strip", z.ZodTypeAny, {
|
|
631
|
-
operation: "create_tag";
|
|
632
631
|
title: string;
|
|
632
|
+
operation: "create_tag";
|
|
633
633
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
634
634
|
}, {
|
|
635
|
-
operation: "create_tag";
|
|
636
635
|
title: string;
|
|
636
|
+
operation: "create_tag";
|
|
637
637
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
638
638
|
}>, z.ZodObject<{
|
|
639
639
|
operation: z.ZodLiteral<"list_custom_fields">;
|
|
@@ -897,9 +897,9 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
897
897
|
sync_token: z.ZodOptional<z.ZodString>;
|
|
898
898
|
error: z.ZodString;
|
|
899
899
|
}, "strip", z.ZodTypeAny, {
|
|
900
|
-
operation: "list_candidates";
|
|
901
900
|
error: string;
|
|
902
901
|
success: boolean;
|
|
902
|
+
operation: "list_candidates";
|
|
903
903
|
next_cursor?: string | undefined;
|
|
904
904
|
sync_token?: string | undefined;
|
|
905
905
|
candidates?: {
|
|
@@ -959,9 +959,9 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
959
959
|
}[] | undefined;
|
|
960
960
|
more_data_available?: boolean | undefined;
|
|
961
961
|
}, {
|
|
962
|
-
operation: "list_candidates";
|
|
963
962
|
error: string;
|
|
964
963
|
success: boolean;
|
|
964
|
+
operation: "list_candidates";
|
|
965
965
|
next_cursor?: string | undefined;
|
|
966
966
|
sync_token?: string | undefined;
|
|
967
967
|
candidates?: {
|
|
@@ -1115,9 +1115,9 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
1115
1115
|
}>>;
|
|
1116
1116
|
error: z.ZodString;
|
|
1117
1117
|
}, "strip", z.ZodTypeAny, {
|
|
1118
|
-
operation: "get_candidate";
|
|
1119
1118
|
error: string;
|
|
1120
1119
|
success: boolean;
|
|
1120
|
+
operation: "get_candidate";
|
|
1121
1121
|
candidate?: {
|
|
1122
1122
|
name: string;
|
|
1123
1123
|
id: string;
|
|
@@ -1141,9 +1141,9 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
1141
1141
|
}[] | undefined;
|
|
1142
1142
|
} | undefined;
|
|
1143
1143
|
}, {
|
|
1144
|
-
operation: "get_candidate";
|
|
1145
1144
|
error: string;
|
|
1146
1145
|
success: boolean;
|
|
1146
|
+
operation: "get_candidate";
|
|
1147
1147
|
candidate?: {
|
|
1148
1148
|
name: string;
|
|
1149
1149
|
id: string;
|
|
@@ -1262,9 +1262,9 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
1262
1262
|
duplicate: z.ZodOptional<z.ZodBoolean>;
|
|
1263
1263
|
error: z.ZodString;
|
|
1264
1264
|
}, "strip", z.ZodTypeAny, {
|
|
1265
|
-
operation: "create_candidate";
|
|
1266
1265
|
error: string;
|
|
1267
1266
|
success: boolean;
|
|
1267
|
+
operation: "create_candidate";
|
|
1268
1268
|
candidate?: {
|
|
1269
1269
|
name: string;
|
|
1270
1270
|
id: string;
|
|
@@ -1289,9 +1289,9 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
1289
1289
|
} | undefined;
|
|
1290
1290
|
duplicate?: boolean | undefined;
|
|
1291
1291
|
}, {
|
|
1292
|
-
operation: "create_candidate";
|
|
1293
1292
|
error: string;
|
|
1294
1293
|
success: boolean;
|
|
1294
|
+
operation: "create_candidate";
|
|
1295
1295
|
candidate?: {
|
|
1296
1296
|
name: string;
|
|
1297
1297
|
id: string;
|
|
@@ -1410,9 +1410,9 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
1410
1410
|
}>, "many">>;
|
|
1411
1411
|
error: z.ZodString;
|
|
1412
1412
|
}, "strip", z.ZodTypeAny, {
|
|
1413
|
-
operation: "search_candidates";
|
|
1414
1413
|
error: string;
|
|
1415
1414
|
success: boolean;
|
|
1415
|
+
operation: "search_candidates";
|
|
1416
1416
|
candidates?: {
|
|
1417
1417
|
name: string;
|
|
1418
1418
|
id: string;
|
|
@@ -1436,9 +1436,9 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
1436
1436
|
}[] | undefined;
|
|
1437
1437
|
}[] | undefined;
|
|
1438
1438
|
}, {
|
|
1439
|
-
operation: "search_candidates";
|
|
1440
1439
|
error: string;
|
|
1441
1440
|
success: boolean;
|
|
1441
|
+
operation: "search_candidates";
|
|
1442
1442
|
candidates?: {
|
|
1443
1443
|
name: string;
|
|
1444
1444
|
id: string;
|
|
@@ -1556,9 +1556,9 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
1556
1556
|
}>>;
|
|
1557
1557
|
error: z.ZodString;
|
|
1558
1558
|
}, "strip", z.ZodTypeAny, {
|
|
1559
|
-
operation: "add_tag";
|
|
1560
1559
|
error: string;
|
|
1561
1560
|
success: boolean;
|
|
1561
|
+
operation: "add_tag";
|
|
1562
1562
|
candidate?: {
|
|
1563
1563
|
name: string;
|
|
1564
1564
|
id: string;
|
|
@@ -1582,9 +1582,9 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
1582
1582
|
}[] | undefined;
|
|
1583
1583
|
} | undefined;
|
|
1584
1584
|
}, {
|
|
1585
|
-
operation: "add_tag";
|
|
1586
1585
|
error: string;
|
|
1587
1586
|
success: boolean;
|
|
1587
|
+
operation: "add_tag";
|
|
1588
1588
|
candidate?: {
|
|
1589
1589
|
name: string;
|
|
1590
1590
|
id: string;
|
|
@@ -1625,18 +1625,18 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
1625
1625
|
}>, "many">>;
|
|
1626
1626
|
error: z.ZodString;
|
|
1627
1627
|
}, "strip", z.ZodTypeAny, {
|
|
1628
|
-
operation: "list_tags";
|
|
1629
1628
|
error: string;
|
|
1630
1629
|
success: boolean;
|
|
1630
|
+
operation: "list_tags";
|
|
1631
1631
|
tags?: {
|
|
1632
1632
|
title: string;
|
|
1633
1633
|
id: string;
|
|
1634
1634
|
isArchived?: boolean | undefined;
|
|
1635
1635
|
}[] | undefined;
|
|
1636
1636
|
}, {
|
|
1637
|
-
operation: "list_tags";
|
|
1638
1637
|
error: string;
|
|
1639
1638
|
success: boolean;
|
|
1639
|
+
operation: "list_tags";
|
|
1640
1640
|
tags?: {
|
|
1641
1641
|
title: string;
|
|
1642
1642
|
id: string;
|
|
@@ -1660,18 +1660,18 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
1660
1660
|
}>>;
|
|
1661
1661
|
error: z.ZodString;
|
|
1662
1662
|
}, "strip", z.ZodTypeAny, {
|
|
1663
|
-
operation: "create_tag";
|
|
1664
1663
|
error: string;
|
|
1665
1664
|
success: boolean;
|
|
1665
|
+
operation: "create_tag";
|
|
1666
1666
|
tag?: {
|
|
1667
1667
|
title: string;
|
|
1668
1668
|
id: string;
|
|
1669
1669
|
isArchived?: boolean | undefined;
|
|
1670
1670
|
} | undefined;
|
|
1671
1671
|
}, {
|
|
1672
|
-
operation: "create_tag";
|
|
1673
1672
|
error: string;
|
|
1674
1673
|
success: boolean;
|
|
1674
|
+
operation: "create_tag";
|
|
1675
1675
|
tag?: {
|
|
1676
1676
|
title: string;
|
|
1677
1677
|
id: string;
|
|
@@ -1730,9 +1730,9 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
1730
1730
|
sync_token: z.ZodOptional<z.ZodString>;
|
|
1731
1731
|
error: z.ZodString;
|
|
1732
1732
|
}, "strip", z.ZodTypeAny, {
|
|
1733
|
-
operation: "list_custom_fields";
|
|
1734
1733
|
error: string;
|
|
1735
1734
|
success: boolean;
|
|
1735
|
+
operation: "list_custom_fields";
|
|
1736
1736
|
next_cursor?: string | undefined;
|
|
1737
1737
|
sync_token?: string | undefined;
|
|
1738
1738
|
more_data_available?: boolean | undefined;
|
|
@@ -1750,9 +1750,9 @@ export declare const AshbyResultSchema: z.ZodDiscriminatedUnion<"operation", [z.
|
|
|
1750
1750
|
}[] | undefined;
|
|
1751
1751
|
}[] | undefined;
|
|
1752
1752
|
}, {
|
|
1753
|
-
operation: "list_custom_fields";
|
|
1754
1753
|
error: string;
|
|
1755
1754
|
success: boolean;
|
|
1755
|
+
operation: "list_custom_fields";
|
|
1756
1756
|
next_cursor?: string | undefined;
|
|
1757
1757
|
sync_token?: string | undefined;
|
|
1758
1758
|
more_data_available?: boolean | undefined;
|