@bubblelab/bubble-core 0.1.24 → 0.1.25

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.
Files changed (56) hide show
  1. package/dist/bubble-bundle.d.ts +73 -73
  2. package/dist/bubbles/service-bubble/agi-inc.d.ts +4 -4
  3. package/dist/bubbles/service-bubble/ai-agent.d.ts +12 -12
  4. package/dist/bubbles/service-bubble/airtable.d.ts +138 -138
  5. package/dist/bubbles/service-bubble/apify/apify.d.ts +4 -4
  6. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +9 -9
  7. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +405 -405
  8. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +432 -432
  9. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts.map +1 -1
  10. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.js +15 -9
  11. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.js.map +1 -1
  12. package/dist/bubbles/service-bubble/eleven-labs.d.ts +8 -8
  13. package/dist/bubbles/service-bubble/firecrawl.d.ts +332 -332
  14. package/dist/bubbles/service-bubble/followupboss.d.ts +277 -277
  15. package/dist/bubbles/service-bubble/github.d.ts +132 -132
  16. package/dist/bubbles/service-bubble/gmail.d.ts +478 -478
  17. package/dist/bubbles/service-bubble/google-calendar.d.ts +112 -112
  18. package/dist/bubbles/service-bubble/google-drive.d.ts +38 -38
  19. package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +8 -8
  20. package/dist/bubbles/service-bubble/hello-world.d.ts +2 -2
  21. package/dist/bubbles/service-bubble/http.d.ts +16 -16
  22. package/dist/bubbles/service-bubble/insforge-db.d.ts +6 -6
  23. package/dist/bubbles/service-bubble/notion/notion.d.ts +1098 -1098
  24. package/dist/bubbles/service-bubble/postgresql.d.ts +6 -6
  25. package/dist/bubbles/service-bubble/resend.d.ts +12 -12
  26. package/dist/bubbles/service-bubble/slack/slack.d.ts +184 -184
  27. package/dist/bubbles/service-bubble/storage.d.ts +20 -20
  28. package/dist/bubbles/service-bubble/telegram.d.ts +1420 -1420
  29. package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +8 -8
  30. package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +139 -139
  31. package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts.map +1 -1
  32. package/dist/bubbles/tool-bubble/company-enrichment-tool.js +27 -6
  33. package/dist/bubbles/tool-bubble/company-enrichment-tool.js.map +1 -1
  34. package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +36 -36
  35. package/dist/bubbles/tool-bubble/instagram-tool.d.ts +4 -4
  36. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +142 -142
  37. package/dist/bubbles/tool-bubble/list-bubbles-tool.d.ts +12 -12
  38. package/dist/bubbles/tool-bubble/people-search-tool.d.ts +161 -161
  39. package/dist/bubbles/tool-bubble/people-search-tool.d.ts.map +1 -1
  40. package/dist/bubbles/tool-bubble/people-search-tool.js +31 -10
  41. package/dist/bubbles/tool-bubble/people-search-tool.js.map +1 -1
  42. package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +10 -10
  43. package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
  44. package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
  45. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +12 -12
  46. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +28 -28
  47. package/dist/bubbles/tool-bubble/web-scrape-tool.d.ts +4 -4
  48. package/dist/bubbles/tool-bubble/web-search-tool.d.ts +14 -14
  49. package/dist/bubbles/tool-bubble/youtube-tool.d.ts +10 -10
  50. package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +20 -20
  51. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +38 -38
  52. package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +8 -8
  53. package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +4 -4
  54. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +64 -64
  55. package/dist/bubbles.json +7 -7
  56. package/package.json +2 -2
@@ -54,8 +54,8 @@ declare const AirtableParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
54
54
  }[] | undefined;
55
55
  credentials?: Partial<Record<CredentialType, string>> | undefined;
56
56
  fields?: string[] | undefined;
57
- pageSize?: number | undefined;
58
57
  offset?: string | undefined;
58
+ pageSize?: number | undefined;
59
59
  timeZone?: string | undefined;
60
60
  filterByFormula?: string | undefined;
61
61
  maxRecords?: number | undefined;
@@ -119,11 +119,11 @@ declare const AirtableParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
119
119
  id: z.ZodString;
120
120
  fields: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodArray<z.ZodUnknown, "many">, z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodNull]>>;
121
121
  }, "strip", z.ZodTypeAny, {
122
- id: string;
123
122
  fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
124
- }, {
125
123
  id: string;
124
+ }, {
126
125
  fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
126
+ id: string;
127
127
  }>, "many">;
128
128
  typecast: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
129
129
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
@@ -132,8 +132,8 @@ declare const AirtableParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
132
132
  baseId: string;
133
133
  tableIdOrName: string;
134
134
  records: {
135
- id: string;
136
135
  fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
136
+ id: string;
137
137
  }[];
138
138
  typecast: boolean;
139
139
  credentials?: Partial<Record<CredentialType, string>> | undefined;
@@ -142,8 +142,8 @@ declare const AirtableParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
142
142
  baseId: string;
143
143
  tableIdOrName: string;
144
144
  records: {
145
- id: string;
146
145
  fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
146
+ id: string;
147
147
  }[];
148
148
  credentials?: Partial<Record<CredentialType, string>> | undefined;
149
149
  typecast?: boolean | undefined;
@@ -197,23 +197,23 @@ 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" | "createdTime" | "count" | "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
200
  name: string;
201
+ type: "number" | "date" | "count" | "email" | "url" | "duration" | "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";
202
202
  options?: Record<string, unknown> | undefined;
203
203
  description?: string | undefined;
