@bubblelab/bubble-core 0.1.18 → 0.1.20
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 +70 -70
- package/dist/bubbles/service-bubble/agi-inc.d.ts +140 -140
- package/dist/bubbles/service-bubble/ai-agent.d.ts +58 -58
- package/dist/bubbles/service-bubble/airtable.d.ts +106 -106
- package/dist/bubbles/service-bubble/apify/apify.d.ts +8 -8
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +47 -47
- package/dist/bubbles/service-bubble/eleven-labs.d.ts +52 -52
- package/dist/bubbles/service-bubble/firecrawl.d.ts +730 -730
- package/dist/bubbles/service-bubble/followupboss.d.ts +282 -282
- package/dist/bubbles/service-bubble/github.d.ts +196 -196
- package/dist/bubbles/service-bubble/gmail.d.ts +632 -632
- package/dist/bubbles/service-bubble/google-calendar.d.ts +1148 -346
- package/dist/bubbles/service-bubble/google-calendar.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/google-calendar.js +51 -9
- package/dist/bubbles/service-bubble/google-calendar.js.map +1 -1
- package/dist/bubbles/service-bubble/google-drive.d.ts +259 -114
- package/dist/bubbles/service-bubble/google-drive.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/google-drive.js +95 -0
- package/dist/bubbles/service-bubble/google-drive.js.map +1 -1
- package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +52 -52
- package/dist/bubbles/service-bubble/hello-world.d.ts +8 -8
- package/dist/bubbles/service-bubble/http.d.ts +16 -16
- package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
- package/dist/bubbles/service-bubble/notion/notion.d.ts +987 -987
- package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
- package/dist/bubbles/service-bubble/resend.d.ts +40 -40
- package/dist/bubbles/service-bubble/slack/slack.d.ts +314 -314
- package/dist/bubbles/service-bubble/slack/slack.utils.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/slack/slack.utils.js +4 -2
- package/dist/bubbles/service-bubble/slack/slack.utils.js.map +1 -1
- package/dist/bubbles/service-bubble/storage.d.ts +40 -40
- package/dist/bubbles/service-bubble/telegram.d.ts +1591 -1591
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +30 -30
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +16 -16
- package/dist/bubbles/tool-bubble/chart-js-tool.d.ts +20 -20
- package/dist/bubbles/tool-bubble/code-edit-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/get-bubble-details-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/get-trigger-detail-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +20 -20
- package/dist/bubbles/tool-bubble/instagram-tool.d.ts +18 -18
- package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +70 -70
- package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +24 -24
- package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +20 -20
- package/dist/bubbles/tool-bubble/tool-template.d.ts +4 -4
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +68 -68
- package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +18 -18
- package/dist/bubbles/tool-bubble/web-extract-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/web-search-tool.d.ts +10 -10
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +32 -32
- package/dist/bubbles/workflow-bubble/database-analyzer.workflow.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +28 -28
- package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +106 -106
- package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +16 -16
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +32 -32
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +92 -92
- package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +8 -8
- package/dist/bubbles.json +3 -3
- package/package.json +2 -2
|
@@ -36,10 +36,10 @@ declare const AirtableParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
36
36
|
direction: "asc" | "desc";
|
|
37
37
|
field: string;
|
|
38
38
|
}[] | undefined;
|
|
39
|
-
fields?: string[] | undefined;
|
|
40
39
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
41
|
-
|
|
40
|
+
fields?: string[] | undefined;
|
|
42
41
|
timeZone?: string | undefined;
|
|
42
|
+
offset?: string | undefined;
|
|
43
43
|
filterByFormula?: string | undefined;
|
|
44
44
|
maxRecords?: number | undefined;
|
|
45
45
|
view?: string | undefined;
|
|
@@ -52,11 +52,11 @@ declare const AirtableParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
52
52
|
field: string;
|
|
53
53
|
direction?: "asc" | "desc" | undefined;
|
|
54
54
|
}[] | undefined;
|
|
55
|
-
fields?: string[] | undefined;
|
|
56
55
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
56
|
+
fields?: string[] | undefined;
|
|
57
|
+
timeZone?: string | undefined;
|
|
57
58
|
offset?: string | undefined;
|
|
58
59
|
pageSize?: number | undefined;
|
|
59
|
-
timeZone?: string | undefined;
|
|
60
60
|
filterByFormula?: string | undefined;
|
|
61
61
|
maxRecords?: number | undefined;
|
|
62
62
|
view?: string | undefined;
|
|
@@ -197,38 +197,38 @@ declare const AirtableParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
197
197
|
description: z.ZodOptional<z.ZodString>;
|
|
198
198
|
options: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
199
199
|
}, "strip", z.ZodTypeAny, {
|
|
200
|
-
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "
|
|
200
|
+
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "currency" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "button" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
|
|
201
201
|
name: string;
|
|
202
202
|
options?: Record<string, unknown> | undefined;
|
|
203
203
|
description?: string | undefined;
|
|
204
204
|
}, {
|
|
205
|
-
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "
|
|
205
|
+
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "currency" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "button" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
|
|
206
206
|
name: string;
|
|
207
207
|
options?: Record<string, unknown> | undefined;
|
|
208
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, {
|
|
212
|
-
operation: "create_table";
|
|
213
212
|
name: string;
|
|
214
213
|
fields: {
|
|
215
|
-
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "
|
|
214
|
+
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "currency" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "button" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
|
|
216
215
|
name: string;
|
|
217
216
|
options?: Record<string, unknown> | undefined;
|
|
218
217
|
description?: string | undefined;
|
|
219
218
|
}[];
|
|
219
|
+
operation: "create_table";
|
|
220
220
|
baseId: string;
|
|
221
221
|
description?: string | undefined;
|
|
222
222
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
223
223
|
}, {
|
|
224
|
-
operation: "create_table";
|
|
225
224
|
name: string;
|
|
226
225
|
fields: {
|
|
227
|
-
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "
|
|
226
|
+
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "currency" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "button" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
|
|
228
227
|
name: string;
|
|
229
228
|
options?: Record<string, unknown> | undefined;
|
|
230
229
|
description?: string | undefined;
|
|
231
230
|
}[];
|
|
231
|
+
operation: "create_table";
|
|
232
232
|
baseId: string;
|
|
233
233
|
description?: string | undefined;
|
|
234
234
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -263,18 +263,18 @@ declare const AirtableParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
263
263
|
options: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
264
264
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
265
265
|
}, "strip", z.ZodTypeAny, {
|
|
266
|
-
|
|
267
|
-
type: "number" | "date" | "email" | "url" | "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";
|
|
266
|
+
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "currency" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "button" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
|
|
268
267
|
name: string;
|
|
268
|
+
operation: "create_field";
|
|
269
269
|
baseId: string;
|
|
270
270
|
tableIdOrName: string;
|
|
271
271
|
options?: Record<string, unknown> | undefined;
|
|
272
272
|
description?: string | undefined;
|
|
273
273
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
274
274
|
}, {
|
|
275
|
-
|
|
276
|
-
type: "number" | "date" | "email" | "url" | "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";
|
|
275
|
+
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "currency" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "button" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
|
|
277
276
|
name: string;
|
|
277
|
+
operation: "create_field";
|
|
278
278
|
baseId: string;
|
|
279
279
|
tableIdOrName: string;
|
|
280
280
|
options?: Record<string, unknown> | undefined;
|
|
@@ -325,10 +325,10 @@ declare const AirtableResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
325
325
|
error: z.ZodDefault<z.ZodString>;
|
|
326
326
|
success: z.ZodBoolean;
|
|
327
327
|
}, "strip", z.ZodTypeAny, {
|
|
328
|
+
success: boolean;
|
|
329
|
+
error: string;
|
|
328
330
|
operation: "list_records";
|
|
329
331
|
ok: boolean;
|
|
330
|
-
error: string;
|
|
331
|
-
success: boolean;
|
|
332
332
|
offset?: string | undefined;
|
|
333
333
|
records?: {
|
|
334
334
|
fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
|
|
@@ -336,9 +336,9 @@ declare const AirtableResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
336
336
|
createdTime: string;
|
|
337
337
|
}[] | undefined;
|
|
338
338
|
}, {
|
|
339
|
+
success: boolean;
|
|
339
340
|
operation: "list_records";
|
|
340
341
|
ok: boolean;
|
|
341
|
-
success: boolean;
|
|
342
342
|
error?: string | undefined;
|
|
343
343
|
offset?: string | undefined;
|
|
344
344
|
records?: {
|
|
@@ -365,19 +365,19 @@ declare const AirtableResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
365
365
|
error: z.ZodDefault<z.ZodString>;
|
|
366
366
|
success: z.ZodBoolean;
|
|
367
367
|
}, "strip", z.ZodTypeAny, {
|
|
368
|
+
success: boolean;
|
|
369
|
+
error: string;
|
|
368
370
|
operation: "get_record";
|
|
369
371
|
ok: boolean;
|
|
370
|
-
error: string;
|
|
371
|
-
success: boolean;
|
|
372
372
|
record?: {
|
|
373
373
|
fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
|
|
374
374
|
id: string;
|
|
375
375
|
createdTime: string;
|
|
376
376
|
} | undefined;
|
|
377
377
|
}, {
|
|
378
|
+
success: boolean;
|
|
378
379
|
operation: "get_record";
|
|
379
380
|
ok: boolean;
|
|
380
|
-
success: boolean;
|
|
381
381
|
error?: string | undefined;
|
|
382
382
|
record?: {
|
|
383
383
|
fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
|
|
@@ -403,19 +403,19 @@ declare const AirtableResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
403
403
|
error: z.ZodDefault<z.ZodString>;
|
|
404
404
|
success: z.ZodBoolean;
|
|
405
405
|
}, "strip", z.ZodTypeAny, {
|
|
406
|
+
success: boolean;
|
|
407
|
+
error: string;
|
|
406
408
|
operation: "create_records";
|
|
407
409
|
ok: boolean;
|
|
408
|
-
error: string;
|
|
409
|
-
success: boolean;
|
|
410
410
|
records?: {
|
|
411
411
|
fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
|
|
412
412
|
id: string;
|
|
413
413
|
createdTime: string;
|
|
414
414
|
}[] | undefined;
|
|
415
415
|
}, {
|
|
416
|
+
success: boolean;
|
|
416
417
|
operation: "create_records";
|
|
417
418
|
ok: boolean;
|
|
418
|
-
success: boolean;
|
|
419
419
|
error?: string | undefined;
|
|
420
420
|
records?: {
|
|
421
421
|
fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
|
|
@@ -441,19 +441,19 @@ declare const AirtableResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
441
441
|
error: z.ZodDefault<z.ZodString>;
|
|
442
442
|
success: z.ZodBoolean;
|
|
443
443
|
}, "strip", z.ZodTypeAny, {
|
|
444
|
+
success: boolean;
|
|
445
|
+
error: string;
|
|
444
446
|
operation: "update_records";
|
|
445
447
|
ok: boolean;
|
|
446
|
-
error: string;
|
|
447
|
-
success: boolean;
|
|
448
448
|
records?: {
|
|
449
449
|
fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
|
|
450
450
|
id: string;
|
|
451
451
|
createdTime: string;
|
|
452
452
|
}[] | undefined;
|
|
453
453
|
}, {
|
|
454
|
+
success: boolean;
|
|
454
455
|
operation: "update_records";
|
|
455
456
|
ok: boolean;
|
|
456
|
-
success: boolean;
|
|
457
457
|
error?: string | undefined;
|
|
458
458
|
records?: {
|
|
459
459
|
fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
|
|
@@ -476,18 +476,18 @@ declare const AirtableResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
476
476
|
error: z.ZodDefault<z.ZodString>;
|
|
477
477
|
success: z.ZodBoolean;
|
|
478
478
|
}, "strip", z.ZodTypeAny, {
|
|
479
|
+
success: boolean;
|
|
480
|
+
error: string;
|
|
479
481
|
operation: "delete_records";
|
|
480
482
|
ok: boolean;
|
|
481
|
-
error: string;
|
|
482
|
-
success: boolean;
|
|
483
483
|
records?: {
|
|
484
484
|
id: string;
|
|
485
485
|
deleted: boolean;
|
|
486
486
|
}[] | undefined;
|
|
487
487
|
}, {
|
|
488
|
+
success: boolean;
|
|
488
489
|
operation: "delete_records";
|
|
489
490
|
ok: boolean;
|
|
490
|
-
success: boolean;
|
|
491
491
|
error?: string | undefined;
|
|
492
492
|
records?: {
|
|
493
493
|
id: string;
|
|
@@ -512,19 +512,19 @@ declare const AirtableResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
512
512
|
error: z.ZodDefault<z.ZodString>;
|
|
513
513
|
success: z.ZodBoolean;
|
|
514
514
|
}, "strip", z.ZodTypeAny, {
|
|
515
|
+
success: boolean;
|
|
516
|
+
error: string;
|
|
515
517
|
operation: "list_bases";
|
|
516
518
|
ok: boolean;
|
|
517
|
-
error: string;
|
|
518
|
-
success: boolean;
|
|
519
519
|
bases?: {
|
|
520
520
|
name: string;
|
|
521
521
|
id: string;
|
|
522
522
|
permissionLevel: string;
|
|
523
523
|
}[] | undefined;
|
|
524
524
|
}, {
|
|
525
|
+
success: boolean;
|
|
525
526
|
operation: "list_bases";
|
|
526
527
|
ok: boolean;
|
|
527
|
-
success: boolean;
|
|
528
528
|
error?: string | undefined;
|
|
529
529
|
bases?: {
|
|
530
530
|
name: string;
|
|
@@ -609,10 +609,10 @@ declare const AirtableResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
609
609
|
error: z.ZodDefault<z.ZodString>;
|
|
610
610
|
success: z.ZodBoolean;
|
|
611
611
|
}, "strip", z.ZodTypeAny, {
|
|
612
|
+
success: boolean;
|
|
613
|
+
error: string;
|
|
612
614
|
operation: "get_base_schema";
|
|
613
615
|
ok: boolean;
|
|
614
|
-
error: string;
|
|
615
|
-
success: boolean;
|
|
616
616
|
tables?: {
|
|
617
617
|
name: string;
|
|
618
618
|
fields: {
|
|
@@ -632,9 +632,9 @@ declare const AirtableResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
632
632
|
}[] | undefined;
|
|
633
633
|
}[] | undefined;
|
|
634
634
|
}, {
|
|
635
|
+
success: boolean;
|
|
635
636
|
operation: "get_base_schema";
|
|
636
637
|
ok: boolean;
|
|
637
|
-
success: boolean;
|
|
638
638
|
error?: string | undefined;
|
|
639
639
|
tables?: {
|
|
640
640
|
name: string;
|
|
@@ -667,18 +667,18 @@ declare const AirtableResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
667
667
|
name: z.ZodString;
|
|
668
668
|
type: z.ZodEnum<["singleLineText", "multilineText", "richText", "email", "url", "phoneNumber", "number", "percent", "currency", "rating", "duration", "singleSelect", "multipleSelects", "singleCollaborator", "multipleCollaborators", "date", "dateTime", "checkbox", "multipleRecordLinks", "multipleAttachments", "barcode", "button", "formula", "createdTime", "lastModifiedTime", "createdBy", "lastModifiedBy", "autoNumber", "externalSyncSource", "count", "lookup", "rollup"]>;
|
|
669
669
|
}, "strip", z.ZodTypeAny, {
|
|
670
|
-
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "
|
|
670
|
+
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "currency" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "button" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
|
|
671
671
|
name: string;
|
|
672
672
|
id: string;
|
|
673
673
|
}, {
|
|
674
|
-
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "
|
|
674
|
+
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "currency" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "button" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
|
|
675
675
|
name: string;
|
|
676
676
|
id: string;
|
|
677
677
|
}>, "many">;
|
|
678
678
|
}, "strip", z.ZodTypeAny, {
|
|
679
679
|
name: string;
|
|
680
680
|
fields: {
|
|
681
|
-
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "
|
|
681
|
+
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "currency" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "button" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
|
|
682
682
|
name: string;
|
|
683
683
|
id: string;
|
|
684
684
|
}[];
|
|
@@ -688,7 +688,7 @@ declare const AirtableResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
688
688
|
}, {
|
|
689
689
|
name: string;
|
|
690
690
|
fields: {
|
|
691
|
-
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "
|
|
691
|
+
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "currency" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "button" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
|
|
692
692
|
name: string;
|
|
693
693
|
id: string;
|
|
694
694
|
}[];
|
|
@@ -699,14 +699,14 @@ declare const AirtableResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
699
699
|
error: z.ZodDefault<z.ZodString>;
|
|
700
700
|
success: z.ZodBoolean;
|
|
701
701
|
}, "strip", z.ZodTypeAny, {
|
|
702
|
+
success: boolean;
|
|
703
|
+
error: string;
|
|
702
704
|
operation: "create_table";
|
|
703
705
|
ok: boolean;
|
|
704
|
-
error: string;
|
|
705
|
-
success: boolean;
|
|
706
706
|
table?: {
|
|
707
707
|
name: string;
|
|
708
708
|
fields: {
|
|
709
|
-
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "
|
|
709
|
+
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "currency" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "button" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
|
|
710
710
|
name: string;
|
|
711
711
|
id: string;
|
|
712
712
|
}[];
|
|
@@ -715,14 +715,14 @@ declare const AirtableResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
715
715
|
description?: string | undefined;
|
|
716
716
|
} | undefined;
|
|
717
717
|
}, {
|
|
718
|
+
success: boolean;
|
|
718
719
|
operation: "create_table";
|
|
719
720
|
ok: boolean;
|
|
720
|
-
success: boolean;
|
|
721
721
|
error?: string | undefined;
|
|
722
722
|
table?: {
|
|
723
723
|
name: string;
|
|
724
724
|
fields: {
|
|
725
|
-
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "
|
|
725
|
+
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "currency" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "button" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
|
|
726
726
|
name: string;
|
|
727
727
|
id: string;
|
|
728
728
|
}[];
|
|
@@ -749,19 +749,19 @@ declare const AirtableResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
749
749
|
error: z.ZodDefault<z.ZodString>;
|
|
750
750
|
success: z.ZodBoolean;
|
|
751
751
|
}, "strip", z.ZodTypeAny, {
|
|
752
|
+
success: boolean;
|
|
753
|
+
error: string;
|
|
752
754
|
operation: "update_table";
|
|
753
755
|
ok: boolean;
|
|
754
|
-
error: string;
|
|
755
|
-
success: boolean;
|
|
756
756
|
table?: {
|
|
757
757
|
name: string;
|
|
758
758
|
id: string;
|
|
759
759
|
description?: string | undefined;
|
|
760
760
|
} | undefined;
|
|
761
761
|
}, {
|
|
762
|
+
success: boolean;
|
|
762
763
|
operation: "update_table";
|
|
763
764
|
ok: boolean;
|
|
764
|
-
success: boolean;
|
|
765
765
|
error?: string | undefined;
|
|
766
766
|
table?: {
|
|
767
767
|
name: string;
|
|
@@ -790,10 +790,10 @@ declare const AirtableResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
790
790
|
error: z.ZodDefault<z.ZodString>;
|
|
791
791
|
success: z.ZodBoolean;
|
|
792
792
|
}, "strip", z.ZodTypeAny, {
|
|
793
|
+
success: boolean;
|
|
794
|
+
error: string;
|
|
793
795
|
operation: "create_field";
|
|
794
796
|
ok: boolean;
|
|
795
|
-
error: string;
|
|
796
|
-
success: boolean;
|
|
797
797
|
field?: {
|
|
798
798
|
type: string;
|
|
799
799
|
name: string;
|
|
@@ -801,9 +801,9 @@ declare const AirtableResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
801
801
|
description?: string | undefined;
|
|
802
802
|
} | undefined;
|
|
803
803
|
}, {
|
|
804
|
+
success: boolean;
|
|
804
805
|
operation: "create_field";
|
|
805
806
|
ok: boolean;
|
|
806
|
-
success: boolean;
|
|
807
807
|
error?: string | undefined;
|
|
808
808
|
field?: {
|
|
809
809
|
type: string;
|
|
@@ -833,10 +833,10 @@ declare const AirtableResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
833
833
|
error: z.ZodDefault<z.ZodString>;
|
|
834
834
|
success: z.ZodBoolean;
|
|
835
835
|
}, "strip", z.ZodTypeAny, {
|
|
836
|
+
success: boolean;
|
|
837
|
+
error: string;
|
|
836
838
|
operation: "update_field";
|
|
837
839
|
ok: boolean;
|
|
838
|
-
error: string;
|
|
839
|
-
success: boolean;
|
|
840
840
|
field?: {
|
|
841
841
|
type: string;
|
|
842
842
|
name: string;
|
|
@@ -844,9 +844,9 @@ declare const AirtableResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
844
844
|
description?: string | undefined;
|
|
845
845
|
} | undefined;
|
|
846
846
|
}, {
|
|
847
|
+
success: boolean;
|
|
847
848
|
operation: "update_field";
|
|
848
849
|
ok: boolean;
|
|
849
|
-
success: boolean;
|
|
850
850
|
error?: string | undefined;
|
|
851
851
|
field?: {
|
|
852
852
|
type: string;
|
|
@@ -903,10 +903,10 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
|
|
|
903
903
|
direction: "asc" | "desc";
|
|
904
904
|
field: string;
|
|
905
905
|
}[] | undefined;
|
|
906
|
-
fields?: string[] | undefined;
|
|
907
906
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
908
|
-
|
|
907
|
+
fields?: string[] | undefined;
|
|
909
908
|
timeZone?: string | undefined;
|
|
909
|
+
offset?: string | undefined;
|
|
910
910
|
filterByFormula?: string | undefined;
|
|
911
911
|
maxRecords?: number | undefined;
|
|
912
912
|
view?: string | undefined;
|
|
@@ -919,11 +919,11 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
|
|
|
919
919
|
field: string;
|
|
920
920
|
direction?: "asc" | "desc" | undefined;
|
|
921
921
|
}[] | undefined;
|
|
922
|
-
fields?: string[] | undefined;
|
|
923
922
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
923
|
+
fields?: string[] | undefined;
|
|
924
|
+
timeZone?: string | undefined;
|
|
924
925
|
offset?: string | undefined;
|
|
925
926
|
pageSize?: number | undefined;
|
|
926
|
-
timeZone?: string | undefined;
|
|
927
927
|
filterByFormula?: string | undefined;
|
|
928
928
|
maxRecords?: number | undefined;
|
|
929
929
|
view?: string | undefined;
|
|
@@ -1064,38 +1064,38 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
|
|
|
1064
1064
|
description: z.ZodOptional<z.ZodString>;
|
|
1065
1065
|
options: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1066
1066
|
}, "strip", z.ZodTypeAny, {
|
|
1067
|
-
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "
|
|
1067
|
+
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "currency" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "button" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
|
|
1068
1068
|
name: string;
|
|
1069
1069
|
options?: Record<string, unknown> | undefined;
|
|
1070
1070
|
description?: string | undefined;
|
|
1071
1071
|
}, {
|
|
1072
|
-
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "
|
|
1072
|
+
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "currency" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "button" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
|
|
1073
1073
|
name: string;
|
|
1074
1074
|
options?: Record<string, unknown> | undefined;
|
|
1075
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, {
|
|
1079
|
-
operation: "create_table";
|
|
1080
1079
|
name: string;
|
|
1081
1080
|
fields: {
|
|
1082
|
-
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "
|
|
1081
|
+
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "currency" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "button" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
|
|
1083
1082
|
name: string;
|
|
1084
1083
|
options?: Record<string, unknown> | undefined;
|
|
1085
1084
|
description?: string | undefined;
|
|
1086
1085
|
}[];
|
|
1086
|
+
operation: "create_table";
|
|
1087
1087
|
baseId: string;
|
|
1088
1088
|
description?: string | undefined;
|
|
1089
1089
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1090
1090
|
}, {
|
|
1091
|
-
operation: "create_table";
|
|
1092
1091
|
name: string;
|
|
1093
1092
|
fields: {
|
|
1094
|
-
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "
|
|
1093
|
+
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "currency" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "button" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
|
|
1095
1094
|
name: string;
|
|
1096
1095
|
options?: Record<string, unknown> | undefined;
|
|
1097
1096
|
description?: string | undefined;
|
|
1098
1097
|
}[];
|
|
1098
|
+
operation: "create_table";
|
|
1099
1099
|
baseId: string;
|
|
1100
1100
|
description?: string | undefined;
|
|
1101
1101
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -1130,18 +1130,18 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
|
|
|
1130
1130
|
options: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1131
1131
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
1132
1132
|
}, "strip", z.ZodTypeAny, {
|
|
1133
|
-
|
|
1134
|
-
type: "number" | "date" | "email" | "url" | "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";
|
|
1133
|
+
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "currency" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "button" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
|
|
1135
1134
|
name: string;
|
|
1135
|
+
operation: "create_field";
|
|
1136
1136
|
baseId: string;
|
|
1137
1137
|
tableIdOrName: string;
|
|
1138
1138
|
options?: Record<string, unknown> | undefined;
|
|
1139
1139
|
description?: string | undefined;
|
|
1140
1140
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1141
1141
|
}, {
|
|
1142
|
-
|
|
1143
|
-
type: "number" | "date" | "email" | "url" | "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";
|
|
1142
|
+
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "currency" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "button" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
|
|
1144
1143
|
name: string;
|
|
1144
|
+
operation: "create_field";
|
|
1145
1145
|
baseId: string;
|
|
1146
1146
|
tableIdOrName: string;
|
|
1147
1147
|
options?: Record<string, unknown> | undefined;
|
|
@@ -1192,10 +1192,10 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
|
|
|
1192
1192
|
error: z.ZodDefault<z.ZodString>;
|
|
1193
1193
|
success: z.ZodBoolean;
|
|
1194
1194
|
}, "strip", z.ZodTypeAny, {
|
|
1195
|
+
success: boolean;
|
|
1196
|
+
error: string;
|
|
1195
1197
|
operation: "list_records";
|
|
1196
1198
|
ok: boolean;
|
|
1197
|
-
error: string;
|
|
1198
|
-
success: boolean;
|
|
1199
1199
|
offset?: string | undefined;
|
|
1200
1200
|
records?: {
|
|
1201
1201
|
fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
|
|
@@ -1203,9 +1203,9 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
|
|
|
1203
1203
|
createdTime: string;
|
|
1204
1204
|
}[] | undefined;
|
|
1205
1205
|
}, {
|
|
1206
|
+
success: boolean;
|
|
1206
1207
|
operation: "list_records";
|
|
1207
1208
|
ok: boolean;
|
|
1208
|
-
success: boolean;
|
|
1209
1209
|
error?: string | undefined;
|
|
1210
1210
|
offset?: string | undefined;
|
|
1211
1211
|
records?: {
|
|
@@ -1232,19 +1232,19 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
|
|
|
1232
1232
|
error: z.ZodDefault<z.ZodString>;
|
|
1233
1233
|
success: z.ZodBoolean;
|
|
1234
1234
|
}, "strip", z.ZodTypeAny, {
|
|
1235
|
+
success: boolean;
|
|
1236
|
+
error: string;
|
|
1235
1237
|
operation: "get_record";
|
|
1236
1238
|
ok: boolean;
|
|
1237
|
-
error: string;
|
|
1238
|
-
success: boolean;
|
|
1239
1239
|
record?: {
|
|
1240
1240
|
fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
|
|
1241
1241
|
id: string;
|
|
1242
1242
|
createdTime: string;
|
|
1243
1243
|
} | undefined;
|
|
1244
1244
|
}, {
|
|
1245
|
+
success: boolean;
|
|
1245
1246
|
operation: "get_record";
|
|
1246
1247
|
ok: boolean;
|
|
1247
|
-
success: boolean;
|
|
1248
1248
|
error?: string | undefined;
|
|
1249
1249
|
record?: {
|
|
1250
1250
|
fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
|
|
@@ -1270,19 +1270,19 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
|
|
|
1270
1270
|
error: z.ZodDefault<z.ZodString>;
|
|
1271
1271
|
success: z.ZodBoolean;
|
|
1272
1272
|
}, "strip", z.ZodTypeAny, {
|
|
1273
|
+
success: boolean;
|
|
1274
|
+
error: string;
|
|
1273
1275
|
operation: "create_records";
|
|
1274
1276
|
ok: boolean;
|
|
1275
|
-
error: string;
|
|
1276
|
-
success: boolean;
|
|
1277
1277
|
records?: {
|
|
1278
1278
|
fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
|
|
1279
1279
|
id: string;
|
|
1280
1280
|
createdTime: string;
|
|
1281
1281
|
}[] | undefined;
|
|
1282
1282
|
}, {
|
|
1283
|
+
success: boolean;
|
|
1283
1284
|
operation: "create_records";
|
|
1284
1285
|
ok: boolean;
|
|
1285
|
-
success: boolean;
|
|
1286
1286
|
error?: string | undefined;
|
|
1287
1287
|
records?: {
|
|
1288
1288
|
fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
|
|
@@ -1308,19 +1308,19 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
|
|
|
1308
1308
|
error: z.ZodDefault<z.ZodString>;
|
|
1309
1309
|
success: z.ZodBoolean;
|
|
1310
1310
|
}, "strip", z.ZodTypeAny, {
|
|
1311
|
+
success: boolean;
|
|
1312
|
+
error: string;
|
|
1311
1313
|
operation: "update_records";
|
|
1312
1314
|
ok: boolean;
|
|
1313
|
-
error: string;
|
|
1314
|
-
success: boolean;
|
|
1315
1315
|
records?: {
|
|
1316
1316
|
fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
|
|
1317
1317
|
id: string;
|
|
1318
1318
|
createdTime: string;
|
|
1319
1319
|
}[] | undefined;
|
|
1320
1320
|
}, {
|
|
1321
|
+
success: boolean;
|
|
1321
1322
|
operation: "update_records";
|
|
1322
1323
|
ok: boolean;
|
|
1323
|
-
success: boolean;
|
|
1324
1324
|
error?: string | undefined;
|
|
1325
1325
|
records?: {
|
|
1326
1326
|
fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
|
|
@@ -1343,18 +1343,18 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
|
|
|
1343
1343
|
error: z.ZodDefault<z.ZodString>;
|
|
1344
1344
|
success: z.ZodBoolean;
|
|
1345
1345
|
}, "strip", z.ZodTypeAny, {
|
|
1346
|
+
success: boolean;
|
|
1347
|
+
error: string;
|
|
1346
1348
|
operation: "delete_records";
|
|
1347
1349
|
ok: boolean;
|
|
1348
|
-
error: string;
|
|
1349
|
-
success: boolean;
|
|
1350
1350
|
records?: {
|
|
1351
1351
|
id: string;
|
|
1352
1352
|
deleted: boolean;
|
|
1353
1353
|
}[] | undefined;
|
|
1354
1354
|
}, {
|
|
1355
|
+
success: boolean;
|
|
1355
1356
|
operation: "delete_records";
|
|
1356
1357
|
ok: boolean;
|
|
1357
|
-
success: boolean;
|
|
1358
1358
|
error?: string | undefined;
|
|
1359
1359
|
records?: {
|
|
1360
1360
|
id: string;
|
|
@@ -1379,19 +1379,19 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
|
|
|
1379
1379
|
error: z.ZodDefault<z.ZodString>;
|
|
1380
1380
|
success: z.ZodBoolean;
|
|
1381
1381
|
}, "strip", z.ZodTypeAny, {
|
|
1382
|
+
success: boolean;
|
|
1383
|
+
error: string;
|
|
1382
1384
|
operation: "list_bases";
|
|
1383
1385
|
ok: boolean;
|
|
1384
|
-
error: string;
|
|
1385
|
-
success: boolean;
|
|
1386
1386
|
bases?: {
|
|
1387
1387
|
name: string;
|
|
1388
1388
|
id: string;
|
|
1389
1389
|
permissionLevel: string;
|
|
1390
1390
|
}[] | undefined;
|
|
1391
1391
|
}, {
|
|
1392
|
+
success: boolean;
|
|
1392
1393
|
operation: "list_bases";
|
|
1393
1394
|
ok: boolean;
|
|
1394
|
-
success: boolean;
|
|
1395
1395
|
error?: string | undefined;
|
|
1396
1396
|
bases?: {
|
|
1397
1397
|
name: string;
|
|
@@ -1476,10 +1476,10 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
|
|
|
1476
1476
|
error: z.ZodDefault<z.ZodString>;
|
|
1477
1477
|
success: z.ZodBoolean;
|
|
1478
1478
|
}, "strip", z.ZodTypeAny, {
|
|
1479
|
+
success: boolean;
|
|
1480
|
+
error: string;
|
|
1479
1481
|
operation: "get_base_schema";
|
|
1480
1482
|
ok: boolean;
|
|
1481
|
-
error: string;
|
|
1482
|
-
success: boolean;
|
|
1483
1483
|
tables?: {
|
|
1484
1484
|
name: string;
|
|
1485
1485
|
fields: {
|
|
@@ -1499,9 +1499,9 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
|
|
|
1499
1499
|
}[] | undefined;
|
|
1500
1500
|
}[] | undefined;
|
|
1501
1501
|
}, {
|
|
1502
|
+
success: boolean;
|
|
1502
1503
|
operation: "get_base_schema";
|
|
1503
1504
|
ok: boolean;
|
|
1504
|
-
success: boolean;
|
|
1505
1505
|
error?: string | undefined;
|
|
1506
1506
|
tables?: {
|
|
1507
1507
|
name: string;
|
|
@@ -1534,18 +1534,18 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
|
|
|
1534
1534
|
name: z.ZodString;
|
|
1535
1535
|
type: z.ZodEnum<["singleLineText", "multilineText", "richText", "email", "url", "phoneNumber", "number", "percent", "currency", "rating", "duration", "singleSelect", "multipleSelects", "singleCollaborator", "multipleCollaborators", "date", "dateTime", "checkbox", "multipleRecordLinks", "multipleAttachments", "barcode", "button", "formula", "createdTime", "lastModifiedTime", "createdBy", "lastModifiedBy", "autoNumber", "externalSyncSource", "count", "lookup", "rollup"]>;
|
|
1536
1536
|
}, "strip", z.ZodTypeAny, {
|
|
1537
|
-
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "
|
|
1537
|
+
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "currency" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "button" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
|
|
1538
1538
|
name: string;
|
|
1539
1539
|
id: string;
|
|
1540
1540
|
}, {
|
|
1541
|
-
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "
|
|
1541
|
+
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "currency" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "button" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
|
|
1542
1542
|
name: string;
|
|
1543
1543
|
id: string;
|
|
1544
1544
|
}>, "many">;
|
|
1545
1545
|
}, "strip", z.ZodTypeAny, {
|
|
1546
1546
|
name: string;
|
|
1547
1547
|
fields: {
|
|
1548
|
-
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "
|
|
1548
|
+
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "currency" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "button" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
|
|
1549
1549
|
name: string;
|
|
1550
1550
|
id: string;
|
|
1551
1551
|
}[];
|
|
@@ -1555,7 +1555,7 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
|
|
|
1555
1555
|
}, {
|
|
1556
1556
|
name: string;
|
|
1557
1557
|
fields: {
|
|
1558
|
-
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "
|
|
1558
|
+
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "currency" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "button" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
|
|
1559
1559
|
name: string;
|
|
1560
1560
|
id: string;
|
|
1561
1561
|
}[];
|
|
@@ -1566,14 +1566,14 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
|
|
|
1566
1566
|
error: z.ZodDefault<z.ZodString>;
|
|
1567
1567
|
success: z.ZodBoolean;
|
|
1568
1568
|
}, "strip", z.ZodTypeAny, {
|
|
1569
|
+
success: boolean;
|
|
1570
|
+
error: string;
|
|
1569
1571
|
operation: "create_table";
|
|
1570
1572
|
ok: boolean;
|
|
1571
|
-
error: string;
|
|
1572
|
-
success: boolean;
|
|
1573
1573
|
table?: {
|
|
1574
1574
|
name: string;
|
|
1575
1575
|
fields: {
|
|
1576
|
-
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "
|
|
1576
|
+
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "currency" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "button" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
|
|
1577
1577
|
name: string;
|
|
1578
1578
|
id: string;
|
|
1579
1579
|
}[];
|
|
@@ -1582,14 +1582,14 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
|
|
|
1582
1582
|
description?: string | undefined;
|
|
1583
1583
|
} | undefined;
|
|
1584
1584
|
}, {
|
|
1585
|
+
success: boolean;
|
|
1585
1586
|
operation: "create_table";
|
|
1586
1587
|
ok: boolean;
|
|
1587
|
-
success: boolean;
|
|
1588
1588
|
error?: string | undefined;
|
|
1589
1589
|
table?: {
|
|
1590
1590
|
name: string;
|
|
1591
1591
|
fields: {
|
|
1592
|
-
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "
|
|
1592
|
+
type: "number" | "date" | "email" | "url" | "duration" | "count" | "createdTime" | "dateTime" | "rating" | "currency" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "button" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
|
|
1593
1593
|
name: string;
|
|
1594
1594
|
id: string;
|
|
1595
1595
|
}[];
|
|
@@ -1616,19 +1616,19 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
|
|
|
1616
1616
|
error: z.ZodDefault<z.ZodString>;
|
|
1617
1617
|
success: z.ZodBoolean;
|
|
1618
1618
|
}, "strip", z.ZodTypeAny, {
|
|
1619
|
+
success: boolean;
|
|
1620
|
+
error: string;
|
|
1619
1621
|
operation: "update_table";
|
|
1620
1622
|
ok: boolean;
|
|
1621
|
-
error: string;
|
|
1622
|
-
success: boolean;
|
|
1623
1623
|
table?: {
|
|
1624
1624
|
name: string;
|
|
1625
1625
|
id: string;
|
|
1626
1626
|
description?: string | undefined;
|
|
1627
1627
|
} | undefined;
|
|
1628
1628
|
}, {
|
|
1629
|
+
success: boolean;
|
|
1629
1630
|
operation: "update_table";
|
|
1630
1631
|
ok: boolean;
|
|
1631
|
-
success: boolean;
|
|
1632
1632
|
error?: string | undefined;
|
|
1633
1633
|
table?: {
|
|
1634
1634
|
name: string;
|
|
@@ -1657,10 +1657,10 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
|
|
|
1657
1657
|
error: z.ZodDefault<z.ZodString>;
|
|
1658
1658
|
success: z.ZodBoolean;
|
|
1659
1659
|
}, "strip", z.ZodTypeAny, {
|
|
1660
|
+
success: boolean;
|
|
1661
|
+
error: string;
|
|
1660
1662
|
operation: "create_field";
|
|
1661
1663
|
ok: boolean;
|
|
1662
|
-
error: string;
|
|
1663
|
-
success: boolean;
|
|
1664
1664
|
field?: {
|
|
1665
1665
|
type: string;
|
|
1666
1666
|
name: string;
|
|
@@ -1668,9 +1668,9 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
|
|
|
1668
1668
|
description?: string | undefined;
|
|
1669
1669
|
} | undefined;
|
|
1670
1670
|
}, {
|
|
1671
|
+
success: boolean;
|
|
1671
1672
|
operation: "create_field";
|
|
1672
1673
|
ok: boolean;
|
|
1673
|
-
success: boolean;
|
|
1674
1674
|
error?: string | undefined;
|
|
1675
1675
|
field?: {
|
|
1676
1676
|
type: string;
|
|
@@ -1700,10 +1700,10 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
|
|
|
1700
1700
|
error: z.ZodDefault<z.ZodString>;
|
|
1701
1701
|
success: z.ZodBoolean;
|
|
1702
1702
|
}, "strip", z.ZodTypeAny, {
|
|
1703
|
+
success: boolean;
|
|
1704
|
+
error: string;
|
|
1703
1705
|
operation: "update_field";
|
|
1704
1706
|
ok: boolean;
|
|
1705
|
-
error: string;
|
|
1706
|
-
success: boolean;
|
|
1707
1707
|
field?: {
|
|
1708
1708
|
type: string;
|
|
1709
1709
|
name: string;
|
|
@@ -1711,9 +1711,9 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
|
|
|
1711
1711
|
description?: string | undefined;
|
|
1712
1712
|
} | undefined;
|
|
1713
1713
|
}, {
|
|
1714
|
+
success: boolean;
|
|
1714
1715
|
operation: "update_field";
|
|
1715
1716
|
ok: boolean;
|
|
1716
|
-
success: boolean;
|
|
1717
1717
|
error?: string | undefined;
|
|
1718
1718
|
field?: {
|
|
1719
1719
|
type: string;
|