@bubblelab/bubble-core 0.1.192 → 0.1.193

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 (58) hide show
  1. package/dist/bubble-bundle.d.ts +90 -90
  2. package/dist/bubbles/service-bubble/agi-inc.d.ts +20 -20
  3. package/dist/bubbles/service-bubble/ai-agent.d.ts +72 -72
  4. package/dist/bubbles/service-bubble/airtable.d.ts +76 -76
  5. package/dist/bubbles/service-bubble/apify/apify.d.ts +22 -22
  6. package/dist/bubbles/service-bubble/ashby/ashby.d.ts +2 -2
  7. package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +2 -2
  8. package/dist/bubbles/service-bubble/attio/attio.d.ts +6 -6
  9. package/dist/bubbles/service-bubble/attio/attio.schema.d.ts +6 -6
  10. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +1 -1
  11. package/dist/bubbles/service-bubble/browserbase/browserbase.schema.d.ts +1 -1
  12. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +8 -8
  13. package/dist/bubbles/service-bubble/crustdata/crustdata.schema.d.ts +16 -16
  14. package/dist/bubbles/service-bubble/firecrawl.d.ts +346 -346
  15. package/dist/bubbles/service-bubble/followupboss.d.ts +4 -4
  16. package/dist/bubbles/service-bubble/github.d.ts +60 -60
  17. package/dist/bubbles/service-bubble/gmail.d.ts +164 -164
  18. package/dist/bubbles/service-bubble/google-calendar.d.ts +6 -6
  19. package/dist/bubbles/service-bubble/google-drive.d.ts +40 -40
  20. package/dist/bubbles/service-bubble/http.d.ts +2 -2
  21. package/dist/bubbles/service-bubble/insforge-db.d.ts +8 -8
  22. package/dist/bubbles/service-bubble/jira/jira.d.ts +42 -42
  23. package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +50 -50
  24. package/dist/bubbles/service-bubble/notion/notion.d.ts +534 -534
  25. package/dist/bubbles/service-bubble/postgresql.d.ts +8 -8
  26. package/dist/bubbles/service-bubble/posthog/posthog.d.ts +10 -10
  27. package/dist/bubbles/service-bubble/posthog/posthog.schema.d.ts +14 -14
  28. package/dist/bubbles/service-bubble/slack/slack-table-blocks.d.ts +1 -0
  29. package/dist/bubbles/service-bubble/slack/slack-table-blocks.d.ts.map +1 -1
  30. package/dist/bubbles/service-bubble/slack/slack-table-blocks.js +1 -0
  31. package/dist/bubbles/service-bubble/slack/slack-table-blocks.js.map +1 -1
  32. package/dist/bubbles/service-bubble/slack/slack.d.ts +300 -300
  33. package/dist/bubbles/service-bubble/slack/slack.utils.d.ts.map +1 -1
  34. package/dist/bubbles/service-bubble/slack/slack.utils.js +13 -0
  35. package/dist/bubbles/service-bubble/slack/slack.utils.js.map +1 -1
  36. package/dist/bubbles/service-bubble/stripe/stripe.d.ts +24 -24
  37. package/dist/bubbles/service-bubble/stripe/stripe.schema.d.ts +28 -28
  38. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +2 -2
  39. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.schema.d.ts +2 -2
  40. package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +4 -4
  41. package/dist/bubbles/tool-bubble/chart-js-tool.js +2 -2
  42. package/dist/bubbles/tool-bubble/chart-js-tool.js.map +1 -1
  43. package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +10 -10
  44. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +324 -324
  45. package/dist/bubbles/tool-bubble/people-search-tool.d.ts +34 -34
  46. package/dist/bubbles/tool-bubble/reddit-scrape-tool.d.ts +10 -10
  47. package/dist/bubbles/tool-bubble/research-agent-tool.d.ts +4 -4
  48. package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
  49. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +52 -52
  50. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +124 -124
  51. package/dist/bubbles/tool-bubble/yc-scraper-tool.d.ts +8 -8
  52. package/dist/bubbles/tool-bubble/youtube-tool.d.ts +20 -20
  53. package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +12 -12
  54. package/dist/bubbles/workflow-bubble/pdf-ocr.workflow.d.ts +16 -16
  55. package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +2 -2
  56. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +34 -34
  57. package/dist/bubbles.json +1 -1
  58. package/package.json +2 -2