204
204
  }, {
205
- type: "number" | "date" | "email" | "url" | "duration" | "createdTime" | "count" | "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
205
  name: string;
206
+ type: "number" | "date" | "count" | "email" | "url" | "duration" | "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";
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;
213
+ operation: "create_table";
214
214
  fields: {
215
- type: "number" | "date" | "email" | "url" | "duration" | "createdTime" | "count" | "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;
216
+ type: "number" | "date" | "count" | "email" | "url" | "duration" | "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";
217
217
  options?: Record<string, unknown> | undefined;
218
218
  description?: string | undefined;
219
219
  }[];
@@ -221,11 +221,11 @@ declare const AirtableParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
221
221
  description?: string | undefined;
222
222
  credentials?: Partial<Record<CredentialType, string>> | undefined;
223
223
  }, {
224
- operation: "create_table";
225
224
  name: string;
225
+ operation: "create_table";
226
226
  fields: {
227
- type: "number" | "date" | "email" | "url" | "duration" | "createdTime" | "count" | "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;
228
+ type: "number" | "date" | "count" | "email" | "url" | "duration" | "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";
229
229
  options?: Record<string, unknown> | undefined;
230
230
  description?: string | undefined;
231
231
  }[];
@@ -243,15 +243,15 @@ declare const AirtableParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
243
243
  operation: "update_table";
244
244
  baseId: string;
245
245
  tableIdOrName: string;
246
- description?: string | undefined;
247
246
  name?: string | undefined;
247
+ description?: string | undefined;
248
248
  credentials?: Partial<Record<CredentialType, string>> | undefined;
249
249
  }, {
250
250
  operation: "update_table";
251
251
  baseId: string;
252
252
  tableIdOrName: string;
253
- description?: string | undefined;
254
253
  name?: string | undefined;
254
+ description?: string | undefined;
255
255
  credentials?: Partial<Record<CredentialType, string>> | undefined;
256
256
  }>, z.ZodObject<{
257
257
  operation: z.ZodLiteral<"create_field">;
@@ -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
- operation: "create_field";
267
- type: "number" | "date" | "email" | "url" | "duration" | "createdTime" | "count" | "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";
268
266
  name: string;
267
+ type: "number" | "date" | "count" | "email" | "url" | "duration" | "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";
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
- operation: "create_field";
276
- type: "number" | "date" | "email" | "url" | "duration" | "createdTime" | "count" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "button" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
277
275
  name: string;
276
+ type: "number" | "date" | "count" | "email" | "url" | "duration" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "button" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
277
+ operation: "create_field";
278
278
  baseId: string;
279
279
  tableIdOrName: string;
280
280
  options?: Record<string, unknown> | undefined;
@@ -293,16 +293,16 @@ declare const AirtableParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
293
293
  baseId: string;
294
294
  tableIdOrName: string;
295
295
  fieldIdOrName: string;
296
- description?: string | undefined;
297
296
  name?: string | undefined;
297
+ description?: string | undefined;
298
298
  credentials?: Partial<Record<CredentialType, string>> | undefined;
299
299
  }, {
300
300
  operation: "update_field";
301
301
  baseId: string;
302
302
  tableIdOrName: string;
303
303
  fieldIdOrName: string;
304
- description?: string | undefined;
305
304
  name?: string | undefined;
305
+ description?: string | undefined;
306
306
  credentials?: Partial<Record<CredentialType, string>> | undefined;
307
307
  }>]>;
308
308
  declare const AirtableResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject<{
@@ -313,13 +313,13 @@ declare const AirtableResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
313
313
  createdTime: z.ZodString;
314
314
  fields: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodArray<z.ZodUnknown, "many">, z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodNull]>>;
315
315
  }, "strip", z.ZodTypeAny, {
316
+ fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
316
317
  id: string;
317
318
  createdTime: string;
318
- fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
319
319
  }, {
320
+ fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
320
321
  id: string;
321
322
  createdTime: string;
322
- fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
323
323
  }>, "many">>;
324
324
  offset: z.ZodOptional<z.ZodString>;
325
325
  error: z.ZodDefault<z.ZodString>;
@@ -331,9 +331,9 @@ declare const AirtableResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
331
331
  ok: boolean;
332
332
  offset?: string | undefined;
333
333
  records?: {
334
+ fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
334
335
  id: string;
335
336
  createdTime: string;
336
- fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
337
337
  }[] | undefined;
338
338
  }, {
339
339
  operation: "list_records";
@@ -342,9 +342,9 @@ declare const AirtableResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
342
342
  error?: string | undefined;
343
343
  offset?: string | undefined;
344
344
  records?: {
345
+ fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
345
346
  id: string;
346
347
  createdTime: string;
347
- fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
348
348
  }[] | undefined;
349
349
  }>, z.ZodObject<{
350
350
  operation: z.ZodLiteral<"get_record">;
@@ -354,13 +354,13 @@ declare const AirtableResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
354
354
  createdTime: z.ZodString;
355
355
  fields: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodArray<z.ZodUnknown, "many">, z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodNull]>>;
356
356
  }, "strip", z.ZodTypeAny, {
357
+ fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
357
358
  id: string;
358
359
  createdTime: string;
359
- fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
360
360
  }, {
361
+ fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
361
362
  id: string;
362
363
  createdTime: string;
363
- fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
364
364
  }>>;
365
365
  error: z.ZodDefault<z.ZodString>;
366
366
  success: z.ZodBoolean;
@@ -370,9 +370,9 @@ declare const AirtableResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
370
370
  error: string;
