@bubblelab/bubble-core 0.1.226 → 0.1.227
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 +84 -84
- package/dist/bubbles/service-bubble/agi-inc.d.ts +20 -20
- package/dist/bubbles/service-bubble/ai-agent.d.ts +12 -12
- package/dist/bubbles/service-bubble/airtable.d.ts +24 -24
- package/dist/bubbles/service-bubble/apify/apify.d.ts +12 -12
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +72 -72
- package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +100 -100
- package/dist/bubbles/service-bubble/assembled/assembled.d.ts +2 -2
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +2 -2
- package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +2 -2
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +4 -4
- package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +8 -8
- package/dist/bubbles/service-bubble/firecrawl.d.ts +212 -212
- package/dist/bubbles/service-bubble/github.d.ts +72 -72
- package/dist/bubbles/service-bubble/gmail.d.ts +148 -148
- package/dist/bubbles/service-bubble/google-calendar.d.ts +86 -86
- package/dist/bubbles/service-bubble/google-drive.d.ts +36 -36
- package/dist/bubbles/service-bubble/http.d.ts +4 -4
- package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
- package/dist/bubbles/service-bubble/jira/jira.d.ts +38 -38
- package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +46 -46
- package/dist/bubbles/service-bubble/notion/notion.d.ts +380 -380
- package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
- package/dist/bubbles/service-bubble/posthog/posthog.d.ts +2 -2
- package/dist/bubbles/service-bubble/posthog/posthog.schema.d.ts +2 -2
- package/dist/bubbles/service-bubble/slack/slack.d.ts +210 -210
- package/dist/bubbles/service-bubble/zendesk/zendesk.d.ts +2 -2
- package/dist/bubbles/service-bubble/zendesk/zendesk.schema.d.ts +2 -2
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +10 -10
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +270 -270
- package/dist/bubbles/tool-bubble/list-capabilities-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/people-search-tool.d.ts +34 -34
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +10 -10
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +56 -56
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +80 -80
- 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/yc-scraper-tool.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +12 -12
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +36 -36
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +16 -16
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +24 -24
- package/dist/bubbles.json +1 -1
- package/package.json +2 -2
|
@@ -203,9 +203,9 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
203
203
|
ok: boolean;
|
|
204
204
|
status?: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated" | undefined;
|
|
205
205
|
created_at?: string | undefined;
|
|
206
|
+
agent_name?: string | undefined;
|
|
206
207
|
session_id?: string | undefined;
|
|
207
208
|
vnc_url?: string | undefined;
|
|
208
|
-
agent_name?: string | undefined;
|
|
209
209
|
}, {
|
|
210
210
|
error: string;
|
|
211
211
|
success: boolean;
|
|
@@ -213,9 +213,9 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
213
213
|
ok: boolean;
|
|
214
214
|
status?: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated" | undefined;
|
|
215
215
|
created_at?: string | undefined;
|
|
216
|
+
agent_name?: string | undefined;
|
|
216
217
|
session_id?: string | undefined;
|
|
217
218
|
vnc_url?: string | undefined;
|
|
218
|
-
agent_name?: string | undefined;
|
|
219
219
|
}>, z.ZodObject<{
|
|
220
220
|
operation: z.ZodLiteral<"list_sessions">;
|
|
221
221
|
ok: z.ZodBoolean;
|
|
@@ -228,14 +228,14 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
228
228
|
}, "strip", z.ZodTypeAny, {
|
|
229
229
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
230
230
|
created_at: string;
|
|
231
|
-
session_id: string;
|
|
232
231
|
agent_name: string;
|
|
232
|
+
session_id: string;
|
|
233
233
|
vnc_url?: string | undefined;
|
|
234
234
|
}, {
|
|
235
235
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
236
236
|
created_at: string;
|
|
237
|
-
session_id: string;
|
|
238
237
|
agent_name: string;
|
|
238
|
+
session_id: string;
|
|
239
239
|
vnc_url?: string | undefined;
|
|
240
240
|
}>, "many">>;
|
|
241
241
|
error: z.ZodString;
|
|
@@ -248,8 +248,8 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
248
248
|
sessions?: {
|
|
249
249
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
250
250
|
created_at: string;
|
|
251
|
-
session_id: string;
|
|
252
251
|
agent_name: string;
|
|
252
|
+
session_id: string;
|
|
253
253
|
vnc_url?: string | undefined;
|
|
254
254
|
}[] | undefined;
|
|
255
255
|
}, {
|
|
@@ -260,8 +260,8 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
260
260
|
sessions?: {
|
|
261
261
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
262
262
|
created_at: string;
|
|
263
|
-
session_id: string;
|
|
264
263
|
agent_name: string;
|
|
264
|
+
session_id: string;
|
|
265
265
|
vnc_url?: string | undefined;
|
|
266
266
|
}[] | undefined;
|
|
267
267
|
}>, z.ZodObject<{
|
|
@@ -276,14 +276,14 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
276
276
|
}, "strip", z.ZodTypeAny, {
|
|
277
277
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
278
278
|
created_at: string;
|
|
279
|
-
session_id: string;
|
|
280
279
|
agent_name: string;
|
|
280
|
+
session_id: string;
|
|
281
281
|
vnc_url?: string | undefined;
|
|
282
282
|
}, {
|
|
283
283
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
284
284
|
created_at: string;
|
|
285
|
-
session_id: string;
|
|
286
285
|
agent_name: string;
|
|
286
|
+
session_id: string;
|
|
287
287
|
vnc_url?: string | undefined;
|
|
288
288
|
}>>;
|
|
289
289
|
error: z.ZodString;
|
|
@@ -296,8 +296,8 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
296
296
|
session?: {
|
|
297
297
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
298
298
|
created_at: string;
|
|
299
|
-
session_id: string;
|
|
300
299
|
agent_name: string;
|
|
300
|
+
session_id: string;
|
|
301
301
|
vnc_url?: string | undefined;
|
|
302
302
|
} | undefined;
|
|
303
303
|
}, {
|
|
@@ -308,8 +308,8 @@ declare const AGIIncResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObj
|
|
|
308
308
|
session?: {
|
|
309
309
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
310
310
|
created_at: string;
|
|
311
|
-
session_id: string;
|
|
312
311
|
agent_name: string;
|
|
312
|
+
session_id: string;
|
|
313
313
|
vnc_url?: string | undefined;
|
|
314
314
|
} | undefined;
|
|
315
315
|
}>, z.ZodObject<{
|
|
@@ -756,9 +756,9 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
|
|
|
756
756
|
ok: boolean;
|
|
757
757
|
status?: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated" | undefined;
|
|
758
758
|
created_at?: string | undefined;
|
|
759
|
+
agent_name?: string | undefined;
|
|
759
760
|
session_id?: string | undefined;
|
|
760
761
|
vnc_url?: string | undefined;
|
|
761
|
-
agent_name?: string | undefined;
|
|
762
762
|
}, {
|
|
763
763
|
error: string;
|
|
764
764
|
success: boolean;
|
|
@@ -766,9 +766,9 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
|
|
|
766
766
|
ok: boolean;
|
|
767
767
|
status?: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated" | undefined;
|
|
768
768
|
created_at?: string | undefined;
|
|
769
|
+
agent_name?: string | undefined;
|
|
769
770
|
session_id?: string | undefined;
|
|
770
771
|
vnc_url?: string | undefined;
|
|
771
|
-
agent_name?: string | undefined;
|
|
772
772
|
}>, z.ZodObject<{
|
|
773
773
|
operation: z.ZodLiteral<"list_sessions">;
|
|
774
774
|
ok: z.ZodBoolean;
|
|
@@ -781,14 +781,14 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
|
|
|
781
781
|
}, "strip", z.ZodTypeAny, {
|
|
782
782
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
783
783
|
created_at: string;
|
|
784
|
-
session_id: string;
|
|
785
784
|
agent_name: string;
|
|
785
|
+
session_id: string;
|
|
786
786
|
vnc_url?: string | undefined;
|
|
787
787
|
}, {
|
|
788
788
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
789
789
|
created_at: string;
|
|
790
|
-
session_id: string;
|
|
791
790
|
agent_name: string;
|
|
791
|
+
session_id: string;
|
|
792
792
|
vnc_url?: string | undefined;
|
|
793
793
|
}>, "many">>;
|
|
794
794
|
error: z.ZodString;
|
|
@@ -801,8 +801,8 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
|
|
|
801
801
|
sessions?: {
|
|
802
802
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
803
803
|
created_at: string;
|
|
804
|
-
session_id: string;
|
|
805
804
|
agent_name: string;
|
|
805
|
+
session_id: string;
|
|
806
806
|
vnc_url?: string | undefined;
|
|
807
807
|
}[] | undefined;
|
|
808
808
|
}, {
|
|
@@ -813,8 +813,8 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
|
|
|
813
813
|
sessions?: {
|
|
814
814
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
815
815
|
created_at: string;
|
|
816
|
-
session_id: string;
|
|
817
816
|
agent_name: string;
|
|
817
|
+
session_id: string;
|
|
818
818
|
vnc_url?: string | undefined;
|
|
819
819
|
}[] | undefined;
|
|
820
820
|
}>, z.ZodObject<{
|
|
@@ -829,14 +829,14 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
|
|
|
829
829
|
}, "strip", z.ZodTypeAny, {
|
|
830
830
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
831
831
|
created_at: string;
|
|
832
|
-
session_id: string;
|
|
833
832
|
agent_name: string;
|
|
833
|
+
session_id: string;
|
|
834
834
|
vnc_url?: string | undefined;
|
|
835
835
|
}, {
|
|
836
836
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
837
837
|
created_at: string;
|
|
838
|
-
session_id: string;
|
|
839
838
|
agent_name: string;
|
|
839
|
+
session_id: string;
|
|
840
840
|
vnc_url?: string | undefined;
|
|
841
841
|
}>>;
|
|
842
842
|
error: z.ZodString;
|
|
@@ -849,8 +849,8 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
|
|
|
849
849
|
session?: {
|
|
850
850
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
851
851
|
created_at: string;
|
|
852
|
-
session_id: string;
|
|
853
852
|
agent_name: string;
|
|
853
|
+
session_id: string;
|
|
854
854
|
vnc_url?: string | undefined;
|
|
855
855
|
} | undefined;
|
|
856
856
|
}, {
|
|
@@ -861,8 +861,8 @@ export declare class AGIIncBubble<T extends AGIIncParams = AGIIncParams> extends
|
|
|
861
861
|
session?: {
|
|
862
862
|
status: "error" | "completed" | "initializing" | "ready" | "running" | "paused" | "terminated";
|
|
863
863
|
created_at: string;
|
|
864
|
-
session_id: string;
|
|
865
864
|
agent_name: string;
|
|
865
|
+
session_id: string;
|
|
866
866
|
vnc_url?: string | undefined;
|
|
867
867
|
} | undefined;
|
|
868
868
|
}>, z.ZodObject<{
|
|
@@ -52,8 +52,8 @@ declare const AIAgentParamsSchema: z.ZodObject<{
|
|
|
52
52
|
}, {
|
|
53
53
|
data: string;
|
|
54
54
|
type?: "base64" | undefined;
|
|
55
|
-
mimeType?: string | undefined;
|
|
56
55
|
description?: string | undefined;
|
|
56
|
+
mimeType?: string | undefined;
|
|
57
57
|
}>, z.ZodObject<{
|
|
58
58
|
type: z.ZodLiteral<"url">;
|
|
59
59
|
url: z.ZodString;
|
|
@@ -259,8 +259,8 @@ declare const AIAgentParamsSchema: z.ZodObject<{
|
|
|
259
259
|
images?: ({
|
|
260
260
|
data: string;
|
|
261
261
|
type?: "base64" | undefined;
|
|
262
|
-
mimeType?: string | undefined;
|
|
263
262
|
description?: string | undefined;
|
|
263
|
+
mimeType?: string | undefined;
|
|
264
264
|
} | {
|
|
265
265
|
type: "url";
|
|
266
266
|
url: string;
|
|
@@ -334,6 +334,8 @@ declare const AIAgentResultSchema: z.ZodObject<{
|
|
|
334
334
|
error: z.ZodString;
|
|
335
335
|
success: z.ZodBoolean;
|
|
336
336
|
}, "strip", z.ZodTypeAny, {
|
|
337
|
+
error: string;
|
|
338
|
+
success: boolean;
|
|
337
339
|
response: string;
|
|
338
340
|
toolCalls: {
|
|
339
341
|
tool: string;
|
|
@@ -341,11 +343,11 @@ declare const AIAgentResultSchema: z.ZodObject<{
|
|
|
341
343
|
output?: unknown;
|
|
342
344
|
}[];
|
|
343
345
|
iterations: number;
|
|
344
|
-
error: string;
|
|
345
|
-
success: boolean;
|
|
346
346
|
reasoning?: string | null | undefined;
|
|
347
347
|
totalCost?: number | undefined;
|
|
348
348
|
}, {
|
|
349
|
+
error: string;
|
|
350
|
+
success: boolean;
|
|
349
351
|
response: string;
|
|
350
352
|
toolCalls: {
|
|
351
353
|
tool: string;
|
|
@@ -353,8 +355,6 @@ declare const AIAgentResultSchema: z.ZodObject<{
|
|
|
353
355
|
output?: unknown;
|
|
354
356
|
}[];
|
|
355
357
|
iterations: number;
|
|
356
|
-
error: string;
|
|
357
|
-
success: boolean;
|
|
358
358
|
reasoning?: string | null | undefined;
|
|
359
359
|
totalCost?: number | undefined;
|
|
360
360
|
}>;
|
|
@@ -391,8 +391,8 @@ export declare class AIAgentBubble extends ServiceBubble<AIAgentParamsParsed, AI
|
|
|
391
391
|
}, {
|
|
392
392
|
data: string;
|
|
393
393
|
type?: "base64" | undefined;
|
|
394
|
-
mimeType?: string | undefined;
|
|
395
394
|
description?: string | undefined;
|
|
395
|
+
mimeType?: string | undefined;
|
|
396
396
|
}>, z.ZodObject<{
|
|
397
397
|
type: z.ZodLiteral<"url">;
|
|
398
398
|
url: z.ZodString;
|
|
@@ -598,8 +598,8 @@ export declare class AIAgentBubble extends ServiceBubble<AIAgentParamsParsed, AI
|
|
|
598
598
|
images?: ({
|
|
599
599
|
data: string;
|
|
600
600
|
type?: "base64" | undefined;
|
|
601
|
-
mimeType?: string | undefined;
|
|
602
601
|
description?: string | undefined;
|
|
602
|
+
mimeType?: string | undefined;
|
|
603
603
|
} | {
|
|
604
604
|
type: "url";
|
|
605
605
|
url: string;
|
|
@@ -673,6 +673,8 @@ export declare class AIAgentBubble extends ServiceBubble<AIAgentParamsParsed, AI
|
|
|
673
673
|
error: z.ZodString;
|
|
674
674
|
success: z.ZodBoolean;
|
|
675
675
|
}, "strip", z.ZodTypeAny, {
|
|
676
|
+
error: string;
|
|
677
|
+
success: boolean;
|
|
676
678
|
response: string;
|
|
677
679
|
toolCalls: {
|
|
678
680
|
tool: string;
|
|
@@ -680,11 +682,11 @@ export declare class AIAgentBubble extends ServiceBubble<AIAgentParamsParsed, AI
|
|
|
680
682
|
output?: unknown;
|
|
681
683
|
}[];
|
|
682
684
|
iterations: number;
|
|
683
|
-
error: string;
|
|
684
|
-
success: boolean;
|
|
685
685
|
reasoning?: string | null | undefined;
|
|
686
686
|
totalCost?: number | undefined;
|
|
687
687
|
}, {
|
|
688
|
+
error: string;
|
|
689
|
+
success: boolean;
|
|
688
690
|
response: string;
|
|
689
691
|
toolCalls: {
|
|
690
692
|
tool: string;
|
|
@@ -692,8 +694,6 @@ export declare class AIAgentBubble extends ServiceBubble<AIAgentParamsParsed, AI
|
|
|
692
694
|
output?: unknown;
|
|
693
695
|
}[];
|
|
694
696
|
iterations: number;
|
|
695
|
-
error: string;
|
|
696
|
-
success: boolean;
|
|
697
697
|
reasoning?: string | null | undefined;
|
|
698
698
|
totalCost?: number | undefined;
|
|
699
699
|
}>;
|
|
@@ -199,13 +199,13 @@ declare const AirtableParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
199
199
|
}, "strip", z.ZodTypeAny, {
|
|
200
200
|
type: "number" | "date" | "url" | "email" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "button" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
|
|
201
201
|
name: string;
|
|
202
|
-
description?: string | undefined;
|
|
203
202
|
options?: Record<string, unknown> | undefined;
|
|
203
|
+
description?: string | undefined;
|
|
204
204
|
}, {
|
|
205
205
|
type: "number" | "date" | "url" | "email" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "button" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
|
|
206
206
|
name: string;
|
|
207
|
-
description?: string | undefined;
|
|
208
207
|
options?: Record<string, unknown> | undefined;
|
|
208
|
+
description?: string | undefined;
|
|
209
209
|
}>, "many">;
|
|
210
210
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
211
211
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -213,8 +213,8 @@ declare const AirtableParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
213
213
|
fields: {
|
|
214
214
|
type: "number" | "date" | "url" | "email" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "button" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
|
|
215
215
|
name: string;
|
|
216
|
-
description?: string | undefined;
|
|
217
216
|
options?: Record<string, unknown> | undefined;
|
|
217
|
+
description?: string | undefined;
|
|
218
218
|
}[];
|
|
219
219
|
operation: "create_table";
|
|
220
220
|
baseId: string;
|
|
@@ -225,8 +225,8 @@ declare const AirtableParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
225
225
|
fields: {
|
|
226
226
|
type: "number" | "date" | "url" | "email" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "button" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
|
|
227
227
|
name: string;
|
|
228
|
-
description?: string | undefined;
|
|
229
228
|
options?: Record<string, unknown> | undefined;
|
|
229
|
+
description?: string | undefined;
|
|
230
230
|
}[];
|
|
231
231
|
operation: "create_table";
|
|
232
232
|
baseId: string;
|
|
@@ -268,8 +268,8 @@ declare const AirtableParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
268
268
|
operation: "create_field";
|
|
269
269
|
baseId: string;
|
|
270
270
|
tableIdOrName: string;
|
|
271
|
-
description?: string | undefined;
|
|
272
271
|
options?: Record<string, unknown> | undefined;
|
|
272
|
+
description?: string | undefined;
|
|
273
273
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
274
274
|
}, {
|
|
275
275
|
type: "number" | "date" | "url" | "email" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "button" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
|
|
@@ -277,8 +277,8 @@ declare const AirtableParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
277
277
|
operation: "create_field";
|
|
278
278
|
baseId: string;
|
|
279
279
|
tableIdOrName: string;
|
|
280
|
-
description?: string | undefined;
|
|
281
280
|
options?: Record<string, unknown> | undefined;
|
|
281
|
+
description?: string | undefined;
|
|
282
282
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
283
283
|
}>, z.ZodObject<{
|
|
284
284
|
operation: z.ZodLiteral<"update_field">;
|
|
@@ -549,14 +549,14 @@ declare const AirtableResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
549
549
|
type: string;
|
|
550
550
|
name: string;
|
|
551
551
|
id: string;
|
|
552
|
-
description?: string | undefined;
|
|
553
552
|
options?: Record<string, unknown> | undefined;
|
|
553
|
+
description?: string | undefined;
|
|
554
554
|
}, {
|
|
555
555
|
type: string;
|
|
556
556
|
name: string;
|
|
557
557
|
id: string;
|
|
558
|
-
description?: string | undefined;
|
|
559
558
|
options?: Record<string, unknown> | undefined;
|
|
559
|
+
description?: string | undefined;
|
|
560
560
|
}>, "many">;
|
|
561
561
|
views: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
562
562
|
id: z.ZodString;
|
|
@@ -578,8 +578,8 @@ declare const AirtableResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
578
578
|
type: string;
|
|
579
579
|
name: string;
|
|
580
580
|
id: string;
|
|
581
|
-
description?: string | undefined;
|
|
582
581
|
options?: Record<string, unknown> | undefined;
|
|
582
|
+
description?: string | undefined;
|
|
583
583
|
}[];
|
|
584
584
|
primaryFieldId: string;
|
|
585
585
|
description?: string | undefined;
|
|
@@ -595,8 +595,8 @@ declare const AirtableResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
595
595
|
type: string;
|
|
596
596
|
name: string;
|
|
597
597
|
id: string;
|
|
598
|
-
description?: string | undefined;
|
|
599
598
|
options?: Record<string, unknown> | undefined;
|
|
599
|
+
description?: string | undefined;
|
|
600
600
|
}[];
|
|
601
601
|
primaryFieldId: string;
|
|
602
602
|
description?: string | undefined;
|
|
@@ -620,8 +620,8 @@ declare const AirtableResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
620
620
|
type: string;
|
|
621
621
|
name: string;
|
|
622
622
|
id: string;
|
|
623
|
-
description?: string | undefined;
|
|
624
623
|
options?: Record<string, unknown> | undefined;
|
|
624
|
+
description?: string | undefined;
|
|
625
625
|
}[];
|
|
626
626
|
primaryFieldId: string;
|
|
627
627
|
description?: string | undefined;
|
|
@@ -643,8 +643,8 @@ declare const AirtableResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
643
643
|
type: string;
|
|
644
644
|
name: string;
|
|
645
645
|
id: string;
|
|
646
|
-
description?: string | undefined;
|
|
647
646
|
options?: Record<string, unknown> | undefined;
|
|
647
|
+
description?: string | undefined;
|
|
648
648
|
}[];
|
|
649
649
|
primaryFieldId: string;
|
|
650
650
|
description?: string | undefined;
|
|
@@ -1066,13 +1066,13 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
|
|
|
1066
1066
|
}, "strip", z.ZodTypeAny, {
|
|
1067
1067
|
type: "number" | "date" | "url" | "email" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "button" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
|
|
1068
1068
|
name: string;
|
|
1069
|
-
description?: string | undefined;
|
|
1070
1069
|
options?: Record<string, unknown> | undefined;
|
|
1070
|
+
description?: string | undefined;
|
|
1071
1071
|
}, {
|
|
1072
1072
|
type: "number" | "date" | "url" | "email" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "button" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
|
|
1073
1073
|
name: string;
|
|
1074
|
-
description?: string | undefined;
|
|
1075
1074
|
options?: Record<string, unknown> | undefined;
|
|
1075
|
+
description?: string | undefined;
|
|
1076
1076
|
}>, "many">;
|
|
1077
1077
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
1078
1078
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1080,8 +1080,8 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
|
|
|
1080
1080
|
fields: {
|
|
1081
1081
|
type: "number" | "date" | "url" | "email" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "button" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
|
|
1082
1082
|
name: string;
|
|
1083
|
-
description?: string | undefined;
|
|
1084
1083
|
options?: Record<string, unknown> | undefined;
|
|
1084
|
+
description?: string | undefined;
|
|
1085
1085
|
}[];
|
|
1086
1086
|
operation: "create_table";
|
|
1087
1087
|
baseId: string;
|
|
@@ -1092,8 +1092,8 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
|
|
|
1092
1092
|
fields: {
|
|
1093
1093
|
type: "number" | "date" | "url" | "email" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "button" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
|
|
1094
1094
|
name: string;
|
|
1095
|
-
description?: string | undefined;
|
|
1096
1095
|
options?: Record<string, unknown> | undefined;
|
|
1096
|
+
description?: string | undefined;
|
|
1097
1097
|
}[];
|
|
1098
1098
|
operation: "create_table";
|
|
1099
1099
|
baseId: string;
|
|
@@ -1135,8 +1135,8 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
|
|
|
1135
1135
|
operation: "create_field";
|
|
1136
1136
|
baseId: string;
|
|
1137
1137
|
tableIdOrName: string;
|
|
1138
|
-
description?: string | undefined;
|
|
1139
1138
|
options?: Record<string, unknown> | undefined;
|
|
1139
|
+
description?: string | undefined;
|
|
1140
1140
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1141
1141
|
}, {
|
|
1142
1142
|
type: "number" | "date" | "url" | "email" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "button" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
|
|
@@ -1144,8 +1144,8 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
|
|
|
1144
1144
|
operation: "create_field";
|
|
1145
1145
|
baseId: string;
|
|
1146
1146
|
tableIdOrName: string;
|
|
1147
|
-
description?: string | undefined;
|
|
1148
1147
|
options?: Record<string, unknown> | undefined;
|
|
1148
|
+
description?: string | undefined;
|
|
1149
1149
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1150
1150
|
}>, z.ZodObject<{
|
|
1151
1151
|
operation: z.ZodLiteral<"update_field">;
|
|
@@ -1416,14 +1416,14 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
|
|
|
1416
1416
|
type: string;
|
|
1417
1417
|
name: string;
|
|
1418
1418
|
id: string;
|
|
1419
|
-
description?: string | undefined;
|
|
1420
1419
|
options?: Record<string, unknown> | undefined;
|
|
1420
|
+
description?: string | undefined;
|
|
1421
1421
|
}, {
|
|
1422
1422
|
type: string;
|
|
1423
1423
|
name: string;
|
|
1424
1424
|
id: string;
|
|
1425
|
-
description?: string | undefined;
|
|
1426
1425
|
options?: Record<string, unknown> | undefined;
|
|
1426
|
+
description?: string | undefined;
|
|
1427
1427
|
}>, "many">;
|
|
1428
1428
|
views: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1429
1429
|
id: z.ZodString;
|
|
@@ -1445,8 +1445,8 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
|
|
|
1445
1445
|
type: string;
|
|
1446
1446
|
name: string;
|
|
1447
1447
|
id: string;
|
|
1448
|
-
description?: string | undefined;
|
|
1449
1448
|
options?: Record<string, unknown> | undefined;
|
|
1449
|
+
description?: string | undefined;
|
|
1450
1450
|
}[];
|
|
1451
1451
|
primaryFieldId: string;
|
|
1452
1452
|
description?: string | undefined;
|
|
@@ -1462,8 +1462,8 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
|
|
|
1462
1462
|
type: string;
|
|
1463
1463
|
name: string;
|
|
1464
1464
|
id: string;
|
|
1465
|
-
description?: string | undefined;
|
|
1466
1465
|
options?: Record<string, unknown> | undefined;
|
|
1466
|
+
description?: string | undefined;
|
|
1467
1467
|
}[];
|
|
1468
1468
|
primaryFieldId: string;
|
|
1469
1469
|
description?: string | undefined;
|
|
@@ -1487,8 +1487,8 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
|
|
|
1487
1487
|
type: string;
|
|
1488
1488
|
name: string;
|
|
1489
1489
|
id: string;
|
|
1490
|
-
description?: string | undefined;
|
|
1491
1490
|
options?: Record<string, unknown> | undefined;
|
|
1491
|
+
description?: string | undefined;
|
|
1492
1492
|
}[];
|
|
1493
1493
|
primaryFieldId: string;
|
|
1494
1494
|
description?: string | undefined;
|
|
@@ -1510,8 +1510,8 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
|
|
|
1510
1510
|
type: string;
|
|
1511
1511
|
name: string;
|
|
1512
1512
|
id: string;
|
|
1513
|
-
description?: string | undefined;
|
|
1514
1513
|
options?: Record<string, unknown> | undefined;
|
|
1514
|
+
description?: string | undefined;
|
|
1515
1515
|
}[];
|
|
1516
1516
|
primaryFieldId: string;
|
|
1517
1517
|
description?: string | undefined;
|
|
@@ -70,22 +70,22 @@ declare const ApifyResultSchema: z.ZodObject<{
|
|
|
70
70
|
id: string;
|
|
71
71
|
inputSchemaUrl: string;
|
|
72
72
|
description?: string | null | undefined;
|
|
73
|
+
stars?: number | null | undefined;
|
|
73
74
|
usage?: {
|
|
74
75
|
totalRuns?: number | undefined;
|
|
75
76
|
usersCount?: number | undefined;
|
|
76
77
|
} | null | undefined;
|
|
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
83
|
description?: string | null | undefined;
|
|
84
|
+
stars?: number | null | undefined;
|
|
84
85
|
usage?: {
|
|
85
86
|
totalRuns?: number | undefined;
|
|
86
87
|
usersCount?: number | undefined;
|
|
87
88
|
} | null | undefined;
|
|
88
|
-
stars?: number | null | undefined;
|
|
89
89
|
requiresRental?: boolean | undefined;
|
|
90
90
|
}>, "many">>;
|
|
91
91
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -95,18 +95,18 @@ declare const ApifyResultSchema: z.ZodObject<{
|
|
|
95
95
|
runId: string;
|
|
96
96
|
consoleUrl: string;
|
|
97
97
|
items?: unknown[] | undefined;
|
|
98
|
-
datasetId?: string | undefined;
|
|
99
98
|
itemsCount?: number | undefined;
|
|
99
|
+
datasetId?: string | undefined;
|
|
100
100
|
discoveredActors?: {
|
|
101
101
|
name: string;
|
|
102
102
|
id: string;
|
|
103
103
|
inputSchemaUrl: string;
|
|
104
104
|
description?: string | null | undefined;
|
|
105
|
+
stars?: number | null | undefined;
|
|
105
106
|
usage?: {
|
|
106
107
|
totalRuns?: number | undefined;
|
|
107
108
|
usersCount?: number | undefined;
|
|
108
109
|
} | null | undefined;
|
|
109
|
-
stars?: number | null | undefined;
|
|
110
110
|
requiresRental?: boolean | undefined;
|
|
111
111
|
}[] | undefined;
|
|
112
112
|
}, {
|
|
@@ -116,18 +116,18 @@ declare const ApifyResultSchema: z.ZodObject<{
|
|
|
116
116
|
runId: string;
|
|
117
117
|
consoleUrl: string;
|
|
118
118
|
items?: unknown[] | undefined;
|
|
119
|
-
datasetId?: string | undefined;
|
|
120
119
|
itemsCount?: number | undefined;
|
|
120
|
+
datasetId?: string | undefined;
|
|
121
121
|
discoveredActors?: {
|
|
122
122
|
name: string;
|
|
123
123
|
id: string;
|
|
124
124
|
inputSchemaUrl: string;
|
|
125
125
|
description?: string | null | undefined;
|
|
126
|
+
stars?: number | null | undefined;
|
|
126
127
|
usage?: {
|
|
127
128
|
totalRuns?: number | undefined;
|
|
128
129
|
usersCount?: number | undefined;
|
|
129
130
|
} | null | undefined;
|
|
130
|
-
stars?: number | null | undefined;
|
|
131
131
|
requiresRental?: boolean | undefined;
|
|
132
132
|
}[] | undefined;
|
|
133
133
|
}>;
|
|
@@ -206,22 +206,22 @@ export declare class ApifyBubble<T extends string = string> extends ServiceBubbl
|
|
|
206
206
|
id: string;
|
|
207
207
|
inputSchemaUrl: string;
|
|
208
208
|
description?: string | null | undefined;
|
|
209
|
+
stars?: number | null | undefined;
|
|
209
210
|
usage?: {
|
|
210
211
|
totalRuns?: number | undefined;
|
|
211
212
|
usersCount?: number | undefined;
|
|
212
213
|
} | null | undefined;
|
|
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
219
|
description?: string | null | undefined;
|
|
220
|
+
stars?: number | null | undefined;
|
|
220
221
|
usage?: {
|
|
221
222
|
totalRuns?: number | undefined;
|
|
222
223
|
usersCount?: number | undefined;
|
|
223
224
|
} | null | undefined;
|
|
224
|
-
stars?: number | null | undefined;
|
|
225
225
|
requiresRental?: boolean | undefined;
|
|
226
226
|
}>, "many">>;
|
|
227
227
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -231,18 +231,18 @@ export declare class ApifyBubble<T extends string = string> extends ServiceBubbl
|
|
|
231
231
|
runId: string;
|
|
232
232
|
consoleUrl: string;
|
|
233
233
|
items?: unknown[] | undefined;
|
|
234
|
-
datasetId?: string | undefined;
|
|
235
234
|
itemsCount?: number | undefined;
|
|
235
|
+
datasetId?: string | undefined;
|
|
236
236
|
discoveredActors?: {
|
|
237
237
|
name: string;
|
|
238
238
|
id: string;
|
|
239
239
|
inputSchemaUrl: string;
|
|
240
240
|
description?: string | null | undefined;
|
|
241
|
+
stars?: number | null | undefined;
|
|
241
242
|
usage?: {
|
|
242
243
|
totalRuns?: number | undefined;
|
|
243
244
|
usersCount?: number | undefined;
|
|
244
245
|
} | null | undefined;
|
|
245
|
-
stars?: number | null | undefined;
|
|
246
246
|
requiresRental?: boolean | undefined;
|
|
247
247
|
}[] | undefined;
|
|
248
248
|
}, {
|
|
@@ -252,18 +252,18 @@ export declare class ApifyBubble<T extends string = string> extends ServiceBubbl
|
|
|
252
252
|
runId: string;
|
|
253
253
|
consoleUrl: string;
|
|
254
254
|
items?: unknown[] | undefined;
|
|
255
|
-
datasetId?: string | undefined;
|
|
256
255
|
itemsCount?: number | undefined;
|
|
256
|
+
datasetId?: string | undefined;
|
|
257
257
|
discoveredActors?: {
|
|
258
258
|
name: string;
|
|
259
259
|
id: string;
|
|
260
260
|
inputSchemaUrl: string;
|
|
261
261
|
description?: string | null | undefined;
|
|
262
|
+
stars?: number | null | undefined;
|
|
262
263
|
usage?: {
|
|
263
264
|
totalRuns?: number | undefined;
|
|
264
265
|
usersCount?: number | undefined;
|
|
265
266
|
} | null | undefined;
|
|
266
|
-
stars?: number | null | undefined;
|
|
267
267
|
requiresRental?: boolean | undefined;
|
|
268
268
|
}[] | undefined;
|
|
269
269
|
}>;
|