@namzu/sdk 0.1.5 → 0.1.6-rc.1

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 (38) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/README.md +314 -669
  3. package/dist/bridge/tools/connector/adapter.d.ts +2 -2
  4. package/dist/config/runtime.d.ts +52 -52
  5. package/dist/connector/builtins/webhook.d.ts +1 -1
  6. package/dist/contracts/a2a.d.ts +125 -125
  7. package/dist/contracts/schemas.d.ts +34 -34
  8. package/dist/index.d.ts +2 -0
  9. package/dist/index.d.ts.map +1 -1
  10. package/dist/index.js +2 -0
  11. package/dist/index.js.map +1 -1
  12. package/dist/tools/builtins/__tests__/computer-use.test.d.ts +2 -0
  13. package/dist/tools/builtins/__tests__/computer-use.test.d.ts.map +1 -0
  14. package/dist/tools/builtins/__tests__/computer-use.test.js +146 -0
  15. package/dist/tools/builtins/__tests__/computer-use.test.js.map +1 -0
  16. package/dist/tools/builtins/__tests__/structuredOutput.example.d.ts +10 -10
  17. package/dist/tools/builtins/computer-use.d.ts +185 -0
  18. package/dist/tools/builtins/computer-use.d.ts.map +1 -0
  19. package/dist/tools/builtins/computer-use.js +151 -0
  20. package/dist/tools/builtins/computer-use.js.map +1 -0
  21. package/dist/tools/builtins/index.d.ts +1 -0
  22. package/dist/tools/builtins/index.d.ts.map +1 -1
  23. package/dist/tools/builtins/index.js +1 -0
  24. package/dist/tools/builtins/index.js.map +1 -1
  25. package/dist/tools/builtins/ls.d.ts +1 -1
  26. package/dist/types/computer-use/index.d.ts +74 -0
  27. package/dist/types/computer-use/index.d.ts.map +1 -0
  28. package/dist/types/computer-use/index.js +35 -0
  29. package/dist/types/computer-use/index.js.map +1 -0
  30. package/dist/types/plugin/index.d.ts +14 -14
  31. package/dist/types/sandbox/index.d.ts +2 -2
  32. package/dist/types/verification/index.d.ts +18 -18
  33. package/package.json +19 -21
  34. package/src/index.ts +5 -0
  35. package/src/tools/builtins/__tests__/computer-use.test.ts +188 -0
  36. package/src/tools/builtins/computer-use.ts +165 -0
  37. package/src/tools/builtins/index.ts +1 -0
  38. package/src/types/computer-use/index.ts +126 -0
@@ -24,21 +24,21 @@ export declare const FilePartSchema: z.ZodObject<{
24
24
  name: z.ZodOptional<z.ZodString>;
25
25
  bytes: z.ZodOptional<z.ZodString>;
26
26
  }, "strict", z.ZodTypeAny, {
27
- mimeType: string;
28
27
  uri: string;
28
+ mimeType: string;
29
29
  name?: string | undefined;
30
30
  bytes?: string | undefined;
31
31
  }, {
32
- mimeType: string;
33
32
  uri: string;
33
+ mimeType: string;
34
34
  name?: string | undefined;
35
35
  bytes?: string | undefined;
36
36
  }>;
37
37
  metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
38
38
  }, "strict", z.ZodTypeAny, {
39
39
  file: {
40
- mimeType: string;
41
40
  uri: string;
41
+ mimeType: string;
42
42
  name?: string | undefined;
43
43
  bytes?: string | undefined;
44
44
  };
@@ -46,8 +46,8 @@ export declare const FilePartSchema: z.ZodObject<{
46
46
  metadata?: Record<string, unknown> | undefined;
47
47
  }, {
48
48
  file: {
49
- mimeType: string;
50
49
  uri: string;
50
+ mimeType: string;
51
51
  name?: string | undefined;
52
52
  bytes?: string | undefined;
53
53
  };
@@ -62,13 +62,13 @@ export declare const DataPartSchema: z.ZodObject<{
62
62
  }, "strict", z.ZodTypeAny, {
63
63
  data: Record<string, unknown>;
64
64
  kind: "data";
65
- mimeType?: string | undefined;
66
65
  metadata?: Record<string, unknown> | undefined;
66
+ mimeType?: string | undefined;
67
67
  }, {
68
68
  data: Record<string, unknown>;
69
69
  kind: "data";
70
- mimeType?: string | undefined;
71
70
  metadata?: Record<string, unknown> | undefined;
71
+ mimeType?: string | undefined;
72
72
  }>;
73
73
  export declare const A2APartSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
74
74
  kind: z.ZodLiteral<"text">;
@@ -90,21 +90,21 @@ export declare const A2APartSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject
90
90
  name: z.ZodOptional<z.ZodString>;
91
91
  bytes: z.ZodOptional<z.ZodString>;
92
92
  }, "strict", z.ZodTypeAny, {
93
- mimeType: string;
94
93
  uri: string;
94
+ mimeType: string;
95
95
  name?: string | undefined;
96
96
  bytes?: string | undefined;
97
97
  }, {
98
- mimeType: string;
99
98
  uri: string;
99
+ mimeType: string;
100
100
  name?: string | undefined;
101
101
  bytes?: string | undefined;
102
102
  }>;
103
103
  metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
104
104
  }, "strict", z.ZodTypeAny, {
105
105
  file: {
106
- mimeType: string;
107
106
  uri: string;
107
+ mimeType: string;
108
108
  name?: string | undefined;
109
109
  bytes?: string | undefined;
110
110
  };
@@ -112,8 +112,8 @@ export declare const A2APartSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject
112
112
  metadata?: Record<string, unknown> | undefined;
113
113
  }, {
114
114
  file: {
115
- mimeType: string;
116
115
  uri: string;
116
+ mimeType: string;
117
117
  name?: string | undefined;
118
118
  bytes?: string | undefined;
119
119
  };
@@ -127,13 +127,13 @@ export declare const A2APartSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject
127
127
  }, "strict", z.ZodTypeAny, {
128
128
  data: Record<string, unknown>;
129
129
  kind: "data";
130
- mimeType?: string | undefined;
131
130
  metadata?: Record<string, unknown> | undefined;
131
+ mimeType?: string | undefined;
132
132
  }, {
133
133
  data: Record<string, unknown>;
134
134
  kind: "data";
135
- mimeType?: string | undefined;
136
135
  metadata?: Record<string, unknown> | undefined;
136
+ mimeType?: string | undefined;
137
137
  }>]>;