371
371
  ok: boolean;
372
372
  record?: {
373
+ fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
373
374
  id: string;
374
375
  createdTime: string;
375
- fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
376
376
  } | undefined;
377
377
  }, {
378
378
  operation: "get_record";
@@ -380,9 +380,9 @@ declare const AirtableResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
380
380
  ok: boolean;
381
381
  error?: string | undefined;
382
382
  record?: {
383
+ fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
383
384
  id: string;
384
385
  createdTime: string;
385
- fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
386
386
  } | undefined;
387
387
  }>, z.ZodObject<{
388
388
  operation: z.ZodLiteral<"create_records">;
@@ -392,13 +392,13 @@ declare const AirtableResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
392
392
  createdTime: z.ZodString;
393
393
  fields: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodArray<z.ZodUnknown, "many">, z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodNull]>>;
394
394
  }, "strip", z.ZodTypeAny, {
395
+ fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
395
396
  id: string;
396
397
  createdTime: string;
397
- fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
398
398
  }, {
399
+ fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
399
400
  id: string;
400
401
  createdTime: string;
401
- fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
402
402
  }>, "many">>;
403
403
  error: z.ZodDefault<z.ZodString>;
404
404
  success: z.ZodBoolean;
@@ -408,9 +408,9 @@ declare const AirtableResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
408
408
  error: string;
409
409
  ok: boolean;
410
410
  records?: {
411
+ fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
411
412
  id: string;
412
413
  createdTime: string;
413
- fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
414
414
  }[] | undefined;
415
415
  }, {
416
416
  operation: "create_records";
@@ -418,9 +418,9 @@ declare const AirtableResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
418
418
  ok: boolean;
419
419
  error?: string | undefined;
420
420
  records?: {
421
+ fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
421
422
  id: string;
422
423
  createdTime: string;
423
- fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
424
424
  }[] | undefined;
425
425
  }>, z.ZodObject<{
426
426
  operation: z.ZodLiteral<"update_records">;
@@ -430,13 +430,13 @@ declare const AirtableResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
430
430
  createdTime: z.ZodString;
431
431
  fields: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodArray<z.ZodUnknown, "many">, z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodNull]>>;
432
432
  }, "strip", z.ZodTypeAny, {
433
+ fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
433
434
  id: string;
434
435
  createdTime: string;
435
- fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
436
436
  }, {
437
+ fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
437
438
  id: string;
438
439
  createdTime: string;
439
- fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
440
440
  }>, "many">>;
441
441
  error: z.ZodDefault<z.ZodString>;
442
442
  success: z.ZodBoolean;
@@ -446,9 +446,9 @@ declare const AirtableResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
446
446
  error: string;
447
447
  ok: boolean;
448
448
  records?: {
449
+ fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
449
450
  id: string;
450
451
  createdTime: string;
451
- fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
452
452
  }[] | undefined;
453
453
  }, {
454
454
  operation: "update_records";
@@ -456,9 +456,9 @@ declare const AirtableResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
456
456
  ok: boolean;
457
457
  error?: string | undefined;
458
458
  records?: {
459
+ fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
459
460
  id: string;
460
461
  createdTime: string;
461
- fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
462
462
  }[] | undefined;
463
463
  }>, z.ZodObject<{
464
464
  operation: z.ZodLiteral<"delete_records">;
@@ -546,14 +546,14 @@ declare const AirtableResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
546
546
  description: z.ZodOptional<z.ZodString>;
547
547
  options: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
548
548
  }, "strip", z.ZodTypeAny, {
549
- type: string;
550
549
  name: string;
550
+ type: string;
551
551
  id: string;
552
552
  options?: Record<string, unknown> | undefined;
553
553
  description?: string | undefined;
554
554
  }, {
555
- type: string;
556
555
  name: string;
556
+ type: string;
557
557
  id: string;
558
558
  options?: Record<string, unknown> | undefined;
559
559
  description?: string | undefined;
@@ -563,46 +563,46 @@ declare const AirtableResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
563
563
  name: z.ZodString;
564
564
  type: z.ZodString;
565
565
  }, "strip", z.ZodTypeAny, {
566
- type: string;
567
566
  name: string;
567
+ type: string;
568
568
  id: string;
569
569
  }, {
570
- type: string;
571
570
  name: string;
571
+ type: string;
572
572
  id: string;
573
573
  }>, "many">>;
574
574
  }, "strip", z.ZodTypeAny, {
575
575
  name: string;
576
- id: string;
577
576
  fields: {
578
- type: string;
579
577
  name: string;
578
+ type: string;
580
579
  id: string;
581
580
  options?: Record<string, unknown> | undefined;
582
581
  description?: string | undefined;
583
582
  }[];
583
+ id: string;
584
584
  primaryFieldId: string;
585
585
  description?: string | undefined;
586
586
  views?: {
587
- type: string;
588
587
  name: string;
588
+ type: string;
589
589
  id: string;
590
590
  }[] | undefined;
591
591
  }, {
592
592
  name: string;
593
- id: string;
594
593
  fields: {
595
- type: string;
596
594
  name: string;
595
+ type: string;
597
596
  id: string;
598
597
  options?: Record<string, unknown> | undefined;
599
598
  description?: string | undefined;
600
599
  }[];
600
+ id: string;
601
601
  primaryFieldId: string;
602
602
  description?: string | undefined;
603
603
  views?: {
604
- type: string;
605
604
  name: string;
605
+ type: string;
606
606
  id: string;
607
607
  }[] | undefined;
608
608
  }>, "many">>;
