@bubblelab/bubble-core 0.1.174 → 0.1.176

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 (50) hide show
  1. package/dist/bubble-bundle.d.ts +105 -27
  2. package/dist/bubble-factory.d.ts.map +1 -1
  3. package/dist/bubble-factory.js +8 -0
  4. package/dist/bubble-factory.js.map +1 -1
  5. package/dist/bubbles/service-bubble/attio/attio.d.ts +563 -0
  6. package/dist/bubbles/service-bubble/attio/attio.d.ts.map +1 -0
  7. package/dist/bubbles/service-bubble/attio/attio.js +484 -0
  8. package/dist/bubbles/service-bubble/attio/attio.js.map +1 -0
  9. package/dist/bubbles/service-bubble/attio/attio.schema.d.ts +527 -0
  10. package/dist/bubbles/service-bubble/attio/attio.schema.d.ts.map +1 -0
  11. package/dist/bubbles/service-bubble/attio/attio.schema.js +386 -0
  12. package/dist/bubbles/service-bubble/attio/attio.schema.js.map +1 -0
  13. package/dist/bubbles/service-bubble/attio/attio.utils.d.ts +1 -0
  14. package/dist/bubbles/service-bubble/attio/attio.utils.d.ts.map +1 -0
  15. package/dist/bubbles/service-bubble/attio/attio.utils.js +4 -0
  16. package/dist/bubbles/service-bubble/attio/attio.utils.js.map +1 -0
  17. package/dist/bubbles/service-bubble/attio/index.d.ts +3 -0
  18. package/dist/bubbles/service-bubble/attio/index.d.ts.map +1 -0
  19. package/dist/bubbles/service-bubble/attio/index.js +3 -0
  20. package/dist/bubbles/service-bubble/attio/index.js.map +1 -0
  21. package/dist/bubbles/service-bubble/capability-pipeline.js +2 -2
  22. package/dist/bubbles/service-bubble/capability-pipeline.js.map +1 -1
  23. package/dist/bubbles/service-bubble/hubspot/hubspot.d.ts +388 -0
  24. package/dist/bubbles/service-bubble/hubspot/hubspot.d.ts.map +1 -0
  25. package/dist/bubbles/service-bubble/hubspot/hubspot.js +241 -0
  26. package/dist/bubbles/service-bubble/hubspot/hubspot.js.map +1 -0
  27. package/dist/bubbles/service-bubble/hubspot/hubspot.schema.d.ts +345 -0
  28. package/dist/bubbles/service-bubble/hubspot/hubspot.schema.d.ts.map +1 -0
  29. package/dist/bubbles/service-bubble/hubspot/hubspot.schema.js +180 -0
  30. package/dist/bubbles/service-bubble/hubspot/hubspot.schema.js.map +1 -0
  31. package/dist/bubbles/service-bubble/hubspot/index.d.ts +3 -0
  32. package/dist/bubbles/service-bubble/hubspot/index.d.ts.map +1 -0
  33. package/dist/bubbles/service-bubble/hubspot/index.js +3 -0
  34. package/dist/bubbles/service-bubble/hubspot/index.js.map +1 -0
  35. package/dist/bubbles/tool-bubble/browser-tools/_shared/ai/ai-browser-agent.d.ts +5 -30
  36. package/dist/bubbles/tool-bubble/browser-tools/_shared/ai/ai-browser-agent.d.ts.map +1 -1
  37. package/dist/bubbles/tool-bubble/browser-tools/_shared/ai/ai-browser-agent.js +70 -204
  38. package/dist/bubbles/tool-bubble/browser-tools/_shared/ai/ai-browser-agent.js.map +1 -1
  39. package/dist/bubbles/tool-bubble/browser-tools/_shared/ai/ai-browser-agent.types.d.ts +4 -0
  40. package/dist/bubbles/tool-bubble/browser-tools/_shared/ai/ai-browser-agent.types.d.ts.map +1 -1
  41. package/dist/bubbles/tool-bubble/browser-tools/linkedin-connection/tool.d.ts +31 -0
  42. package/dist/bubbles/tool-bubble/browser-tools/linkedin-connection/tool.d.ts.map +1 -1
  43. package/dist/bubbles/tool-bubble/browser-tools/linkedin-connection/tool.js +202 -39
  44. package/dist/bubbles/tool-bubble/browser-tools/linkedin-connection/tool.js.map +1 -1
  45. package/dist/bubbles.json +1598 -2
  46. package/dist/index.d.ts +4 -0
  47. package/dist/index.d.ts.map +1 -1
  48. package/dist/index.js +2 -0
  49. package/dist/index.js.map +1 -1
  50. package/package.json +2 -2