@@ -23,8 +23,8 @@ declare const ApifyParamsSchema: z.ZodObject<{
23
23
  timeout: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
24
24
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
25
25
  }, "strip", z.ZodTypeAny, {
26
- timeout: number;
27
26
  input: Record<string, unknown>;
27
+ timeout: number;
28
28
  limit: number;
29
29
  waitForFinish: boolean;
30
30
  credentials?: Partial<Record<CredentialType, string>> | undefined;
@@ -69,23 +69,23 @@ declare const ApifyResultSchema: z.ZodObject<{
69
69
  name: string;
70
70
  id: string;
71
71
  inputSchemaUrl: string;
72
+ description?: string | null | undefined;
73
+ stars?: number | null | undefined;
72
74
  usage?: {
73
75
  totalRuns?: number | undefined;
74
76
  usersCount?: number | undefined;
75
77
  } | null | undefined;
76
- description?: string | null | undefined;
77
- stars?: number | null | undefined;
78
78
  requiresRental?: boolean | undefined;
79
79
  }, {
80
80
  name: string;
81
81
  id: string;
82
82
  inputSchemaUrl: string;
83
+ description?: string | null | undefined;
84
+ stars?: number | null | undefined;
83
85
  usage?: {
84
86
  totalRuns?: number | undefined;
85
87
  usersCount?: number | undefined;
86
88
  } | null | undefined;
87
- description?: string | null | undefined;
88
- stars?: number | null | undefined;
89
89
  requiresRental?: boolean | undefined;
90
90
  }>, "many">>;
91
91
  }, "strip", z.ZodTypeAny, {
@@ -95,18 +95,18 @@ declare const ApifyResultSchema: z.ZodObject<{
95
95
  runId: string;
96
96
  consoleUrl: string;
97
97
  items?: unknown[] | undefined;
98
- datasetId?: string | undefined;
99
98
  itemsCount?: number | undefined;
99
+ datasetId?: string | undefined;
100
100
  discoveredActors?: {
101
101
  name: string;
102
102
  id: string;
103
103
  inputSchemaUrl: string;
104
+ description?: string | null | undefined;
105
+ stars?: number | null | undefined;
104
106
  usage?: {
105
107
  totalRuns?: number | undefined;
106
108
  usersCount?: number | undefined;
107
109
  } | null | undefined;
108
- description?: string | null | undefined;
109
- stars?: number | null | undefined;
110
110
  requiresRental?: boolean | undefined;
111
111
  }[] | undefined;
112
112
  }, {
@@ -116,18 +116,18 @@ declare const ApifyResultSchema: z.ZodObject<{
116
116
  runId: string;
117
117
  consoleUrl: string;
118
118
  items?: unknown[] | undefined;
119
- datasetId?: string | undefined;
120
119
  itemsCount?: number | undefined;
120
+ datasetId?: string | undefined;
121
121
  discoveredActors?: {
122
122
  name: string;
123
123
  id: string;
124
124
  inputSchemaUrl: string;
125
+ description?: string | null | undefined;
126
+ stars?: number | null | undefined;
125
127
  usage?: {
126
128
  totalRuns?: number | undefined;
127
129
  usersCount?: number | undefined;
128
130
  } | null | undefined;
129
- description?: string | null | undefined;
130
- stars?: number | null | undefined;
131
131
  requiresRental?: boolean | undefined;
132
132
  }[] | undefined;
133
133
  }>;
@@ -159,8 +159,8 @@ export declare class ApifyBubble<T extends string = string> extends ServiceBubbl
159
159
  timeout: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
160
160
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
161
161
  }, "strip", z.ZodTypeAny, {
162
- timeout: number;
163
162
  input: Record<string, unknown>;
163
+ timeout: number;
164
164
  limit: number;
165
165
  waitForFinish: boolean;
166
166
  credentials?: Partial<Record<CredentialType, string>> | undefined;
@@ -205,23 +205,23 @@ export declare class ApifyBubble<T extends string = string> extends ServiceBubbl
205
205
  name: string;
206
206
  id: string;
207
207
  inputSchemaUrl: string;
208
+ description?: string | null | undefined;
209
+ stars?: number | null | undefined;
208
210
  usage?: {
209
211
  totalRuns?: number | undefined;
210
212
  usersCount?: number | undefined;
211
213
  } | null | undefined;
212
- description?: string | null | undefined;
213
- stars?: number | null | undefined;
214
214
  requiresRental?: boolean | undefined;
215
215
  }, {
216
216
  name: string;
217
217
  id: string;
218
218
  inputSchemaUrl: string;
219
+ description?: string | null | undefined;
220
+ stars?: number | null | undefined;
219
221
  usage?: {
220
222
  totalRuns?: number | undefined;
221
223
  usersCount?: number | undefined;
222
224
  } | null | undefined;
223
- description?: string | null | undefined;
224
- stars?: number | null | undefined;
225
225
  requiresRental?: boolean | undefined;
226
226
  }>, "many">>;
227
227
  }, "strip", z.ZodTypeAny, {
@@ -231,18 +231,18 @@ export declare class ApifyBubble<T extends string = string> extends ServiceBubbl
231
231
  runId: string;
232
232
  consoleUrl: string;
233
233
  items?: unknown[] | undefined;
234
- datasetId?: string | undefined;
235
234
  itemsCount?: number | undefined;
235
+ datasetId?: string | undefined;
236
236
  discoveredActors?: {
237
237
  name: string;
238
238
  id: string;
239
239
  inputSchemaUrl: string;
240
+ description?: string | null | undefined;
241
+ stars?: number | null | undefined;
240
242
  usage?: {
241
243
  totalRuns?: number | undefined;
242
244
  usersCount?: number | undefined;
243
245
  } | null | undefined;
244
- description?: string | null | undefined;
245
- stars?: number | null | undefined;
246
246
  requiresRental?: boolean | undefined;
247
247
  }[] | undefined;
248
248
  }, {
@@ -252,18 +252,18 @@ export declare class ApifyBubble<T extends string = string> extends ServiceBubbl
252
252
  runId: string;
253
253
  consoleUrl: string;
254
254
  items?: unknown[] | undefined;
255
- datasetId?: string | undefined;
256
255
  itemsCount?: number | undefined;
256
+ datasetId?: string | undefined;
257
257
  discoveredActors?: {
258
258
  name: string;
259
259
  id: string;
260
260
  inputSchemaUrl: string;
261
+ description?: string | null | undefined;
262
+ stars?: number | null | undefined;
261
263
  usage?: {
262
264
  totalRuns?: number | undefined;
263
265
  usersCount?: number | undefined;
264
266
  } | null | undefined;
265
- description?: string | null | undefined;
266
- stars?: number | null | undefined;
267
267
  requiresRental?: boolean | undefined;
268
268
  }[] | undefined;
269
269
  }>;
