@bubblelab/bubble-core 0.1.41 → 0.1.42

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 (57) hide show
  1. package/dist/bubble-bundle.d.ts +75 -75
  2. package/dist/bubbles/service-bubble/agi-inc.d.ts +100 -100
  3. package/dist/bubbles/service-bubble/ai-agent.d.ts +60 -60
  4. package/dist/bubbles/service-bubble/airtable.d.ts +136 -136
  5. package/dist/bubbles/service-bubble/apify/apify.d.ts +14 -14
  6. package/dist/bubbles/service-bubble/ashby/ashby.d.ts +70 -70
  7. package/dist/bubbles/service-bubble/browserbase/browserbase.d.ts +39 -39
  8. package/dist/bubbles/service-bubble/crustdata/crustdata.d.ts +126 -126
  9. package/dist/bubbles/service-bubble/eleven-labs.d.ts +28 -28
  10. package/dist/bubbles/service-bubble/firecrawl.d.ts +592 -592
  11. package/dist/bubbles/service-bubble/followupboss.d.ts +156 -156
  12. package/dist/bubbles/service-bubble/fullenrich/fullenrich.d.ts +76 -76
  13. package/dist/bubbles/service-bubble/github.d.ts +188 -188
  14. package/dist/bubbles/service-bubble/gmail.d.ts +248 -248
  15. package/dist/bubbles/service-bubble/google-calendar.d.ts +134 -134
  16. package/dist/bubbles/service-bubble/google-drive.d.ts +92 -92
  17. package/dist/bubbles/service-bubble/google-sheets/google-sheets.d.ts +40 -40
  18. package/dist/bubbles/service-bubble/hello-world.d.ts +4 -4
  19. package/dist/bubbles/service-bubble/http.d.ts +4 -4
  20. package/dist/bubbles/service-bubble/insforge-db.d.ts +12 -12
  21. package/dist/bubbles/service-bubble/jira/jira.d.ts +44 -44
  22. package/dist/bubbles/service-bubble/notion/notion.d.ts +2077 -2077
  23. package/dist/bubbles/service-bubble/postgresql.d.ts +12 -12
  24. package/dist/bubbles/service-bubble/resend.d.ts +32 -32
  25. package/dist/bubbles/service-bubble/slack/slack.d.ts +430 -430
  26. package/dist/bubbles/service-bubble/storage.d.ts +20 -20
  27. package/dist/bubbles/service-bubble/telegram.d.ts +1549 -1549
  28. package/dist/bubbles/tool-bubble/amazon-shopping-tool/amazon-shopping-tool.d.ts +19 -19
  29. package/dist/bubbles/tool-bubble/bubbleflow-validation-tool.d.ts +16 -16
  30. package/dist/bubbles/tool-bubble/chart-js-tool.d.ts +16 -16
  31. package/dist/bubbles/tool-bubble/code-edit-tool.d.ts +4 -4
  32. package/dist/bubbles/tool-bubble/company-enrichment-tool.d.ts +86 -86
  33. package/dist/bubbles/tool-bubble/google-maps-tool.d.ts +16 -16
  34. package/dist/bubbles/tool-bubble/instagram-tool.d.ts +14 -14
  35. package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.d.ts +10 -10
  36. package/dist/bubbles/tool-bubble/linkedin-connection-tool/linkedin-connection-tool.js +1 -1
  37. package/dist/bubbles/tool-bubble/linkedin-tool.d.ts +332 -332
  38. package/dist/bubbles/tool-bubble/people-search-tool.d.ts +144 -132
  39. package/dist/bubbles/tool-bubble/people-search-tool.d.ts.map +1 -1
  40. package/dist/bubbles/tool-bubble/people-search-tool.js +11 -1
  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/sql-query-tool.d.ts +8 -8
  44. package/dist/bubbles/tool-bubble/tiktok-tool.d.ts +70 -70
  45. package/dist/bubbles/tool-bubble/twitter-tool.d.ts +134 -134
  46. package/dist/bubbles/tool-bubble/web-crawl-tool.d.ts +14 -14
  47. package/dist/bubbles/tool-bubble/web-search-tool.d.ts +6 -6
  48. package/dist/bubbles/tool-bubble/youtube-tool.d.ts +18 -18
  49. package/dist/bubbles/workflow-bubble/generate-document.workflow.d.ts +24 -24
  50. package/dist/bubbles/workflow-bubble/parse-document.workflow.d.ts +4 -4
  51. package/dist/bubbles/workflow-bubble/pdf-form-operations.workflow.d.ts +74 -74
  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 +28 -28
  54. package/dist/bubbles/workflow-bubble/slack-formatter-agent.d.ts +84 -84
  55. package/dist/bubbles/workflow-bubble/slack-notifier.workflow.d.ts +4 -4
  56. package/dist/bubbles.json +11 -3
  57. package/package.json +2 -2