@@ -615,19 +615,19 @@ declare const AirtableResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
615
615
  ok: boolean;
616
616
  tables?: {
617
617
  name: string;
618
- id: string;
619
618
  fields: {
620
- type: string;
621
619
  name: string;
620
+ type: string;
622
621
  id: string;
623
622
  options?: Record<string, unknown> | undefined;
624
623
  description?: string | undefined;
625
624
  }[];
625
+ id: string;
626
626
  primaryFieldId: string;
627
627
  description?: string | undefined;
628
628
  views?: {
629
- type: string;
630
629
  name: string;
630
+ type: string;
631
631
  id: string;
632
632
  }[] | undefined;
633
633
  }[] | undefined;
@@ -638,19 +638,19 @@ declare const AirtableResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
638
638
  error?: string | undefined;
639
639
  tables?: {
640
640
  name: string;
641
- id: string;
642
641
  fields: {
643
- type: string;
644
642
  name: string;
643
+ type: string;
645
644
  id: string;
646
645
  options?: Record<string, unknown> | undefined;
647
646
  description?: string | undefined;
648
647
  }[];
648
+ id: string;
649
649
  primaryFieldId: string;
650
650
  description?: string | undefined;
651
651
  views?: {
652
- type: string;
653
652
  name: string;
653
+ type: string;
654
654
  id: string;
655
655
  }[] | undefined;
656
656
  }[] | undefined;
@@ -667,32 +667,32 @@ 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" | "createdTime" | "count" | "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
670
  name: string;
671
+ type: "number" | "date" | "count" | "email" | "url" | "duration" | "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";
672
672
  id: string;
673
673
  }, {
674
- type: "number" | "date" | "email" | "url" | "duration" | "createdTime" | "count" | "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
674
  name: string;
675
+ type: "number" | "date" | "count" | "email" | "url" | "duration" | "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";
676
676
  id: string;
677
677
  }>, "many">;
678
678
  }, "strip", z.ZodTypeAny, {
679
679
  name: string;
680
- id: string;
681
680
  fields: {
682
- type: "number" | "date" | "email" | "url" | "duration" | "createdTime" | "count" | "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";
683
681
  name: string;
682
+ type: "number" | "date" | "count" | "email" | "url" | "duration" | "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";
684
683
  id: string;
685
684
  }[];
685
+ id: string;
686
686
  primaryFieldId: string;
687
687
  description?: string | undefined;
688
688
  }, {
689
689
  name: string;
690
- id: string;
691
690
  fields: {
692
- type: "number" | "date" | "email" | "url" | "duration" | "createdTime" | "count" | "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";
693
691
  name: string;
692
+ type: "number" | "date" | "count" | "email" | "url" | "duration" | "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";
694
693
  id: string;
695
694
  }[];
695
+ id: string;
696
696
  primaryFieldId: string;
697
697
  description?: string | undefined;
698
698
  }>>;
@@ -705,12 +705,12 @@ declare const AirtableResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
705
705
  ok: boolean;
706
706
  table?: {
707
707
  name: string;
708
- id: string;
709
708
  fields: {
710
- type: "number" | "date" | "email" | "url" | "duration" | "createdTime" | "count" | "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";
711
709
  name: string;
710
+ type: "number" | "date" | "count" | "email" | "url" | "duration" | "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";
712
711
  id: string;
713
712
  }[];
713
+ id: string;
714
714
  primaryFieldId: string;
715
715
  description?: string | undefined;
716
716
  } | undefined;
@@ -721,12 +721,12 @@ declare const AirtableResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
721
721
  error?: string | undefined;
722
722
  table?: {
723
723
  name: string;
724
- id: string;
725
724
  fields: {
726
- type: "number" | "date" | "email" | "url" | "duration" | "createdTime" | "count" | "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";
727
725
  name: string;
726
+ type: "number" | "date" | "count" | "email" | "url" | "duration" | "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";
728
727
  id: string;
729
728
  }[];
729
+ id: string;
730
730
  primaryFieldId: string;
731
731
  description?: string | undefined;
732
732
  } | undefined;
@@ -777,13 +777,13 @@ declare const AirtableResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
777
777
  type: z.ZodString;
778
778
  description: z.ZodOptional<z.ZodString>;
779
779
  }, "strip", z.ZodTypeAny, {
780
- type: string;
781
780
  name: string;
781
+ type: string;
782
782
  id: string;
783
783
  description?: string | undefined;
784
784
  }, {
785
- type: string;
786
785
  name: string;
786
+ type: string;
787
787
  id: string;
788
788
  description?: string | undefined;
789
789
  }>>;
@@ -795,8 +795,8 @@ declare const AirtableResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
795
795
  error: string;
796
796
  ok: boolean;
797
797
  field?: {
798
- type: string;
799
798
  name: string;
799
+ type: string;
800
800
  id: string;
801
801
  description?: string | undefined;
802
802
  } | undefined;
@@ -806,8 +806,8 @@ declare const AirtableResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
806
806
  ok: boolean;
807
807
  error?: string | undefined;
808
808
  field?: {
809
- type: string;
810
809
  name: string;
810
+ type: string;
811
811
  id: string;
812
812
  description?: string | undefined;
813
813
  } | undefined;
@@ -820,13 +820,13 @@ declare const AirtableResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
820
820
  type: z.ZodString;
821
821
  description: z.ZodOptional<z.ZodString>;