138
138
  export declare const A2AMessageSchema: z.ZodObject<{
139
139
  role: z.ZodEnum<["user", "agent"]>;
@@ -157,21 +157,21 @@ export declare const A2AMessageSchema: z.ZodObject<{
157
157
  name: z.ZodOptional<z.ZodString>;
158
158
  bytes: z.ZodOptional<z.ZodString>;
159
159
  }, "strict", z.ZodTypeAny, {
160
- mimeType: string;
161
160
  uri: string;
161
+ mimeType: string;
162
162
  name?: string | undefined;
163
163
  bytes?: string | undefined;
164
164
  }, {
165
- mimeType: string;
166
165
  uri: string;
166
+ mimeType: string;
167
167
  name?: string | undefined;
168
168
  bytes?: string | undefined;
169
169
  }>;
170
170
  metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
171
171
  }, "strict", z.ZodTypeAny, {
172
172
  file: {
173
- mimeType: string;
174
173
  uri: string;
174
+ mimeType: string;
175
175
  name?: string | undefined;
176
176
  bytes?: string | undefined;
177
177
  };
@@ -179,8 +179,8 @@ export declare const A2AMessageSchema: z.ZodObject<{
179
179
  metadata?: Record<string, unknown> | undefined;
180
180
  }, {
181
181
  file: {
182
- mimeType: string;
183
182
  uri: string;
183
+ mimeType: string;
184
184
  name?: string | undefined;
185
185
  bytes?: string | undefined;
186
186
  };
@@ -194,13 +194,13 @@ export declare const A2AMessageSchema: z.ZodObject<{
194
194
  }, "strict", z.ZodTypeAny, {
195
195
  data: Record<string, unknown>;
196
196
  kind: "data";
197
- mimeType?: string | undefined;
198
197
  metadata?: Record<string, unknown> | undefined;
198
+ mimeType?: string | undefined;
199
199
  }, {
200
200
  data: Record<string, unknown>;
201
201
  kind: "data";
202
- mimeType?: string | undefined;
203
202
  metadata?: Record<string, unknown> | undefined;
203
+ mimeType?: string | undefined;
204
204
  }>]>, "many">;
205
205
  metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
206
206
  }, "strict", z.ZodTypeAny, {
@@ -211,8 +211,8 @@ export declare const A2AMessageSchema: z.ZodObject<{
211
211
  metadata?: Record<string, unknown> | undefined;
212
212
  } | {
213
213
  file: {
214
- mimeType: string;
215
214
  uri: string;
215
+ mimeType: string;
216
216
  name?: string | undefined;
217
217
  bytes?: string | undefined;
218
218
  };
@@ -221,8 +221,8 @@ export declare const A2AMessageSchema: z.ZodObject<{
221
221
  } | {
222
222
  data: Record<string, unknown>;
223
223
  kind: "data";
224
- mimeType?: string | undefined;
225
224
  metadata?: Record<string, unknown> | undefined;
225
+ mimeType?: string | undefined;
226
226
  })[];
227
227
  metadata?: Record<string, unknown> | undefined;
228
228
  }, {
@@ -233,8 +233,8 @@ export declare const A2AMessageSchema: z.ZodObject<{
233
233
  metadata?: Record<string, unknown> | undefined;
234
234
  } | {
235
235
  file: {
236
- mimeType: string;
237
236
  uri: string;
237
+ mimeType: string;
238
238
  name?: string | undefined;
239
239
  bytes?: string | undefined;
240
240
  };
@@ -243,8 +243,8 @@ export declare const A2AMessageSchema: z.ZodObject<{
243
243
  } | {
244
244
  data: Record<string, unknown>;
245
245
  kind: "data";
246
- mimeType?: string | undefined;
247
246
  metadata?: Record<string, unknown> | undefined;
247
+ mimeType?: string | undefined;
248
248
  })[];
249
249
  metadata?: Record<string, unknown> | undefined;
250
250
  }>;
@@ -272,21 +272,21 @@ export declare const A2ATaskStatusSchema: z.ZodObject<{
272
272
  name: z.ZodOptional<z.ZodString>;
273
273
  bytes: z.ZodOptional<z.ZodString>;
274
274
  }, "strict", z.ZodTypeAny, {
275
- mimeType: string;
276
275
  uri: string;
276
+ mimeType: string;
277
277
  name?: string | undefined;
278
278
  bytes?: string | undefined;
279
279
  }, {
280
- mimeType: string;
281
280
  uri: string;
281
+ mimeType: string;
282
282
  name?: string | undefined;
283
283
  bytes?: string | undefined;
284
284
  }>;
285
285
  metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