@@ -23,17 +23,17 @@ 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
- credentials?: Partial<Record<CredentialType, string>> | undefined;
31
30
  search?: string | undefined;
31
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
32
32
  actorId?: string | undefined;
33
33
  }, {
34
34
  input: Record<string, unknown>;
35
- credentials?: Partial<Record<CredentialType, string>> | undefined;
36
35
  search?: string | undefined;
36
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
37
37
  timeout?: number | undefined;
38
38
  limit?: number | undefined;
39
39
  actorId?: string | undefined;
@@ -70,22 +70,22 @@ declare const ApifyResultSchema: z.ZodObject<{
70
70
  id: string;
71
71
  inputSchemaUrl: string;
72
72
  description?: string | null | undefined;
73
+ stars?: number | null | undefined;
73
74
  usage?: {
74
75
  totalRuns?: number | undefined;
75
76
  usersCount?: number | undefined;
76
77
  } | null | undefined;
77
- stars?: number | null | undefined;
78
78
  requiresRental?: boolean | undefined;
79
79
  }, {
80
80
  name: string;
81
81
  id: string;
82
82
  inputSchemaUrl: string;
83
83
  description?: string | null | undefined;
84
+ stars?: number | null | undefined;
84
85
  usage?: {
85
86
  totalRuns?: number | undefined;
86
87
  usersCount?: number | undefined;
87
88
  } | null | undefined;
88
- stars?: number | null | undefined;
89
89
  requiresRental?: boolean | undefined;
90
90
  }>, "many">>;
91
91
  }, "strip", z.ZodTypeAny, {
@@ -102,11 +102,11 @@ declare const ApifyResultSchema: z.ZodObject<{
102
102
  id: string;
103
103
  inputSchemaUrl: string;
104
104
  description?: string | null | undefined;
105
+ stars?: number | null | undefined;
105
106
  usage?: {
106
107
  totalRuns?: number | undefined;
107
108
  usersCount?: number | undefined;
108
109
  } | null | undefined;
109
- stars?: number | null | undefined;
110
110
  requiresRental?: boolean | undefined;
111
111
  }[] | undefined;
112
112
  }, {
@@ -123,11 +123,11 @@ declare const ApifyResultSchema: z.ZodObject<{
123
123
  id: string;
124
124
  inputSchemaUrl: string;
125
125
  description?: string | null | undefined;
126
+ stars?: number | null | undefined;
126
127
  usage?: {
127
128
  totalRuns?: number | undefined;
128
129
  usersCount?: number | undefined;
129
130
  } | null | undefined;
130
- stars?: number | null | undefined;
131
131
  requiresRental?: boolean | undefined;
132
132
  }[] | undefined;
133
133
  }>;
@@ -159,17 +159,17 @@ 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
- credentials?: Partial<Record<CredentialType, string>> | undefined;
167
166
  search?: string | undefined;
167
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
168
168
  actorId?: string | undefined;
