@bubblelab/bubble-core 0.1.75 → 0.1.77
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 +96 -96
- package/dist/bubbles/service-bubble/agi-inc.d.ts +112 -112
- package/dist/bubbles/service-bubble/ai-agent.d.ts +30 -30
- package/dist/bubbles/service-bubble/ai-agent.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/ai-agent.js +1 -0
- package/dist/bubbles/service-bubble/ai-agent.js.map +1 -1
- package/dist/bubbles/service-bubble/airtable.d.ts +154 -154
- package/dist/bubbles/service-bubble/apify/apify.d.ts +14 -14
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +60 -60
- package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +22 -22
- package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +31 -31
- package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +29 -29
- package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +86 -86
- 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 +310 -310
- package/dist/bubbles/service-bubble/followupboss.d.ts +228 -228
- 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 +100 -100
- package/dist/bubbles/service-bubble/gmail.d.ts +282 -282
- package/dist/bubbles/service-bubble/google-calendar.d.ts +28 -28
- package/dist/bubbles/service-bubble/google-drive.d.ts +126 -126
- 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 +12 -12
- package/dist/bubbles/service-bubble/jira/jira.d.ts +46 -46
- package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +56 -56
- package/dist/bubbles/service-bubble/notion/notion.d.ts +528 -528
- package/dist/bubbles/service-bubble/postgresql.d.ts +12 -12
- package/dist/bubbles/service-bubble/resend.d.ts +12 -12
- package/dist/bubbles/service-bubble/slack/slack.d.ts +604 -604
- package/dist/bubbles/service-bubble/storage.d.ts +20 -20
- package/dist/bubbles/service-bubble/stripe/stripe.d.ts +76 -76
- 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 +22 -22
- package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.schema.d.ts +28 -28
- package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/chart-js-tool.d.ts +12 -12
- package/dist/bubbles/tool-bubble/code-edit-tool.d.ts +8 -8
- 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 +290 -290
- package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +8 -8
- package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
- package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +64 -64
- package/dist/bubbles/tool-bubble/tool-template.d.ts +8 -8
- package/dist/bubbles/tool-bubble/twitter-tool.d.ts +94 -94
- package/dist/bubbles/tool-bubble/youtube-tool.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +20 -20
- package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +8 -8
- package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +42 -42
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +18 -18
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +138 -138
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts.map +1 -1
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.js +11 -1
- package/dist/bubbles/workflow-bubble/slack-formatter-agent.js.map +1 -1
- package/dist/bubbles.json +4 -3
- package/package.json +2 -2
|
@@ -14,8 +14,8 @@ declare const AirtableParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
14
14
|
field: z.ZodString;
|
|
15
15
|
direction: z.ZodDefault<z.ZodOptional<z.ZodEnum<["asc", "desc"]>>>;
|
|
16
16
|
}, "strip", z.ZodTypeAny, {
|
|
17
|
-
field: string;
|
|
18
17
|
direction: "asc" | "desc";
|
|
18
|
+
field: string;
|
|
19
19
|
}, {
|
|
20
20
|
field: string;
|
|
21
21
|
direction?: "asc" | "desc" | undefined;
|
|
@@ -28,22 +28,22 @@ declare const AirtableParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
28
28
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
29
29
|
}, "strip", z.ZodTypeAny, {
|
|
30
30
|
operation: "list_records";
|
|
31
|
+
pageSize: number;
|
|
31
32
|
baseId: string;
|
|
32
33
|
tableIdOrName: string;
|
|
33
|
-
pageSize: number;
|
|
34
34
|
cellFormat: "string" | "json";
|
|
35
35
|
sort?: {
|
|
36
|
-
field: string;
|
|
37
36
|
direction: "asc" | "desc";
|
|
37
|
+
field: string;
|
|
38
38
|
}[] | undefined;
|
|
39
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
39
40
|
fields?: string[] | undefined;
|
|
41
|
+
offset?: string | undefined;
|
|
42
|
+
timeZone?: string | undefined;
|
|
40
43
|
filterByFormula?: string | undefined;
|
|
41
44
|
maxRecords?: number | undefined;
|
|
42
45
|
view?: string | undefined;
|
|
43
|
-
timeZone?: string | undefined;
|
|
44
46
|
userLocale?: string | undefined;
|
|
45
|
-
offset?: string | undefined;
|
|
46
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
47
47
|
}, {
|
|
48
48
|
operation: "list_records";
|
|
49
49
|
baseId: string;
|
|
@@ -52,16 +52,16 @@ declare const AirtableParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
52
52
|
field: string;
|
|
53
53
|
direction?: "asc" | "desc" | undefined;
|
|
54
54
|
}[] | undefined;
|
|
55
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
55
56
|
fields?: string[] | undefined;
|
|
57
|
+
offset?: string | undefined;
|
|
58
|
+
pageSize?: number | undefined;
|
|
59
|
+
timeZone?: string | undefined;
|
|
56
60
|
filterByFormula?: string | undefined;
|
|
57
61
|
maxRecords?: number | undefined;
|
|
58
|
-
pageSize?: number | undefined;
|
|
59
62
|
view?: string | undefined;
|
|
60
63
|
cellFormat?: "string" | "json" | undefined;
|
|
61
|
-
timeZone?: string | undefined;
|
|
62
64
|
userLocale?: string | undefined;
|
|
63
|
-
offset?: string | undefined;
|
|
64
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
65
65
|
}>, z.ZodObject<{
|
|
66
66
|
operation: z.ZodLiteral<"get_record">;
|
|
67
67
|
baseId: z.ZodString;
|
|
@@ -197,39 +197,39 @@ 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" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "
|
|
200
|
+
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";
|
|
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" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "
|
|
205
|
+
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";
|
|
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
|
-
|
|
213
|
-
baseId: string;
|
|
212
|
+
name: string;
|
|
214
213
|
fields: {
|
|
215
|
-
type: "number" | "date" | "email" | "url" | "duration" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "
|
|
214
|
+
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";
|
|
216
215
|
name: string;
|
|
217
216
|
options?: Record<string, unknown> | undefined;
|
|
218
217
|
description?: string | undefined;
|
|
219
218
|
}[];
|
|
220
|
-
|
|
219
|
+
operation: "create_table";
|
|
220
|
+
baseId: string;
|
|
221
221
|
description?: string | undefined;
|
|
222
222
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
223
223
|
}, {
|
|
224
|
-
|
|
225
|
-
baseId: string;
|
|
224
|
+
name: string;
|
|
226
225
|
fields: {
|
|
227
|
-
type: "number" | "date" | "email" | "url" | "duration" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "
|
|
226
|
+
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";
|
|
228
227
|
name: string;
|
|
229
228
|
options?: Record<string, unknown> | undefined;
|
|
230
229
|
description?: string | undefined;
|
|
231
230
|
}[];
|
|
232
|
-
|
|
231
|
+
operation: "create_table";
|
|
232
|
+
baseId: string;
|
|
233
233
|
description?: string | undefined;
|
|
234
234
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
235
235
|
}>, z.ZodObject<{
|
|
@@ -263,20 +263,20 @@ 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
|
+
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";
|
|
267
|
+
name: string;
|
|
266
268
|
operation: "create_field";
|
|
267
|
-
type: "number" | "date" | "email" | "url" | "duration" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "rating" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "dateTime" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "button" | "formula" | "createdTime" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "count" | "lookup" | "rollup";
|
|
268
269
|
baseId: string;
|
|
269
270
|
tableIdOrName: string;
|
|
270
|
-
name: string;
|
|
271
271
|
options?: Record<string, unknown> | undefined;
|
|
272
272
|
description?: string | undefined;
|
|
273
273
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
274
274
|
}, {
|
|
275
|
+
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";
|
|
276
|
+
name: string;
|
|
275
277
|
operation: "create_field";
|
|
276
|
-
type: "number" | "date" | "email" | "url" | "duration" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "rating" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "dateTime" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "button" | "formula" | "createdTime" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "count" | "lookup" | "rollup";
|
|
277
278
|
baseId: string;
|
|
278
279
|
tableIdOrName: string;
|
|
279
|
-
name: string;
|
|
280
280
|
options?: Record<string, unknown> | undefined;
|
|
281
281
|
description?: string | undefined;
|
|
282
282
|
credentials?: Partial<Record<CredentialType, string>> | 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
|
-
operation: "list_records";
|
|
329
|
-
ok: boolean;
|
|
330
328
|
error: string;
|
|
331
329
|
success: boolean;
|
|
330
|
+
operation: "list_records";
|
|
331
|
+
ok: boolean;
|
|
332
332
|
offset?: string | undefined;
|
|
333
333
|
records?: {
|
|
334
334
|
fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
|
|
@@ -336,16 +336,16 @@ 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
|
-
|
|
342
|
+
error?: string | undefined;
|
|
342
343
|
offset?: string | undefined;
|
|
343
344
|
records?: {
|
|
344
345
|
fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
|
|
345
346
|
id: string;
|
|
346
347
|
createdTime: string;
|
|
347
348
|
}[] | undefined;
|
|
348
|
-
error?: string | undefined;
|
|
349
349
|
}>, z.ZodObject<{
|
|
350
350
|
operation: z.ZodLiteral<"get_record">;
|
|
351
351
|
ok: z.ZodBoolean;
|
|
@@ -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
|
-
operation: "get_record";
|
|
369
|
-
ok: boolean;
|
|
370
368
|
error: string;
|
|
371
369
|
success: boolean;
|
|
370
|
+
operation: "get_record";
|
|
371
|
+
ok: 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,25 +403,25 @@ 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
|
-
operation: "create_records";
|
|
407
|
-
ok: boolean;
|
|
408
406
|
error: string;
|
|
409
407
|
success: boolean;
|
|
408
|
+
operation: "create_records";
|
|
409
|
+
ok: 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
|
-
|
|
419
|
+
error?: string | undefined;
|
|
419
420
|
records?: {
|
|
420
421
|
fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
|
|
421
422
|
id: string;
|
|
422
423
|
createdTime: string;
|
|
423
424
|
}[] | undefined;
|
|
424
|
-
error?: string | undefined;
|
|
425
425
|
}>, z.ZodObject<{
|
|
426
426
|
operation: z.ZodLiteral<"update_records">;
|
|
427
427
|
ok: z.ZodBoolean;
|
|
@@ -441,25 +441,25 @@ 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
|
-
operation: "update_records";
|
|
445
|
-
ok: boolean;
|
|
446
444
|
error: string;
|
|
447
445
|
success: boolean;
|
|
446
|
+
operation: "update_records";
|
|
447
|
+
ok: 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
|
-
|
|
457
|
+
error?: string | undefined;
|
|
457
458
|
records?: {
|
|
458
459
|
fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
|
|
459
460
|
id: string;
|
|
460
461
|
createdTime: string;
|
|
461
462
|
}[] | undefined;
|
|
462
|
-
error?: string | undefined;
|
|
463
463
|
}>, z.ZodObject<{
|
|
464
464
|
operation: z.ZodLiteral<"delete_records">;
|
|
465
465
|
ok: z.ZodBoolean;
|
|
@@ -476,23 +476,23 @@ 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
|
-
operation: "delete_records";
|
|
480
|
-
ok: boolean;
|
|
481
479
|
error: string;
|
|
482
480
|
success: boolean;
|
|
481
|
+
operation: "delete_records";
|
|
482
|
+
ok: 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
|
-
|
|
491
|
+
error?: string | undefined;
|
|
491
492
|
records?: {
|
|
492
493
|
id: string;
|
|
493
494
|
deleted: boolean;
|
|
494
495
|
}[] | undefined;
|
|
495
|
-
error?: string | undefined;
|
|
496
496
|
}>, z.ZodObject<{
|
|
497
497
|
operation: z.ZodLiteral<"list_bases">;
|
|
498
498
|
ok: z.ZodBoolean;
|
|
@@ -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
|
-
operation: "list_bases";
|
|
516
|
-
ok: boolean;
|
|
517
515
|
error: string;
|
|
518
516
|
success: boolean;
|
|
517
|
+
operation: "list_bases";
|
|
518
|
+
ok: 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;
|
|
@@ -572,6 +572,7 @@ declare const AirtableResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
572
572
|
id: string;
|
|
573
573
|
}>, "many">>;
|
|
574
574
|
}, "strip", z.ZodTypeAny, {
|
|
575
|
+
name: string;
|
|
575
576
|
fields: {
|
|
576
577
|
type: string;
|
|
577
578
|
name: string;
|
|
@@ -579,7 +580,6 @@ declare const AirtableResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
579
580
|
options?: Record<string, unknown> | undefined;
|
|
580
581
|
description?: string | undefined;
|
|
581
582
|
}[];
|
|
582
|
-
name: string;
|
|
583
583
|
id: string;
|
|
584
584
|
primaryFieldId: string;
|
|
585
585
|
description?: string | undefined;
|
|
@@ -589,6 +589,7 @@ declare const AirtableResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
589
589
|
id: string;
|
|
590
590
|
}[] | undefined;
|
|
591
591
|
}, {
|
|
592
|
+
name: string;
|
|
592
593
|
fields: {
|
|
593
594
|
type: string;
|
|
594
595
|
name: string;
|
|
@@ -596,7 +597,6 @@ declare const AirtableResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
596
597
|
options?: Record<string, unknown> | undefined;
|
|
597
598
|
description?: string | undefined;
|
|
598
599
|
}[];
|
|
599
|
-
name: string;
|
|
600
600
|
id: string;
|
|
601
601
|
primaryFieldId: string;
|
|
602
602
|
description?: string | undefined;
|
|
@@ -609,11 +609,12 @@ 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
|
-
operation: "get_base_schema";
|
|
613
|
-
ok: boolean;
|
|
614
612
|
error: string;
|
|
615
613
|
success: boolean;
|
|
614
|
+
operation: "get_base_schema";
|
|
615
|
+
ok: boolean;
|
|
616
616
|
tables?: {
|
|
617
|
+
name: string;
|
|
617
618
|
fields: {
|
|
618
619
|
type: string;
|
|
619
620
|
name: string;
|
|
@@ -621,7 +622,6 @@ declare const AirtableResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
621
622
|
options?: Record<string, unknown> | undefined;
|
|
622
623
|
description?: string | undefined;
|
|
623
624
|
}[];
|
|
624
|
-
name: string;
|
|
625
625
|
id: string;
|
|
626
626
|
primaryFieldId: string;
|
|
627
627
|
description?: string | undefined;
|
|
@@ -632,11 +632,12 @@ 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
|
+
name: string;
|
|
640
641
|
fields: {
|
|
641
642
|
type: string;
|
|
642
643
|
name: string;
|
|
@@ -644,7 +645,6 @@ declare const AirtableResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
|
|
|
644
645
|
options?: Record<string, unknown> | undefined;
|
|
645
646
|
description?: string | undefined;
|
|
646
647
|
}[];
|
|
647
|
-
name: string;
|
|
648
648
|
id: string;
|
|
649
649
|
primaryFieldId: string;
|
|
650
650
|
description?: string | undefined;
|
|
@@ -667,31 +667,31 @@ 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" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "
|
|
670
|
+
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";
|
|
671
671
|
name: string;
|
|
672
672
|
id: string;
|
|
673
673
|
}, {
|
|
674
|
-
type: "number" | "date" | "email" | "url" | "duration" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "
|
|
674
|
+
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";
|
|
675
675
|
name: string;
|
|
676
676
|
id: string;
|
|
677
677
|
}>, "many">;
|
|
678
678
|
}, "strip", z.ZodTypeAny, {
|
|
679
|
+
name: string;
|
|
679
680
|
fields: {
|
|
680
|
-
type: "number" | "date" | "email" | "url" | "duration" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "
|
|
681
|
+
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";
|
|
681
682
|
name: string;
|
|
682
683
|
id: string;
|
|
683
684
|
}[];
|
|
684
|
-
name: string;
|
|
685
685
|
id: string;
|
|
686
686
|
primaryFieldId: string;
|
|
687
687
|
description?: string | undefined;
|
|
688
688
|
}, {
|
|
689
|
+
name: string;
|
|
689
690
|
fields: {
|
|
690
|
-
type: "number" | "date" | "email" | "url" | "duration" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "
|
|
691
|
+
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";
|
|
691
692
|
name: string;
|
|
692
693
|
id: string;
|
|
693
694
|
}[];
|
|
694
|
-
name: string;
|
|
695
695
|
id: string;
|
|
696
696
|
primaryFieldId: string;
|
|
697
697
|
description?: string | undefined;
|
|
@@ -699,33 +699,33 @@ 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
|
-
operation: "create_table";
|
|
703
|
-
ok: boolean;
|
|
704
702
|
error: string;
|
|
705
703
|
success: boolean;
|
|
704
|
+
operation: "create_table";
|
|
705
|
+
ok: boolean;
|
|
706
706
|
table?: {
|
|
707
|
+
name: string;
|
|
707
708
|
fields: {
|
|
708
|
-
type: "number" | "date" | "email" | "url" | "duration" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "
|
|
709
|
+
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";
|
|
709
710
|
name: string;
|
|
710
711
|
id: string;
|
|
711
712
|
}[];
|
|
712
|
-
name: string;
|
|
713
713
|
id: string;
|
|
714
714
|
primaryFieldId: string;
|
|
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
|
+
name: string;
|
|
723
724
|
fields: {
|
|
724
|
-
type: "number" | "date" | "email" | "url" | "duration" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "
|
|
725
|
+
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";
|
|
725
726
|
name: string;
|
|
726
727
|
id: string;
|
|
727
728
|
}[];
|
|
728
|
-
name: string;
|
|
729
729
|
id: string;
|
|
730
730
|
primaryFieldId: string;
|
|
731
731
|
description?: string | undefined;
|
|
@@ -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
|
-
operation: "update_table";
|
|
753
|
-
ok: boolean;
|
|
754
752
|
error: string;
|
|
755
753
|
success: boolean;
|
|
754
|
+
operation: "update_table";
|
|
755
|
+
ok: 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
|
-
operation: "create_field";
|
|
794
|
-
ok: boolean;
|
|
795
793
|
error: string;
|
|
796
794
|
success: boolean;
|
|
795
|
+
operation: "create_field";
|
|
796
|
+
ok: boolean;
|
|
797
797
|
field?: {
|
|
798
798
|
type: string;
|
|
799
799
|
name: string;
|
|
@@ -801,16 +801,16 @@ 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
|
-
|
|
807
|
+
error?: string | undefined;
|
|
807
808
|
field?: {
|
|
808
809
|
type: string;
|
|
809
810
|
name: string;
|
|
810
811
|
id: string;
|
|
811
812
|
description?: string | undefined;
|
|
812
813
|
} | undefined;
|
|
813
|
-
error?: string | undefined;
|
|
814
814
|
}>, z.ZodObject<{
|
|
815
815
|
operation: z.ZodLiteral<"update_field">;
|
|
816
816
|
ok: z.ZodBoolean;
|
|
@@ -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
|
-
operation: "update_field";
|
|
837
|
-
ok: boolean;
|
|
838
836
|
error: string;
|
|
839
837
|
success: boolean;
|
|
838
|
+
operation: "update_field";
|
|
839
|
+
ok: boolean;
|
|
840
840
|
field?: {
|
|
841
841
|
type: string;
|
|
842
842
|
name: string;
|
|
@@ -844,16 +844,16 @@ 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
|
-
|
|
850
|
+
error?: string | undefined;
|
|
850
851
|
field?: {
|
|
851
852
|
type: string;
|
|
852
853
|
name: string;
|
|
853
854
|
id: string;
|
|
854
855
|
description?: string | undefined;
|
|
855
856
|
} | undefined;
|
|
856
|
-
error?: string | undefined;
|
|
857
857
|
}>]>;
|
|
858
858
|
type AirtableResult = z.output<typeof AirtableResultSchema>;
|
|
859
859
|
type AirtableParams = z.input<typeof AirtableParamsSchema>;
|
|
@@ -881,8 +881,8 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
|
|
|
881
881
|
field: z.ZodString;
|
|
882
882
|
direction: z.ZodDefault<z.ZodOptional<z.ZodEnum<["asc", "desc"]>>>;
|
|
883
883
|
}, "strip", z.ZodTypeAny, {
|
|
884
|
-
field: string;
|
|
885
884
|
direction: "asc" | "desc";
|
|
885
|
+
field: string;
|
|
886
886
|
}, {
|
|
887
887
|
field: string;
|
|
888
888
|
direction?: "asc" | "desc" | undefined;
|
|
@@ -895,22 +895,22 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
|
|
|
895
895
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
896
896
|
}, "strip", z.ZodTypeAny, {
|
|
897
897
|
operation: "list_records";
|
|
898
|
+
pageSize: number;
|
|
898
899
|
baseId: string;
|
|
899
900
|
tableIdOrName: string;
|
|
900
|
-
pageSize: number;
|
|
901
901
|
cellFormat: "string" | "json";
|
|
902
902
|
sort?: {
|
|
903
|
-
field: string;
|
|
904
903
|
direction: "asc" | "desc";
|
|
904
|
+
field: string;
|
|
905
905
|
}[] | undefined;
|
|
906
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
906
907
|
fields?: string[] | undefined;
|
|
908
|
+
offset?: string | undefined;
|
|
909
|
+
timeZone?: string | undefined;
|
|
907
910
|
filterByFormula?: string | undefined;
|
|
908
911
|
maxRecords?: number | undefined;
|
|
909
912
|
view?: string | undefined;
|
|
910
|
-
timeZone?: string | undefined;
|
|
911
913
|
userLocale?: string | undefined;
|
|
912
|
-
offset?: string | undefined;
|
|
913
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
914
914
|
}, {
|
|
915
915
|
operation: "list_records";
|
|
916
916
|
baseId: string;
|
|
@@ -919,16 +919,16 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
|
|
|
919
919
|
field: string;
|
|
920
920
|
direction?: "asc" | "desc" | undefined;
|
|
921
921
|
}[] | undefined;
|
|
922
|
+
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
922
923
|
fields?: string[] | undefined;
|
|
924
|
+
offset?: string | undefined;
|
|
925
|
+
pageSize?: number | undefined;
|
|
926
|
+
timeZone?: string | undefined;
|
|
923
927
|
filterByFormula?: string | undefined;
|
|
924
928
|
maxRecords?: number | undefined;
|
|
925
|
-
pageSize?: number | undefined;
|
|
926
929
|
view?: string | undefined;
|
|
927
930
|
cellFormat?: "string" | "json" | undefined;
|
|
928
|
-
timeZone?: string | undefined;
|
|
929
931
|
userLocale?: string | undefined;
|
|
930
|
-
offset?: string | undefined;
|
|
931
|
-
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
932
932
|
}>, z.ZodObject<{
|
|
933
933
|
operation: z.ZodLiteral<"get_record">;
|
|
934
934
|
baseId: z.ZodString;
|
|
@@ -1064,39 +1064,39 @@ 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" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "
|
|
1067
|
+
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";
|
|
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" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "
|
|
1072
|
+
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";
|
|
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
|
-
|
|
1080
|
-
baseId: string;
|
|
1079
|
+
name: string;
|
|
1081
1080
|
fields: {
|
|
1082
|
-
type: "number" | "date" | "email" | "url" | "duration" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "
|
|
1081
|
+
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";
|
|
1083
1082
|
name: string;
|
|
1084
1083
|
options?: Record<string, unknown> | undefined;
|
|
1085
1084
|
description?: string | undefined;
|
|
1086
1085
|
}[];
|
|
1087
|
-
|
|
1086
|
+
operation: "create_table";
|
|
1087
|
+
baseId: string;
|
|
1088
1088
|
description?: string | undefined;
|
|
1089
1089
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1090
1090
|
}, {
|
|
1091
|
-
|
|
1092
|
-
baseId: string;
|
|
1091
|
+
name: string;
|
|
1093
1092
|
fields: {
|
|
1094
|
-
type: "number" | "date" | "email" | "url" | "duration" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "
|
|
1093
|
+
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";
|
|
1095
1094
|
name: string;
|
|
1096
1095
|
options?: Record<string, unknown> | undefined;
|
|
1097
1096
|
description?: string | undefined;
|
|
1098
1097
|
}[];
|
|
1099
|
-
|
|
1098
|
+
operation: "create_table";
|
|
1099
|
+
baseId: string;
|
|
1100
1100
|
description?: string | undefined;
|
|
1101
1101
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1102
1102
|
}>, z.ZodObject<{
|
|
@@ -1130,20 +1130,20 @@ 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
|
+
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";
|
|
1134
|
+
name: string;
|
|
1133
1135
|
operation: "create_field";
|
|
1134
|
-
type: "number" | "date" | "email" | "url" | "duration" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "rating" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "dateTime" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "button" | "formula" | "createdTime" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "count" | "lookup" | "rollup";
|
|
1135
1136
|
baseId: string;
|
|
1136
1137
|
tableIdOrName: string;
|
|
1137
|
-
name: string;
|
|
1138
1138
|
options?: Record<string, unknown> | undefined;
|
|
1139
1139
|
description?: string | undefined;
|
|
1140
1140
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
1141
1141
|
}, {
|
|
1142
|
+
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";
|
|
1143
|
+
name: string;
|
|
1142
1144
|
operation: "create_field";
|
|
1143
|
-
type: "number" | "date" | "email" | "url" | "duration" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "rating" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "dateTime" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "button" | "formula" | "createdTime" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "count" | "lookup" | "rollup";
|
|
1144
1145
|
baseId: string;
|
|
1145
1146
|
tableIdOrName: string;
|
|
1146
|
-
name: string;
|
|
1147
1147
|
options?: Record<string, unknown> | undefined;
|
|
1148
1148
|
description?: string | undefined;
|
|
1149
1149
|
credentials?: Partial<Record<CredentialType, string>> | 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
|
-
operation: "list_records";
|
|
1196
|
-
ok: boolean;
|
|
1197
1195
|
error: string;
|
|
1198
1196
|
success: boolean;
|
|
1197
|
+
operation: "list_records";
|
|
1198
|
+
ok: boolean;
|
|
1199
1199
|
offset?: string | undefined;
|
|
1200
1200
|
records?: {
|
|
1201
1201
|
fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
|
|
@@ -1203,16 +1203,16 @@ 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
|
-
|
|
1209
|
+
error?: string | undefined;
|
|
1209
1210
|
offset?: string | undefined;
|
|
1210
1211
|
records?: {
|
|
1211
1212
|
fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
|
|
1212
1213
|
id: string;
|
|
1213
1214
|
createdTime: string;
|
|
1214
1215
|
}[] | undefined;
|
|
1215
|
-
error?: string | undefined;
|
|
1216
1216
|
}>, z.ZodObject<{
|
|
1217
1217
|
operation: z.ZodLiteral<"get_record">;
|
|
1218
1218
|
ok: z.ZodBoolean;
|
|
@@ -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
|
-
operation: "get_record";
|
|
1236
|
-
ok: boolean;
|
|
1237
1235
|
error: string;
|
|
1238
1236
|
success: boolean;
|
|
1237
|
+
operation: "get_record";
|
|
1238
|
+
ok: 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,25 +1270,25 @@ 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
|
-
operation: "create_records";
|
|
1274
|
-
ok: boolean;
|
|
1275
1273
|
error: string;
|
|
1276
1274
|
success: boolean;
|
|
1275
|
+
operation: "create_records";
|
|
1276
|
+
ok: 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
|
-
|
|
1286
|
+
error?: string | undefined;
|
|
1286
1287
|
records?: {
|
|
1287
1288
|
fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
|
|
1288
1289
|
id: string;
|
|
1289
1290
|
createdTime: string;
|
|
1290
1291
|
}[] | undefined;
|
|
1291
|
-
error?: string | undefined;
|
|
1292
1292
|
}>, z.ZodObject<{
|
|
1293
1293
|
operation: z.ZodLiteral<"update_records">;
|
|
1294
1294
|
ok: z.ZodBoolean;
|
|
@@ -1308,25 +1308,25 @@ 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
|
-
operation: "update_records";
|
|
1312
|
-
ok: boolean;
|
|
1313
1311
|
error: string;
|
|
1314
1312
|
success: boolean;
|
|
1313
|
+
operation: "update_records";
|
|
1314
|
+
ok: 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
|
-
|
|
1324
|
+
error?: string | undefined;
|
|
1324
1325
|
records?: {
|
|
1325
1326
|
fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
|
|
1326
1327
|
id: string;
|
|
1327
1328
|
createdTime: string;
|
|
1328
1329
|
}[] | undefined;
|
|
1329
|
-
error?: string | undefined;
|
|
1330
1330
|
}>, z.ZodObject<{
|
|
1331
1331
|
operation: z.ZodLiteral<"delete_records">;
|
|
1332
1332
|
ok: z.ZodBoolean;
|
|
@@ -1343,23 +1343,23 @@ 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
|
-
operation: "delete_records";
|
|
1347
|
-
ok: boolean;
|
|
1348
1346
|
error: string;
|
|
1349
1347
|
success: boolean;
|
|
1348
|
+
operation: "delete_records";
|
|
1349
|
+
ok: 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
|
-
|
|
1358
|
+
error?: string | undefined;
|
|
1358
1359
|
records?: {
|
|
1359
1360
|
id: string;
|
|
1360
1361
|
deleted: boolean;
|
|
1361
1362
|
}[] | undefined;
|
|
1362
|
-
error?: string | undefined;
|
|
1363
1363
|
}>, z.ZodObject<{
|
|
1364
1364
|
operation: z.ZodLiteral<"list_bases">;
|
|
1365
1365
|
ok: z.ZodBoolean;
|
|
@@ -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
|
-
operation: "list_bases";
|
|
1383
|
-
ok: boolean;
|
|
1384
1382
|
error: string;
|
|
1385
1383
|
success: boolean;
|
|
1384
|
+
operation: "list_bases";
|
|
1385
|
+
ok: 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;
|
|
@@ -1439,6 +1439,7 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
|
|
|
1439
1439
|
id: string;
|
|
1440
1440
|
}>, "many">>;
|
|
1441
1441
|
}, "strip", z.ZodTypeAny, {
|
|
1442
|
+
name: string;
|
|
1442
1443
|
fields: {
|
|
1443
1444
|
type: string;
|
|
1444
1445
|
name: string;
|
|
@@ -1446,7 +1447,6 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
|
|
|
1446
1447
|
options?: Record<string, unknown> | undefined;
|
|
1447
1448
|
description?: string | undefined;
|
|
1448
1449
|
}[];
|
|
1449
|
-
name: string;
|
|
1450
1450
|
id: string;
|
|
1451
1451
|
primaryFieldId: string;
|
|
1452
1452
|
description?: string | undefined;
|
|
@@ -1456,6 +1456,7 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
|
|
|
1456
1456
|
id: string;
|
|
1457
1457
|
}[] | undefined;
|
|
1458
1458
|
}, {
|
|
1459
|
+
name: string;
|
|
1459
1460
|
fields: {
|
|
1460
1461
|
type: string;
|
|
1461
1462
|
name: string;
|
|
@@ -1463,7 +1464,6 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
|
|
|
1463
1464
|
options?: Record<string, unknown> | undefined;
|
|
1464
1465
|
description?: string | undefined;
|
|
1465
1466
|
}[];
|
|
1466
|
-
name: string;
|
|
1467
1467
|
id: string;
|
|
1468
1468
|
primaryFieldId: string;
|
|
1469
1469
|
description?: string | undefined;
|
|
@@ -1476,11 +1476,12 @@ 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
|
-
operation: "get_base_schema";
|
|
1480
|
-
ok: boolean;
|
|
1481
1479
|
error: string;
|
|
1482
1480
|
success: boolean;
|
|
1481
|
+
operation: "get_base_schema";
|
|
1482
|
+
ok: boolean;
|
|
1483
1483
|
tables?: {
|
|
1484
|
+
name: string;
|
|
1484
1485
|
fields: {
|
|
1485
1486
|
type: string;
|
|
1486
1487
|
name: string;
|
|
@@ -1488,7 +1489,6 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
|
|
|
1488
1489
|
options?: Record<string, unknown> | undefined;
|
|
1489
1490
|
description?: string | undefined;
|
|
1490
1491
|
}[];
|
|
1491
|
-
name: string;
|
|
1492
1492
|
id: string;
|
|
1493
1493
|
primaryFieldId: string;
|
|
1494
1494
|
description?: string | undefined;
|
|
@@ -1499,11 +1499,12 @@ 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
|
+
name: string;
|
|
1507
1508
|
fields: {
|
|
1508
1509
|
type: string;
|
|
1509
1510
|
name: string;
|
|
@@ -1511,7 +1512,6 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
|
|
|
1511
1512
|
options?: Record<string, unknown> | undefined;
|
|
1512
1513
|
description?: string | undefined;
|
|
1513
1514
|
}[];
|
|
1514
|
-
name: string;
|
|
1515
1515
|
id: string;
|
|
1516
1516
|
primaryFieldId: string;
|
|
1517
1517
|
description?: string | undefined;
|
|
@@ -1534,31 +1534,31 @@ 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" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "
|
|
1537
|
+
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";
|
|
1538
1538
|
name: string;
|
|
1539
1539
|
id: string;
|
|
1540
1540
|
}, {
|
|
1541
|
-
type: "number" | "date" | "email" | "url" | "duration" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "
|
|
1541
|
+
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";
|
|
1542
1542
|
name: string;
|
|
1543
1543
|
id: string;
|
|
1544
1544
|
}>, "many">;
|
|
1545
1545
|
}, "strip", z.ZodTypeAny, {
|
|
1546
|
+
name: string;
|
|
1546
1547
|
fields: {
|
|
1547
|
-
type: "number" | "date" | "email" | "url" | "duration" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "
|
|
1548
|
+
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";
|
|
1548
1549
|
name: string;
|
|
1549
1550
|
id: string;
|
|
1550
1551
|
}[];
|
|
1551
|
-
name: string;
|
|
1552
1552
|
id: string;
|
|
1553
1553
|
primaryFieldId: string;
|
|
1554
1554
|
description?: string | undefined;
|
|
1555
1555
|
}, {
|
|
1556
|
+
name: string;
|
|
1556
1557
|
fields: {
|
|
1557
|
-
type: "number" | "date" | "email" | "url" | "duration" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "
|
|
1558
|
+
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";
|
|
1558
1559
|
name: string;
|
|
1559
1560
|
id: string;
|
|
1560
1561
|
}[];
|
|
1561
|
-
name: string;
|
|
1562
1562
|
id: string;
|
|
1563
1563
|
primaryFieldId: string;
|
|
1564
1564
|
description?: string | undefined;
|
|
@@ -1566,33 +1566,33 @@ 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
|
-
operation: "create_table";
|
|
1570
|
-
ok: boolean;
|
|
1571
1569
|
error: string;
|
|
1572
1570
|
success: boolean;
|
|
1571
|
+
operation: "create_table";
|
|
1572
|
+
ok: boolean;
|
|
1573
1573
|
table?: {
|
|
1574
|
+
name: string;
|
|
1574
1575
|
fields: {
|
|
1575
|
-
type: "number" | "date" | "email" | "url" | "duration" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "
|
|
1576
|
+
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";
|
|
1576
1577
|
name: string;
|
|
1577
1578
|
id: string;
|
|
1578
1579
|
}[];
|
|
1579
|
-
name: string;
|
|
1580
1580
|
id: string;
|
|
1581
1581
|
primaryFieldId: string;
|
|
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
|
+
name: string;
|
|
1590
1591
|
fields: {
|
|
1591
|
-
type: "number" | "date" | "email" | "url" | "duration" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "
|
|
1592
|
+
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";
|
|
1592
1593
|
name: string;
|
|
1593
1594
|
id: string;
|
|
1594
1595
|
}[];
|
|
1595
|
-
name: string;
|
|
1596
1596
|
id: string;
|
|
1597
1597
|
primaryFieldId: string;
|
|
1598
1598
|
description?: string | undefined;
|
|
@@ -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
|
-
operation: "update_table";
|
|
1620
|
-
ok: boolean;
|
|
1621
1619
|
error: string;
|
|
1622
1620
|
success: boolean;
|
|
1621
|
+
operation: "update_table";
|
|
1622
|
+
ok: 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
|
-
operation: "create_field";
|
|
1661
|
-
ok: boolean;
|
|
1662
1660
|
error: string;
|
|
1663
1661
|
success: boolean;
|
|
1662
|
+
operation: "create_field";
|
|
1663
|
+
ok: boolean;
|
|
1664
1664
|
field?: {
|
|
1665
1665
|
type: string;
|
|
1666
1666
|
name: string;
|
|
@@ -1668,16 +1668,16 @@ 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
|
-
|
|
1674
|
+
error?: string | undefined;
|
|
1674
1675
|
field?: {
|
|
1675
1676
|
type: string;
|
|
1676
1677
|
name: string;
|
|
1677
1678
|
id: string;
|
|
1678
1679
|
description?: string | undefined;
|
|
1679
1680
|
} | undefined;
|
|
1680
|
-
error?: string | undefined;
|
|
1681
1681
|
}>, z.ZodObject<{
|
|
1682
1682
|
operation: z.ZodLiteral<"update_field">;
|
|
1683
1683
|
ok: z.ZodBoolean;
|
|
@@ -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
|
-
operation: "update_field";
|
|
1704
|
-
ok: boolean;
|
|
1705
1703
|
error: string;
|
|
1706
1704
|
success: boolean;
|
|
1705
|
+
operation: "update_field";
|
|
1706
|
+
ok: boolean;
|
|
1707
1707
|
field?: {
|
|
1708
1708
|
type: string;
|
|
1709
1709
|
name: string;
|
|
@@ -1711,16 +1711,16 @@ 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
|
-
|
|
1717
|
+
error?: string | undefined;
|
|
1717
1718
|
field?: {
|
|
1718
1719
|
type: string;
|
|
1719
1720
|
name: string;
|
|
1720
1721
|
id: string;
|
|
1721
1722
|
description?: string | undefined;
|
|
1722
1723
|
} | undefined;
|
|
1723
|
-
error?: string | undefined;
|
|
1724
1724
|
}>]>;
|
|
1725
1725
|
static readonly shortDescription = "Airtable integration for managing records in bases and tables";
|
|
1726
1726
|
static readonly longDescription = "\n Comprehensive Airtable integration bubble for managing bases, tables, fields, and records.\n Use cases:\n - List records with filtering, sorting, and pagination\n - Retrieve individual records by ID\n - Create, update, and delete records\n - List all accessible bases\n - Get base schema with all tables and fields\n - Create and update tables\n - Create and update fields\n - Support for all Airtable field types (text, number, attachments, links, etc.)\n \n Security Features:\n - Personal Access Token authentication\n - Parameter validation and sanitization\n - Rate limiting awareness (5 requests per second per base)\n - Comprehensive error handling\n ";
|