286
286
  }, "strict", z.ZodTypeAny, {
287
287
  file: {
288
- mimeType: string;
289
288
  uri: string;
289
+ mimeType: string;
290
290
  name?: string | undefined;
291
291
  bytes?: string | undefined;
292
292
  };
@@ -294,8 +294,8 @@ export declare const A2ATaskStatusSchema: z.ZodObject<{
294
294
  metadata?: Record<string, unknown> | undefined;
295
295
  }, {
296
296
  file: {
297
- mimeType: string;
298
297
  uri: string;
298
+ mimeType: string;
299
299
  name?: string | undefined;
300
300
  bytes?: string | undefined;
301
301
  };
@@ -309,13 +309,13 @@ export declare const A2ATaskStatusSchema: z.ZodObject<{
309
309
  }, "strict", z.ZodTypeAny, {
310
310
  data: Record<string, unknown>;
311
311
  kind: "data";
312
- mimeType?: string | undefined;
313
312
  metadata?: Record<string, unknown> | undefined;
313
+ mimeType?: string | undefined;
314
314
  }, {
315
315
  data: Record<string, unknown>;
316
316
  kind: "data";
317
- mimeType?: string | undefined;
318
317
  metadata?: Record<string, unknown> | undefined;
318
+ mimeType?: string | undefined;
319
319
  }>]>, "many">;
320
320
  metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
321
321
  }, "strict", z.ZodTypeAny, {
@@ -326,8 +326,8 @@ export declare const A2ATaskStatusSchema: z.ZodObject<{
326
326
  metadata?: Record<string, unknown> | undefined;
327
327
  } | {
328
328
  file: {
329
- mimeType: string;
330
329
  uri: string;
330
+ mimeType: string;
331
331
  name?: string | undefined;
332
332
  bytes?: string | undefined;
333
333
  };
@@ -336,8 +336,8 @@ export declare const A2ATaskStatusSchema: z.ZodObject<{
336
336
  } | {
337
337
  data: Record<string, unknown>;
338
338
  kind: "data";
339
- mimeType?: string | undefined;
340
339
  metadata?: Record<string, unknown> | undefined;
340
+ mimeType?: string | undefined;
341
341
  })[];
342
342
  metadata?: Record<string, unknown> | undefined;
343
343
  }, {
@@ -348,8 +348,8 @@ export declare const A2ATaskStatusSchema: z.ZodObject<{
348
348
  metadata?: Record<string, unknown> | undefined;
349
349
  } | {
350
350
  file: {
351
- mimeType: string;
352
351
  uri: string;
352
+ mimeType: string;
353
353
  name?: string | undefined;
354
354
  bytes?: string | undefined;
355
355
  };
@@ -358,14 +358,14 @@ export declare const A2ATaskStatusSchema: z.ZodObject<{
358
358
  } | {
359
359
  data: Record<string, unknown>;
360
360
  kind: "data";
361
- mimeType?: string | undefined;
362
361
  metadata?: Record<string, unknown> | undefined;
362
+ mimeType?: string | undefined;
363
363
  })[];
364
364
  metadata?: Record<string, unknown> | undefined;
365
365
  }>>;
366
366
  timestamp: z.ZodOptional<z.ZodString>;