@@ -143,13 +143,13 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
143
143
  }, "strip", import("zod").ZodTypeAny, {
144
144
  operation: "search_candidates";
145
145
  name?: string | undefined;
146
- credentials?: Partial<Record<CredentialType, string>> | undefined;
147
146
  email?: string | undefined;
147
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
148
148
  }, {
149
149
  operation: "search_candidates";
150
150
  name?: string | undefined;
151
- credentials?: Partial<Record<CredentialType, string>> | undefined;
152
151
  email?: string | undefined;
152
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
153
153
  }>, import("zod").ZodObject<{
154
154
  operation: import("zod").ZodLiteral<"add_tag">;
155
155
  candidate_id: import("zod").ZodString;
@@ -589,13 +589,13 @@ export declare const AshbyParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.
589
589
  }, "strip", z.ZodTypeAny, {
590
590
  operation: "search_candidates";
591
591
  name?: string | undefined;
592
- credentials?: Partial<Record<CredentialType, string>> | undefined;
593
592
  email?: string | undefined;
593
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
594
594
  }, {
595
595
  operation: "search_candidates";
596
596
  name?: string | undefined;
597
- credentials?: Partial<Record<CredentialType, string>> | undefined;
598
597
  email?: string | undefined;
598
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
599
599
  }>, z.ZodObject<{
600
600
  operation: z.ZodLiteral<"add_tag">;
601
601
  candidate_id: z.ZodString;
@@ -238,15 +238,15 @@ export declare class AttioBubble<T extends AttioParamsInput = AttioParamsInput>
238
238
  }, "strip", import("zod").ZodTypeAny, {
239
239
  operation: "update_task";
240
240
  task_id: string;
241
- credentials?: Partial<Record<CredentialType, string>> | undefined;
242
241
  content?: string | undefined;
242
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
243
243
  deadline_at?: string | undefined;
244
244
  is_completed?: boolean | undefined;
245
245
  }, {
246
246
  operation: "update_task";
247
247
  task_id: string;
248
- credentials?: Partial<Record<CredentialType, string>> | undefined;
249
248
  content?: string | undefined;
249
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
250
250
  deadline_at?: string | undefined;
251
251
  is_completed?: boolean | undefined;
252
252
  }>, import("zod").ZodObject<{
@@ -284,15 +284,15 @@ export declare class AttioBubble<T extends AttioParamsInput = AttioParamsInput>
284
284
  entry_values: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>>;
285
285
  credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
286
286
  }, "strip", import("zod").ZodTypeAny, {
287
- operation: "create_entry";
288
287
  list: string;
288
+ operation: "create_entry";
289
289
  parent_object: string;
290
290
  parent_record_id: string;
291
291
  entry_values: Record<string, unknown>;
292
292
  credentials?: Partial<Record<CredentialType, string>> | undefined;
293
293
  }, {
294
- operation: "create_entry";
295
294
  list: string;
295
+ operation: "create_entry";
296
296
  parent_object: string;
297
297
  parent_record_id: string;
298
298
  credentials?: Partial<Record<CredentialType, string>> | undefined;
@@ -305,15 +305,15 @@ export declare class AttioBubble<T extends AttioParamsInput = AttioParamsInput>
305
305
  filter: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
306
306
  credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
307
307
  }, "strip", import("zod").ZodTypeAny, {
308
+ list: string;
308
309
  operation: "list_entries";
309
310
  limit: number;
310
311
  offset: number;
311
- list: string;
312
312
  filter?: Record<string, unknown> | undefined;
313
313
  credentials?: Partial<Record<CredentialType, string>> | undefined;
314
314
  }, {
315
- operation: "list_entries";
316
315
  list: string;
316
+ operation: "list_entries";
317
317
  filter?: Record<string, unknown> | undefined;
318
318
  credentials?: Partial<Record<CredentialType, string>> | undefined;
319
319
  limit?: number | undefined;
@@ -229,15 +229,15 @@ export declare const AttioParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.
229
229
  }, "strip", z.ZodTypeAny, {
230
230
  operation: "update_task";
231
231
  task_id: string;
232
- credentials?: Partial<Record<CredentialType, string>> | undefined;
233
232
  content?: string | undefined;
233
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
234
234
  deadline_at?: string | undefined;
235
235
  is_completed?: boolean | undefined;
236
236
  }, {
237
237
  operation: "update_task";
238
238
  task_id: string;
239
- credentials?: Partial<Record<CredentialType, string>> | undefined;
240
239
  content?: string | undefined;
240
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
241
241
  deadline_at?: string | undefined;
242
242
  is_completed?: boolean | undefined;
243
243
  }>, z.ZodObject<{
@@ -275,15 +275,15 @@ export declare const AttioParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.
275
275
  entry_values: z.ZodDefault<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
276
276
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
277
277
  }, "strip", z.ZodTypeAny, {
278
- operation: "create_entry";
279
278
  list: string;
279
+ operation: "create_entry";
280
280
  parent_object: string;
281
281
  parent_record_id: string;
282
282
  entry_values: Record<string, unknown>;
283
283
  credentials?: Partial<Record<CredentialType, string>> | undefined;
284
284
  }, {
285
- operation: "create_entry";
286
285
  list: string;
286
+ operation: "create_entry";
287
287
  parent_object: string;
288
288
  parent_record_id: string;
289
289
  credentials?: Partial<Record<CredentialType, string>> | undefined;
@@ -296,15 +296,15 @@ export declare const AttioParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.
296
296
  filter: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
297
297
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
298
298
  }, "strip", z.ZodTypeAny, {
299
+ list: string;
299
300
  operation: "list_entries";
300
301
  limit: number;
301
302
  offset: number;
302
- list: string;
303
303
  filter?: Record<string, unknown> | undefined;
304
304
  credentials?: Partial<Record<CredentialType, string>> | undefined;
305
305
  }, {
306
- operation: "list_entries";
307
306
  list: string;
307
+ operation: "list_entries";
308
308
  filter?: Record<string, unknown> | undefined;
309
309
  credentials?: Partial<Record<CredentialType, string>> | undefined;
310
310
  limit?: number | undefined;
@@ -240,8 +240,8 @@ export declare class BrowserBaseBubble<T extends BrowserBaseParamsInput = Browse
240
240
  timeout: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNumber>>;
241
241
  credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
242
242
  }, "strip", import("zod").ZodTypeAny, {
243
- timeout: number;
244
243
  url: string;
244
+ timeout: number;
245
245
  operation: "navigate";
246
246
  session_id: string;
247
247
  wait_until: "load" | "domcontentloaded" | "networkidle0" | "networkidle2";
@@ -461,8 +461,8 @@ export declare const BrowserBaseParamsSchema: z.ZodDiscriminatedUnion<"operation
461
461
  timeout: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
462
462
  credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
463
463
  }, "strip", z.ZodTypeAny, {
464
- timeout: number;
465
464
  url: string;
465
+ timeout: number;
466
466
  operation: "navigate";
467
467
  session_id: string;
468
468
  wait_until: "load" | "domcontentloaded" | "networkidle0" | "networkidle2";
@@ -94,20 +94,20 @@ export declare class CrustdataBubble<T extends CrustdataParamsInput = CrustdataP
94
94
  unit?: "km" | "mi" | "m" | "miles" | "meters" | "ft" | "feet" | undefined;
95
95
  }>]>;