822
822
  }, "strip", z.ZodTypeAny, {
823
- type: string;
824
823
  name: string;
824
+ type: string;
825
825
  id: string;
826
826
  description?: string | undefined;
827
827
  }, {
828
- type: string;
829
828
  name: string;
829
+ type: string;
830
830
  id: string;
831
831
  description?: string | undefined;
832
832
  }>>;
@@ -838,8 +838,8 @@ declare const AirtableResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
838
838
  error: string;
839
839
  ok: boolean;
840
840
  field?: {
841
- type: string;
842
841
  name: string;
842
+ type: string;
843
843
  id: string;
844
844
  description?: string | undefined;
845
845
  } | undefined;
@@ -849,8 +849,8 @@ declare const AirtableResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodO
849
849
  ok: boolean;
850
850
  error?: string | undefined;
851
851
  field?: {
852
- type: string;
853
852
  name: string;
853
+ type: string;
854
854
  id: string;
855
855
  description?: string | undefined;
856
856
  } | undefined;
@@ -921,8 +921,8 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
921
921
  }[] | undefined;
922
922
  credentials?: Partial<Record<CredentialType, string>> | undefined;
923
923
  fields?: string[] | undefined;
924
- pageSize?: number | undefined;
925
924
  offset?: string | undefined;
925
+ pageSize?: number | undefined;
926
926
  timeZone?: string | undefined;
927
927
  filterByFormula?: string | undefined;
928
928
  maxRecords?: number | undefined;
@@ -986,11 +986,11 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
986
986
  id: z.ZodString;
987
987
  fields: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodArray<z.ZodUnknown, "many">, z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodNull]>>;
988
988
  }, "strip", z.ZodTypeAny, {
989
- id: string;
990
989
  fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
991
- }, {
992
990
  id: string;
991
+ }, {
993
992
  fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
993
+ id: string;
994
994
  }>, "many">;
995
995
  typecast: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
996
996
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
@@ -999,8 +999,8 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
999
999
  baseId: string;
1000
1000
  tableIdOrName: string;
1001
1001
  records: {
1002
- id: string;
1003
1002
  fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
1003
+ id: string;
1004
1004
  }[];
1005
1005
  typecast: boolean;
1006
1006
  credentials?: Partial<Record<CredentialType, string>> | undefined;
@@ -1009,8 +1009,8 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
1009
1009
  baseId: string;
1010
1010
  tableIdOrName: string;
1011
1011
  records: {
1012
- id: string;
1013
1012
  fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
1013
+ id: string;
1014
1014
  }[];
1015
1015
  credentials?: Partial<Record<CredentialType, string>> | undefined;
1016
1016
  typecast?: boolean | undefined;
@@ -1064,23 +1064,23 @@ 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" | "createdTime" | "count" | "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
1067
  name: string;
1068
+ type: "number" | "date" | "count" | "email" | "url" | "duration" | "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";
1069
1069
  options?: Record<string, unknown> | undefined;
1070
1070
  description?: string | undefined;
1071
1071
  }, {
1072
- type: "number" | "date" | "email" | "url" | "duration" | "createdTime" | "count" | "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
1072
  name: string;
1073
+ type: "number" | "date" | "count" | "email" | "url" | "duration" | "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";
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;
1080
+ operation: "create_table";
1081
1081
  fields: {
1082
- type: "number" | "date" | "email" | "url" | "duration" | "createdTime" | "count" | "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;
1083
+ type: "number" | "date" | "count" | "email" | "url" | "duration" | "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";
1084
1084
  options?: Record<string, unknown> | undefined;
1085
1085
  description?: string | undefined;
1086
1086
  }[];
@@ -1088,11 +1088,11 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
1088
1088
  description?: string | undefined;
1089
1089
  credentials?: Partial<Record<CredentialType, string>> | undefined;
1090
1090
  }, {
1091
- operation: "create_table";
1092
1091
  name: string;
1092
+ operation: "create_table";
1093
1093
  fields: {
1094
- type: "number" | "date" | "email" | "url" | "duration" | "createdTime" | "count" | "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;
1095
+ type: "number" | "date" | "count" | "email" | "url" | "duration" | "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";
1096
1096
  options?: Record<string, unknown> | undefined;
1097
1097
  description?: string | undefined;
1098
1098
  }[];
@@ -1110,15 +1110,15 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
1110
1110
  operation: "update_table";
1111
1111
  baseId: string;
1112
1112
  tableIdOrName: string;
1113
- description?: string | undefined;
1114
1113
  name?: string | undefined;
1114
+ description?: string | undefined;
1115
1115
  credentials?: Partial<Record<CredentialType, string>> | undefined;
1116
1116
  }, {
1117
1117
  operation: "update_table";
1118
1118
  baseId: string;
1119
1119
  tableIdOrName: string;
1120
- description?: string | undefined;
1121
1120
  name?: string | undefined;
1121
+ description?: string | undefined;
1122
1122
  credentials?: Partial<Record<CredentialType, string>> | undefined;
1123
1123
  }>, z.ZodObject<{
1124
1124
  operation: z.ZodLiteral<"create_field">;
@@ -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
- operation: "create_field";
1134
- type: "number" | "date" | "email" | "url" | "duration" | "createdTime" | "count" | "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";
1135
1133
  name: string;
1134
+ type: "number" | "date" | "count" | "email" | "url" | "duration" | "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";
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
- operation: "create_field";
1143
- type: "number" | "date" | "email" | "url" | "duration" | "createdTime" | "count" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "button" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
1144
1142
  name: string;
1143
+ type: "number" | "date" | "count" | "email" | "url" | "duration" | "createdTime" | "dateTime" | "rating" | "singleLineText" | "multilineText" | "richText" | "phoneNumber" | "percent" | "currency" | "singleSelect" | "multipleSelects" | "singleCollaborator" | "multipleCollaborators" | "checkbox" | "multipleRecordLinks" | "multipleAttachments" | "barcode" | "button" | "formula" | "lastModifiedTime" | "createdBy" | "lastModifiedBy" | "autoNumber" | "externalSyncSource" | "lookup" | "rollup";
1144
+ operation: "create_field";
1145
1145
  baseId: string;
1146
1146
  tableIdOrName: string;
1147
1147
  options?: Record<string, unknown> | undefined;
@@ -1160,16 +1160,16 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
1160
1160
  baseId: string;
1161
1161
  tableIdOrName: string;
1162
1162
  fieldIdOrName: string;
1163
- description?: string | undefined;
1164
1163
  name?: string | undefined;
1164
+ description?: string | undefined;
1165
1165
  credentials?: Partial<Record<CredentialType, string>> | undefined;
1166
1166
  }, {
1167
1167
  operation: "update_field";
1168
1168
  baseId: string;
1169
1169
  tableIdOrName: string;
1170
1170
  fieldIdOrName: string;
1171
- description?: string | undefined;
1172
1171
  name?: string | undefined;
1172
+ description?: string | undefined;
1173
1173
  credentials?: Partial<Record<CredentialType, string>> | undefined;
1174
1174
  }>]>;