169
169
  }, {
170
170
  input: Record<string, unknown>;
171
- credentials?: Partial<Record<CredentialType, string>> | undefined;
172
171
  search?: string | undefined;
172
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
173
173
  timeout?: number | undefined;
174
174
  limit?: number | undefined;
175
175
  actorId?: string | undefined;
@@ -206,22 +206,22 @@ export declare class ApifyBubble<T extends string = string> extends ServiceBubbl
206
206
  id: string;
207
207
  inputSchemaUrl: string;
208
208
  description?: string | null | undefined;
209
+ stars?: number | null | undefined;
209
210
  usage?: {
210
211
  totalRuns?: number | undefined;
211
212
  usersCount?: number | undefined;
212
213
  } | null | undefined;
213
- stars?: number | null | undefined;
214
214
  requiresRental?: boolean | undefined;
215
215
  }, {
216
216
  name: string;
217
217
  id: string;
218
218
  inputSchemaUrl: string;
219
219
  description?: string | null | undefined;
220
+ stars?: number | null | undefined;
220
221
  usage?: {
221
222
  totalRuns?: number | undefined;
222
223
  usersCount?: number | undefined;
223
224
  } | null | undefined;
224
- stars?: number | null | undefined;
225
225
  requiresRental?: boolean | undefined;
226
226
  }>, "many">>;
227
227
  }, "strip", z.ZodTypeAny, {
@@ -238,11 +238,11 @@ export declare class ApifyBubble<T extends string = string> extends ServiceBubbl
238
238
  id: string;
239
239
  inputSchemaUrl: string;
240
240
  description?: string | null | undefined;
241
+ stars?: number | null | undefined;
241
242
  usage?: {
242
243
  totalRuns?: number | undefined;
243
244
  usersCount?: number | undefined;
244
245
  } | null | undefined;
245
- stars?: number | null | undefined;
246
246
  requiresRental?: boolean | undefined;
247
247
  }[] | undefined;
248
248
  }, {
@@ -259,11 +259,11 @@ export declare class ApifyBubble<T extends string = string> extends ServiceBubbl
259
259
  id: string;
260
260
  inputSchemaUrl: string;
261
261
  description?: string | null | undefined;
262
+ stars?: number | null | undefined;
262
263
  usage?: {
263
264
  totalRuns?: number | undefined;
264
265
  usersCount?: number | undefined;
265
266
  } | null | undefined;
266
- stars?: number | null | undefined;
267
267
  requiresRental?: boolean | undefined;
268
268
  }[] | undefined;
269
269
  }>;
@@ -103,35 +103,35 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
103
103
  tag: import("zod").ZodOptional<import("zod").ZodString>;
104
104
  credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
105
105
  }, "strip", import("zod").ZodTypeAny, {
106
- operation: "create_candidate";
107
106
  name: string;
107
+ operation: "create_candidate";
108
108
  credentials?: Partial<Record<CredentialType, string>> | undefined;
109
109
  website?: string | undefined;
110
110
  emails?: {
111
111
  type: "Personal" | "Work" | "Other";
112
112
  email: string;
113
113
  }[] | undefined;
114
+ tag?: string | undefined;
114
115
  phone_number?: string | undefined;
115
116
  linkedin_url?: string | undefined;
116
117
  github_url?: string | undefined;
117
118
  source_id?: string | undefined;
118
119
  credited_to_user_id?: string | undefined;
119
- tag?: string | undefined;
120
120
  }, {
121
- operation: "create_candidate";
122
121
  name: string;
122
+ operation: "create_candidate";
123
123
  credentials?: Partial<Record<CredentialType, string>> | undefined;
124
124
  website?: string | undefined;
125
125
  emails?: {
126
126
  type: "Personal" | "Work" | "Other";
127
127
  email: string;
128
128
  }[] | undefined;
129
+ tag?: string | undefined;
129
130
  phone_number?: string | undefined;
130
131
  linkedin_url?: string | undefined;
131
132
  github_url?: string | undefined;
132
133
  source_id?: string | undefined;
133
134
  credited_to_user_id?: string | undefined;
134
- tag?: string | undefined;
135
135
  }>, import("zod").ZodObject<{
136
136
  operation: import("zod").ZodLiteral<"search_candidates">;
137
137
  email: import("zod").ZodOptional<import("zod").ZodString>;
@@ -179,12 +179,12 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
179
179
  title: import("zod").ZodString;
180
180
  credentials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodNativeEnum<typeof CredentialType>, import("zod").ZodString>>;
181
181
  }, "strip", import("zod").ZodTypeAny, {
182
- operation: "create_tag";
183
182
  title: string;
183
+ operation: "create_tag";
184
184
  credentials?: Partial<Record<CredentialType, string>> | undefined;
185
185
  }, {
186
- operation: "create_tag";
187
186
  title: string;
187
+ operation: "create_tag";
188
188
  credentials?: Partial<Record<CredentialType, string>> | undefined;
189
189
  }>, import("zod").ZodObject<{
190
190
  operation: import("zod").ZodLiteral<"list_custom_fields">;
@@ -343,28 +343,24 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
343
343
  isArchived?: boolean | undefined;
344
344
  }[] | undefined;