96
96
  }, "strip", import("zod").ZodTypeAny, {
97
- value: string | number | boolean | number[] | string[] | {
97
+ value: string | number | boolean | string[] | number[] | {
98
98
  location: string;
99
99
  distance: number;
100
100
  unit?: "km" | "mi" | "m" | "miles" | "meters" | "ft" | "feet" | undefined;
101
101
  };
102
- type: "in" | "=" | ">" | "<" | "!=" | "not_in" | "=>" | "=<" | "(.)" | "[.]" | "geo_distance";
102
+ type: "=" | "in" | ">" | "<" | "!=" | "not_in" | "=>" | "=<" | "(.)" | "[.]" | "geo_distance";
103
103
  column: string;
104
104
  }, {
105
- value: string | number | boolean | number[] | string[] | {
105
+ value: string | number | boolean | string[] | number[] | {
106
106
  location: string;
107
107
  distance: number;
108
108
  unit?: "km" | "mi" | "m" | "miles" | "meters" | "ft" | "feet" | undefined;
109
109
  };
110
- type: "in" | "=" | ">" | "<" | "!=" | "not_in" | "=>" | "=<" | "(.)" | "[.]" | "geo_distance";
110
+ type: "=" | "in" | ">" | "<" | "!=" | "not_in" | "=>" | "=<" | "(.)" | "[.]" | "geo_distance";
111
111
  column: string;
112
112
  }>, import("zod").ZodType<import("./crustdata.schema.js").PersonDBFilterGroup, import("zod").ZodTypeDef, import("./crustdata.schema.js").PersonDBFilterGroup>]>;
113
113
  sorts: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
@@ -137,12 +137,12 @@ export declare class CrustdataBubble<T extends CrustdataParamsInput = CrustdataP
137
137
  }, "strip", import("zod").ZodTypeAny, {
138
138
  operation: "person_search_db";
139
139
  filters: {
140
- value: string | number | boolean | number[] | string[] | {
140
+ value: string | number | boolean | string[] | number[] | {
141
141
  location: string;
142
142
  distance: number;
143
143
  unit?: "km" | "mi" | "m" | "miles" | "meters" | "ft" | "feet" | undefined;
144
144
  };
145
- type: "in" | "=" | ">" | "<" | "!=" | "not_in" | "=>" | "=<" | "(.)" | "[.]" | "geo_distance";
145
+ type: "=" | "in" | ">" | "<" | "!=" | "not_in" | "=>" | "=<" | "(.)" | "[.]" | "geo_distance";
146
146
  column: string;
147
147
  } | import("./crustdata.schema.js").PersonDBFilterGroup;
148
148
  credentials?: Partial<Record<CredentialType, string>> | undefined;
@@ -160,12 +160,12 @@ export declare class CrustdataBubble<T extends CrustdataParamsInput = CrustdataP
160
160
  }, {
161
161
  operation: "person_search_db";
162
162
  filters: {
163
- value: string | number | boolean | number[] | string[] | {
163
+ value: string | number | boolean | string[] | number[] | {
164
164
  location: string;
165
165
  distance: number;
166
166
  unit?: "km" | "mi" | "m" | "miles" | "meters" | "ft" | "feet" | undefined;
167
167
  };
168
- type: "in" | "=" | ">" | "<" | "!=" | "not_in" | "=>" | "=<" | "(.)" | "[.]" | "geo_distance";
168
+ type: "=" | "in" | ">" | "<" | "!=" | "not_in" | "=>" | "=<" | "(.)" | "[.]" | "geo_distance";
169
169
  column: string;
170
170
  } | import("./crustdata.schema.js").PersonDBFilterGroup;
171
171
  credentials?: Partial<Record<CredentialType, string>> | undefined;
@@ -1244,20 +1244,20 @@ export declare const PersonDBFilterConditionSchema: z.ZodObject<{
1244
1244
  unit?: "km" | "mi" | "m" | "miles" | "meters" | "ft" | "feet" | undefined;
1245
1245
  }>]>;
1246
1246
  }, "strip", z.ZodTypeAny, {
1247
- value: string | number | boolean | number[] | string[] | {
1247
+ value: string | number | boolean | string[] | number[] | {
1248
1248
  location: string;
1249
1249
  distance: number;
1250
1250
  unit?: "km" | "mi" | "m" | "miles" | "meters" | "ft" | "feet" | undefined;
1251
1251
  };
1252
- type: "in" | "=" | ">" | "<" | "!=" | "not_in" | "=>" | "=<" | "(.)" | "[.]" | "geo_distance";
1252
+ type: "=" | "in" | ">" | "<" | "!=" | "not_in" | "=>" | "=<" | "(.)" | "[.]" | "geo_distance";
1253
1253
  column: string;
1254
1254
  }, {
1255
- value: string | number | boolean | number[] | string[] | {
1255
+ value: string | number | boolean | string[] | number[] | {
1256
1256
  location: string;
1257
1257
  distance: number;
1258
1258
  unit?: "km" | "mi" | "m" | "miles" | "meters" | "ft" | "feet" | undefined;
1259
1259
  };
1260
- type: "in" | "=" | ">" | "<" | "!=" | "not_in" | "=>" | "=<" | "(.)" | "[.]" | "geo_distance";
1260
+ type: "=" | "in" | ">" | "<" | "!=" | "not_in" | "=>" | "=<" | "(.)" | "[.]" | "geo_distance";
1261
1261
  column: string;
1262
1262
  }>;
1263
1263
  export declare const PersonDBFilterGroupSchema: z.ZodType<PersonDBFilterGroup>;
@@ -1278,20 +1278,20 @@ export declare const PersonDBFiltersSchema: z.ZodUnion<[z.ZodObject<{
1278
1278
  unit?: "km" | "mi" | "m" | "miles" | "meters" | "ft" | "feet" | undefined;
1279
1279
  }>]>;
1280
1280
  }, "strip", z.ZodTypeAny, {
1281
- value: string | number | boolean | number[] | string[] | {
1281
+ value: string | number | boolean | string[] | number[] | {
1282
1282
  location: string;
1283
1283
  distance: number;
1284
1284
  unit?: "km" | "mi" | "m" | "miles" | "meters" | "ft" | "feet" | undefined;
1285
1285
  };
1286
- type: "in" | "=" | ">" | "<" | "!=" | "not_in" | "=>" | "=<" | "(.)" | "[.]" | "geo_distance";
1286
+ type: "=" | "in" | ">" | "<" | "!=" | "not_in" | "=>" | "=<" | "(.)" | "[.]" | "geo_distance";
1287
1287
  column: string;
1288
1288
  }, {
1289
- value: string | number | boolean | number[] | string[] | {
1289
+ value: string | number | boolean | string[] | number[] | {
1290
1290
  location: string;
1291
1291
  distance: number;
1292
1292
  unit?: "km" | "mi" | "m" | "miles" | "meters" | "ft" | "feet" | undefined;
1293
1293
  };
1294
- type: "in" | "=" | ">" | "<" | "!=" | "not_in" | "=>" | "=<" | "(.)" | "[.]" | "geo_distance";
1294
+ type: "=" | "in" | ">" | "<" | "!=" | "not_in" | "=>" | "=<" | "(.)" | "[.]" | "geo_distance";
1295
1295
  column: string;
1296
1296
  }>, z.ZodType<PersonDBFilterGroup, z.ZodTypeDef, PersonDBFilterGroup>]>;
1297
1297
  export declare const PersonDBSortSchema: z.ZodObject<{
@@ -2308,20 +2308,20 @@ export declare const CrustdataParamsSchema: z.ZodDiscriminatedUnion<"operation",
2308
2308
  unit?: "km" | "mi" | "m" | "miles" | "meters" | "ft" | "feet" | undefined;
2309
2309
  }>]>;
2310
2310
  }, "strip", z.ZodTypeAny, {
2311
- value: string | number | boolean | number[] | string[] | {
2311
+ value: string | number | boolean | string[] | number[] | {
2312
2312
  location: string;
2313
2313
  distance: number;
2314
2314
  unit?: "km" | "mi" | "m" | "miles" | "meters" | "ft" | "feet" | undefined;
2315
2315
  };
2316
- type: "in" | "=" | ">" | "<" | "!=" | "not_in" | "=>" | "=<" | "(.)" | "[.]" | "geo_distance";
2316
+ type: "=" | "in" | ">" | "<" | "!=" | "not_in" | "=>" | "=<" | "(.)" | "[.]" | "geo_distance";
2317
2317
  column: string;
2318
2318
  }, {
2319
- value: string | number | boolean | number[] | string[] | {
2319
+ value: string | number | boolean | string[] | number[] | {
2320
2320
  location: string;
2321
2321
  distance: number;
2322
2322
  unit?: "km" | "mi" | "m" | "miles" | "meters" | "ft" | "feet" | undefined;
2323
2323
  };
2324
- type: "in" | "=" | ">" | "<" | "!=" | "not_in" | "=>" | "=<" | "(.)" | "[.]" | "geo_distance";
2324
+ type: "=" | "in" | ">" | "<" | "!=" | "not_in" | "=>" | "=<" | "(.)" | "[.]" | "geo_distance";
2325
2325
  column: string;
2326
2326
  }>, z.ZodType<PersonDBFilterGroup, z.ZodTypeDef, PersonDBFilterGroup>]>;
2327
2327
  sorts: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -2351,12 +2351,12 @@ export declare const CrustdataParamsSchema: z.ZodDiscriminatedUnion<"operation",
2351
2351
  }, "strip", z.ZodTypeAny, {
2352
2352
  operation: "person_search_db";
2353
2353
  filters: {
2354
- value: string | number | boolean | number[] | string[] | {
2354
+ value: string | number | boolean | string[] | number[] | {
2355
2355
  location: string;
2356
2356
  distance: number;
2357
2357
  unit?: "km" | "mi" | "m" | "miles" | "meters" | "ft" | "feet" | undefined;
2358
2358
  };
2359
- type: "in" | "=" | ">" | "<" | "!=" | "not_in" | "=>" | "=<" | "(.)" | "[.]" | "geo_distance";
2359
+ type: "=" | "in" | ">" | "<" | "!=" | "not_in" | "=>" | "=<" | "(.)" | "[.]" | "geo_distance";
2360
2360
  column: string;
2361
2361
  } | PersonDBFilterGroup;
2362
2362
  credentials?: Partial<Record<CredentialType, string>> | undefined;
@@ -2374,12 +2374,12 @@ export declare const CrustdataParamsSchema: z.ZodDiscriminatedUnion<"operation",
2374
2374
  }, {
2375
2375
  operation: "person_search_db";
2376
2376
  filters: {
2377
- value: string | number | boolean | number[] | string[] | {
2377
+ value: string | number | boolean | string[] | number[] | {
2378
2378
  location: string;
2379
2379
  distance: number;
2380
2380
  unit?: "km" | "mi" | "m" | "miles" | "meters" | "ft" | "feet" | undefined;
2381
2381
  };
2382
- type: "in" | "=" | ">" | "<" | "!=" | "not_in" | "=>" | "=<" | "(.)" | "[.]" | "geo_distance";
2382
+ type: "=" | "in" | ">" | "<" | "!=" | "not_in" | "=>" | "=<" | "(.)" | "[.]" | "geo_distance";
2383
2383
  column: string;
2384
2384
  } | PersonDBFilterGroup;
2385
2385
  credentials?: Partial<Record<CredentialType, string>> | undefined;