1175
1175
  static readonly resultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject<{
@@ -1180,13 +1180,13 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
1180
1180
  createdTime: z.ZodString;
1181
1181
  fields: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodArray<z.ZodUnknown, "many">, z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodNull]>>;
1182
1182
  }, "strip", z.ZodTypeAny, {
1183
+ fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
1183
1184
  id: string;
1184
1185
  createdTime: string;
1185
- fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
1186
1186
  }, {
1187
+ fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
1187
1188
  id: string;
1188
1189
  createdTime: string;
1189
- fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
1190
1190
  }>, "many">>;
1191
1191
  offset: z.ZodOptional<z.ZodString>;
1192
1192
  error: z.ZodDefault<z.ZodString>;
@@ -1198,9 +1198,9 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
1198
1198
  ok: boolean;
1199
1199
  offset?: string | undefined;
1200
1200
  records?: {
1201
+ fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
1201
1202
  id: string;
1202
1203
  createdTime: string;
1203
- fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
1204
1204
  }[] | undefined;
1205
1205
  }, {
1206
1206
  operation: "list_records";
@@ -1209,9 +1209,9 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
1209
1209
  error?: string | undefined;
1210
1210
  offset?: string | undefined;
1211
1211
  records?: {
1212
+ fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
1212
1213
  id: string;
1213
1214
  createdTime: string;
1214
- fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
1215
1215
  }[] | undefined;
1216
1216
  }>, z.ZodObject<{
1217
1217
  operation: z.ZodLiteral<"get_record">;
@@ -1221,13 +1221,13 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
1221
1221
  createdTime: z.ZodString;
1222
1222
  fields: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodArray<z.ZodUnknown, "many">, z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodNull]>>;
1223
1223
  }, "strip", z.ZodTypeAny, {
1224
+ fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
1224
1225
  id: string;
1225
1226
  createdTime: string;
1226
- fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
1227
1227
  }, {
1228
+ fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
1228
1229
  id: string;
1229
1230
  createdTime: string;
1230
- fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
1231
1231
  }>>;
1232
1232
  error: z.ZodDefault<z.ZodString>;
1233
1233
  success: z.ZodBoolean;
@@ -1237,9 +1237,9 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
1237
1237
  error: string;
1238
1238
  ok: boolean;
1239
1239
  record?: {
1240
+ fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
1240
1241
  id: string;
1241
1242
  createdTime: string;
1242
- fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
1243
1243
  } | undefined;
1244
1244
  }, {
1245
1245
  operation: "get_record";
@@ -1247,9 +1247,9 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
1247
1247
  ok: boolean;
1248
1248
  error?: string | undefined;
1249
1249
  record?: {
1250
+ fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
1250
1251
  id: string;
1251
1252
  createdTime: string;
1252
- fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
1253
1253
  } | undefined;
1254
1254
  }>, z.ZodObject<{
1255
1255
  operation: z.ZodLiteral<"create_records">;
@@ -1259,13 +1259,13 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
1259
1259
  createdTime: z.ZodString;
1260
1260
  fields: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodArray<z.ZodUnknown, "many">, z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodNull]>>;
1261
1261
  }, "strip", z.ZodTypeAny, {
1262
+ fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
1262
1263
  id: string;
1263
1264
  createdTime: string;
1264
- fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
1265
1265
  }, {
1266
+ fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
1266
1267
  id: string;
1267
1268
  createdTime: string;
1268
- fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
1269
1269
  }>, "many">>;
1270
1270
  error: z.ZodDefault<z.ZodString>;
1271
1271
  success: z.ZodBoolean;
@@ -1275,9 +1275,9 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
1275
1275
  error: string;
1276
1276
  ok: boolean;
1277
1277
  records?: {
1278
+ fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
1278
1279
  id: string;
1279
1280
  createdTime: string;
1280
- fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
1281
1281
  }[] | undefined;