367
367
  }, "strict", z.ZodTypeAny, {
368
- state: "pending" | "running" | "completed" | "failed" | "canceled" | "rejected" | "input-required";
368
+ state: "pending" | "running" | "completed" | "failed" | "rejected" | "canceled" | "input-required";
369
369
  message?: {
370
370
  role: "user" | "agent";
371
371
  parts: ({
@@ -374,8 +374,8 @@ export declare const A2ATaskStatusSchema: z.ZodObject<{
374
374
  metadata?: Record<string, unknown> | undefined;
375
375
  } | {
376
376
  file: {
377
- mimeType: string;
378
377
  uri: string;
378
+ mimeType: string;
379
379
  name?: string | undefined;
380
380
  bytes?: string | undefined;
381
381
  };
@@ -384,14 +384,14 @@ export declare const A2ATaskStatusSchema: z.ZodObject<{
384
384
  } | {
385
385
  data: Record<string, unknown>;
386
386
  kind: "data";
387
- mimeType?: string | undefined;
388
387
  metadata?: Record<string, unknown> | undefined;
388
+ mimeType?: string | undefined;
389
389
  })[];
390
390
  metadata?: Record<string, unknown> | undefined;
391
391
  } | undefined;
392
392
  timestamp?: string | undefined;
393
393
  }, {
394
- state: "pending" | "running" | "completed" | "failed" | "canceled" | "rejected" | "input-required";
394
+ state: "pending" | "running" | "completed" | "failed" | "rejected" | "canceled" | "input-required";
395
395
  message?: {
396
396
  role: "user" | "agent";
397
397
  parts: ({
@@ -400,8 +400,8 @@ export declare const A2ATaskStatusSchema: z.ZodObject<{
400
400
  metadata?: Record<string, unknown> | undefined;
401
401
  } | {
402
402
  file: {
403
- mimeType: string;
404
403
  uri: string;
404
+ mimeType: string;
405
405
  name?: string | undefined;
406
406
  bytes?: string | undefined;
407
407
  };
@@ -410,8 +410,8 @@ export declare const A2ATaskStatusSchema: z.ZodObject<{
410
410
  } | {
411
411
  data: Record<string, unknown>;
412
412
  kind: "data";
413
- mimeType?: string | undefined;
414
413
  metadata?: Record<string, unknown> | undefined;
414
+ mimeType?: string | undefined;
415
415
  })[];
416
416
  metadata?: Record<string, unknown> | undefined;
417
417
  } | undefined;
@@ -441,21 +441,21 @@ export declare const A2AArtifactSchema: z.ZodObject<{
441
441
  name: z.ZodOptional<z.ZodString>;
442
442
  bytes: z.ZodOptional<z.ZodString>;
443
443
  }, "strict", z.ZodTypeAny, {
444
- mimeType: string;
445
444
  uri: string;
445
+ mimeType: string;
446
446
  name?: string | undefined;
447
447
  bytes?: string | undefined;
448
448
  }, {
449
- mimeType: string;
450
449
  uri: string;
450
+ mimeType: string;
451
451
  name?: string | undefined;
452
452
  bytes?: string | undefined;
453
453
  }>;
454
454
  metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
455
455
  }, "strict", z.ZodTypeAny, {
456
456
  file: {
457
- mimeType: string;
458
457
  uri: string;
458
+ mimeType: string;
459
459
  name?: string | undefined;
460
460
  bytes?: string | undefined;
461
461
  };
@@ -463,8 +463,8 @@ export declare const A2AArtifactSchema: z.ZodObject<{
463
463
  metadata?: Record<string, unknown> | undefined;
464
464
  }, {
465
465
  file: {
466
- mimeType: string;
467
466
  uri: string;
467
+ mimeType: string;
468
468
  name?: string | undefined;
469
469
  bytes?: string | undefined;
470
470
  };
@@ -478,13 +478,13 @@ export declare const A2AArtifactSchema: z.ZodObject<{
478
478
  }, "strict", z.ZodTypeAny, {
479
479
  data: Record<string, unknown>;
480
480
  kind: "data";
481
- mimeType?: string | undefined;
482
481
  metadata?: Record<string, unknown> | undefined;
482
+ mimeType?: string | undefined;
483
483
  }, {
484
484
  data: Record<string, unknown>;
485
485
  kind: "data";
486
- mimeType?: string | undefined;
487
486
  metadata?: Record<string, unknown> | undefined;
487
+ mimeType?: string | undefined;
488
488
  }>]>, "many">;
489
489
  metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
490
490
  }, "strict", z.ZodTypeAny, {
@@ -494,8 +494,8 @@ export declare const A2AArtifactSchema: z.ZodObject<{
494
494
  metadata?: Record<string, unknown> | undefined;
495
495
  } | {
496
496
  file: {
497
- mimeType: string;
498
497
  uri: string;
498
+ mimeType: string;
499
499
  name?: string | undefined;
500
500
  bytes?: string | undefined;
501
501
  };
@@ -504,13 +504,13 @@ export declare const A2AArtifactSchema: z.ZodObject<{
504
504
  } | {
505
505
  data: Record<string, unknown>;
506
506
  kind: "data";
507
- mimeType?: string | undefined;
508
507
  metadata?: Record<string, unknown> | undefined;
508
+ mimeType?: string | undefined;
509
509
  })[];
510
510
  artifactId: string;
511
+ metadata?: Record<string, unknown> | undefined;
511
512
  name?: string | undefined;
512
513
  description?: string | undefined;
513
- metadata?: Record<string, unknown> | undefined;
514
514
  }, {
515
515
  parts: ({
516
516
  text: string;
@@ -518,8 +518,8 @@ export declare const A2AArtifactSchema: z.ZodObject<{
518
518
  metadata?: Record<string, unknown> | undefined;
519
519
  } | {
520
520
  file: {
521
- mimeType: string;
522
521
  uri: string;
522
+ mimeType: string;
523
523
  name?: string | undefined;
524
524
  bytes?: string | undefined;
525
525
  };
@@ -528,13 +528,13 @@ export declare const A2AArtifactSchema: z.ZodObject<{
528
528
  } | {
529
529
  data: Record<string, unknown>;
530
530
  kind: "data";
531
- mimeType?: string | undefined;
532
531
  metadata?: Record<string, unknown> | undefined;
532
+ mimeType?: string | undefined;
533
533
  })[];
534
534
  artifactId: string;
535
+ metadata?: Record<string, unknown> | undefined;
535
536
  name?: string | undefined;
536
537
  description?: string | undefined;
537
- metadata?: Record<string, unknown> | undefined;
538
538
  }>;
539
539
  export declare const A2AMessageSendSchema: z.ZodObject<{
540
540
  message: z.ZodObject<{
@@ -559,21 +559,21 @@ export declare const A2AMessageSendSchema: z.ZodObject<{
559
559
  name: z.ZodOptional<z.ZodString>;
560
560
  bytes: z.ZodOptional<z.ZodString>;
561
561
  }, "strict", z.ZodTypeAny, {
562
- mimeType: string;
563
562
  uri: string;
563
+ mimeType: string;
564
564
  name?: string | undefined;
565
565
  bytes?: string | undefined;
566
566
  }, {
567
- mimeType: string;
568
567
  uri: string;
568
+ mimeType: string;
569
569
  name?: string | undefined;
570
570
  bytes?: string | undefined;
571
571
  }>;
572
572
  metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
573
573
  }, "strict", z.ZodTypeAny, {
574
574
  file: {
575
- mimeType: string;
576
575
  uri: string;
576
+ mimeType: string;
577
577
  name?: string | undefined;
578
578
  bytes?: string | undefined;
579
579
  };
@@ -581,8 +581,8 @@ export declare const A2AMessageSendSchema: z.ZodObject<{
581
581
  metadata?: Record<string, unknown> | undefined;
582
582
  }, {
583
583
  file: {
584
- mimeType: string;
585
584
  uri: string;
585
+ mimeType: string;
586
586
  name?: string | undefined;
587
587
  bytes?: string | undefined;
588
588
  };
@@ -596,13 +596,13 @@ export declare const A2AMessageSendSchema: z.ZodObject<{
596
596
  }, "strict", z.ZodTypeAny, {
597
597
  data: Record<string, unknown>;
598
598
  kind: "data";
599
- mimeType?: string | undefined;
600
599
  metadata?: Record<string, unknown> | undefined;
600
+ mimeType?: string | undefined;
601
601
  }, {
602
602
  data: Record<string, unknown>;
603
603
  kind: "data";
604
- mimeType?: string | undefined;
605
604
  metadata?: Record<string, unknown> | undefined;
605
+ mimeType?: string | undefined;
606
606
  }>]>, "many">;
607
607
  metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
608
608
  }, "strict", z.ZodTypeAny, {
@@ -613,8 +613,8 @@ export declare const A2AMessageSendSchema: z.ZodObject<{
613
613
  metadata?: Record<string, unknown> | undefined;
614
614
  } | {
615
615
  file: {
616
- mimeType: string;
617
616
  uri: string;
617
+ mimeType: string;
618
618
  name?: string | undefined;
619
619
  bytes?: string | undefined;
620
620
  };
@@ -623,8 +623,8 @@ export declare const A2AMessageSendSchema: z.ZodObject<{
623
623
  } | {
624
624
  data: Record<string, unknown>;
625
625
  kind: "data";
626
- mimeType?: string | undefined;
627
626
  metadata?: Record<string, unknown> | undefined;
627
+ mimeType?: string | undefined;
628
628
  })[];
629
629
  metadata?: Record<string, unknown> | undefined;
630
630
  }, {
@@ -635,8 +635,8 @@ export declare const A2AMessageSendSchema: z.ZodObject<{
635
635
  metadata?: Record<string, unknown> | undefined;
636
636
  } | {
637
637
  file: {
638
- mimeType: string;
639
638
  uri: string;
639
+ mimeType: string;
640
640
  name?: string | undefined;
641
641
  bytes?: string | undefined;
642
642
  };
@@ -645,8 +645,8 @@ export declare const A2AMessageSendSchema: z.ZodObject<{
645
645
  } | {
646
646
  data: Record<string, unknown>;
647
647
  kind: "data";
648
- mimeType?: string | undefined;
649
648
  metadata?: Record<string, unknown> | undefined;
649
+ mimeType?: string | undefined;
650
650
  })[];
651
651
  metadata?: Record<string, unknown> | undefined;
652
652
  }>;
@@ -662,8 +662,8 @@ export declare const A2AMessageSendSchema: z.ZodObject<{
662
662
  metadata?: Record<string, unknown> | undefined;
663
663
  } | {
664
664
  file: {
665
- mimeType: string;
666
665
  uri: string;
666
+ mimeType: string;
667
667
  name?: string | undefined;
668
668
  bytes?: string | undefined;
669
669
  };
@@ -672,13 +672,13 @@ export declare const A2AMessageSendSchema: z.ZodObject<{
672
672
  } | {
673
673
  data: Record<string, unknown>;
674
674
  kind: "data";
675
- mimeType?: string | undefined;
676
675
  metadata?: Record<string, unknown> | undefined;
676
+ mimeType?: string | undefined;
677
677
  })[];
678
678
  metadata?: Record<string, unknown> | undefined;
679
679
  };
680
- id?: string | undefined;
681
680
  metadata?: Record<string, unknown> | undefined;
681
+ id?: string | undefined;
682
682
  contextId?: string | undefined;
683
683
  }, {
684
684
  message: {
@@ -689,8 +689,8 @@ export declare const A2AMessageSendSchema: z.ZodObject<{
689
689
  metadata?: Record<string, unknown> | undefined;
690
690
  } | {
691
691
  file: {
692
- mimeType: string;
693
692
  uri: string;
693
+ mimeType: string;
694
694
  name?: string | undefined;
695
695
  bytes?: string | undefined;
696
696
  };
@@ -699,13 +699,13 @@ export declare const A2AMessageSendSchema: z.ZodObject<{
699
699
  } | {
700
700
  data: Record<string, unknown>;
701
701
  kind: "data";
702
- mimeType?: string | undefined;
703
702
  metadata?: Record<string, unknown> | undefined;
703
+ mimeType?: string | undefined;
704
704
  })[];
705
705
  metadata?: Record<string, unknown> | undefined;
706
706
  };
707
- id?: string | undefined;
708
707
  metadata?: Record<string, unknown> | undefined;
708
+ id?: string | undefined;
709
709
  contextId?: string | undefined;
710
710
  }>;
711
711
  export declare const A2ATaskGetSchema: z.ZodObject<{
@@ -725,13 +725,13 @@ export declare const A2ATaskListSchema: z.ZodObject<{
725
725
  cursor: z.ZodOptional<z.ZodString>;
726
726
  }, "strict", z.ZodTypeAny, {
727
727
  limit: number;
728
- state?: "pending" | "running" | "completed" | "failed" | "canceled" | "rejected" | "input-required" | undefined;
728
+ state?: "pending" | "running" | "completed" | "failed" | "rejected" | "canceled" | "input-required" | undefined;
729
729
  contextId?: string | undefined;
730
730
  cursor?: string | undefined;
731
731
  }, {
732
- state?: "pending" | "running" | "completed" | "failed" | "canceled" | "rejected" | "input-required" | undefined;
733
- contextId?: string | undefined;
734
732
  limit?: number | undefined;
733
+ state?: "pending" | "running" | "completed" | "failed" | "rejected" | "canceled" | "input-required" | undefined;
734
+ contextId?: string | undefined;
735
735
  cursor?: string | undefined;
736
736
  }>;
737
737
  export declare const A2ATaskCancelSchema: z.ZodObject<{
@@ -768,21 +768,21 @@ export declare const A2ATaskSchema: z.ZodObject<{
768
768
  name: z.ZodOptional<z.ZodString>;
769
769
  bytes: z.ZodOptional<z.ZodString>;
770
770
  }, "strict", z.ZodTypeAny, {
771
- mimeType: string;
772
771
  uri: string;
772
+ mimeType: string;
773
773
  name?: string | undefined;
774
774
  bytes?: string | undefined;
775
775
  }, {
776
- mimeType: string;
777
776
  uri: string;
777
+ mimeType: string;
778
778
  name?: string | undefined;
779
779
  bytes?: string | undefined;
780
780
  }>;
781
781
  metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
782
782
  }, "strict", z.ZodTypeAny, {
783
783
  file: {
784
- mimeType: string;
785
784
  uri: string;
785
+ mimeType: string;
786
786
  name?: string | undefined;
787
787
  bytes?: string | undefined;
788
788
  };
@@ -790,8 +790,8 @@ export declare const A2ATaskSchema: z.ZodObject<{
790
790
  metadata?: Record<string, unknown> | undefined;
791
791
  }, {
792
792
  file: {
793
- mimeType: string;
794
793
  uri: string;
794
+ mimeType: string;
795
795
  name?: string | undefined;
796
796
  bytes?: string | undefined;
797
797
  };
@@ -805,13 +805,13 @@ export declare const A2ATaskSchema: z.ZodObject<{
805
805
  }, "strict", z.ZodTypeAny, {
806
806
  data: Record<string, unknown>;
807
807
  kind: "data";
808
- mimeType?: string | undefined;
809
808
  metadata?: Record<string, unknown> | undefined;
809
+ mimeType?: string | undefined;
810
810
  }, {
811
811
  data: Record<string, unknown>;
812
812
  kind: "data";
813
- mimeType?: string | undefined;
814
813
  metadata?: Record<string, unknown> | undefined;
814
+ mimeType?: string | undefined;
815
815
  }>]>, "many">;
816
816
  metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
817
817
  }, "strict", z.ZodTypeAny, {
@@ -822,8 +822,8 @@ export declare const A2ATaskSchema: z.ZodObject<{
822
822
  metadata?: Record<string, unknown> | undefined;
823
823
  } | {
824
824
  file: {
825
- mimeType: string;
826
825
  uri: string;
826
+ mimeType: string;
827
827
  name?: string | undefined;
828
828
  bytes?: string | undefined;
829
829
  };
@@ -832,8 +832,8 @@ export declare const A2ATaskSchema: z.ZodObject<{
832
832
  } | {
833
833
  data: Record<string, unknown>;
834
834
  kind: "data";
835
- mimeType?: string | undefined;
836
835
  metadata?: Record<string, unknown> | undefined;
836
+ mimeType?: string | undefined;
837
837
  })[];
838
838
  metadata?: Record<string, unknown> | undefined;
839
839
  }, {
@@ -844,8 +844,8 @@ export declare const A2ATaskSchema: z.ZodObject<{
844
844
  metadata?: Record<string, unknown> | undefined;
845
845
  } | {
846
846
  file: {
847
- mimeType: string;
848
847
  uri: string;
848
+ mimeType: string;
849
849
  name?: string | undefined;
850
850
  bytes?: string | undefined;
851
851
  };
@@ -854,14 +854,14 @@ export declare const A2ATaskSchema: z.ZodObject<{
854
854
  } | {
855
855
  data: Record<string, unknown>;
856
856
  kind: "data";
857
- mimeType?: string | undefined;
858
857
  metadata?: Record<string, unknown> | undefined;
858
+ mimeType?: string | undefined;
859
859
  })[];
860
860
  metadata?: Record<string, unknown> | undefined;
861
861
  }>>;
862
862
  timestamp: z.ZodOptional<z.ZodString>;
863
863
  }, "strict", z.ZodTypeAny, {
864
- state: "pending" | "running" | "completed" | "failed" | "canceled" | "rejected" | "input-required";
864
+ state: "pending" | "running" | "completed" | "failed" | "rejected" | "canceled" | "input-required";
865
865
  message?: {
866
866
  role: "user" | "agent";
867
867
  parts: ({
@@ -870,8 +870,8 @@ export declare const A2ATaskSchema: z.ZodObject<{
870
870
  metadata?: Record<string, unknown> | undefined;
871
871
  } | {
872
872
  file: {
873
- mimeType: string;
874
873
  uri: string;
874
+ mimeType: string;
875
875
  name?: string | undefined;
876
876
  bytes?: string | undefined;
877
877
  };
@@ -880,14 +880,14 @@ export declare const A2ATaskSchema: z.ZodObject<{
880
880
  } | {
881
881
  data: Record<string, unknown>;
882
882
  kind: "data";
883
- mimeType?: string | undefined;
884
883
  metadata?: Record<string, unknown> | undefined;
884
+ mimeType?: string | undefined;
885
885
  })[];
886
886
  metadata?: Record<string, unknown> | undefined;
887
887
  } | undefined;
888
888
  timestamp?: string | undefined;
889
889
  }, {
890
- state: "pending" | "running" | "completed" | "failed" | "canceled" | "rejected" | "input-required";
890
+ state: "pending" | "running" | "completed" | "failed" | "rejected" | "canceled" | "input-required";
891
891
  message?: {
892
892
  role: "user" | "agent";
893
893
  parts: ({
@@ -896,8 +896,8 @@ export declare const A2ATaskSchema: z.ZodObject<{
896
896
  metadata?: Record<string, unknown> | undefined;
897
897
  } | {
898
898
  file: {
899
- mimeType: string;
900
899
  uri: string;
900
+ mimeType: string;
901
901
  name?: string | undefined;
902
902
  bytes?: string | undefined;
903
903
  };
@@ -906,8 +906,8 @@ export declare const A2ATaskSchema: z.ZodObject<{
906
906
  } | {
907
907
  data: Record<string, unknown>;
908
908
  kind: "data";
909
- mimeType?: string | undefined;
910
909
  metadata?: Record<string, unknown> | undefined;
910
+ mimeType?: string | undefined;
911
911
  })[];
912
912
  metadata?: Record<string, unknown> | undefined;
913
913
  } | undefined;
@@ -935,21 +935,21 @@ export declare const A2ATaskSchema: z.ZodObject<{
935
935
  name: z.ZodOptional<z.ZodString>;
936
936
  bytes: z.ZodOptional<z.ZodString>;
937
937
  }, "strict", z.ZodTypeAny, {
938
- mimeType: string;
939
938
  uri: string;
939
+ mimeType: string;
940
940
  name?: string | undefined;
941
941
  bytes?: string | undefined;
942
942
  }, {
943
- mimeType: string;
944
943
  uri: string;
944
+ mimeType: string;
945
945
  name?: string | undefined;
946
946
  bytes?: string | undefined;
947
947
  }>;
948
948
  metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
949
949
  }, "strict", z.ZodTypeAny, {
950
950
  file: {
951
- mimeType: string;
952
951
  uri: string;
952
+ mimeType: string;
953
953
  name?: string | undefined;
954
954
  bytes?: string | undefined;
955
955
  };
@@ -957,8 +957,8 @@ export declare const A2ATaskSchema: z.ZodObject<{
957
957
  metadata?: Record<string, unknown> | undefined;
958
958
  }, {
959
959
  file: {
960
- mimeType: string;
961
960
  uri: string;
961
+ mimeType: string;
962
962
  name?: string | undefined;
963
963
  bytes?: string | undefined;
964
964
  };
@@ -972,13 +972,13 @@ export declare const A2ATaskSchema: z.ZodObject<{
972
972
  }, "strict", z.ZodTypeAny, {
973
973
  data: Record<string, unknown>;
974
974
  kind: "data";
975
- mimeType?: string | undefined;
976
975
  metadata?: Record<string, unknown> | undefined;
976
+ mimeType?: string | undefined;
977
977
  }, {
978
978
  data: Record<string, unknown>;
979
979
  kind: "data";
980
- mimeType?: string | undefined;
981
980
  metadata?: Record<string, unknown> | undefined;
981
+ mimeType?: string | undefined;
982
982
  }>]>, "many">;
983
983
  metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
984
984
  }, "strict", z.ZodTypeAny, {
@@ -989,8 +989,8 @@ export declare const A2ATaskSchema: z.ZodObject<{
989
989
  metadata?: Record<string, unknown> | undefined;
990
990
  } | {
991
991
  file: {
992
- mimeType: string;
993
992
  uri: string;
993
+ mimeType: string;
994
994
  name?: string | undefined;
995
995
  bytes?: string | undefined;
996
996
  };
@@ -999,8 +999,8 @@ export declare const A2ATaskSchema: z.ZodObject<{
999
999
  } | {
1000
1000
  data: Record<string, unknown>;
1001
1001
  kind: "data";
1002
- mimeType?: string | undefined;
1003
1002
  metadata?: Record<string, unknown> | undefined;
1003
+ mimeType?: string | undefined;
1004
1004
  })[];
1005
1005
  metadata?: Record<string, unknown> | undefined;
1006
1006
  }, {
@@ -1011,8 +1011,8 @@ export declare const A2ATaskSchema: z.ZodObject<{
1011
1011
  metadata?: Record<string, unknown> | undefined;
1012
1012
  } | {
1013
1013
  file: {
1014
- mimeType: string;
1015
1014
  uri: string;
1015
+ mimeType: string;
1016
1016
  name?: string | undefined;
1017
1017
  bytes?: string | undefined;
1018
1018
  };
@@ -1021,8 +1021,8 @@ export declare const A2ATaskSchema: z.ZodObject<{
1021
1021
  } | {
1022
1022
  data: Record<string, unknown>;
1023
1023
  kind: "data";
1024
- mimeType?: string | undefined;
1025
1024
  metadata?: Record<string, unknown> | undefined;
1025
+ mimeType?: string | undefined;
1026
1026
  })[];
1027
1027
  metadata?: Record<string, unknown> | undefined;
1028
1028
  }>, "many">>;
@@ -1050,21 +1050,21 @@ export declare const A2ATaskSchema: z.ZodObject<{
1050
1050
  name: z.ZodOptional<z.ZodString>;
1051
1051
  bytes: z.ZodOptional<z.ZodString>;
1052
1052
  }, "strict", z.ZodTypeAny, {
1053
- mimeType: string;
1054
1053
  uri: string;
1054
+ mimeType: string;
1055
1055
  name?: string | undefined;
1056
1056
  bytes?: string | undefined;
1057
1057
  }, {
1058
- mimeType: string;
1059
1058
  uri: string;
1059
+ mimeType: string;
1060
1060
  name?: string | undefined;
1061
1061
  bytes?: string | undefined;
1062
1062
  }>;
1063
1063
  metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1064
1064
  }, "strict", z.ZodTypeAny, {
1065
1065
  file: {
1066
- mimeType: string;
1067
1066
  uri: string;
1067
+ mimeType: string;
1068
1068
  name?: string | undefined;
1069
1069
  bytes?: string | undefined;
1070
1070
  };
@@ -1072,8 +1072,8 @@ export declare const A2ATaskSchema: z.ZodObject<{
1072
1072
  metadata?: Record<string, unknown> | undefined;
1073
1073
  }, {
1074
1074
  file: {
1075
- mimeType: string;
1076
1075
  uri: string;
1076
+ mimeType: string;
1077
1077
  name?: string | undefined;
1078
1078
  bytes?: string | undefined;
1079
1079
  };
@@ -1087,13 +1087,13 @@ export declare const A2ATaskSchema: z.ZodObject<{
1087
1087
  }, "strict", z.ZodTypeAny, {
1088
1088
  data: Record<string, unknown>;
1089
1089
  kind: "data";
1090
- mimeType?: string | undefined;
1091
1090
  metadata?: Record<string, unknown> | undefined;
1091
+ mimeType?: string | undefined;
1092
1092
  }, {
1093
1093
  data: Record<string, unknown>;
1094
1094
  kind: "data";
1095
- mimeType?: string | undefined;
1096
1095
  metadata?: Record<string, unknown> | undefined;
1096
+ mimeType?: string | undefined;
1097
1097
  }>]>, "many">;
1098
1098
  metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1099
1099
  }, "strict", z.ZodTypeAny, {
@@ -1103,8 +1103,8 @@ export declare const A2ATaskSchema: z.ZodObject<{
1103
1103
  metadata?: Record<string, unknown> | undefined;
1104
1104
  } | {
1105
1105
  file: {
1106
- mimeType: string;
1107
1106
  uri: string;
1107
+ mimeType: string;
1108
1108
  name?: string | undefined;
1109
1109
  bytes?: string | undefined;
1110
1110
  };
@@ -1113,13 +1113,13 @@ export declare const A2ATaskSchema: z.ZodObject<{
1113
1113
  } | {
1114
1114
  data: Record<string, unknown>;
1115
1115
  kind: "data";
1116
- mimeType?: string | undefined;
1117
1116
  metadata?: Record<string, unknown> | undefined;
1117
+ mimeType?: string | undefined;
1118
1118
  })[];
1119
1119
  artifactId: string;
1120
+ metadata?: Record<string, unknown> | undefined;
1120
1121
  name?: string | undefined;
1121
1122
  description?: string | undefined;
1122
- metadata?: Record<string, unknown> | undefined;
1123
1123
  }, {
1124
1124
  parts: ({
1125
1125
  text: string;
@@ -1127,8 +1127,8 @@ export declare const A2ATaskSchema: z.ZodObject<{
1127
1127
  metadata?: Record<string, unknown> | undefined;
1128
1128
  } | {
1129
1129
  file: {
1130
- mimeType: string;
1131
1130
  uri: string;
1131
+ mimeType: string;
1132
1132
  name?: string | undefined;
1133
1133
  bytes?: string | undefined;
1134
1134
  };
@@ -1137,19 +1137,18 @@ export declare const A2ATaskSchema: z.ZodObject<{
1137
1137
  } | {
1138
1138
  data: Record<string, unknown>;
1139
1139
  kind: "data";
1140
- mimeType?: string | undefined;
1141
1140
  metadata?: Record<string, unknown> | undefined;
1141
+ mimeType?: string | undefined;
1142
1142
  })[];
1143
1143
  artifactId: string;
1144
+ metadata?: Record<string, unknown> | undefined;
1144
1145
  name?: string | undefined;
1145
1146
  description?: string | undefined;
1146
- metadata?: Record<string, unknown> | undefined;
1147
1147
  }>, "many">>;
1148
1148
  metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1149
1149
  }, "strip", z.ZodTypeAny, {
1150
- id: string;
1151
1150
  status: {
1152
- state: "pending" | "running" | "completed" | "failed" | "canceled" | "rejected" | "input-required";
1151
+ state: "pending" | "running" | "completed" | "failed" | "rejected" | "canceled" | "input-required";
1153
1152
  message?: {
1154
1153
  role: "user" | "agent";
1155
1154
  parts: ({
@@ -1158,8 +1157,8 @@ export declare const A2ATaskSchema: z.ZodObject<{
1158
1157
  metadata?: Record<string, unknown> | undefined;
1159
1158
  } | {
1160
1159
  file: {
1161
- mimeType: string;
1162
1160
  uri: string;
1161
+ mimeType: string;
1163
1162
  name?: string | undefined;
1164
1163
  bytes?: string | undefined;
1165
1164
  };
@@ -1168,13 +1167,14 @@ export declare const A2ATaskSchema: z.ZodObject<{
1168
1167
  } | {
1169
1168
  data: Record<string, unknown>;
1170
1169
  kind: "data";
1171
- mimeType?: string | undefined;
1172
1170
  metadata?: Record<string, unknown> | undefined;
1171
+ mimeType?: string | undefined;
1173
1172
  })[];
1174
1173
  metadata?: Record<string, unknown> | undefined;
1175
1174
  } | undefined;
1176
1175
  timestamp?: string | undefined;
1177
1176
  };
1177
+ id: string;
1178
1178
  metadata?: Record<string, unknown> | undefined;
1179
1179
  contextId?: string | undefined;
1180
1180
  history?: {
@@ -1185,8 +1185,8 @@ export declare const A2ATaskSchema: z.ZodObject<{
1185
1185
  metadata?: Record<string, unknown> | undefined;
1186
1186
  } | {
1187
1187
  file: {
1188
- mimeType: string;
1189
1188
  uri: string;
1189
+ mimeType: string;
1190
1190
  name?: string | undefined;
1191
1191
  bytes?: string | undefined;
1192
1192
  };
@@ -1195,8 +1195,8 @@ export declare const A2ATaskSchema: z.ZodObject<{
1195
1195
  } | {
1196
1196
  data: Record<string, unknown>;
1197
1197
  kind: "data";
1198
- mimeType?: string | undefined;
1199
1198
  metadata?: Record<string, unknown> | undefined;
1199
+ mimeType?: string | undefined;
1200
1200
  })[];
1201
1201
  metadata?: Record<string, unknown> | undefined;
1202
1202
  }[] | undefined;
@@ -1207,8 +1207,8 @@ export declare const A2ATaskSchema: z.ZodObject<{
1207
1207
  metadata?: Record<string, unknown> | undefined;
1208
1208
  } | {
1209
1209
  file: {
1210
- mimeType: string;
1211
1210
  uri: string;
1211
+ mimeType: string;
1212
1212
  name?: string | undefined;
1213
1213
  bytes?: string | undefined;
1214
1214
  };
@@ -1217,18 +1217,17 @@ export declare const A2ATaskSchema: z.ZodObject<{
1217
1217
  } | {
1218
1218
  data: Record<string, unknown>;
1219
1219
  kind: "data";
1220
- mimeType?: string | undefined;
1221
1220
  metadata?: Record<string, unknown> | undefined;
1221
+ mimeType?: string | undefined;
1222
1222
  })[];
1223
1223
  artifactId: string;
1224
+ metadata?: Record<string, unknown> | undefined;
1224
1225
  name?: string | undefined;
1225
1226
  description?: string | undefined;
1226
- metadata?: Record<string, unknown> | undefined;
1227
1227
  }[] | undefined;
1228
1228
  }, {
1229
- id: string;
1230
1229
  status: {
1231
- state: "pending" | "running" | "completed" | "failed" | "canceled" | "rejected" | "input-required";
1230
+ state: "pending" | "running" | "completed" | "failed" | "rejected" | "canceled" | "input-required";
1232
1231
  message?: {
1233
1232
  role: "user" | "agent";
1234
1233
  parts: ({
@@ -1237,8 +1236,8 @@ export declare const A2ATaskSchema: z.ZodObject<{
1237
1236
  metadata?: Record<string, unknown> | undefined;
1238
1237
  } | {
1239
1238
  file: {
1240
- mimeType: string;
1241
1239
  uri: string;
1240
+ mimeType: string;
1242
1241
  name?: string | undefined;
1243
1242
  bytes?: string | undefined;
1244
1243
  };
@@ -1247,13 +1246,14 @@ export declare const A2ATaskSchema: z.ZodObject<{
1247
1246
  } | {
1248
1247
  data: Record<string, unknown>;
1249
1248
  kind: "data";
1250
- mimeType?: string | undefined;
1251
1249
  metadata?: Record<string, unknown> | undefined;
1250
+ mimeType?: string | undefined;
1252
1251
  })[];
1253
1252
  metadata?: Record<string, unknown> | undefined;
1254
1253
  } | undefined;
1255
1254
  timestamp?: string | undefined;
1256
1255
  };
1256
+ id: string;
1257
1257
  metadata?: Record<string, unknown> | undefined;
1258
1258
  contextId?: string | undefined;
1259
1259
  history?: {
@@ -1264,8 +1264,8 @@ export declare const A2ATaskSchema: z.ZodObject<{
1264
1264
  metadata?: Record<string, unknown> | undefined;
1265
1265
  } | {
1266
1266
  file: {
1267
- mimeType: string;
1268
1267
  uri: string;
1268
+ mimeType: string;
1269
1269
  name?: string | undefined;
1270
1270
  bytes?: string | undefined;
1271
1271
  };
@@ -1274,8 +1274,8 @@ export declare const A2ATaskSchema: z.ZodObject<{
1274
1274
  } | {
1275
1275
  data: Record<string, unknown>;
1276
1276
  kind: "data";
1277
- mimeType?: string | undefined;
1278
1277
  metadata?: Record<string, unknown> | undefined;
1278
+ mimeType?: string | undefined;
1279
1279
  })[];
1280
1280
  metadata?: Record<string, unknown> | undefined;
1281
1281
  }[] | undefined;
@@ -1286,8 +1286,8 @@ export declare const A2ATaskSchema: z.ZodObject<{
1286
1286
  metadata?: Record<string, unknown> | undefined;
1287
1287
  } | {
1288
1288
  file: {
1289
- mimeType: string;
1290
1289
  uri: string;
1290
+ mimeType: string;
1291
1291
  name?: string | undefined;
1292
1292
  bytes?: string | undefined;
1293
1293
  };
@@ -1296,13 +1296,13 @@ export declare const A2ATaskSchema: z.ZodObject<{
1296
1296
  } | {
1297
1297
  data: Record<string, unknown>;
1298
1298
  kind: "data";
1299
- mimeType?: string | undefined;
1300
1299
  metadata?: Record<string, unknown> | undefined;
1300
+ mimeType?: string | undefined;
1301
1301
  })[];
1302
1302
  artifactId: string;
1303
+ metadata?: Record<string, unknown> | undefined;
1303
1304
  name?: string | undefined;
1304
1305
  description?: string | undefined;
1305
- metadata?: Record<string, unknown> | undefined;
1306
1306
  }[] | undefined;
1307
1307
  }>;
1308
1308
  export declare const A2AErrorCodeSchema: z.ZodEnum<["TaskNotFound", "TaskNotCancelable", "ContentTypeNotSupported", "UnsupportedOperation", "PushNotificationNotSupported", "InvalidRequest", "InternalError", "Unauthorized"]>;