345
345
  createdAt?: string | undefined;
346
+ company?: string | null | undefined;
347
+ position?: string | null | undefined;
346
348
  updatedAt?: string | undefined;
347
349
  primaryEmailAddress?: {
348
350
  value: string;
349
351
  type: "Personal" | "Work" | "Other";
350
352
  isPrimary: boolean;
351
353
  } | null | undefined;
352
- primaryPhoneNumber?: {
354
+ emailAddresses?: {
353
355
  value: string;
354
356
  type: "Personal" | "Work" | "Other";
355
357
  isPrimary: boolean;
356
- } | null | undefined;
357
- customFields?: {
358
- title: string;
359
- id: string;
360
- value?: unknown;
361
- isPrivate?: boolean | undefined;
362
358
  }[] | undefined;
363
- emailAddresses?: {
359
+ primaryPhoneNumber?: {
364
360
  value: string;
365
361
  type: "Personal" | "Work" | "Other";
366
362
  isPrimary: boolean;
367
- }[] | undefined;
363
+ } | null | undefined;
368
364
  phoneNumbers?: {
369
365
  value: string;
370
366
  type: "Personal" | "Work" | "Other";
@@ -374,8 +370,6 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
374
370
  type: string;
375
371
  url: string;
376
372
  }[] | undefined;
377
- position?: string | null | undefined;
378
- company?: string | null | undefined;
379
373
  school?: string | null | undefined;
380
374
  applicationIds?: string[] | undefined;
381
375
  resumeFileHandle?: {
@@ -388,6 +382,12 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
388
382
  id: string;
389
383
  handle: string;
390
384
  }[] | undefined;
385
+ customFields?: {
386
+ title: string;
387
+ id: string;
388
+ value?: unknown;
389
+ isPrivate?: boolean | undefined;
390
+ }[] | undefined;
391
391
  }, {
392
392
  name: string;
393
393
  id: string;
@@ -397,28 +397,24 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
397
397
  isArchived?: boolean | undefined;
398
398
  }[] | undefined;
399
399
  createdAt?: string | undefined;
400
+ company?: string | null | undefined;
401
+ position?: string | null | undefined;
400
402
  updatedAt?: string | undefined;
401
403
  primaryEmailAddress?: {
402
404
  value: string;
403
405
  type: "Personal" | "Work" | "Other";
404
406
  isPrimary: boolean;
405
407
  } | null | undefined;
406
- primaryPhoneNumber?: {
408
+ emailAddresses?: {
407
409
  value: string;
408
410
  type: "Personal" | "Work" | "Other";
409
411
  isPrimary: boolean;
410
- } | null | undefined;
411
- customFields?: {
412
- title: string;
413
- id: string;
414
- value?: unknown;
415
- isPrivate?: boolean | undefined;
416
412
  }[] | undefined;
417
- emailAddresses?: {
413
+ primaryPhoneNumber?: {
418
414
  value: string;
419
415
  type: "Personal" | "Work" | "Other";
420
416
  isPrimary: boolean;
421
- }[] | undefined;
417
+ } | null | undefined;
422
418
  phoneNumbers?: {
423
419
  value: string;
424
420
  type: "Personal" | "Work" | "Other";
@@ -428,8 +424,6 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
428
424
  type: string;
429
425
  url: string;
430
426
  }[] | undefined;
431
- position?: string | null | undefined;
432
- company?: string | null | undefined;
433
427
  school?: string | null | undefined;
434
428
  applicationIds?: string[] | undefined;
435
429
  resumeFileHandle?: {
@@ -442,15 +436,21 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
442
436
  id: string;
443
437
  handle: string;
444
438
  }[] | undefined;
439
+ customFields?: {
440
+ title: string;
441
+ id: string;
442
+ value?: unknown;
443
+ isPrivate?: boolean | undefined;
444
+ }[] | undefined;
445
445
  }>, "many">>;