1282
1282
  }, {
1283
1283
  operation: "create_records";
@@ -1285,9 +1285,9 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
1285
1285
  ok: boolean;
1286
1286
  error?: string | undefined;
1287
1287
  records?: {
1288
+ fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
1288
1289
  id: string;
1289
1290
  createdTime: string;
1290
- fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
1291
1291
  }[] | undefined;
1292
1292
  }>, z.ZodObject<{
1293
1293
  operation: z.ZodLiteral<"update_records">;
@@ -1297,13 +1297,13 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
1297
1297
  createdTime: z.ZodString;
1298
1298
  fields: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodArray<z.ZodUnknown, "many">, z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodNull]>>;
1299
1299
  }, "strip", z.ZodTypeAny, {
1300
+ fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
1300
1301
  id: string;
1301
1302
  createdTime: string;
1302
- fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
1303
1303
  }, {
1304
+ fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
1304
1305
  id: string;
1305
1306
  createdTime: string;
1306
- fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
1307
1307
  }>, "many">>;
1308
1308
  error: z.ZodDefault<z.ZodString>;
1309
1309
  success: z.ZodBoolean;
@@ -1313,9 +1313,9 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
1313
1313
  error: string;
1314
1314
  ok: boolean;
1315
1315
  records?: {
1316
+ fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
1316
1317
  id: string;
1317
1318
  createdTime: string;
1318
- fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
1319
1319
  }[] | undefined;
1320
1320
  }, {
1321
1321
  operation: "update_records";
@@ -1323,9 +1323,9 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
1323
1323
  ok: boolean;
1324
1324
  error?: string | undefined;
1325
1325
  records?: {
1326
+ fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
1326
1327
  id: string;
1327
1328
  createdTime: string;
1328
- fields: Record<string, string | number | boolean | unknown[] | Record<string, unknown> | null>;
1329
1329
  }[] | undefined;
1330
1330
  }>, z.ZodObject<{
1331
1331
  operation: z.ZodLiteral<"delete_records">;
@@ -1413,14 +1413,14 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
1413
1413
  description: z.ZodOptional<z.ZodString>;
1414
1414
  options: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1415
1415
  }, "strip", z.ZodTypeAny, {
1416
- type: string;
1417
1416
  name: string;
1417
+ type: string;
1418
1418
  id: string;
1419
1419
  options?: Record<string, unknown> | undefined;
1420
1420
  description?: string | undefined;
1421
1421
  }, {
1422
- type: string;
1423
1422
  name: string;
1423
+ type: string;
1424
1424
  id: string;
1425
1425
  options?: Record<string, unknown> | undefined;
1426
1426
  description?: string | undefined;
@@ -1430,46 +1430,46 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
1430
1430
  name: z.ZodString;
1431
1431
  type: z.ZodString;
1432
1432
  }, "strip", z.ZodTypeAny, {
1433
- type: string;
1434
1433
  name: string;
1434
+ type: string;
1435
1435
  id: string;
1436
1436
  }, {
1437
- type: string;
1438
1437
  name: string;
1438
+ type: string;
1439
1439
  id: string;
1440
1440
  }>, "many">>;
1441
1441
  }, "strip", z.ZodTypeAny, {
1442
1442
  name: string;
1443
- id: string;
1444
1443
  fields: {
1445
- type: string;
1446
1444
  name: string;
1445
+ type: string;
1447
1446
  id: string;
1448
1447
  options?: Record<string, unknown> | undefined;
1449
1448
  description?: string | undefined;
1450
1449
  }[];
1450
+ id: string;
1451
1451
  primaryFieldId: string;
1452
1452
  description?: string | undefined;
1453
1453
  views?: {
1454
- type: string;
1455
1454
  name: string;
1455
+ type: string;
1456
1456
  id: string;
1457
1457
  }[] | undefined;
1458
1458
  }, {
1459
1459
  name: string;
1460
- id: string;
1461
1460
  fields: {
1462
- type: string;
1463
1461
  name: string;
1462
+ type: string;
1464
1463
  id: string;
1465
1464
  options?: Record<string, unknown> | undefined;
1466
1465
  description?: string | undefined;
1467
1466
  }[];
1467
+ id: string;
1468
1468
  primaryFieldId: string;
1469
1469
  description?: string | undefined;
1470
1470
  views?: {
1471
- type: string;
1472
1471
  name: string;
1472
+ type: string;
1473
1473
  id: string;
1474
1474
  }[] | undefined;
1475
1475
  }>, "many">>;
@@ -1482,19 +1482,19 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
1482
1482
  ok: boolean;
1483
1483
  tables?: {
1484
1484
  name: string;
1485
- id: string;
1486
1485
  fields: {
1487
- type: string;
1488
1486
  name: string;
1487
+ type: string;
1489
1488
  id: string;
1490
1489
  options?: Record<string, unknown> | undefined;
1491
1490
  description?: string | undefined;
1492
1491
  }[];
1492
+ id: string;
1493
1493
  primaryFieldId: string;
1494
1494
  description?: string | undefined;
1495
1495
  views?: {
1496
- type: string;
1497
1496
  name: string;
1497
+ type: string;
1498
1498
  id: string;
1499
1499
  }[] | undefined;
1500
1500
  }[] | undefined;
@@ -1505,19 +1505,19 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
1505
1505
  error?: string | undefined;
1506
1506
  tables?: {
1507
1507
  name: string;
1508
- id: string;
1509
1508
  fields: {
1510
- type: string;
1511
1509
  name: string;
1510
+ type: string;
1512
1511
  id: string;
1513
1512
  options?: Record<string, unknown> | undefined;
1514
1513
  description?: string | undefined;
1515
1514
  }[];
1515
+ id: string;
1516
1516
  primaryFieldId: string;
1517
1517
  description?: string | undefined;
1518
1518
  views?: {
1519
- type: string;
1520
1519
  name: string;
1520
+ type: string;
1521
1521
  id: string;
1522
1522
  }[] | undefined;
1523
1523
  }[] | undefined;