@@ -0,0 +1,527 @@
1
+ import { z } from 'zod';
2
+ import { CredentialType } from '@bubblelab/shared-schemas';
3
+ export declare const AttioParamsSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject<{
4
+ operation: z.ZodLiteral<"list_records">;
5
+ object: z.ZodString;
6
+ limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
7
+ offset: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
8
+ sorts: z.ZodOptional<z.ZodArray<z.ZodObject<{
9
+ attribute: z.ZodString;
10
+ direction: z.ZodDefault<z.ZodOptional<z.ZodEnum<["asc", "desc"]>>>;
11
+ }, "strip", z.ZodTypeAny, {
12
+ direction: "asc" | "desc";
13
+ attribute: string;
14
+ }, {
15
+ attribute: string;
16
+ direction?: "asc" | "desc" | undefined;
17
+ }>, "many">>;
18
+ filter: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
19
+ credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
20
+ }, "strip", z.ZodTypeAny, {
21
+ object: string;
22
+ operation: "list_records";
23
+ limit: number;
24
+ offset: number;
25
+ filter?: Record<string, unknown> | undefined;
26
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
27
+ sorts?: {
28
+ direction: "asc" | "desc";
29
+ attribute: string;
30
+ }[] | undefined;
31
+ }, {
32
+ object: string;
33
+ operation: "list_records";
34
+ filter?: Record<string, unknown> | undefined;
35
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
36
+ limit?: number | undefined;
37
+ offset?: number | undefined;
38
+ sorts?: {
39
+ attribute: string;
40
+ direction?: "asc" | "desc" | undefined;
41
+ }[] | undefined;
42
+ }>, z.ZodObject<{
43
+ operation: z.ZodLiteral<"get_record">;
44
+ object: z.ZodString;
45
+ record_id: z.ZodString;
46
+ credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
47
+ }, "strip", z.ZodTypeAny, {
48
+ object: string;
49
+ operation: "get_record";
50
+ record_id: string;
51
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
52
+ }, {
53
+ object: string;
54
+ operation: "get_record";
55
+ record_id: string;
56
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
57
+ }>, z.ZodObject<{
58
+ operation: z.ZodLiteral<"create_record">;
59
+ object: z.ZodString;
60
+ values: z.ZodRecord<z.ZodString, z.ZodUnknown>;
61
+ matching_attribute: z.ZodOptional<z.ZodString>;
62
+ credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
63
+ }, "strip", z.ZodTypeAny, {
64
+ object: string;
65
+ values: Record<string, unknown>;
66
+ operation: "create_record";
67
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
68
+ matching_attribute?: string | undefined;
69
+ }, {
70
+ object: string;
71
+ values: Record<string, unknown>;
72
+ operation: "create_record";
73
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
74
+ matching_attribute?: string | undefined;
75
+ }>, z.ZodObject<{
76
+ operation: z.ZodLiteral<"update_record">;
77
+ object: z.ZodString;
78
+ record_id: z.ZodString;
79
+ values: z.ZodRecord<z.ZodString, z.ZodUnknown>;
80
+ credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
81
+ }, "strip", z.ZodTypeAny, {
82
+ object: string;
83
+ values: Record<string, unknown>;
84
+ operation: "update_record";
85
+ record_id: string;
86
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
87
+ }, {
88
+ object: string;
89
+ values: Record<string, unknown>;
90
+ operation: "update_record";
91
+ record_id: string;
92
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
93
+ }>, z.ZodObject<{
94
+ operation: z.ZodLiteral<"delete_record">;
95
+ object: z.ZodString;
96
+ record_id: z.ZodString;
97
+ credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
98
+ }, "strip", z.ZodTypeAny, {
99
+ object: string;
100
+ operation: "delete_record";
101
+ record_id: string;
102
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
103
+ }, {
104
+ object: string;
105
+ operation: "delete_record";
106
+ record_id: string;
107
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
108
+ }>, z.ZodObject<{
109
+ operation: z.ZodLiteral<"create_note">;
110
+ parent_object: z.ZodString;
111
+ parent_record_id: z.ZodString;
112
+ title: z.ZodString;
113
+ content: z.ZodString;
114
+ format: z.ZodDefault<z.ZodOptional<z.ZodEnum<["plaintext"]>>>;
115
+ credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
116
+ }, "strip", z.ZodTypeAny, {
117
+ format: "plaintext";
118
+ title: string;
119
+ content: string;
120
+ operation: "create_note";
121
+ parent_object: string;
122
+ parent_record_id: string;
123
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
124
+ }, {
125
+ title: string;
126
+ content: string;
127
+ operation: "create_note";
128
+ parent_object: string;
129
+ parent_record_id: string;
130
+ format?: "plaintext" | undefined;
131
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
132
+ }>, z.ZodObject<{
133
+ operation: z.ZodLiteral<"list_notes">;
134
+ parent_object: z.ZodOptional<z.ZodString>;
135
+ parent_record_id: z.ZodOptional<z.ZodString>;
136
+ limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
137
+ offset: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
138
+ credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
139
+ }, "strip", z.ZodTypeAny, {
140
+ operation: "list_notes";
141
+ limit: number;
142
+ offset: number;
143
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
144
+ parent_object?: string | undefined;
145
+ parent_record_id?: string | undefined;
146
+ }, {
147
+ operation: "list_notes";
148
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
149
+ limit?: number | undefined;
150
+ offset?: number | undefined;
151
+ parent_object?: string | undefined;
152
+ parent_record_id?: string | undefined;
153
+ }>, z.ZodObject<{
154
+ operation: z.ZodLiteral<"create_task">;
155
+ content: z.ZodString;
156
+ deadline_at: z.ZodOptional<z.ZodString>;
157
+ is_completed: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
158
+ linked_records: z.ZodOptional<z.ZodArray<z.ZodObject<{
159
+ target_object: z.ZodString;
160
+ target_record_id: z.ZodString;
161
+ }, "strip", z.ZodTypeAny, {
162
+ target_object: string;
163
+ target_record_id: string;
164
+ }, {
165
+ target_object: string;
166
+ target_record_id: string;
167
+ }>, "many">>;
168
+ assignees: z.ZodOptional<z.ZodArray<z.ZodObject<{
169
+ referenced_actor_type: z.ZodEnum<["workspace-member"]>;
170
+ referenced_actor_id: z.ZodString;
171
+ }, "strip", z.ZodTypeAny, {
172
+ referenced_actor_type: "workspace-member";
173
+ referenced_actor_id: string;
174
+ }, {
175
+ referenced_actor_type: "workspace-member";
176
+ referenced_actor_id: string;
177
+ }>, "many">>;
178
+ credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
179
+ }, "strip", z.ZodTypeAny, {
180
+ content: string;
181
+ operation: "create_task";
182
+ is_completed: boolean;
183
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
184
+ deadline_at?: string | undefined;
185
+ linked_records?: {
186
+ target_object: string;
187
+ target_record_id: string;
188
+ }[] | undefined;
189
+ assignees?: {
190
+ referenced_actor_type: "workspace-member";
191
+ referenced_actor_id: string;
192
+ }[] | undefined;
193
+ }, {
194
+ content: string;
195
+ operation: "create_task";
196
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
197
+ deadline_at?: string | undefined;
198
+ is_completed?: boolean | undefined;
199
+ linked_records?: {
200
+ target_object: string;
201
+ target_record_id: string;
202
+ }[] | undefined;
203
+ assignees?: {
204
+ referenced_actor_type: "workspace-member";
205
+ referenced_actor_id: string;
206
+ }[] | undefined;
207
+ }>, z.ZodObject<{
208
+ operation: z.ZodLiteral<"list_tasks">;
209
+ limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
210
+ offset: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
211
+ credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
212
+ }, "strip", z.ZodTypeAny, {
213
+ operation: "list_tasks";
214
+ limit: number;
215
+ offset: number;
216
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
217
+ }, {
218
+ operation: "list_tasks";
219
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
220
+ limit?: number | undefined;
221
+ offset?: number | undefined;
222
+ }>, z.ZodObject<{
223
+ operation: z.ZodLiteral<"update_task">;
224
+ task_id: z.ZodString;
225
+ content: z.ZodOptional<z.ZodString>;
226
+ deadline_at: z.ZodOptional<z.ZodString>;
227
+ is_completed: z.ZodOptional<z.ZodBoolean>;
228
+ credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
229
+ }, "strip", z.ZodTypeAny, {
230
+ operation: "update_task";
231
+ task_id: string;
232
+ content?: string | undefined;
233
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
234
+ deadline_at?: string | undefined;
235
+ is_completed?: boolean | undefined;
236
+ }, {
237
+ operation: "update_task";
238
+ task_id: string;
239
+ content?: string | undefined;
240
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
241
+ deadline_at?: string | undefined;
242
+ is_completed?: boolean | undefined;
243
+ }>, z.ZodObject<{
244
+ operation: z.ZodLiteral<"delete_task">;
245
+ task_id: z.ZodString;
246
+ credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
247
+ }, "strip", z.ZodTypeAny, {
248
+ operation: "delete_task";
249
+ task_id: string;
250
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
251
+ }, {
252
+ operation: "delete_task";
253
+ task_id: string;
254
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
255
+ }>, z.ZodObject<{
256
+ operation: z.ZodLiteral<"list_lists">;
257
+ limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
258
+ offset: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
259
+ credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
260
+ }, "strip", z.ZodTypeAny, {
261
+ operation: "list_lists";
262
+ limit: number;
263
+ offset: number;
264
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
265
+ }, {
266
+ operation: "list_lists";
267
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
268
+ limit?: number | undefined;
269
+ offset?: number | undefined;
270
+ }>, z.ZodObject<{
271
+ operation: z.ZodLiteral<"create_entry">;
272
+ list: z.ZodString;
273
+ parent_object: z.ZodString;
274
+ parent_record_id: z.ZodString;
275
+ entry_values: z.ZodDefault<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
276
+ credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
277
+ }, "strip", z.ZodTypeAny, {
278
+ operation: "create_entry";
279
+ list: string;
280
+ parent_object: string;
281
+ parent_record_id: string;
282
+ entry_values: Record<string, unknown>;
283
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
284
+ }, {
285
+ operation: "create_entry";
286
+ list: string;
287
+ parent_object: string;
288
+ parent_record_id: string;
289
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
290
+ entry_values?: Record<string, unknown> | undefined;
291
+ }>, z.ZodObject<{
292
+ operation: z.ZodLiteral<"list_entries">;
293
+ list: z.ZodString;
294
+ limit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
295
+ offset: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
296
+ filter: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
297
+ credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
298
+ }, "strip", z.ZodTypeAny, {
299
+ operation: "list_entries";
300
+ limit: number;
301
+ offset: number;
302
+ list: string;
303
+ filter?: Record<string, unknown> | undefined;
304
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
305
+ }, {
306
+ operation: "list_entries";
307
+ list: string;
308
+ filter?: Record<string, unknown> | undefined;
309
+ credentials?: Partial<Record<CredentialType, string>> | undefined;
310
+ limit?: number | undefined;
311
+ offset?: number | undefined;
312
+ }>]>;
313
+ export declare const AttioResultSchema: z.ZodDiscriminatedUnion<"operation", [z.ZodObject<{
314
+ operation: z.ZodLiteral<"list_records">;
315
+ records: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
316
+ next_page_offset: z.ZodOptional<z.ZodNumber>;
317
+ success: z.ZodBoolean;
318
+ error: z.ZodString;
319
+ }, "strip", z.ZodTypeAny, {
320
+ success: boolean;
321
+ error: string;
322
+ operation: "list_records";
323
+ records?: Record<string, unknown>[] | undefined;
324
+ next_page_offset?: number | undefined;
325
+ }, {
326
+ success: boolean;
327
+ error: string;
328
+ operation: "list_records";
329
+ records?: Record<string, unknown>[] | undefined;
330
+ next_page_offset?: number | undefined;
331
+ }>, z.ZodObject<{
332
+ operation: z.ZodLiteral<"get_record">;
333
+ record: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
334
+ success: z.ZodBoolean;
335
+ error: z.ZodString;
336
+ }, "strip", z.ZodTypeAny, {
337
+ success: boolean;
338
+ error: string;
339
+ operation: "get_record";
340
+ record?: Record<string, unknown> | undefined;
341
+ }, {
342
+ success: boolean;
343
+ error: string;
344
+ operation: "get_record";
345
+ record?: Record<string, unknown> | undefined;
346
+ }>, z.ZodObject<{
347
+ operation: z.ZodLiteral<"create_record">;
348
+ record: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
349
+ success: z.ZodBoolean;
350
+ error: z.ZodString;
351
+ }, "strip", z.ZodTypeAny, {
352
+ success: boolean;
353
+ error: string;
354
+ operation: "create_record";
355
+ record?: Record<string, unknown> | undefined;
356
+ }, {
357
+ success: boolean;
358
+ error: string;
359
+ operation: "create_record";
360
+ record?: Record<string, unknown> | undefined;
361
+ }>, z.ZodObject<{
362
+ operation: z.ZodLiteral<"update_record">;
363
+ record: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
364
+ success: z.ZodBoolean;
365
+ error: z.ZodString;
366
+ }, "strip", z.ZodTypeAny, {
367
+ success: boolean;
368
+ error: string;
369
+ operation: "update_record";
370
+ record?: Record<string, unknown> | undefined;
371
+ }, {
372
+ success: boolean;
373
+ error: string;
374
+ operation: "update_record";
375
+ record?: Record<string, unknown> | undefined;
376
+ }>, z.ZodObject<{
377
+ operation: z.ZodLiteral<"delete_record">;
378
+ success: z.ZodBoolean;
379
+ error: z.ZodString;
380
+ }, "strip", z.ZodTypeAny, {
381
+ success: boolean;
382
+ error: string;
383
+ operation: "delete_record";
384
+ }, {
385
+ success: boolean;
386
+ error: string;
387
+ operation: "delete_record";
388
+ }>, z.ZodObject<{
389
+ operation: z.ZodLiteral<"create_note">;
390
+ note: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
391
+ success: z.ZodBoolean;
392
+ error: z.ZodString;
393
+ }, "strip", z.ZodTypeAny, {
394
+ success: boolean;
395
+ error: string;
396
+ operation: "create_note";
397
+ note?: Record<string, unknown> | undefined;
398
+ }, {
399
+ success: boolean;
400
+ error: string;
401
+ operation: "create_note";
402
+ note?: Record<string, unknown> | undefined;
403
+ }>, z.ZodObject<{
404
+ operation: z.ZodLiteral<"list_notes">;
405
+ notes: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
406
+ success: z.ZodBoolean;
407
+ error: z.ZodString;
408
+ }, "strip", z.ZodTypeAny, {
409
+ success: boolean;
410
+ error: string;
411
+ operation: "list_notes";
412
+ notes?: Record<string, unknown>[] | undefined;
413
+ }, {
414
+ success: boolean;
415
+ error: string;
416
+ operation: "list_notes";
417
+ notes?: Record<string, unknown>[] | undefined;
418
+ }>, z.ZodObject<{
419
+ operation: z.ZodLiteral<"create_task">;
420
+ task: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
421
+ success: z.ZodBoolean;
422
+ error: z.ZodString;
423
+ }, "strip", z.ZodTypeAny, {
424
+ success: boolean;
425
+ error: string;
426
+ operation: "create_task";
427
+ task?: Record<string, unknown> | undefined;
428
+ }, {
429
+ success: boolean;
430
+ error: string;
431
+ operation: "create_task";
432
+ task?: Record<string, unknown> | undefined;
433
+ }>, z.ZodObject<{
434
+ operation: z.ZodLiteral<"list_tasks">;
435
+ tasks: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
436
+ success: z.ZodBoolean;
437
+ error: z.ZodString;
438
+ }, "strip", z.ZodTypeAny, {
439
+ success: boolean;
440
+ error: string;
441
+ operation: "list_tasks";
442
+ tasks?: Record<string, unknown>[] | undefined;
443
+ }, {
444
+ success: boolean;
445
+ error: string;
446
+ operation: "list_tasks";
447
+ tasks?: Record<string, unknown>[] | undefined;
448
+ }>, z.ZodObject<{
449
+ operation: z.ZodLiteral<"update_task">;
450
+ task: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
451
+ success: z.ZodBoolean;
452
+ error: z.ZodString;
453
+ }, "strip", z.ZodTypeAny, {
454
+ success: boolean;
455
+ error: string;
456
+ operation: "update_task";
457
+ task?: Record<string, unknown> | undefined;
458
+ }, {
459
+ success: boolean;
460
+ error: string;
461
+ operation: "update_task";
462
+ task?: Record<string, unknown> | undefined;
463
+ }>, z.ZodObject<{
464
+ operation: z.ZodLiteral<"delete_task">;
465
+ success: z.ZodBoolean;
466
+ error: z.ZodString;
467
+ }, "strip", z.ZodTypeAny, {
468
+ success: boolean;
469
+ error: string;
470
+ operation: "delete_task";
471
+ }, {
472
+ success: boolean;
473
+ error: string;
474
+ operation: "delete_task";
475
+ }>, z.ZodObject<{
476
+ operation: z.ZodLiteral<"list_lists">;
477
+ lists: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
478
+ success: z.ZodBoolean;
479
+ error: z.ZodString;
480
+ }, "strip", z.ZodTypeAny, {
481
+ success: boolean;
482
+ error: string;
483
+ operation: "list_lists";
484
+ lists?: Record<string, unknown>[] | undefined;
485
+ }, {
486
+ success: boolean;
487
+ error: string;
488
+ operation: "list_lists";
489
+ lists?: Record<string, unknown>[] | undefined;
490
+ }>, z.ZodObject<{
491
+ operation: z.ZodLiteral<"create_entry">;
492
+ entry: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
493
+ success: z.ZodBoolean;
494
+ error: z.ZodString;
495
+ }, "strip", z.ZodTypeAny, {
496
+ success: boolean;
497
+ error: string;
498
+ operation: "create_entry";
499
+ entry?: Record<string, unknown> | undefined;
500
+ }, {
501
+ success: boolean;
502
+ error: string;
503
+ operation: "create_entry";
504
+ entry?: Record<string, unknown> | undefined;
505
+ }>, z.ZodObject<{
506
+ operation: z.ZodLiteral<"list_entries">;
507
+ entries: z.ZodOptional<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">>;
508
+ next_page_offset: z.ZodOptional<z.ZodNumber>;
509
+ success: z.ZodBoolean;
510
+ error: z.ZodString;
511
+ }, "strip", z.ZodTypeAny, {
512
+ success: boolean;
513
+ error: string;
514
+ operation: "list_entries";
515
+ entries?: Record<string, unknown>[] | undefined;
516
+ next_page_offset?: number | undefined;
517
+ }, {
518
+ success: boolean;
519
+ error: string;
520
+ operation: "list_entries";
521
+ entries?: Record<string, unknown>[] | undefined;
522
+ next_page_offset?: number | undefined;
523
+ }>]>;
524
+ export type AttioParamsInput = z.input<typeof AttioParamsSchema>;
525
+ export type AttioParams = z.output<typeof AttioParamsSchema>;
526
+ export type AttioResult = z.output<typeof AttioResultSchema>;
527
+ //# sourceMappingURL=attio.schema.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"attio.schema.d.ts","sourceRoot":"","sources":["../../../../src/bubbles/service-bubble/attio/attio.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAC;AAyB3D,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IA6S5B,CAAC;AAMH,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IA8F5B,CAAC;AAMH,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AACjE,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAC7D,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,iBAAiB,CAAC,CAAC"}