446
446
  next_cursor: import("zod").ZodOptional<import("zod").ZodString>;
447
447
  more_data_available: import("zod").ZodOptional<import("zod").ZodBoolean>;
448
448
  sync_token: import("zod").ZodOptional<import("zod").ZodString>;
449
449
  error: import("zod").ZodString;
450
450
  }, "strip", import("zod").ZodTypeAny, {
451
- operation: "list_candidates";
452
451
  success: boolean;
453
452
  error: string;
453
+ operation: "list_candidates";
454
454
  next_cursor?: string | undefined;
455
455
  sync_token?: string | undefined;
456
456
  candidates?: {
@@ -462,28 +462,24 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
462
462
  isArchived?: boolean | undefined;
463
463
  }[] | undefined;
464
464
  createdAt?: string | undefined;
465
+ company?: string | null | undefined;
466
+ position?: string | null | undefined;
465
467
  updatedAt?: string | undefined;
466
468
  primaryEmailAddress?: {
467
469
  value: string;
468
470
  type: "Personal" | "Work" | "Other";
469
471
  isPrimary: boolean;
470
472
  } | null | undefined;
471
- primaryPhoneNumber?: {
473
+ emailAddresses?: {
472
474
  value: string;
473
475
  type: "Personal" | "Work" | "Other";
474
476
  isPrimary: boolean;
475
- } | null | undefined;
476
- customFields?: {
477
- title: string;
478
- id: string;
479
- value?: unknown;
480
- isPrivate?: boolean | undefined;
481
477
  }[] | undefined;
482
- emailAddresses?: {
478
+ primaryPhoneNumber?: {
483
479
  value: string;
484
480
  type: "Personal" | "Work" | "Other";
485
481
  isPrimary: boolean;
486
- }[] | undefined;
482
+ } | null | undefined;
487
483
  phoneNumbers?: {
488
484
  value: string;
489
485
  type: "Personal" | "Work" | "Other";
@@ -493,8 +489,6 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
493
489
  type: string;
494
490
  url: string;
495
491
  }[] | undefined;
496
- position?: string | null | undefined;
497
- company?: string | null | undefined;
498
492
  school?: string | null | undefined;
499
493
  applicationIds?: string[] | undefined;
500
494
  resumeFileHandle?: {
@@ -507,12 +501,18 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
507
501
  id: string;
508
502
  handle: string;
509
503
  }[] | undefined;
504
+ customFields?: {
505
+ title: string;
506
+ id: string;
507
+ value?: unknown;
508
+ isPrivate?: boolean | undefined;
509
+ }[] | undefined;
510
510
  }[] | undefined;
511
511
  more_data_available?: boolean | undefined;
512
512
  }, {
513
- operation: "list_candidates";
514
513
  success: boolean;
515
514
  error: string;
515
+ operation: "list_candidates";
516
516
  next_cursor?: string | undefined;
517
517
  sync_token?: string | undefined;
518
518
  candidates?: {
@@ -524,28 +524,24 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
524
524
  isArchived?: boolean | undefined;
525
525
  }[] | undefined;
526
526
  createdAt?: string | undefined;
527
+ company?: string | null | undefined;
528
+ position?: string | null | undefined;
527
529
  updatedAt?: string | undefined;
528
530
  primaryEmailAddress?: {
529
531
  value: string;
530
532
  type: "Personal" | "Work" | "Other";
531
533
  isPrimary: boolean;
532
534
  } | null | undefined;
533
- primaryPhoneNumber?: {
535
+ emailAddresses?: {
534
536
  value: string;
535
537
  type: "Personal" | "Work" | "Other";
536
538
  isPrimary: boolean;
537
- } | null | undefined;
538
- customFields?: {
539
- title: string;
540
- id: string;
541
- value?: unknown;
542
- isPrivate?: boolean | undefined;
543
539
  }[] | undefined;
544
- emailAddresses?: {
540
+ primaryPhoneNumber?: {
545
541
  value: string;
546
542
  type: "Personal" | "Work" | "Other";
547
543
  isPrimary: boolean;
548
- }[] | undefined;
544
+ } | null | undefined;
549
545
  phoneNumbers?: {
550
546
  value: string;
551
547
  type: "Personal" | "Work" | "Other";
@@ -555,8 +551,6 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
555
551
  type: string;
556
552
  url: string;
557
553
  }[] | undefined;
558
- position?: string | null | undefined;
559
- company?: string | null | undefined;
560
554
  school?: string | null | undefined;
561
555
  applicationIds?: string[] | undefined;
562
556
  resumeFileHandle?: {
@@ -569,6 +563,12 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
569
563
  id: string;
570
564
  handle: string;
571
565
  }[] | undefined;
566
+ customFields?: {
567
+ title: string;
568
+ id: string;
569
+ value?: unknown;
570
+ isPrivate?: boolean | undefined;
571
+ }[] | undefined;
572
572
  }[] | undefined;
573
573
  more_data_available?: boolean | undefined;
574
574
  }>, import("zod").ZodObject<{
@@ -666,9 +666,9 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
666
666
  }>>;