@@ -1534,32 +1534,32 @@ 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" | "createdTime" | "count" | "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
1537
  name: string;
1538
+ type: "number" | "date" | "count" | "email" | "url" | "duration" | "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";
1539
1539
  id: string;
1540
1540
  }, {
1541
- type: "number" | "date" | "email" | "url" | "duration" | "createdTime" | "count" | "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
1541
  name: string;
1542
+ type: "number" | "date" | "count" | "email" | "url" | "duration" | "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";
1543
1543
  id: string;
1544
1544
  }>, "many">;
1545
1545
  }, "strip", z.ZodTypeAny, {
1546
1546
  name: string;
1547
- id: string;
1548
1547
  fields: {
1549
- type: "number" | "date" | "email" | "url" | "duration" | "createdTime" | "count" | "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";
1550
1548
  name: string;
1549
+ type: "number" | "date" | "count" | "email" | "url" | "duration" | "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";
1551
1550
  id: string;
1552
1551
  }[];
1552
+ id: string;
1553
1553
  primaryFieldId: string;
1554
1554
  description?: string | undefined;
1555
1555
  }, {
1556
1556
  name: string;
1557
- id: string;
1558
1557
  fields: {
1559
- type: "number" | "date" | "email" | "url" | "duration" | "createdTime" | "count" | "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";
1560
1558
  name: string;
1559
+ type: "number" | "date" | "count" | "email" | "url" | "duration" | "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";
1561
1560
  id: string;
1562
1561
  }[];
1562
+ id: string;
1563
1563
  primaryFieldId: string;
1564
1564
  description?: string | undefined;
1565
1565
  }>>;
@@ -1572,12 +1572,12 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
1572
1572
  ok: boolean;
1573
1573
  table?: {
1574
1574
  name: string;
1575
- id: string;
1576
1575
  fields: {
1577
- type: "number" | "date" | "email" | "url" | "duration" | "createdTime" | "count" | "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";
1578
1576
  name: string;
1577
+ type: "number" | "date" | "count" | "email" | "url" | "duration" | "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";
1579
1578
  id: string;
1580
1579
  }[];
1580
+ id: string;
1581
1581
  primaryFieldId: string;
1582
1582
  description?: string | undefined;
1583
1583
  } | undefined;
@@ -1588,12 +1588,12 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
1588
1588
  error?: string | undefined;
1589
1589
  table?: {
1590
1590
  name: string;
1591
- id: string;
1592
1591
  fields: {
1593
- type: "number" | "date" | "email" | "url" | "duration" | "createdTime" | "count" | "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";
1594
1592
  name: string;
1593
+ type: "number" | "date" | "count" | "email" | "url" | "duration" | "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";
1595
1594
  id: string;
1596
1595
  }[];
1596
+ id: string;
1597
1597
  primaryFieldId: string;
1598
1598
  description?: string | undefined;
1599
1599
  } | undefined;
@@ -1644,13 +1644,13 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
1644
1644
  type: z.ZodString;
1645
1645
  description: z.ZodOptional<z.ZodString>;
1646
1646
  }, "strip", z.ZodTypeAny, {
1647
- type: string;
1648
1647
  name: string;
1648
+ type: string;
1649
1649
  id: string;
1650
1650
  description?: string | undefined;
1651
1651
  }, {
1652
- type: string;
1653
1652
  name: string;
1653
+ type: string;
1654
1654
  id: string;
1655
1655
  description?: string | undefined;
1656
1656
  }>>;
@@ -1662,8 +1662,8 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
1662
1662
  error: string;
1663
1663
  ok: boolean;
1664
1664
  field?: {
1665
- type: string;
1666
1665
  name: string;
1666
+ type: string;
1667
1667
  id: string;
1668
1668
  description?: string | undefined;
1669
1669
  } | undefined;
@@ -1673,8 +1673,8 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
1673
1673
  ok: boolean;
1674
1674
  error?: string | undefined;
1675
1675
  field?: {
1676
- type: string;
1677
1676
  name: string;
1677
+ type: string;
1678
1678
  id: string;
1679
1679
  description?: string | undefined;
1680
1680
  } | undefined;
@@ -1687,13 +1687,13 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
1687
1687
  type: z.ZodString;
1688
1688
  description: z.ZodOptional<z.ZodString>;
1689
1689
  }, "strip", z.ZodTypeAny, {
1690
- type: string;
1691
1690
  name: string;
1691
+ type: string;
1692
1692
  id: string;
1693
1693
  description?: string | undefined;
1694
1694
  }, {
1695
- type: string;
1696
1695
  name: string;
1696
+ type: string;
1697
1697
  id: string;
1698
1698
  description?: string | undefined;
1699
1699
  }>>;
@@ -1705,8 +1705,8 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
1705
1705
  error: string;
1706
1706
  ok: boolean;
1707
1707
  field?: {
1708
- type: string;
1709
1708
  name: string;
1709
+ type: string;
1710
1710
  id: string;
1711
1711
  description?: string | undefined;
1712
1712
  } | undefined;
@@ -1716,8 +1716,8 @@ export declare class AirtableBubble<T extends AirtableParams = AirtableParams> e
1716
1716
  ok: boolean;
1717
1717
  error?: string | undefined;
1718
1718
  field?: {
1719
- type: string;
1720
1719
  name: string;
1720
+ type: string;
1721
1721
  id: string;
1722
1722
  description?: string | undefined;
1723
1723
  } | undefined;