667
667
  error: import("zod").ZodString;
668
668
  }, "strip", import("zod").ZodTypeAny, {
669
- operation: "get_candidate";
670
669
  success: boolean;
671
670
  error: string;
671
+ operation: "get_candidate";
672
672
  candidate?: {
673
673
  name: string;
674
674
  id: string;
@@ -692,9 +692,9 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
692
692
  }[] | undefined;
693
693
  } | undefined;
694
694
  }, {
695
- operation: "get_candidate";
696
695
  success: boolean;
697
696
  error: string;
697
+ operation: "get_candidate";
698
698
  candidate?: {
699
699
  name: string;
700
700
  id: string;
@@ -812,9 +812,9 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
812
812
  }>>;
813
813
  error: import("zod").ZodString;
814
814
  }, "strip", import("zod").ZodTypeAny, {
815
- operation: "create_candidate";
816
815
  success: boolean;
817
816
  error: string;
817
+ operation: "create_candidate";
818
818
  candidate?: {
819
819
  name: string;
820
820
  id: string;
@@ -838,9 +838,9 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
838
838
  }[] | undefined;
839
839
  } | undefined;
840
840
  }, {
841
- operation: "create_candidate";
842
841
  success: boolean;
843
842
  error: string;
843
+ operation: "create_candidate";
844
844
  candidate?: {
845
845
  name: string;
846
846
  id: string;
@@ -958,9 +958,9 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
958
958
  }>, "many">>;
959
959
  error: import("zod").ZodString;
960
960
  }, "strip", import("zod").ZodTypeAny, {
961
- operation: "search_candidates";
962
961
  success: boolean;
963
962
  error: string;
963
+ operation: "search_candidates";
964
964
  candidates?: {
965
965
  name: string;
966
966
  id: string;
@@ -984,9 +984,9 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
984
984
  }[] | undefined;
985
985
  }[] | undefined;
986
986
  }, {
987
- operation: "search_candidates";
988
987
  success: boolean;
989
988
  error: string;
989
+ operation: "search_candidates";
990
990
  candidates?: {
991
991
  name: string;
992
992
  id: string;
@@ -1104,9 +1104,9 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
1104
1104
  }>>;
1105
1105
  error: import("zod").ZodString;
1106
1106
  }, "strip", import("zod").ZodTypeAny, {
1107
- operation: "add_tag";
1108
1107
  success: boolean;
1109
1108
  error: string;
1109
+ operation: "add_tag";
1110
1110
  candidate?: {
1111
1111
  name: string;
1112
1112
  id: string;
@@ -1130,9 +1130,9 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
1130
1130
  }[] | undefined;
1131
1131
  } | undefined;
1132
1132
  }, {
1133
- operation: "add_tag";
1134
1133
  success: boolean;
1135
1134
  error: string;
1135
+ operation: "add_tag";
1136
1136
  candidate?: {
1137
1137
  name: string;
1138
1138
  id: string;
@@ -1173,18 +1173,18 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
1173
1173
  }>, "many">>;
1174
1174
  error: import("zod").ZodString;
1175
1175
  }, "strip", import("zod").ZodTypeAny, {
1176
- operation: "list_tags";
1177
1176
  success: boolean;
1178
1177
  error: string;
1178
+ operation: "list_tags";
1179
1179
  tags?: {
1180
1180
  title: string;
1181
1181
  id: string;
1182
1182
  isArchived?: boolean | undefined;
1183
1183
  }[] | undefined;
1184
1184
  }, {
1185
- operation: "list_tags";
1186
1185
  success: boolean;
1187
1186
  error: string;
1187
+ operation: "list_tags";
1188
1188
  tags?: {
1189
1189
  title: string;
1190
1190
  id: string;
@@ -1208,18 +1208,18 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
1208
1208
  }>>;
1209
1209
  error: import("zod").ZodString;
1210
1210
  }, "strip", import("zod").ZodTypeAny, {
1211
- operation: "create_tag";
1212
1211
  success: boolean;
1213
1212
  error: string;
1213
+ operation: "create_tag";
1214
1214
  tag?: {
1215
1215
  title: string;
1216
1216
  id: string;
1217
1217
  isArchived?: boolean | undefined;
1218
1218
  } | undefined;
1219
1219
  }, {
1220
- operation: "create_tag";
1221
1220
  success: boolean;
1222
1221
  error: string;
1222
+ operation: "create_tag";
1223
1223
  tag?: {
1224
1224
  title: string;
1225
1225
  id: string;
@@ -1251,8 +1251,8 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
1251
1251
  }, "strip", import("zod").ZodTypeAny, {
1252
1252
  title: string;
1253
1253
  id: string;
1254
- isPrivate: boolean;
1255
1254
  isArchived: boolean;
1255
+ isPrivate: boolean;
1256
1256
  objectType: string;
1257
1257
  fieldType: string;
1258
1258
  selectableValues?: {
@@ -1263,8 +1263,8 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
1263
1263
  }, {
1264
1264
  title: string;
1265
1265
  id: string;
1266
- isPrivate: boolean;
1267
1266
  isArchived: boolean;
1267
+ isPrivate: boolean;
1268
1268
  objectType: string;
1269
1269
  fieldType: string;
1270
1270
  selectableValues?: {
@@ -1278,17 +1278,17 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
1278
1278
  sync_token: import("zod").ZodOptional<import("zod").ZodString>;
1279
1279
  error: import("zod").ZodString;
1280
1280
  }, "strip", import("zod").ZodTypeAny, {
1281
- operation: "list_custom_fields";
1282
1281
  success: boolean;
1283
1282
  error: string;
1283
+ operation: "list_custom_fields";
1284
1284
  next_cursor?: string | undefined;
1285
1285
  sync_token?: string | undefined;
1286
1286
  more_data_available?: boolean | undefined;
1287
1287
  custom_fields?: {
1288
1288
  title: string;
1289
1289
  id: string;
1290
- isPrivate: boolean;
1291
1290
  isArchived: boolean;
1291
+ isPrivate: boolean;
1292
1292
  objectType: string;
1293
1293
  fieldType: string;
1294
1294
  selectableValues?: {
@@ -1298,17 +1298,17 @@ export declare class AshbyBubble<T extends AshbyParamsInput = AshbyParamsInput>
1298
1298
  }[] | undefined;
1299
1299
  }[] | undefined;
1300
1300
  }, {
1301
- operation: "list_custom_fields";
1302
1301
  success: boolean;
1303
1302
  error: string;
1303
+ operation: "list_custom_fields";
1304
1304
  next_cursor?: string | undefined;
1305
1305
  sync_token?: string | undefined;
1306
1306
  more_data_available?: boolean | undefined;
1307
1307
  custom_fields?: {
1308
1308
  title: string;
1309
1309
  id: string;
1310
- isPrivate: boolean;
1311
1310
  isArchived: boolean;
1311
+ isPrivate: boolean;
1312
1312
  objectType: string;
1313
1313
  fieldType: string;
1314
1314
  selectableValues?: {