@hibanacloud/cli 0.3.17 → 0.3.18

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.
@@ -75,12 +75,12 @@ export declare const writeTextFileRequestSchema: z.ZodObject<{
75
75
  path: z.ZodString;
76
76
  sessionId: z.ZodString;
77
77
  }, "strip", z.ZodTypeAny, {
78
- content: string;
79
78
  path: string;
79
+ content: string;
80
80
  sessionId: string;
81
81
  }, {
82
- content: string;
83
82
  path: string;
83
+ content: string;
84
84
  sessionId: string;
85
85
  }>;
86
86
  export declare const readTextFileRequestSchema: z.ZodObject<{
@@ -199,12 +199,12 @@ export declare const planEntrySchema: z.ZodObject<{
199
199
  priority: z.ZodUnion<[z.ZodLiteral<"high">, z.ZodLiteral<"medium">, z.ZodLiteral<"low">]>;
200
200
  status: z.ZodUnion<[z.ZodLiteral<"pending">, z.ZodLiteral<"in_progress">, z.ZodLiteral<"completed">]>;
201
201
  }, "strip", z.ZodTypeAny, {
202
- content: string;
203
202
  status: "completed" | "pending" | "in_progress";
203
+ content: string;
204
204
  priority: "medium" | "high" | "low";
205
205
  }, {
206
- content: string;
207
206
  status: "completed" | "pending" | "in_progress";
207
+ content: string;
208
208
  priority: "medium" | "high" | "low";
209
209
  }>;
210
210
  export declare const permissionOptionSchema: z.ZodObject<{
@@ -321,12 +321,12 @@ export declare const promptCapabilitiesSchema: z.ZodObject<{
321
321
  embeddedContext: z.ZodOptional<z.ZodBoolean>;
322
322
  image: z.ZodOptional<z.ZodBoolean>;
323
323
  }, "strip", z.ZodTypeAny, {
324
- audio?: boolean | undefined;
325
324
  image?: boolean | undefined;
325
+ audio?: boolean | undefined;
326
326
  embeddedContext?: boolean | undefined;
327
327
  }, {
328
- audio?: boolean | undefined;
329
328
  image?: boolean | undefined;
329
+ audio?: boolean | undefined;
330
330
  embeddedContext?: boolean | undefined;
331
331
  }>;
332
332
  export declare const agentCapabilitiesSchema: z.ZodObject<{
@@ -336,26 +336,26 @@ export declare const agentCapabilitiesSchema: z.ZodObject<{
336
336
  embeddedContext: z.ZodOptional<z.ZodBoolean>;
337
337
  image: z.ZodOptional<z.ZodBoolean>;
338
338
  }, "strip", z.ZodTypeAny, {
339
- audio?: boolean | undefined;
340
339
  image?: boolean | undefined;
340
+ audio?: boolean | undefined;
341
341
  embeddedContext?: boolean | undefined;
342
342
  }, {
343
- audio?: boolean | undefined;
344
343
  image?: boolean | undefined;
344
+ audio?: boolean | undefined;
345
345
  embeddedContext?: boolean | undefined;
346
346
  }>>;
347
347
  }, "strip", z.ZodTypeAny, {
348
348
  loadSession?: boolean | undefined;
349
349
  promptCapabilities?: {
350
- audio?: boolean | undefined;
351
350
  image?: boolean | undefined;
351
+ audio?: boolean | undefined;
352
352
  embeddedContext?: boolean | undefined;
353
353
  } | undefined;
354
354
  }, {
355
355
  loadSession?: boolean | undefined;
356
356
  promptCapabilities?: {
357
- audio?: boolean | undefined;
358
357
  image?: boolean | undefined;
358
+ audio?: boolean | undefined;
359
359
  embeddedContext?: boolean | undefined;
360
360
  } | undefined;
361
361
  }>;
@@ -364,13 +364,13 @@ export declare const authMethodSchema: z.ZodObject<{
364
364
  id: z.ZodString;
365
365
  name: z.ZodString;
366
366
  }, "strip", z.ZodTypeAny, {
367
+ name: string;
367
368
  description: string | null;
368
369
  id: string;
369
- name: string;
370
370
  }, {
371
+ name: string;
371
372
  description: string | null;
372
373
  id: string;
373
- name: string;
374
374
  }>;
375
375
  export declare const clientResponseSchema: z.ZodUnion<[z.ZodNull, z.ZodObject<{
376
376
  content: z.ZodString;
@@ -565,26 +565,26 @@ export declare const initializeResponseSchema: z.ZodObject<{
565
565
  embeddedContext: z.ZodOptional<z.ZodBoolean>;
566
566
  image: z.ZodOptional<z.ZodBoolean>;
567
567
  }, "strip", z.ZodTypeAny, {
568
- audio?: boolean | undefined;
569
568
  image?: boolean | undefined;
569
+ audio?: boolean | undefined;
570
570
  embeddedContext?: boolean | undefined;
571
571
  }, {
572
- audio?: boolean | undefined;
573
572
  image?: boolean | undefined;
573
+ audio?: boolean | undefined;
574
574
  embeddedContext?: boolean | undefined;
575
575
  }>>;
576
576
  }, "strip", z.ZodTypeAny, {
577
577
  loadSession?: boolean | undefined;
578
578
  promptCapabilities?: {
579
- audio?: boolean | undefined;
580
579
  image?: boolean | undefined;
580
+ audio?: boolean | undefined;
581
581
  embeddedContext?: boolean | undefined;
582
582
  } | undefined;
583
583
  }, {
584
584
  loadSession?: boolean | undefined;
585
585
  promptCapabilities?: {
586
- audio?: boolean | undefined;
587
586
  image?: boolean | undefined;
587
+ audio?: boolean | undefined;
588
588
  embeddedContext?: boolean | undefined;
589
589
  } | undefined;
590
590
  }>;
@@ -593,43 +593,43 @@ export declare const initializeResponseSchema: z.ZodObject<{
593
593
  id: z.ZodString;
594
594
  name: z.ZodString;
595
595
  }, "strip", z.ZodTypeAny, {
596
+ name: string;
596
597
  description: string | null;
597
598
  id: string;
598
- name: string;
599
599
  }, {
600
+ name: string;
600
601
  description: string | null;
601
602
  id: string;
602
- name: string;
603
603
  }>, "many">;
604
604
  protocolVersion: z.ZodNumber;
605
605
  }, "strip", z.ZodTypeAny, {
606
606
  agentCapabilities: {
607
607
  loadSession?: boolean | undefined;
608
608
  promptCapabilities?: {
609
- audio?: boolean | undefined;
610
609
  image?: boolean | undefined;
610
+ audio?: boolean | undefined;
611
611
  embeddedContext?: boolean | undefined;
612
612
  } | undefined;
613
613
  };
614
614
  authMethods: {
615
+ name: string;
615
616
  description: string | null;
616
617
  id: string;
617
- name: string;
618
618
  }[];
619
619
  protocolVersion: number;
620
620
  }, {
621
621
  agentCapabilities: {
622
622
  loadSession?: boolean | undefined;
623
623
  promptCapabilities?: {
624
- audio?: boolean | undefined;
625
624
  image?: boolean | undefined;
625
+ audio?: boolean | undefined;
626
626
  embeddedContext?: boolean | undefined;
627
627
  } | undefined;
628
628
  };
629
629
  authMethods: {
630
+ name: string;
630
631
  description: string | null;
631
632
  id: string;
632
- name: string;
633
633
  }[];
634
634
  protocolVersion: number;
635
635
  }>;
@@ -650,16 +650,16 @@ export declare const contentBlockSchema: z.ZodUnion<[z.ZodObject<{
650
650
  text: z.ZodString;
651
651
  type: z.ZodLiteral<"text">;
652
652
  }, "strip", z.ZodTypeAny, {
653
- text: string;
654
653
  type: "text";
654
+ text: string;
655
655
  annotations?: {
656
656
  priority?: number | null | undefined;
657
657
  audience?: ("user" | "assistant")[] | null | undefined;
658
658
  lastModified?: string | null | undefined;
659
659
  } | null | undefined;
660
660
  }, {
661
- text: string;
662
661
  type: "text";
662
+ text: string;
663
663
  annotations?: {
664
664
  priority?: number | null | undefined;
665
665
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -762,8 +762,8 @@ export declare const contentBlockSchema: z.ZodUnion<[z.ZodObject<{
762
762
  uri: string;
763
763
  description?: string | null | undefined;
764
764
  title?: string | null | undefined;
765
- size?: number | null | undefined;
766
765
  mimeType?: string | null | undefined;
766
+ size?: number | null | undefined;
767
767
  annotations?: {
768
768
  priority?: number | null | undefined;
769
769
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -775,8 +775,8 @@ export declare const contentBlockSchema: z.ZodUnion<[z.ZodObject<{
775
775
  uri: string;
776
776
  description?: string | null | undefined;
777
777
  title?: string | null | undefined;
778
- size?: number | null | undefined;
779
778
  mimeType?: string | null | undefined;
779
+ size?: number | null | undefined;
780
780
  annotations?: {
781
781
  priority?: number | null | undefined;
782
782
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -873,16 +873,16 @@ export declare const toolCallContentSchema: z.ZodUnion<[z.ZodObject<{
873
873
  text: z.ZodString;
874
874
  type: z.ZodLiteral<"text">;
875
875
  }, "strip", z.ZodTypeAny, {
876
- text: string;
877
876
  type: "text";
877
+ text: string;
878
878
  annotations?: {
879
879
  priority?: number | null | undefined;
880
880
  audience?: ("user" | "assistant")[] | null | undefined;
881
881
  lastModified?: string | null | undefined;
882
882
  } | null | undefined;
883
883
  }, {
884
- text: string;
885
884
  type: "text";
885
+ text: string;
886
886
  annotations?: {
887
887
  priority?: number | null | undefined;
888
888
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -985,8 +985,8 @@ export declare const toolCallContentSchema: z.ZodUnion<[z.ZodObject<{
985
985
  uri: string;
986
986
  description?: string | null | undefined;
987
987
  title?: string | null | undefined;
988
- size?: number | null | undefined;
989
988
  mimeType?: string | null | undefined;
989
+ size?: number | null | undefined;
990
990
  annotations?: {
991
991
  priority?: number | null | undefined;
992
992
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -998,8 +998,8 @@ export declare const toolCallContentSchema: z.ZodUnion<[z.ZodObject<{
998
998
  uri: string;
999
999
  description?: string | null | undefined;
1000
1000
  title?: string | null | undefined;
1001
- size?: number | null | undefined;
1002
1001
  mimeType?: string | null | undefined;
1002
+ size?: number | null | undefined;
1003
1003
  annotations?: {
1004
1004
  priority?: number | null | undefined;
1005
1005
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -1082,8 +1082,8 @@ export declare const toolCallContentSchema: z.ZodUnion<[z.ZodObject<{
1082
1082
  }, "strip", z.ZodTypeAny, {
1083
1083
  type: "content";
1084
1084
  content: {
1085
- text: string;
1086
1085
  type: "text";
1086
+ text: string;
1087
1087
  annotations?: {
1088
1088
  priority?: number | null | undefined;
1089
1089
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -1113,8 +1113,8 @@ export declare const toolCallContentSchema: z.ZodUnion<[z.ZodObject<{
1113
1113
  uri: string;
1114
1114
  description?: string | null | undefined;
1115
1115
  title?: string | null | undefined;
1116
- size?: number | null | undefined;
1117
1116
  mimeType?: string | null | undefined;
1117
+ size?: number | null | undefined;
1118
1118
  annotations?: {
1119
1119
  priority?: number | null | undefined;
1120
1120
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -1140,8 +1140,8 @@ export declare const toolCallContentSchema: z.ZodUnion<[z.ZodObject<{
1140
1140
  }, {
1141
1141
  type: "content";
1142
1142
  content: {
1143
- text: string;
1144
1143
  type: "text";
1144
+ text: string;
1145
1145
  annotations?: {
1146
1146
  priority?: number | null | undefined;
1147
1147
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -1171,8 +1171,8 @@ export declare const toolCallContentSchema: z.ZodUnion<[z.ZodObject<{
1171
1171
  uri: string;
1172
1172
  description?: string | null | undefined;
1173
1173
  title?: string | null | undefined;
1174
- size?: number | null | undefined;
1175
1174
  mimeType?: string | null | undefined;
1175
+ size?: number | null | undefined;
1176
1176
  annotations?: {
1177
1177
  priority?: number | null | undefined;
1178
1178
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -1230,16 +1230,16 @@ export declare const toolCallSchema: z.ZodObject<{
1230
1230
  text: z.ZodString;
1231
1231
  type: z.ZodLiteral<"text">;
1232
1232
  }, "strip", z.ZodTypeAny, {
1233
- text: string;
1234
1233
  type: "text";
1234
+ text: string;
1235
1235
  annotations?: {
1236
1236
  priority?: number | null | undefined;
1237
1237
  audience?: ("user" | "assistant")[] | null | undefined;
1238
1238
  lastModified?: string | null | undefined;
1239
1239
  } | null | undefined;
1240
1240
  }, {
1241
- text: string;
1242
1241
  type: "text";
1242
+ text: string;
1243
1243
  annotations?: {
1244
1244
  priority?: number | null | undefined;
1245
1245
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -1342,8 +1342,8 @@ export declare const toolCallSchema: z.ZodObject<{
1342
1342
  uri: string;
1343
1343
  description?: string | null | undefined;
1344
1344
  title?: string | null | undefined;
1345
- size?: number | null | undefined;
1346
1345
  mimeType?: string | null | undefined;
1346
+ size?: number | null | undefined;
1347
1347
  annotations?: {
1348
1348
  priority?: number | null | undefined;
1349
1349
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -1355,8 +1355,8 @@ export declare const toolCallSchema: z.ZodObject<{
1355
1355
  uri: string;
1356
1356
  description?: string | null | undefined;
1357
1357
  title?: string | null | undefined;
1358
- size?: number | null | undefined;
1359
1358
  mimeType?: string | null | undefined;
1359
+ size?: number | null | undefined;
1360
1360
  annotations?: {
1361
1361
  priority?: number | null | undefined;
1362
1362
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -1439,8 +1439,8 @@ export declare const toolCallSchema: z.ZodObject<{
1439
1439
  }, "strip", z.ZodTypeAny, {
1440
1440
  type: "content";
1441
1441
  content: {
1442
- text: string;
1443
1442
  type: "text";
1443
+ text: string;
1444
1444
  annotations?: {
1445
1445
  priority?: number | null | undefined;
1446
1446
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -1470,8 +1470,8 @@ export declare const toolCallSchema: z.ZodObject<{
1470
1470
  uri: string;
1471
1471
  description?: string | null | undefined;
1472
1472
  title?: string | null | undefined;
1473
- size?: number | null | undefined;
1474
1473
  mimeType?: string | null | undefined;
1474
+ size?: number | null | undefined;
1475
1475
  annotations?: {
1476
1476
  priority?: number | null | undefined;
1477
1477
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -1497,8 +1497,8 @@ export declare const toolCallSchema: z.ZodObject<{
1497
1497
  }, {
1498
1498
  type: "content";
1499
1499
  content: {
1500
- text: string;
1501
1500
  type: "text";
1501
+ text: string;
1502
1502
  annotations?: {
1503
1503
  priority?: number | null | undefined;
1504
1504
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -1528,8 +1528,8 @@ export declare const toolCallSchema: z.ZodObject<{
1528
1528
  uri: string;
1529
1529
  description?: string | null | undefined;
1530
1530
  title?: string | null | undefined;
1531
- size?: number | null | undefined;
1532
1531
  mimeType?: string | null | undefined;
1532
+ size?: number | null | undefined;
1533
1533
  annotations?: {
1534
1534
  priority?: number | null | undefined;
1535
1535
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -1584,15 +1584,15 @@ export declare const toolCallSchema: z.ZodObject<{
1584
1584
  title: z.ZodString;
1585
1585
  toolCallId: z.ZodString;
1586
1586
  }, "strip", z.ZodTypeAny, {
1587
- kind: "search" | "delete" | "edit" | "move" | "other" | "read" | "execute" | "think" | "fetch";
1588
1587
  status: "completed" | "failed" | "pending" | "in_progress";
1589
1588
  title: string;
1589
+ kind: "search" | "edit" | "delete" | "move" | "other" | "read" | "execute" | "think" | "fetch";
1590
1590
  toolCallId: string;
1591
1591
  content?: ({
1592
1592
  type: "content";
1593
1593
  content: {
1594
- text: string;
1595
1594
  type: "text";
1595
+ text: string;
1596
1596
  annotations?: {
1597
1597
  priority?: number | null | undefined;
1598
1598
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -1622,8 +1622,8 @@ export declare const toolCallSchema: z.ZodObject<{
1622
1622
  uri: string;
1623
1623
  description?: string | null | undefined;
1624
1624
  title?: string | null | undefined;
1625
- size?: number | null | undefined;
1626
1625
  mimeType?: string | null | undefined;
1626
+ size?: number | null | undefined;
1627
1627
  annotations?: {
1628
1628
  priority?: number | null | undefined;
1629
1629
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -1658,15 +1658,15 @@ export declare const toolCallSchema: z.ZodObject<{
1658
1658
  }[] | undefined;
1659
1659
  rawInput?: unknown;
1660
1660
  }, {
1661
- kind: "search" | "delete" | "edit" | "move" | "other" | "read" | "execute" | "think" | "fetch";
1662
1661
  status: "completed" | "failed" | "pending" | "in_progress";
1663
1662
  title: string;
1663
+ kind: "search" | "edit" | "delete" | "move" | "other" | "read" | "execute" | "think" | "fetch";
1664
1664
  toolCallId: string;
1665
1665
  content?: ({
1666
1666
  type: "content";
1667
1667
  content: {
1668
- text: string;
1669
1668
  type: "text";
1669
+ text: string;
1670
1670
  annotations?: {
1671
1671
  priority?: number | null | undefined;
1672
1672
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -1696,8 +1696,8 @@ export declare const toolCallSchema: z.ZodObject<{
1696
1696
  uri: string;
1697
1697
  description?: string | null | undefined;
1698
1698
  title?: string | null | undefined;
1699
- size?: number | null | undefined;
1700
1699
  mimeType?: string | null | undefined;
1700
+ size?: number | null | undefined;
1701
1701
  annotations?: {
1702
1702
  priority?: number | null | undefined;
1703
1703
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -1772,16 +1772,16 @@ export declare const promptRequestSchema: z.ZodObject<{
1772
1772
  text: z.ZodString;
1773
1773
  type: z.ZodLiteral<"text">;
1774
1774
  }, "strip", z.ZodTypeAny, {
1775
- text: string;
1776
1775
  type: "text";
1776
+ text: string;
1777
1777
  annotations?: {
1778
1778
  priority?: number | null | undefined;
1779
1779
  audience?: ("user" | "assistant")[] | null | undefined;
1780
1780
  lastModified?: string | null | undefined;
1781
1781
  } | null | undefined;
1782
1782
  }, {
1783
- text: string;
1784
1783
  type: "text";
1784
+ text: string;
1785
1785
  annotations?: {
1786
1786
  priority?: number | null | undefined;
1787
1787
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -1884,8 +1884,8 @@ export declare const promptRequestSchema: z.ZodObject<{
1884
1884
  uri: string;
1885
1885
  description?: string | null | undefined;
1886
1886
  title?: string | null | undefined;
1887
- size?: number | null | undefined;
1888
1887
  mimeType?: string | null | undefined;
1888
+ size?: number | null | undefined;
1889
1889
  annotations?: {
1890
1890
  priority?: number | null | undefined;
1891
1891
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -1897,8 +1897,8 @@ export declare const promptRequestSchema: z.ZodObject<{
1897
1897
  uri: string;
1898
1898
  description?: string | null | undefined;
1899
1899
  title?: string | null | undefined;
1900
- size?: number | null | undefined;
1901
1900
  mimeType?: string | null | undefined;
1901
+ size?: number | null | undefined;
1902
1902
  annotations?: {
1903
1903
  priority?: number | null | undefined;
1904
1904
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -1980,8 +1980,8 @@ export declare const promptRequestSchema: z.ZodObject<{
1980
1980
  sessionId: z.ZodString;
1981
1981
  }, "strip", z.ZodTypeAny, {
1982
1982
  prompt: ({
1983
- text: string;
1984
1983
  type: "text";
1984
+ text: string;
1985
1985
  annotations?: {
1986
1986
  priority?: number | null | undefined;
1987
1987
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -2011,8 +2011,8 @@ export declare const promptRequestSchema: z.ZodObject<{
2011
2011
  uri: string;
2012
2012
  description?: string | null | undefined;
2013
2013
  title?: string | null | undefined;
2014
- size?: number | null | undefined;
2015
2014
  mimeType?: string | null | undefined;
2015
+ size?: number | null | undefined;
2016
2016
  annotations?: {
2017
2017
  priority?: number | null | undefined;
2018
2018
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -2038,8 +2038,8 @@ export declare const promptRequestSchema: z.ZodObject<{
2038
2038
  sessionId: string;
2039
2039
  }, {
2040
2040
  prompt: ({
2041
- text: string;
2042
2041
  type: "text";
2042
+ text: string;
2043
2043
  annotations?: {
2044
2044
  priority?: number | null | undefined;
2045
2045
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -2069,8 +2069,8 @@ export declare const promptRequestSchema: z.ZodObject<{
2069
2069
  uri: string;
2070
2070
  description?: string | null | undefined;
2071
2071
  title?: string | null | undefined;
2072
- size?: number | null | undefined;
2073
2072
  mimeType?: string | null | undefined;
2073
+ size?: number | null | undefined;
2074
2074
  annotations?: {
2075
2075
  priority?: number | null | undefined;
2076
2076
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -2113,14 +2113,14 @@ export declare const availableCommandSchema: z.ZodObject<{
2113
2113
  }>>>;
2114
2114
  name: z.ZodString;
2115
2115
  }, "strip", z.ZodTypeAny, {
2116
- description: string;
2117
2116
  name: string;
2117
+ description: string;
2118
2118
  input?: {
2119
2119
  hint: string;
2120
2120
  } | null | undefined;
2121
2121
  }, {
2122
- description: string;
2123
2122
  name: string;
2123
+ description: string;
2124
2124
  input?: {
2125
2125
  hint: string;
2126
2126
  } | null | undefined;
@@ -2137,14 +2137,14 @@ export declare const availableCommandsUpdateSchema: z.ZodObject<{
2137
2137
  }>>>;
2138
2138
  name: z.ZodString;
2139
2139
  }, "strip", z.ZodTypeAny, {
2140
- description: string;
2141
2140
  name: string;
2141
+ description: string;
2142
2142
  input?: {
2143
2143
  hint: string;
2144
2144
  } | null | undefined;
2145
2145
  }, {
2146
- description: string;
2147
2146
  name: string;
2147
+ description: string;
2148
2148
  input?: {
2149
2149
  hint: string;
2150
2150
  } | null | undefined;
@@ -2153,8 +2153,8 @@ export declare const availableCommandsUpdateSchema: z.ZodObject<{
2153
2153
  }, "strip", z.ZodTypeAny, {
2154
2154
  sessionUpdate: "available_commands_update";
2155
2155
  availableCommands: {
2156
- description: string;
2157
2156
  name: string;
2157
+ description: string;
2158
2158
  input?: {
2159
2159
  hint: string;
2160
2160
  } | null | undefined;
@@ -2162,8 +2162,8 @@ export declare const availableCommandsUpdateSchema: z.ZodObject<{
2162
2162
  }, {
2163
2163
  sessionUpdate: "available_commands_update";
2164
2164
  availableCommands: {
2165
- description: string;
2166
2165
  name: string;
2166
+ description: string;
2167
2167
  input?: {
2168
2168
  hint: string;
2169
2169
  } | null | undefined;
@@ -2187,16 +2187,16 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
2187
2187
  text: z.ZodString;
2188
2188
  type: z.ZodLiteral<"text">;
2189
2189
  }, "strip", z.ZodTypeAny, {
2190
- text: string;
2191
2190
  type: "text";
2191
+ text: string;
2192
2192
  annotations?: {
2193
2193
  priority?: number | null | undefined;
2194
2194
  audience?: ("user" | "assistant")[] | null | undefined;
2195
2195
  lastModified?: string | null | undefined;
2196
2196
  } | null | undefined;
2197
2197
  }, {
2198
- text: string;
2199
2198
  type: "text";
2199
+ text: string;
2200
2200
  annotations?: {
2201
2201
  priority?: number | null | undefined;
2202
2202
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -2299,8 +2299,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
2299
2299
  uri: string;
2300
2300
  description?: string | null | undefined;
2301
2301
  title?: string | null | undefined;
2302
- size?: number | null | undefined;
2303
2302
  mimeType?: string | null | undefined;
2303
+ size?: number | null | undefined;
2304
2304
  annotations?: {
2305
2305
  priority?: number | null | undefined;
2306
2306
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -2312,8 +2312,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
2312
2312
  uri: string;
2313
2313
  description?: string | null | undefined;
2314
2314
  title?: string | null | undefined;
2315
- size?: number | null | undefined;
2316
2315
  mimeType?: string | null | undefined;
2316
+ size?: number | null | undefined;
2317
2317
  annotations?: {
2318
2318
  priority?: number | null | undefined;
2319
2319
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -2395,8 +2395,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
2395
2395
  sessionUpdate: z.ZodLiteral<"user_message_chunk">;
2396
2396
  }, "strip", z.ZodTypeAny, {
2397
2397
  content: {
2398
- text: string;
2399
2398
  type: "text";
2399
+ text: string;
2400
2400
  annotations?: {
2401
2401
  priority?: number | null | undefined;
2402
2402
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -2426,8 +2426,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
2426
2426
  uri: string;
2427
2427
  description?: string | null | undefined;
2428
2428
  title?: string | null | undefined;
2429
- size?: number | null | undefined;
2430
2429
  mimeType?: string | null | undefined;
2430
+ size?: number | null | undefined;
2431
2431
  annotations?: {
2432
2432
  priority?: number | null | undefined;
2433
2433
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -2453,8 +2453,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
2453
2453
  sessionUpdate: "user_message_chunk";
2454
2454
  }, {
2455
2455
  content: {
2456
- text: string;
2457
2456
  type: "text";
2457
+ text: string;
2458
2458
  annotations?: {
2459
2459
  priority?: number | null | undefined;
2460
2460
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -2484,8 +2484,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
2484
2484
  uri: string;
2485
2485
  description?: string | null | undefined;
2486
2486
  title?: string | null | undefined;
2487
- size?: number | null | undefined;
2488
2487
  mimeType?: string | null | undefined;
2488
+ size?: number | null | undefined;
2489
2489
  annotations?: {
2490
2490
  priority?: number | null | undefined;
2491
2491
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -2527,16 +2527,16 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
2527
2527
  text: z.ZodString;
2528
2528
  type: z.ZodLiteral<"text">;
2529
2529
  }, "strip", z.ZodTypeAny, {
2530
- text: string;
2531
2530
  type: "text";
2531
+ text: string;
2532
2532
  annotations?: {
2533
2533
  priority?: number | null | undefined;
2534
2534
  audience?: ("user" | "assistant")[] | null | undefined;
2535
2535
  lastModified?: string | null | undefined;
2536
2536
  } | null | undefined;
2537
2537
  }, {
2538
- text: string;
2539
2538
  type: "text";
2539
+ text: string;
2540
2540
  annotations?: {
2541
2541
  priority?: number | null | undefined;
2542
2542
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -2639,8 +2639,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
2639
2639
  uri: string;
2640
2640
  description?: string | null | undefined;
2641
2641
  title?: string | null | undefined;
2642
- size?: number | null | undefined;
2643
2642
  mimeType?: string | null | undefined;
2643
+ size?: number | null | undefined;
2644
2644
  annotations?: {
2645
2645
  priority?: number | null | undefined;
2646
2646
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -2652,8 +2652,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
2652
2652
  uri: string;
2653
2653
  description?: string | null | undefined;
2654
2654
  title?: string | null | undefined;
2655
- size?: number | null | undefined;
2656
2655
  mimeType?: string | null | undefined;
2656
+ size?: number | null | undefined;
2657
2657
  annotations?: {
2658
2658
  priority?: number | null | undefined;
2659
2659
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -2735,8 +2735,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
2735
2735
  sessionUpdate: z.ZodLiteral<"agent_message_chunk">;
2736
2736
  }, "strip", z.ZodTypeAny, {
2737
2737
  content: {
2738
- text: string;
2739
2738
  type: "text";
2739
+ text: string;
2740
2740
  annotations?: {
2741
2741
  priority?: number | null | undefined;
2742
2742
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -2766,8 +2766,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
2766
2766
  uri: string;
2767
2767
  description?: string | null | undefined;
2768
2768
  title?: string | null | undefined;
2769
- size?: number | null | undefined;
2770
2769
  mimeType?: string | null | undefined;
2770
+ size?: number | null | undefined;
2771
2771
  annotations?: {
2772
2772
  priority?: number | null | undefined;
2773
2773
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -2793,8 +2793,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
2793
2793
  sessionUpdate: "agent_message_chunk";
2794
2794
  }, {
2795
2795
  content: {
2796
- text: string;
2797
2796
  type: "text";
2797
+ text: string;
2798
2798
  annotations?: {
2799
2799
  priority?: number | null | undefined;
2800
2800
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -2824,8 +2824,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
2824
2824
  uri: string;
2825
2825
  description?: string | null | undefined;
2826
2826
  title?: string | null | undefined;
2827
- size?: number | null | undefined;
2828
2827
  mimeType?: string | null | undefined;
2828
+ size?: number | null | undefined;
2829
2829
  annotations?: {
2830
2830
  priority?: number | null | undefined;
2831
2831
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -2867,16 +2867,16 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
2867
2867
  text: z.ZodString;
2868
2868
  type: z.ZodLiteral<"text">;
2869
2869
  }, "strip", z.ZodTypeAny, {
2870
- text: string;
2871
2870
  type: "text";
2871
+ text: string;
2872
2872
  annotations?: {
2873
2873
  priority?: number | null | undefined;
2874
2874
  audience?: ("user" | "assistant")[] | null | undefined;
2875
2875
  lastModified?: string | null | undefined;
2876
2876
  } | null | undefined;
2877
2877
  }, {
2878
- text: string;
2879
2878
  type: "text";
2879
+ text: string;
2880
2880
  annotations?: {
2881
2881
  priority?: number | null | undefined;
2882
2882
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -2979,8 +2979,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
2979
2979
  uri: string;
2980
2980
  description?: string | null | undefined;
2981
2981
  title?: string | null | undefined;
2982
- size?: number | null | undefined;
2983
2982
  mimeType?: string | null | undefined;
2983
+ size?: number | null | undefined;
2984
2984
  annotations?: {
2985
2985
  priority?: number | null | undefined;
2986
2986
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -2992,8 +2992,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
2992
2992
  uri: string;
2993
2993
  description?: string | null | undefined;
2994
2994
  title?: string | null | undefined;
2995
- size?: number | null | undefined;
2996
2995
  mimeType?: string | null | undefined;
2996
+ size?: number | null | undefined;
2997
2997
  annotations?: {
2998
2998
  priority?: number | null | undefined;
2999
2999
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -3075,8 +3075,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
3075
3075
  sessionUpdate: z.ZodLiteral<"agent_thought_chunk">;
3076
3076
  }, "strip", z.ZodTypeAny, {
3077
3077
  content: {
3078
- text: string;
3079
3078
  type: "text";
3079
+ text: string;
3080
3080
  annotations?: {
3081
3081
  priority?: number | null | undefined;
3082
3082
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -3106,8 +3106,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
3106
3106
  uri: string;
3107
3107
  description?: string | null | undefined;
3108
3108
  title?: string | null | undefined;
3109
- size?: number | null | undefined;
3110
3109
  mimeType?: string | null | undefined;
3110
+ size?: number | null | undefined;
3111
3111
  annotations?: {
3112
3112
  priority?: number | null | undefined;
3113
3113
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -3133,8 +3133,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
3133
3133
  sessionUpdate: "agent_thought_chunk";
3134
3134
  }, {
3135
3135
  content: {
3136
- text: string;
3137
3136
  type: "text";
3137
+ text: string;
3138
3138
  annotations?: {
3139
3139
  priority?: number | null | undefined;
3140
3140
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -3164,8 +3164,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
3164
3164
  uri: string;
3165
3165
  description?: string | null | undefined;
3166
3166
  title?: string | null | undefined;
3167
- size?: number | null | undefined;
3168
3167
  mimeType?: string | null | undefined;
3168
+ size?: number | null | undefined;
3169
3169
  annotations?: {
3170
3170
  priority?: number | null | undefined;
3171
3171
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -3208,16 +3208,16 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
3208
3208
  text: z.ZodString;
3209
3209
  type: z.ZodLiteral<"text">;
3210
3210
  }, "strip", z.ZodTypeAny, {
3211
- text: string;
3212
3211
  type: "text";
3212
+ text: string;
3213
3213
  annotations?: {
3214
3214
  priority?: number | null | undefined;
3215
3215
  audience?: ("user" | "assistant")[] | null | undefined;
3216
3216
  lastModified?: string | null | undefined;
3217
3217
  } | null | undefined;
3218
3218
  }, {
3219
- text: string;
3220
3219
  type: "text";
3220
+ text: string;
3221
3221
  annotations?: {
3222
3222
  priority?: number | null | undefined;
3223
3223
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -3320,8 +3320,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
3320
3320
  uri: string;
3321
3321
  description?: string | null | undefined;
3322
3322
  title?: string | null | undefined;
3323
- size?: number | null | undefined;
3324
3323
  mimeType?: string | null | undefined;
3324
+ size?: number | null | undefined;
3325
3325
  annotations?: {
3326
3326
  priority?: number | null | undefined;
3327
3327
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -3333,8 +3333,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
3333
3333
  uri: string;
3334
3334
  description?: string | null | undefined;
3335
3335
  title?: string | null | undefined;
3336
- size?: number | null | undefined;
3337
3336
  mimeType?: string | null | undefined;
3337
+ size?: number | null | undefined;
3338
3338
  annotations?: {
3339
3339
  priority?: number | null | undefined;
3340
3340
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -3417,8 +3417,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
3417
3417
  }, "strip", z.ZodTypeAny, {
3418
3418
  type: "content";
3419
3419
  content: {
3420
- text: string;
3421
3420
  type: "text";
3421
+ text: string;
3422
3422
  annotations?: {
3423
3423
  priority?: number | null | undefined;
3424
3424
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -3448,8 +3448,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
3448
3448
  uri: string;
3449
3449
  description?: string | null | undefined;
3450
3450
  title?: string | null | undefined;
3451
- size?: number | null | undefined;
3452
3451
  mimeType?: string | null | undefined;
3452
+ size?: number | null | undefined;
3453
3453
  annotations?: {
3454
3454
  priority?: number | null | undefined;
3455
3455
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -3475,8 +3475,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
3475
3475
  }, {
3476
3476
  type: "content";
3477
3477
  content: {
3478
- text: string;
3479
3478
  type: "text";
3479
+ text: string;
3480
3480
  annotations?: {
3481
3481
  priority?: number | null | undefined;
3482
3482
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -3506,8 +3506,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
3506
3506
  uri: string;
3507
3507
  description?: string | null | undefined;
3508
3508
  title?: string | null | undefined;
3509
- size?: number | null | undefined;
3510
3509
  mimeType?: string | null | undefined;
3510
+ size?: number | null | undefined;
3511
3511
  annotations?: {
3512
3512
  priority?: number | null | undefined;
3513
3513
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -3563,16 +3563,16 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
3563
3563
  title: z.ZodString;
3564
3564
  toolCallId: z.ZodString;
3565
3565
  }, "strip", z.ZodTypeAny, {
3566
- kind: "search" | "delete" | "edit" | "move" | "other" | "read" | "execute" | "think" | "fetch";
3567
3566
  status: "completed" | "failed" | "pending" | "in_progress";
3568
3567
  title: string;
3568
+ kind: "search" | "edit" | "delete" | "move" | "other" | "read" | "execute" | "think" | "fetch";
3569
3569
  toolCallId: string;
3570
3570
  sessionUpdate: "tool_call";
3571
3571
  content?: ({
3572
3572
  type: "content";
3573
3573
  content: {
3574
- text: string;
3575
3574
  type: "text";
3575
+ text: string;
3576
3576
  annotations?: {
3577
3577
  priority?: number | null | undefined;
3578
3578
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -3602,8 +3602,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
3602
3602
  uri: string;
3603
3603
  description?: string | null | undefined;
3604
3604
  title?: string | null | undefined;
3605
- size?: number | null | undefined;
3606
3605
  mimeType?: string | null | undefined;
3606
+ size?: number | null | undefined;
3607
3607
  annotations?: {
3608
3608
  priority?: number | null | undefined;
3609
3609
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -3638,16 +3638,16 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
3638
3638
  }[] | undefined;
3639
3639
  rawInput?: unknown;
3640
3640
  }, {
3641
- kind: "search" | "delete" | "edit" | "move" | "other" | "read" | "execute" | "think" | "fetch";
3642
3641
  status: "completed" | "failed" | "pending" | "in_progress";
3643
3642
  title: string;
3643
+ kind: "search" | "edit" | "delete" | "move" | "other" | "read" | "execute" | "think" | "fetch";
3644
3644
  toolCallId: string;
3645
3645
  sessionUpdate: "tool_call";
3646
3646
  content?: ({
3647
3647
  type: "content";
3648
3648
  content: {
3649
- text: string;
3650
3649
  type: "text";
3650
+ text: string;
3651
3651
  annotations?: {
3652
3652
  priority?: number | null | undefined;
3653
3653
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -3677,8 +3677,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
3677
3677
  uri: string;
3678
3678
  description?: string | null | undefined;
3679
3679
  title?: string | null | undefined;
3680
- size?: number | null | undefined;
3681
3680
  mimeType?: string | null | undefined;
3681
+ size?: number | null | undefined;
3682
3682
  annotations?: {
3683
3683
  priority?: number | null | undefined;
3684
3684
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -3731,16 +3731,16 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
3731
3731
  text: z.ZodString;
3732
3732
  type: z.ZodLiteral<"text">;
3733
3733
  }, "strip", z.ZodTypeAny, {
3734
- text: string;
3735
3734
  type: "text";
3735
+ text: string;
3736
3736
  annotations?: {
3737
3737
  priority?: number | null | undefined;
3738
3738
  audience?: ("user" | "assistant")[] | null | undefined;
3739
3739
  lastModified?: string | null | undefined;
3740
3740
  } | null | undefined;
3741
3741
  }, {
3742
- text: string;
3743
3742
  type: "text";
3743
+ text: string;
3744
3744
  annotations?: {
3745
3745
  priority?: number | null | undefined;
3746
3746
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -3843,8 +3843,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
3843
3843
  uri: string;
3844
3844
  description?: string | null | undefined;
3845
3845
  title?: string | null | undefined;
3846
- size?: number | null | undefined;
3847
3846
  mimeType?: string | null | undefined;
3847
+ size?: number | null | undefined;
3848
3848
  annotations?: {
3849
3849
  priority?: number | null | undefined;
3850
3850
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -3856,8 +3856,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
3856
3856
  uri: string;
3857
3857
  description?: string | null | undefined;
3858
3858
  title?: string | null | undefined;
3859
- size?: number | null | undefined;
3860
3859
  mimeType?: string | null | undefined;
3860
+ size?: number | null | undefined;
3861
3861
  annotations?: {
3862
3862
  priority?: number | null | undefined;
3863
3863
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -3940,8 +3940,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
3940
3940
  }, "strip", z.ZodTypeAny, {
3941
3941
  type: "content";
3942
3942
  content: {
3943
- text: string;
3944
3943
  type: "text";
3944
+ text: string;
3945
3945
  annotations?: {
3946
3946
  priority?: number | null | undefined;
3947
3947
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -3971,8 +3971,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
3971
3971
  uri: string;
3972
3972
  description?: string | null | undefined;
3973
3973
  title?: string | null | undefined;
3974
- size?: number | null | undefined;
3975
3974
  mimeType?: string | null | undefined;
3975
+ size?: number | null | undefined;
3976
3976
  annotations?: {
3977
3977
  priority?: number | null | undefined;
3978
3978
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -3998,8 +3998,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
3998
3998
  }, {
3999
3999
  type: "content";
4000
4000
  content: {
4001
- text: string;
4002
4001
  type: "text";
4002
+ text: string;
4003
4003
  annotations?: {
4004
4004
  priority?: number | null | undefined;
4005
4005
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -4029,8 +4029,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
4029
4029
  uri: string;
4030
4030
  description?: string | null | undefined;
4031
4031
  title?: string | null | undefined;
4032
- size?: number | null | undefined;
4033
4032
  mimeType?: string | null | undefined;
4033
+ size?: number | null | undefined;
4034
4034
  annotations?: {
4035
4035
  priority?: number | null | undefined;
4036
4036
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -4088,11 +4088,12 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
4088
4088
  }, "strip", z.ZodTypeAny, {
4089
4089
  toolCallId: string;
4090
4090
  sessionUpdate: "tool_call_update";
4091
+ status?: "completed" | "failed" | "pending" | "in_progress" | null | undefined;
4091
4092
  content?: ({
4092
4093
  type: "content";
4093
4094
  content: {
4094
- text: string;
4095
4095
  type: "text";
4096
+ text: string;
4096
4097
  annotations?: {
4097
4098
  priority?: number | null | undefined;
4098
4099
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -4122,8 +4123,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
4122
4123
  uri: string;
4123
4124
  description?: string | null | undefined;
4124
4125
  title?: string | null | undefined;
4125
- size?: number | null | undefined;
4126
4126
  mimeType?: string | null | undefined;
4127
+ size?: number | null | undefined;
4127
4128
  annotations?: {
4128
4129
  priority?: number | null | undefined;
4129
4130
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -4152,9 +4153,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
4152
4153
  newText: string;
4153
4154
  oldText: string | null;
4154
4155
  })[] | null | undefined;
4155
- kind?: "search" | "delete" | "edit" | "move" | "other" | "read" | "execute" | "think" | "fetch" | null | undefined;
4156
- status?: "completed" | "failed" | "pending" | "in_progress" | null | undefined;
4157
4156
  title?: string | null | undefined;
4157
+ kind?: "search" | "edit" | "delete" | "move" | "other" | "read" | "execute" | "think" | "fetch" | null | undefined;
4158
4158
  locations?: {
4159
4159
  path: string;
4160
4160
  line?: number | null | undefined;
@@ -4163,11 +4163,12 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
4163
4163
  }, {
4164
4164
  toolCallId: string;
4165
4165
  sessionUpdate: "tool_call_update";
4166
+ status?: "completed" | "failed" | "pending" | "in_progress" | null | undefined;
4166
4167
  content?: ({
4167
4168
  type: "content";
4168
4169
  content: {
4169
- text: string;
4170
4170
  type: "text";
4171
+ text: string;
4171
4172
  annotations?: {
4172
4173
  priority?: number | null | undefined;
4173
4174
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -4197,8 +4198,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
4197
4198
  uri: string;
4198
4199
  description?: string | null | undefined;
4199
4200
  title?: string | null | undefined;
4200
- size?: number | null | undefined;
4201
4201
  mimeType?: string | null | undefined;
4202
+ size?: number | null | undefined;
4202
4203
  annotations?: {
4203
4204
  priority?: number | null | undefined;
4204
4205
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -4227,9 +4228,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
4227
4228
  newText: string;
4228
4229
  oldText: string | null;
4229
4230
  })[] | null | undefined;
4230
- kind?: "search" | "delete" | "edit" | "move" | "other" | "read" | "execute" | "think" | "fetch" | null | undefined;
4231
- status?: "completed" | "failed" | "pending" | "in_progress" | null | undefined;
4232
4231
  title?: string | null | undefined;
4232
+ kind?: "search" | "edit" | "delete" | "move" | "other" | "read" | "execute" | "think" | "fetch" | null | undefined;
4233
4233
  locations?: {
4234
4234
  path: string;
4235
4235
  line?: number | null | undefined;
@@ -4241,26 +4241,26 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
4241
4241
  priority: z.ZodUnion<[z.ZodLiteral<"high">, z.ZodLiteral<"medium">, z.ZodLiteral<"low">]>;
4242
4242
  status: z.ZodUnion<[z.ZodLiteral<"pending">, z.ZodLiteral<"in_progress">, z.ZodLiteral<"completed">]>;
4243
4243
  }, "strip", z.ZodTypeAny, {
4244
- content: string;
4245
4244
  status: "completed" | "pending" | "in_progress";
4245
+ content: string;
4246
4246
  priority: "medium" | "high" | "low";
4247
4247
  }, {
4248
- content: string;
4249
4248
  status: "completed" | "pending" | "in_progress";
4249
+ content: string;
4250
4250
  priority: "medium" | "high" | "low";
4251
4251
  }>, "many">;
4252
4252
  sessionUpdate: z.ZodLiteral<"plan">;
4253
4253
  }, "strip", z.ZodTypeAny, {
4254
4254
  entries: {
4255
- content: string;
4256
4255
  status: "completed" | "pending" | "in_progress";
4256
+ content: string;
4257
4257
  priority: "medium" | "high" | "low";
4258
4258
  }[];
4259
4259
  sessionUpdate: "plan";
4260
4260
  }, {
4261
4261
  entries: {
4262
- content: string;
4263
4262
  status: "completed" | "pending" | "in_progress";
4263
+ content: string;
4264
4264
  priority: "medium" | "high" | "low";
4265
4265
  }[];
4266
4266
  sessionUpdate: "plan";
@@ -4276,14 +4276,14 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
4276
4276
  }>>>;
4277
4277
  name: z.ZodString;
4278
4278
  }, "strip", z.ZodTypeAny, {
4279
- description: string;
4280
4279
  name: string;
4280
+ description: string;
4281
4281
  input?: {
4282
4282
  hint: string;
4283
4283
  } | null | undefined;
4284
4284
  }, {
4285
- description: string;
4286
4285
  name: string;
4286
+ description: string;
4287
4287
  input?: {
4288
4288
  hint: string;
4289
4289
  } | null | undefined;
@@ -4292,8 +4292,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
4292
4292
  }, "strip", z.ZodTypeAny, {
4293
4293
  sessionUpdate: "available_commands_update";
4294
4294
  availableCommands: {
4295
- description: string;
4296
4295
  name: string;
4296
+ description: string;
4297
4297
  input?: {
4298
4298
  hint: string;
4299
4299
  } | null | undefined;
@@ -4301,8 +4301,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
4301
4301
  }, {
4302
4302
  sessionUpdate: "available_commands_update";
4303
4303
  availableCommands: {
4304
- description: string;
4305
4304
  name: string;
4305
+ description: string;
4306
4306
  input?: {
4307
4307
  hint: string;
4308
4308
  } | null | undefined;
@@ -4316,26 +4316,26 @@ export declare const agentResponseSchema: z.ZodUnion<[z.ZodObject<{
4316
4316
  embeddedContext: z.ZodOptional<z.ZodBoolean>;
4317
4317
  image: z.ZodOptional<z.ZodBoolean>;
4318
4318
  }, "strip", z.ZodTypeAny, {
4319
- audio?: boolean | undefined;
4320
4319
  image?: boolean | undefined;
4320
+ audio?: boolean | undefined;
4321
4321
  embeddedContext?: boolean | undefined;
4322
4322
  }, {
4323
- audio?: boolean | undefined;
4324
4323
  image?: boolean | undefined;
4324
+ audio?: boolean | undefined;
4325
4325
  embeddedContext?: boolean | undefined;
4326
4326
  }>>;
4327
4327
  }, "strip", z.ZodTypeAny, {
4328
4328
  loadSession?: boolean | undefined;
4329
4329
  promptCapabilities?: {
4330
- audio?: boolean | undefined;
4331
4330
  image?: boolean | undefined;
4331
+ audio?: boolean | undefined;
4332
4332
  embeddedContext?: boolean | undefined;
4333
4333
  } | undefined;
4334
4334
  }, {
4335
4335
  loadSession?: boolean | undefined;
4336
4336
  promptCapabilities?: {
4337
- audio?: boolean | undefined;
4338
4337
  image?: boolean | undefined;
4338
+ audio?: boolean | undefined;
4339
4339
  embeddedContext?: boolean | undefined;
4340
4340
  } | undefined;
4341
4341
  }>;
@@ -4344,43 +4344,43 @@ export declare const agentResponseSchema: z.ZodUnion<[z.ZodObject<{
4344
4344
  id: z.ZodString;
4345
4345
  name: z.ZodString;
4346
4346
  }, "strip", z.ZodTypeAny, {
4347
+ name: string;
4347
4348
  description: string | null;
4348
4349
  id: string;
4349
- name: string;
4350
4350
  }, {
4351
+ name: string;
4351
4352
  description: string | null;
4352
4353
  id: string;
4353
- name: string;
4354
4354
  }>, "many">;
4355
4355
  protocolVersion: z.ZodNumber;
4356
4356
  }, "strip", z.ZodTypeAny, {
4357
4357
  agentCapabilities: {
4358
4358
  loadSession?: boolean | undefined;
4359
4359
  promptCapabilities?: {
4360
- audio?: boolean | undefined;
4361
4360
  image?: boolean | undefined;
4361
+ audio?: boolean | undefined;
4362
4362
  embeddedContext?: boolean | undefined;
4363
4363
  } | undefined;
4364
4364
  };
4365
4365
  authMethods: {
4366
+ name: string;
4366
4367
  description: string | null;
4367
4368
  id: string;
4368
- name: string;
4369
4369
  }[];
4370
4370
  protocolVersion: number;
4371
4371
  }, {
4372
4372
  agentCapabilities: {
4373
4373
  loadSession?: boolean | undefined;
4374
4374
  promptCapabilities?: {
4375
- audio?: boolean | undefined;
4376
4375
  image?: boolean | undefined;
4376
+ audio?: boolean | undefined;
4377
4377
  embeddedContext?: boolean | undefined;
4378
4378
  } | undefined;
4379
4379
  };
4380
4380
  authMethods: {
4381
+ name: string;
4381
4382
  description: string | null;
4382
4383
  id: string;
4383
- name: string;
4384
4384
  }[];
4385
4385
  protocolVersion: number;
4386
4386
  }>, z.ZodNull, z.ZodObject<{
@@ -4430,16 +4430,16 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
4430
4430
  text: z.ZodString;
4431
4431
  type: z.ZodLiteral<"text">;
4432
4432
  }, "strip", z.ZodTypeAny, {
4433
- text: string;
4434
4433
  type: "text";
4434
+ text: string;
4435
4435
  annotations?: {
4436
4436
  priority?: number | null | undefined;
4437
4437
  audience?: ("user" | "assistant")[] | null | undefined;
4438
4438
  lastModified?: string | null | undefined;
4439
4439
  } | null | undefined;
4440
4440
  }, {
4441
- text: string;
4442
4441
  type: "text";
4442
+ text: string;
4443
4443
  annotations?: {
4444
4444
  priority?: number | null | undefined;
4445
4445
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -4542,8 +4542,8 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
4542
4542
  uri: string;
4543
4543
  description?: string | null | undefined;
4544
4544
  title?: string | null | undefined;
4545
- size?: number | null | undefined;
4546
4545
  mimeType?: string | null | undefined;
4546
+ size?: number | null | undefined;
4547
4547
  annotations?: {
4548
4548
  priority?: number | null | undefined;
4549
4549
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -4555,8 +4555,8 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
4555
4555
  uri: string;
4556
4556
  description?: string | null | undefined;
4557
4557
  title?: string | null | undefined;
4558
- size?: number | null | undefined;
4559
4558
  mimeType?: string | null | undefined;
4559
+ size?: number | null | undefined;
4560
4560
  annotations?: {
4561
4561
  priority?: number | null | undefined;
4562
4562
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -4639,8 +4639,8 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
4639
4639
  }, "strip", z.ZodTypeAny, {
4640
4640
  type: "content";
4641
4641
  content: {
4642
- text: string;
4643
4642
  type: "text";
4643
+ text: string;
4644
4644
  annotations?: {
4645
4645
  priority?: number | null | undefined;
4646
4646
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -4670,8 +4670,8 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
4670
4670
  uri: string;
4671
4671
  description?: string | null | undefined;
4672
4672
  title?: string | null | undefined;
4673
- size?: number | null | undefined;
4674
4673
  mimeType?: string | null | undefined;
4674
+ size?: number | null | undefined;
4675
4675
  annotations?: {
4676
4676
  priority?: number | null | undefined;
4677
4677
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -4697,8 +4697,8 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
4697
4697
  }, {
4698
4698
  type: "content";
4699
4699
  content: {
4700
- text: string;
4701
4700
  type: "text";
4701
+ text: string;
4702
4702
  annotations?: {
4703
4703
  priority?: number | null | undefined;
4704
4704
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -4728,8 +4728,8 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
4728
4728
  uri: string;
4729
4729
  description?: string | null | undefined;
4730
4730
  title?: string | null | undefined;
4731
- size?: number | null | undefined;
4732
4731
  mimeType?: string | null | undefined;
4732
+ size?: number | null | undefined;
4733
4733
  annotations?: {
4734
4734
  priority?: number | null | undefined;
4735
4735
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -4784,15 +4784,15 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
4784
4784
  title: z.ZodString;
4785
4785
  toolCallId: z.ZodString;
4786
4786
  }, "strip", z.ZodTypeAny, {
4787
- kind: "search" | "delete" | "edit" | "move" | "other" | "read" | "execute" | "think" | "fetch";
4788
4787
  status: "completed" | "failed" | "pending" | "in_progress";
4789
4788
  title: string;
4789
+ kind: "search" | "edit" | "delete" | "move" | "other" | "read" | "execute" | "think" | "fetch";
4790
4790
  toolCallId: string;
4791
4791
  content?: ({
4792
4792
  type: "content";
4793
4793
  content: {
4794
- text: string;
4795
4794
  type: "text";
4795
+ text: string;
4796
4796
  annotations?: {
4797
4797
  priority?: number | null | undefined;
4798
4798
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -4822,8 +4822,8 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
4822
4822
  uri: string;
4823
4823
  description?: string | null | undefined;
4824
4824
  title?: string | null | undefined;
4825
- size?: number | null | undefined;
4826
4825
  mimeType?: string | null | undefined;
4826
+ size?: number | null | undefined;
4827
4827
  annotations?: {
4828
4828
  priority?: number | null | undefined;
4829
4829
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -4858,15 +4858,15 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
4858
4858
  }[] | undefined;
4859
4859
  rawInput?: unknown;
4860
4860
  }, {
4861
- kind: "search" | "delete" | "edit" | "move" | "other" | "read" | "execute" | "think" | "fetch";
4862
4861
  status: "completed" | "failed" | "pending" | "in_progress";
4863
4862
  title: string;
4863
+ kind: "search" | "edit" | "delete" | "move" | "other" | "read" | "execute" | "think" | "fetch";
4864
4864
  toolCallId: string;
4865
4865
  content?: ({
4866
4866
  type: "content";
4867
4867
  content: {
4868
- text: string;
4869
4868
  type: "text";
4869
+ text: string;
4870
4870
  annotations?: {
4871
4871
  priority?: number | null | undefined;
4872
4872
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -4896,8 +4896,8 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
4896
4896
  uri: string;
4897
4897
  description?: string | null | undefined;
4898
4898
  title?: string | null | undefined;
4899
- size?: number | null | undefined;
4900
4899
  mimeType?: string | null | undefined;
4900
+ size?: number | null | undefined;
4901
4901
  annotations?: {
4902
4902
  priority?: number | null | undefined;
4903
4903
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -4940,15 +4940,15 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
4940
4940
  }[];
4941
4941
  sessionId: string;
4942
4942
  toolCall: {
4943
- kind: "search" | "delete" | "edit" | "move" | "other" | "read" | "execute" | "think" | "fetch";
4944
4943
  status: "completed" | "failed" | "pending" | "in_progress";
4945
4944
  title: string;
4945
+ kind: "search" | "edit" | "delete" | "move" | "other" | "read" | "execute" | "think" | "fetch";
4946
4946
  toolCallId: string;
4947
4947
  content?: ({
4948
4948
  type: "content";
4949
4949
  content: {
4950
- text: string;
4951
4950
  type: "text";
4951
+ text: string;
4952
4952
  annotations?: {
4953
4953
  priority?: number | null | undefined;
4954
4954
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -4978,8 +4978,8 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
4978
4978
  uri: string;
4979
4979
  description?: string | null | undefined;
4980
4980
  title?: string | null | undefined;
4981
- size?: number | null | undefined;
4982
4981
  mimeType?: string | null | undefined;
4982
+ size?: number | null | undefined;
4983
4983
  annotations?: {
4984
4984
  priority?: number | null | undefined;
4985
4985
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -5022,15 +5022,15 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
5022
5022
  }[];
5023
5023
  sessionId: string;
5024
5024
  toolCall: {
5025
- kind: "search" | "delete" | "edit" | "move" | "other" | "read" | "execute" | "think" | "fetch";
5026
5025
  status: "completed" | "failed" | "pending" | "in_progress";
5027
5026
  title: string;
5027
+ kind: "search" | "edit" | "delete" | "move" | "other" | "read" | "execute" | "think" | "fetch";
5028
5028
  toolCallId: string;
5029
5029
  content?: ({
5030
5030
  type: "content";
5031
5031
  content: {
5032
- text: string;
5033
5032
  type: "text";
5033
+ text: string;
5034
5034
  annotations?: {
5035
5035
  priority?: number | null | undefined;
5036
5036
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -5060,8 +5060,8 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
5060
5060
  uri: string;
5061
5061
  description?: string | null | undefined;
5062
5062
  title?: string | null | undefined;
5063
- size?: number | null | undefined;
5064
5063
  mimeType?: string | null | undefined;
5064
+ size?: number | null | undefined;
5065
5065
  annotations?: {
5066
5066
  priority?: number | null | undefined;
5067
5067
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -5158,16 +5158,16 @@ export declare const sessionNotificationSchema: z.ZodObject<{
5158
5158
  text: z.ZodString;
5159
5159
  type: z.ZodLiteral<"text">;
5160
5160
  }, "strip", z.ZodTypeAny, {
5161
- text: string;
5162
5161
  type: "text";
5162
+ text: string;
5163
5163
  annotations?: {
5164
5164
  priority?: number | null | undefined;
5165
5165
  audience?: ("user" | "assistant")[] | null | undefined;
5166
5166
  lastModified?: string | null | undefined;
5167
5167
  } | null | undefined;
5168
5168
  }, {
5169
- text: string;
5170
5169
  type: "text";
5170
+ text: string;
5171
5171
  annotations?: {
5172
5172
  priority?: number | null | undefined;
5173
5173
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -5270,8 +5270,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
5270
5270
  uri: string;
5271
5271
  description?: string | null | undefined;
5272
5272
  title?: string | null | undefined;
5273
- size?: number | null | undefined;
5274
5273
  mimeType?: string | null | undefined;
5274
+ size?: number | null | undefined;
5275
5275
  annotations?: {
5276
5276
  priority?: number | null | undefined;
5277
5277
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -5283,8 +5283,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
5283
5283
  uri: string;
5284
5284
  description?: string | null | undefined;
5285
5285
  title?: string | null | undefined;
5286
- size?: number | null | undefined;
5287
5286
  mimeType?: string | null | undefined;
5287
+ size?: number | null | undefined;
5288
5288
  annotations?: {
5289
5289
  priority?: number | null | undefined;
5290
5290
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -5366,8 +5366,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
5366
5366
  sessionUpdate: z.ZodLiteral<"user_message_chunk">;
5367
5367
  }, "strip", z.ZodTypeAny, {
5368
5368
  content: {
5369
- text: string;
5370
5369
  type: "text";
5370
+ text: string;
5371
5371
  annotations?: {
5372
5372
  priority?: number | null | undefined;
5373
5373
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -5397,8 +5397,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
5397
5397
  uri: string;
5398
5398
  description?: string | null | undefined;
5399
5399
  title?: string | null | undefined;
5400
- size?: number | null | undefined;
5401
5400
  mimeType?: string | null | undefined;
5401
+ size?: number | null | undefined;
5402
5402
  annotations?: {
5403
5403
  priority?: number | null | undefined;
5404
5404
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -5424,8 +5424,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
5424
5424
  sessionUpdate: "user_message_chunk";
5425
5425
  }, {
5426
5426
  content: {
5427
- text: string;
5428
5427
  type: "text";
5428
+ text: string;
5429
5429
  annotations?: {
5430
5430
  priority?: number | null | undefined;
5431
5431
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -5455,8 +5455,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
5455
5455
  uri: string;
5456
5456
  description?: string | null | undefined;
5457
5457
  title?: string | null | undefined;
5458
- size?: number | null | undefined;
5459
5458
  mimeType?: string | null | undefined;
5459
+ size?: number | null | undefined;
5460
5460
  annotations?: {
5461
5461
  priority?: number | null | undefined;
5462
5462
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -5498,16 +5498,16 @@ export declare const sessionNotificationSchema: z.ZodObject<{
5498
5498
  text: z.ZodString;
5499
5499
  type: z.ZodLiteral<"text">;
5500
5500
  }, "strip", z.ZodTypeAny, {
5501
- text: string;
5502
5501
  type: "text";
5502
+ text: string;
5503
5503
  annotations?: {
5504
5504
  priority?: number | null | undefined;
5505
5505
  audience?: ("user" | "assistant")[] | null | undefined;
5506
5506
  lastModified?: string | null | undefined;
5507
5507
  } | null | undefined;
5508
5508
  }, {
5509
- text: string;
5510
5509
  type: "text";
5510
+ text: string;
5511
5511
  annotations?: {
5512
5512
  priority?: number | null | undefined;
5513
5513
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -5610,8 +5610,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
5610
5610
  uri: string;
5611
5611
  description?: string | null | undefined;
5612
5612
  title?: string | null | undefined;
5613
- size?: number | null | undefined;
5614
5613
  mimeType?: string | null | undefined;
5614
+ size?: number | null | undefined;
5615
5615
  annotations?: {
5616
5616
  priority?: number | null | undefined;
5617
5617
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -5623,8 +5623,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
5623
5623
  uri: string;
5624
5624
  description?: string | null | undefined;
5625
5625
  title?: string | null | undefined;
5626
- size?: number | null | undefined;
5627
5626
  mimeType?: string | null | undefined;
5627
+ size?: number | null | undefined;
5628
5628
  annotations?: {
5629
5629
  priority?: number | null | undefined;
5630
5630
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -5706,8 +5706,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
5706
5706
  sessionUpdate: z.ZodLiteral<"agent_message_chunk">;
5707
5707
  }, "strip", z.ZodTypeAny, {
5708
5708
  content: {
5709
- text: string;
5710
5709
  type: "text";
5710
+ text: string;
5711
5711
  annotations?: {
5712
5712
  priority?: number | null | undefined;
5713
5713
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -5737,8 +5737,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
5737
5737
  uri: string;
5738
5738
  description?: string | null | undefined;
5739
5739
  title?: string | null | undefined;
5740
- size?: number | null | undefined;
5741
5740
  mimeType?: string | null | undefined;
5741
+ size?: number | null | undefined;
5742
5742
  annotations?: {
5743
5743
  priority?: number | null | undefined;
5744
5744
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -5764,8 +5764,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
5764
5764
  sessionUpdate: "agent_message_chunk";
5765
5765
  }, {
5766
5766
  content: {
5767
- text: string;
5768
5767
  type: "text";
5768
+ text: string;
5769
5769
  annotations?: {
5770
5770
  priority?: number | null | undefined;
5771
5771
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -5795,8 +5795,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
5795
5795
  uri: string;
5796
5796
  description?: string | null | undefined;
5797
5797
  title?: string | null | undefined;
5798
- size?: number | null | undefined;
5799
5798
  mimeType?: string | null | undefined;
5799
+ size?: number | null | undefined;
5800
5800
  annotations?: {
5801
5801
  priority?: number | null | undefined;
5802
5802
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -5838,16 +5838,16 @@ export declare const sessionNotificationSchema: z.ZodObject<{
5838
5838
  text: z.ZodString;
5839
5839
  type: z.ZodLiteral<"text">;
5840
5840
  }, "strip", z.ZodTypeAny, {
5841
- text: string;
5842
5841
  type: "text";
5842
+ text: string;
5843
5843
  annotations?: {
5844
5844
  priority?: number | null | undefined;
5845
5845
  audience?: ("user" | "assistant")[] | null | undefined;
5846
5846
  lastModified?: string | null | undefined;
5847
5847
  } | null | undefined;
5848
5848
  }, {
5849
- text: string;
5850
5849
  type: "text";
5850
+ text: string;
5851
5851
  annotations?: {
5852
5852
  priority?: number | null | undefined;
5853
5853
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -5950,8 +5950,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
5950
5950
  uri: string;
5951
5951
  description?: string | null | undefined;
5952
5952
  title?: string | null | undefined;
5953
- size?: number | null | undefined;
5954
5953
  mimeType?: string | null | undefined;
5954
+ size?: number | null | undefined;
5955
5955
  annotations?: {
5956
5956
  priority?: number | null | undefined;
5957
5957
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -5963,8 +5963,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
5963
5963
  uri: string;
5964
5964
  description?: string | null | undefined;
5965
5965
  title?: string | null | undefined;
5966
- size?: number | null | undefined;
5967
5966
  mimeType?: string | null | undefined;
5967
+ size?: number | null | undefined;
5968
5968
  annotations?: {
5969
5969
  priority?: number | null | undefined;
5970
5970
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -6046,8 +6046,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
6046
6046
  sessionUpdate: z.ZodLiteral<"agent_thought_chunk">;
6047
6047
  }, "strip", z.ZodTypeAny, {
6048
6048
  content: {
6049
- text: string;
6050
6049
  type: "text";
6050
+ text: string;
6051
6051
  annotations?: {
6052
6052
  priority?: number | null | undefined;
6053
6053
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -6077,8 +6077,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
6077
6077
  uri: string;
6078
6078
  description?: string | null | undefined;
6079
6079
  title?: string | null | undefined;
6080
- size?: number | null | undefined;
6081
6080
  mimeType?: string | null | undefined;
6081
+ size?: number | null | undefined;
6082
6082
  annotations?: {
6083
6083
  priority?: number | null | undefined;
6084
6084
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -6104,8 +6104,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
6104
6104
  sessionUpdate: "agent_thought_chunk";
6105
6105
  }, {
6106
6106
  content: {
6107
- text: string;
6108
6107
  type: "text";
6108
+ text: string;
6109
6109
  annotations?: {
6110
6110
  priority?: number | null | undefined;
6111
6111
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -6135,8 +6135,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
6135
6135
  uri: string;
6136
6136
  description?: string | null | undefined;
6137
6137
  title?: string | null | undefined;
6138
- size?: number | null | undefined;
6139
6138
  mimeType?: string | null | undefined;
6139
+ size?: number | null | undefined;
6140
6140
  annotations?: {
6141
6141
  priority?: number | null | undefined;
6142
6142
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -6179,16 +6179,16 @@ export declare const sessionNotificationSchema: z.ZodObject<{
6179
6179
  text: z.ZodString;
6180
6180
  type: z.ZodLiteral<"text">;
6181
6181
  }, "strip", z.ZodTypeAny, {
6182
- text: string;
6183
6182
  type: "text";
6183
+ text: string;
6184
6184
  annotations?: {
6185
6185
  priority?: number | null | undefined;
6186
6186
  audience?: ("user" | "assistant")[] | null | undefined;
6187
6187
  lastModified?: string | null | undefined;
6188
6188
  } | null | undefined;
6189
6189
  }, {
6190
- text: string;
6191
6190
  type: "text";
6191
+ text: string;
6192
6192
  annotations?: {
6193
6193
  priority?: number | null | undefined;
6194
6194
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -6291,8 +6291,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
6291
6291
  uri: string;
6292
6292
  description?: string | null | undefined;
6293
6293
  title?: string | null | undefined;
6294
- size?: number | null | undefined;
6295
6294
  mimeType?: string | null | undefined;
6295
+ size?: number | null | undefined;
6296
6296
  annotations?: {
6297
6297
  priority?: number | null | undefined;
6298
6298
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -6304,8 +6304,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
6304
6304
  uri: string;
6305
6305
  description?: string | null | undefined;
6306
6306
  title?: string | null | undefined;
6307
- size?: number | null | undefined;
6308
6307
  mimeType?: string | null | undefined;
6308
+ size?: number | null | undefined;
6309
6309
  annotations?: {
6310
6310
  priority?: number | null | undefined;
6311
6311
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -6388,8 +6388,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
6388
6388
  }, "strip", z.ZodTypeAny, {
6389
6389
  type: "content";
6390
6390
  content: {
6391
- text: string;
6392
6391
  type: "text";
6392
+ text: string;
6393
6393
  annotations?: {
6394
6394
  priority?: number | null | undefined;
6395
6395
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -6419,8 +6419,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
6419
6419
  uri: string;
6420
6420
  description?: string | null | undefined;
6421
6421
  title?: string | null | undefined;
6422
- size?: number | null | undefined;
6423
6422
  mimeType?: string | null | undefined;
6423
+ size?: number | null | undefined;
6424
6424
  annotations?: {
6425
6425
  priority?: number | null | undefined;
6426
6426
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -6446,8 +6446,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
6446
6446
  }, {
6447
6447
  type: "content";
6448
6448
  content: {
6449
- text: string;
6450
6449
  type: "text";
6450
+ text: string;
6451
6451
  annotations?: {
6452
6452
  priority?: number | null | undefined;
6453
6453
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -6477,8 +6477,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
6477
6477
  uri: string;
6478
6478
  description?: string | null | undefined;
6479
6479
  title?: string | null | undefined;
6480
- size?: number | null | undefined;
6481
6480
  mimeType?: string | null | undefined;
6481
+ size?: number | null | undefined;
6482
6482
  annotations?: {
6483
6483
  priority?: number | null | undefined;
6484
6484
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -6534,16 +6534,16 @@ export declare const sessionNotificationSchema: z.ZodObject<{
6534
6534
  title: z.ZodString;
6535
6535
  toolCallId: z.ZodString;
6536
6536
  }, "strip", z.ZodTypeAny, {
6537
- kind: "search" | "delete" | "edit" | "move" | "other" | "read" | "execute" | "think" | "fetch";
6538
6537
  status: "completed" | "failed" | "pending" | "in_progress";
6539
6538
  title: string;
6539
+ kind: "search" | "edit" | "delete" | "move" | "other" | "read" | "execute" | "think" | "fetch";
6540
6540
  toolCallId: string;
6541
6541
  sessionUpdate: "tool_call";
6542
6542
  content?: ({
6543
6543
  type: "content";
6544
6544
  content: {
6545
- text: string;
6546
6545
  type: "text";
6546
+ text: string;
6547
6547
  annotations?: {
6548
6548
  priority?: number | null | undefined;
6549
6549
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -6573,8 +6573,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
6573
6573
  uri: string;
6574
6574
  description?: string | null | undefined;
6575
6575
  title?: string | null | undefined;
6576
- size?: number | null | undefined;
6577
6576
  mimeType?: string | null | undefined;
6577
+ size?: number | null | undefined;
6578
6578
  annotations?: {
6579
6579
  priority?: number | null | undefined;
6580
6580
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -6609,16 +6609,16 @@ export declare const sessionNotificationSchema: z.ZodObject<{
6609
6609
  }[] | undefined;
6610
6610
  rawInput?: unknown;
6611
6611
  }, {
6612
- kind: "search" | "delete" | "edit" | "move" | "other" | "read" | "execute" | "think" | "fetch";
6613
6612
  status: "completed" | "failed" | "pending" | "in_progress";
6614
6613
  title: string;
6614
+ kind: "search" | "edit" | "delete" | "move" | "other" | "read" | "execute" | "think" | "fetch";
6615
6615
  toolCallId: string;
6616
6616
  sessionUpdate: "tool_call";
6617
6617
  content?: ({
6618
6618
  type: "content";
6619
6619
  content: {
6620
- text: string;
6621
6620
  type: "text";
6621
+ text: string;
6622
6622
  annotations?: {
6623
6623
  priority?: number | null | undefined;
6624
6624
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -6648,8 +6648,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
6648
6648
  uri: string;
6649
6649
  description?: string | null | undefined;
6650
6650
  title?: string | null | undefined;
6651
- size?: number | null | undefined;
6652
6651
  mimeType?: string | null | undefined;
6652
+ size?: number | null | undefined;
6653
6653
  annotations?: {
6654
6654
  priority?: number | null | undefined;
6655
6655
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -6702,16 +6702,16 @@ export declare const sessionNotificationSchema: z.ZodObject<{
6702
6702
  text: z.ZodString;
6703
6703
  type: z.ZodLiteral<"text">;
6704
6704
  }, "strip", z.ZodTypeAny, {
6705
- text: string;
6706
6705
  type: "text";
6706
+ text: string;
6707
6707
  annotations?: {
6708
6708
  priority?: number | null | undefined;
6709
6709
  audience?: ("user" | "assistant")[] | null | undefined;
6710
6710
  lastModified?: string | null | undefined;
6711
6711
  } | null | undefined;
6712
6712
  }, {
6713
- text: string;
6714
6713
  type: "text";
6714
+ text: string;
6715
6715
  annotations?: {
6716
6716
  priority?: number | null | undefined;
6717
6717
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -6814,8 +6814,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
6814
6814
  uri: string;
6815
6815
  description?: string | null | undefined;
6816
6816
  title?: string | null | undefined;
6817
- size?: number | null | undefined;
6818
6817
  mimeType?: string | null | undefined;
6818
+ size?: number | null | undefined;
6819
6819
  annotations?: {
6820
6820
  priority?: number | null | undefined;
6821
6821
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -6827,8 +6827,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
6827
6827
  uri: string;
6828
6828
  description?: string | null | undefined;
6829
6829
  title?: string | null | undefined;
6830
- size?: number | null | undefined;
6831
6830
  mimeType?: string | null | undefined;
6831
+ size?: number | null | undefined;
6832
6832
  annotations?: {
6833
6833
  priority?: number | null | undefined;
6834
6834
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -6911,8 +6911,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
6911
6911
  }, "strip", z.ZodTypeAny, {
6912
6912
  type: "content";
6913
6913
  content: {
6914
- text: string;
6915
6914
  type: "text";
6915
+ text: string;
6916
6916
  annotations?: {
6917
6917
  priority?: number | null | undefined;
6918
6918
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -6942,8 +6942,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
6942
6942
  uri: string;
6943
6943
  description?: string | null | undefined;
6944
6944
  title?: string | null | undefined;
6945
- size?: number | null | undefined;
6946
6945
  mimeType?: string | null | undefined;
6946
+ size?: number | null | undefined;
6947
6947
  annotations?: {
6948
6948
  priority?: number | null | undefined;
6949
6949
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -6969,8 +6969,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
6969
6969
  }, {
6970
6970
  type: "content";
6971
6971
  content: {
6972
- text: string;
6973
6972
  type: "text";
6973
+ text: string;
6974
6974
  annotations?: {
6975
6975
  priority?: number | null | undefined;
6976
6976
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -7000,8 +7000,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
7000
7000
  uri: string;
7001
7001
  description?: string | null | undefined;
7002
7002
  title?: string | null | undefined;
7003
- size?: number | null | undefined;
7004
7003
  mimeType?: string | null | undefined;
7004
+ size?: number | null | undefined;
7005
7005
  annotations?: {
7006
7006
  priority?: number | null | undefined;
7007
7007
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -7059,11 +7059,12 @@ export declare const sessionNotificationSchema: z.ZodObject<{
7059
7059
  }, "strip", z.ZodTypeAny, {
7060
7060
  toolCallId: string;
7061
7061
  sessionUpdate: "tool_call_update";
7062
+ status?: "completed" | "failed" | "pending" | "in_progress" | null | undefined;
7062
7063
  content?: ({
7063
7064
  type: "content";
7064
7065
  content: {
7065
- text: string;
7066
7066
  type: "text";
7067
+ text: string;
7067
7068
  annotations?: {
7068
7069
  priority?: number | null | undefined;
7069
7070
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -7093,8 +7094,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
7093
7094
  uri: string;
7094
7095
  description?: string | null | undefined;
7095
7096
  title?: string | null | undefined;
7096
- size?: number | null | undefined;
7097
7097
  mimeType?: string | null | undefined;
7098
+ size?: number | null | undefined;
7098
7099
  annotations?: {
7099
7100
  priority?: number | null | undefined;
7100
7101
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -7123,9 +7124,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
7123
7124
  newText: string;
7124
7125
  oldText: string | null;
7125
7126
  })[] | null | undefined;
7126
- kind?: "search" | "delete" | "edit" | "move" | "other" | "read" | "execute" | "think" | "fetch" | null | undefined;
7127
- status?: "completed" | "failed" | "pending" | "in_progress" | null | undefined;
7128
7127
  title?: string | null | undefined;
7128
+ kind?: "search" | "edit" | "delete" | "move" | "other" | "read" | "execute" | "think" | "fetch" | null | undefined;
7129
7129
  locations?: {
7130
7130
  path: string;
7131
7131
  line?: number | null | undefined;
@@ -7134,11 +7134,12 @@ export declare const sessionNotificationSchema: z.ZodObject<{
7134
7134
  }, {
7135
7135
  toolCallId: string;
7136
7136
  sessionUpdate: "tool_call_update";
7137
+ status?: "completed" | "failed" | "pending" | "in_progress" | null | undefined;
7137
7138
  content?: ({
7138
7139
  type: "content";
7139
7140
  content: {
7140
- text: string;
7141
7141
  type: "text";
7142
+ text: string;
7142
7143
  annotations?: {
7143
7144
  priority?: number | null | undefined;
7144
7145
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -7168,8 +7169,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
7168
7169
  uri: string;
7169
7170
  description?: string | null | undefined;
7170
7171
  title?: string | null | undefined;
7171
- size?: number | null | undefined;
7172
7172
  mimeType?: string | null | undefined;
7173
+ size?: number | null | undefined;
7173
7174
  annotations?: {
7174
7175
  priority?: number | null | undefined;
7175
7176
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -7198,9 +7199,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
7198
7199
  newText: string;
7199
7200
  oldText: string | null;
7200
7201
  })[] | null | undefined;
7201
- kind?: "search" | "delete" | "edit" | "move" | "other" | "read" | "execute" | "think" | "fetch" | null | undefined;
7202
- status?: "completed" | "failed" | "pending" | "in_progress" | null | undefined;
7203
7202
  title?: string | null | undefined;
7203
+ kind?: "search" | "edit" | "delete" | "move" | "other" | "read" | "execute" | "think" | "fetch" | null | undefined;
7204
7204
  locations?: {
7205
7205
  path: string;
7206
7206
  line?: number | null | undefined;
@@ -7212,26 +7212,26 @@ export declare const sessionNotificationSchema: z.ZodObject<{
7212
7212
  priority: z.ZodUnion<[z.ZodLiteral<"high">, z.ZodLiteral<"medium">, z.ZodLiteral<"low">]>;
7213
7213
  status: z.ZodUnion<[z.ZodLiteral<"pending">, z.ZodLiteral<"in_progress">, z.ZodLiteral<"completed">]>;
7214
7214
  }, "strip", z.ZodTypeAny, {
7215
- content: string;
7216
7215
  status: "completed" | "pending" | "in_progress";
7216
+ content: string;
7217
7217
  priority: "medium" | "high" | "low";
7218
7218
  }, {
7219
- content: string;
7220
7219
  status: "completed" | "pending" | "in_progress";
7220
+ content: string;
7221
7221
  priority: "medium" | "high" | "low";
7222
7222
  }>, "many">;
7223
7223
  sessionUpdate: z.ZodLiteral<"plan">;
7224
7224
  }, "strip", z.ZodTypeAny, {
7225
7225
  entries: {
7226
- content: string;
7227
7226
  status: "completed" | "pending" | "in_progress";
7227
+ content: string;
7228
7228
  priority: "medium" | "high" | "low";
7229
7229
  }[];
7230
7230
  sessionUpdate: "plan";
7231
7231
  }, {
7232
7232
  entries: {
7233
- content: string;
7234
7233
  status: "completed" | "pending" | "in_progress";
7234
+ content: string;
7235
7235
  priority: "medium" | "high" | "low";
7236
7236
  }[];
7237
7237
  sessionUpdate: "plan";
@@ -7247,14 +7247,14 @@ export declare const sessionNotificationSchema: z.ZodObject<{
7247
7247
  }>>>;
7248
7248
  name: z.ZodString;
7249
7249
  }, "strip", z.ZodTypeAny, {
7250
- description: string;
7251
7250
  name: string;
7251
+ description: string;
7252
7252
  input?: {
7253
7253
  hint: string;
7254
7254
  } | null | undefined;
7255
7255
  }, {
7256
- description: string;
7257
7256
  name: string;
7257
+ description: string;
7258
7258
  input?: {
7259
7259
  hint: string;
7260
7260
  } | null | undefined;
@@ -7263,8 +7263,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
7263
7263
  }, "strip", z.ZodTypeAny, {
7264
7264
  sessionUpdate: "available_commands_update";
7265
7265
  availableCommands: {
7266
- description: string;
7267
7266
  name: string;
7267
+ description: string;
7268
7268
  input?: {
7269
7269
  hint: string;
7270
7270
  } | null | undefined;
@@ -7272,18 +7272,19 @@ export declare const sessionNotificationSchema: z.ZodObject<{
7272
7272
  }, {
7273
7273
  sessionUpdate: "available_commands_update";
7274
7274
  availableCommands: {
7275
- description: string;
7276
7275
  name: string;
7276
+ description: string;
7277
7277
  input?: {
7278
7278
  hint: string;
7279
7279
  } | null | undefined;
7280
7280
  }[];
7281
7281
  }>]>;
7282
7282
  }, "strip", z.ZodTypeAny, {
7283
+ sessionId: string;
7283
7284
  update: {
7284
7285
  content: {
7285
- text: string;
7286
7286
  type: "text";
7287
+ text: string;
7287
7288
  annotations?: {
7288
7289
  priority?: number | null | undefined;
7289
7290
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -7313,8 +7314,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
7313
7314
  uri: string;
7314
7315
  description?: string | null | undefined;
7315
7316
  title?: string | null | undefined;
7316
- size?: number | null | undefined;
7317
7317
  mimeType?: string | null | undefined;
7318
+ size?: number | null | undefined;
7318
7319
  annotations?: {
7319
7320
  priority?: number | null | undefined;
7320
7321
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -7340,8 +7341,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
7340
7341
  sessionUpdate: "user_message_chunk";
7341
7342
  } | {
7342
7343
  content: {
7343
- text: string;
7344
7344
  type: "text";
7345
+ text: string;
7345
7346
  annotations?: {
7346
7347
  priority?: number | null | undefined;
7347
7348
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -7371,8 +7372,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
7371
7372
  uri: string;
7372
7373
  description?: string | null | undefined;
7373
7374
  title?: string | null | undefined;
7374
- size?: number | null | undefined;
7375
7375
  mimeType?: string | null | undefined;
7376
+ size?: number | null | undefined;
7376
7377
  annotations?: {
7377
7378
  priority?: number | null | undefined;
7378
7379
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -7398,8 +7399,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
7398
7399
  sessionUpdate: "agent_message_chunk";
7399
7400
  } | {
7400
7401
  content: {
7401
- text: string;
7402
7402
  type: "text";
7403
+ text: string;
7403
7404
  annotations?: {
7404
7405
  priority?: number | null | undefined;
7405
7406
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -7429,8 +7430,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
7429
7430
  uri: string;
7430
7431
  description?: string | null | undefined;
7431
7432
  title?: string | null | undefined;
7432
- size?: number | null | undefined;
7433
7433
  mimeType?: string | null | undefined;
7434
+ size?: number | null | undefined;
7434
7435
  annotations?: {
7435
7436
  priority?: number | null | undefined;
7436
7437
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -7455,16 +7456,16 @@ export declare const sessionNotificationSchema: z.ZodObject<{
7455
7456
  };
7456
7457
  sessionUpdate: "agent_thought_chunk";
7457
7458
  } | {
7458
- kind: "search" | "delete" | "edit" | "move" | "other" | "read" | "execute" | "think" | "fetch";
7459
7459
  status: "completed" | "failed" | "pending" | "in_progress";
7460
7460
  title: string;
7461
+ kind: "search" | "edit" | "delete" | "move" | "other" | "read" | "execute" | "think" | "fetch";
7461
7462
  toolCallId: string;
7462
7463
  sessionUpdate: "tool_call";
7463
7464
  content?: ({
7464
7465
  type: "content";
7465
7466
  content: {
7466
- text: string;
7467
7467
  type: "text";
7468
+ text: string;
7468
7469
  annotations?: {
7469
7470
  priority?: number | null | undefined;
7470
7471
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -7494,8 +7495,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
7494
7495
  uri: string;
7495
7496
  description?: string | null | undefined;
7496
7497
  title?: string | null | undefined;
7497
- size?: number | null | undefined;
7498
7498
  mimeType?: string | null | undefined;
7499
+ size?: number | null | undefined;
7499
7500
  annotations?: {
7500
7501
  priority?: number | null | undefined;
7501
7502
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -7532,11 +7533,12 @@ export declare const sessionNotificationSchema: z.ZodObject<{
7532
7533
  } | {
7533
7534
  toolCallId: string;
7534
7535
  sessionUpdate: "tool_call_update";
7536
+ status?: "completed" | "failed" | "pending" | "in_progress" | null | undefined;
7535
7537
  content?: ({
7536
7538
  type: "content";
7537
7539
  content: {
7538
- text: string;
7539
7540
  type: "text";
7541
+ text: string;
7540
7542
  annotations?: {
7541
7543
  priority?: number | null | undefined;
7542
7544
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -7566,8 +7568,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
7566
7568
  uri: string;
7567
7569
  description?: string | null | undefined;
7568
7570
  title?: string | null | undefined;
7569
- size?: number | null | undefined;
7570
7571
  mimeType?: string | null | undefined;
7572
+ size?: number | null | undefined;
7571
7573
  annotations?: {
7572
7574
  priority?: number | null | undefined;
7573
7575
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -7596,9 +7598,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
7596
7598
  newText: string;
7597
7599
  oldText: string | null;
7598
7600
  })[] | null | undefined;
7599
- kind?: "search" | "delete" | "edit" | "move" | "other" | "read" | "execute" | "think" | "fetch" | null | undefined;
7600
- status?: "completed" | "failed" | "pending" | "in_progress" | null | undefined;
7601
7601
  title?: string | null | undefined;
7602
+ kind?: "search" | "edit" | "delete" | "move" | "other" | "read" | "execute" | "think" | "fetch" | null | undefined;
7602
7603
  locations?: {
7603
7604
  path: string;
7604
7605
  line?: number | null | undefined;
@@ -7606,27 +7607,27 @@ export declare const sessionNotificationSchema: z.ZodObject<{
7606
7607
  rawInput?: unknown;
7607
7608
  } | {
7608
7609
  entries: {
7609
- content: string;
7610
7610
  status: "completed" | "pending" | "in_progress";
7611
+ content: string;
7611
7612
  priority: "medium" | "high" | "low";
7612
7613
  }[];
7613
7614
  sessionUpdate: "plan";
7614
7615
  } | {
7615
7616
  sessionUpdate: "available_commands_update";
7616
7617
  availableCommands: {
7617
- description: string;
7618
7618
  name: string;
7619
+ description: string;
7619
7620
  input?: {
7620
7621
  hint: string;
7621
7622
  } | null | undefined;
7622
7623
  }[];
7623
7624
  };
7624
- sessionId: string;
7625
7625
  }, {
7626
+ sessionId: string;
7626
7627
  update: {
7627
7628
  content: {
7628
- text: string;
7629
7629
  type: "text";
7630
+ text: string;
7630
7631
  annotations?: {
7631
7632
  priority?: number | null | undefined;
7632
7633
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -7656,8 +7657,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
7656
7657
  uri: string;
7657
7658
  description?: string | null | undefined;
7658
7659
  title?: string | null | undefined;
7659
- size?: number | null | undefined;
7660
7660
  mimeType?: string | null | undefined;
7661
+ size?: number | null | undefined;
7661
7662
  annotations?: {
7662
7663
  priority?: number | null | undefined;
7663
7664
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -7683,8 +7684,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
7683
7684
  sessionUpdate: "user_message_chunk";
7684
7685
  } | {
7685
7686
  content: {
7686
- text: string;
7687
7687
  type: "text";
7688
+ text: string;
7688
7689
  annotations?: {
7689
7690
  priority?: number | null | undefined;
7690
7691
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -7714,8 +7715,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
7714
7715
  uri: string;
7715
7716
  description?: string | null | undefined;
7716
7717
  title?: string | null | undefined;
7717
- size?: number | null | undefined;
7718
7718
  mimeType?: string | null | undefined;
7719
+ size?: number | null | undefined;
7719
7720
  annotations?: {
7720
7721
  priority?: number | null | undefined;
7721
7722
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -7741,8 +7742,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
7741
7742
  sessionUpdate: "agent_message_chunk";
7742
7743
  } | {
7743
7744
  content: {
7744
- text: string;
7745
7745
  type: "text";
7746
+ text: string;
7746
7747
  annotations?: {
7747
7748
  priority?: number | null | undefined;
7748
7749
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -7772,8 +7773,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
7772
7773
  uri: string;
7773
7774
  description?: string | null | undefined;
7774
7775
  title?: string | null | undefined;
7775
- size?: number | null | undefined;
7776
7776
  mimeType?: string | null | undefined;
7777
+ size?: number | null | undefined;
7777
7778
  annotations?: {
7778
7779
  priority?: number | null | undefined;
7779
7780
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -7798,16 +7799,16 @@ export declare const sessionNotificationSchema: z.ZodObject<{
7798
7799
  };
7799
7800
  sessionUpdate: "agent_thought_chunk";
7800
7801
  } | {
7801
- kind: "search" | "delete" | "edit" | "move" | "other" | "read" | "execute" | "think" | "fetch";
7802
7802
  status: "completed" | "failed" | "pending" | "in_progress";
7803
7803
  title: string;
7804
+ kind: "search" | "edit" | "delete" | "move" | "other" | "read" | "execute" | "think" | "fetch";
7804
7805
  toolCallId: string;
7805
7806
  sessionUpdate: "tool_call";
7806
7807
  content?: ({
7807
7808
  type: "content";
7808
7809
  content: {
7809
- text: string;
7810
7810
  type: "text";
7811
+ text: string;
7811
7812
  annotations?: {
7812
7813
  priority?: number | null | undefined;
7813
7814
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -7837,8 +7838,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
7837
7838
  uri: string;
7838
7839
  description?: string | null | undefined;
7839
7840
  title?: string | null | undefined;
7840
- size?: number | null | undefined;
7841
7841
  mimeType?: string | null | undefined;
7842
+ size?: number | null | undefined;
7842
7843
  annotations?: {
7843
7844
  priority?: number | null | undefined;
7844
7845
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -7875,11 +7876,12 @@ export declare const sessionNotificationSchema: z.ZodObject<{
7875
7876
  } | {
7876
7877
  toolCallId: string;
7877
7878
  sessionUpdate: "tool_call_update";
7879
+ status?: "completed" | "failed" | "pending" | "in_progress" | null | undefined;
7878
7880
  content?: ({
7879
7881
  type: "content";
7880
7882
  content: {
7881
- text: string;
7882
7883
  type: "text";
7884
+ text: string;
7883
7885
  annotations?: {
7884
7886
  priority?: number | null | undefined;
7885
7887
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -7909,8 +7911,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
7909
7911
  uri: string;
7910
7912
  description?: string | null | undefined;
7911
7913
  title?: string | null | undefined;
7912
- size?: number | null | undefined;
7913
7914
  mimeType?: string | null | undefined;
7915
+ size?: number | null | undefined;
7914
7916
  annotations?: {
7915
7917
  priority?: number | null | undefined;
7916
7918
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -7939,9 +7941,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
7939
7941
  newText: string;
7940
7942
  oldText: string | null;
7941
7943
  })[] | null | undefined;
7942
- kind?: "search" | "delete" | "edit" | "move" | "other" | "read" | "execute" | "think" | "fetch" | null | undefined;
7943
- status?: "completed" | "failed" | "pending" | "in_progress" | null | undefined;
7944
7944
  title?: string | null | undefined;
7945
+ kind?: "search" | "edit" | "delete" | "move" | "other" | "read" | "execute" | "think" | "fetch" | null | undefined;
7945
7946
  locations?: {
7946
7947
  path: string;
7947
7948
  line?: number | null | undefined;
@@ -7949,34 +7950,33 @@ export declare const sessionNotificationSchema: z.ZodObject<{
7949
7950
  rawInput?: unknown;
7950
7951
  } | {
7951
7952
  entries: {
7952
- content: string;
7953
7953
  status: "completed" | "pending" | "in_progress";
7954
+ content: string;
7954
7955
  priority: "medium" | "high" | "low";
7955
7956
  }[];
7956
7957
  sessionUpdate: "plan";
7957
7958
  } | {
7958
7959
  sessionUpdate: "available_commands_update";
7959
7960
  availableCommands: {
7960
- description: string;
7961
7961
  name: string;
7962
+ description: string;
7962
7963
  input?: {
7963
7964
  hint: string;
7964
7965
  } | null | undefined;
7965
7966
  }[];
7966
7967
  };
7967
- sessionId: string;
7968
7968
  }>;
7969
7969
  export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
7970
7970
  content: z.ZodString;
7971
7971
  path: z.ZodString;
7972
7972
  sessionId: z.ZodString;
7973
7973
  }, "strip", z.ZodTypeAny, {
7974
- content: string;
7975
7974
  path: string;
7975
+ content: string;
7976
7976
  sessionId: string;
7977
7977
  }, {
7978
- content: string;
7979
7978
  path: string;
7979
+ content: string;
7980
7980
  sessionId: string;
7981
7981
  }>, z.ZodObject<{
7982
7982
  limit: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
@@ -8027,16 +8027,16 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
8027
8027
  text: z.ZodString;
8028
8028
  type: z.ZodLiteral<"text">;
8029
8029
  }, "strip", z.ZodTypeAny, {
8030
- text: string;
8031
8030
  type: "text";
8031
+ text: string;
8032
8032
  annotations?: {
8033
8033
  priority?: number | null | undefined;
8034
8034
  audience?: ("user" | "assistant")[] | null | undefined;
8035
8035
  lastModified?: string | null | undefined;
8036
8036
  } | null | undefined;
8037
8037
  }, {
8038
- text: string;
8039
8038
  type: "text";
8039
+ text: string;
8040
8040
  annotations?: {
8041
8041
  priority?: number | null | undefined;
8042
8042
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -8139,8 +8139,8 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
8139
8139
  uri: string;
8140
8140
  description?: string | null | undefined;
8141
8141
  title?: string | null | undefined;
8142
- size?: number | null | undefined;
8143
8142
  mimeType?: string | null | undefined;
8143
+ size?: number | null | undefined;
8144
8144
  annotations?: {
8145
8145
  priority?: number | null | undefined;
8146
8146
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -8152,8 +8152,8 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
8152
8152
  uri: string;
8153
8153
  description?: string | null | undefined;
8154
8154
  title?: string | null | undefined;
8155
- size?: number | null | undefined;
8156
8155
  mimeType?: string | null | undefined;
8156
+ size?: number | null | undefined;
8157
8157
  annotations?: {
8158
8158
  priority?: number | null | undefined;
8159
8159
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -8236,8 +8236,8 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
8236
8236
  }, "strip", z.ZodTypeAny, {
8237
8237
  type: "content";
8238
8238
  content: {
8239
- text: string;
8240
8239
  type: "text";
8240
+ text: string;
8241
8241
  annotations?: {
8242
8242
  priority?: number | null | undefined;
8243
8243
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -8267,8 +8267,8 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
8267
8267
  uri: string;
8268
8268
  description?: string | null | undefined;
8269
8269
  title?: string | null | undefined;
8270
- size?: number | null | undefined;
8271
8270
  mimeType?: string | null | undefined;
8271
+ size?: number | null | undefined;
8272
8272
  annotations?: {
8273
8273
  priority?: number | null | undefined;
8274
8274
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -8294,8 +8294,8 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
8294
8294
  }, {
8295
8295
  type: "content";
8296
8296
  content: {
8297
- text: string;
8298
8297
  type: "text";
8298
+ text: string;
8299
8299
  annotations?: {
8300
8300
  priority?: number | null | undefined;
8301
8301
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -8325,8 +8325,8 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
8325
8325
  uri: string;
8326
8326
  description?: string | null | undefined;
8327
8327
  title?: string | null | undefined;
8328
- size?: number | null | undefined;
8329
8328
  mimeType?: string | null | undefined;
8329
+ size?: number | null | undefined;
8330
8330
  annotations?: {
8331
8331
  priority?: number | null | undefined;
8332
8332
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -8381,15 +8381,15 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
8381
8381
  title: z.ZodString;
8382
8382
  toolCallId: z.ZodString;
8383
8383
  }, "strip", z.ZodTypeAny, {
8384
- kind: "search" | "delete" | "edit" | "move" | "other" | "read" | "execute" | "think" | "fetch";
8385
8384
  status: "completed" | "failed" | "pending" | "in_progress";
8386
8385
  title: string;
8386
+ kind: "search" | "edit" | "delete" | "move" | "other" | "read" | "execute" | "think" | "fetch";
8387
8387
  toolCallId: string;
8388
8388
  content?: ({
8389
8389
  type: "content";
8390
8390
  content: {
8391
- text: string;
8392
8391
  type: "text";
8392
+ text: string;
8393
8393
  annotations?: {
8394
8394
  priority?: number | null | undefined;
8395
8395
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -8419,8 +8419,8 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
8419
8419
  uri: string;
8420
8420
  description?: string | null | undefined;
8421
8421
  title?: string | null | undefined;
8422
- size?: number | null | undefined;
8423
8422
  mimeType?: string | null | undefined;
8423
+ size?: number | null | undefined;
8424
8424
  annotations?: {
8425
8425
  priority?: number | null | undefined;
8426
8426
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -8455,15 +8455,15 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
8455
8455
  }[] | undefined;
8456
8456
  rawInput?: unknown;
8457
8457
  }, {
8458
- kind: "search" | "delete" | "edit" | "move" | "other" | "read" | "execute" | "think" | "fetch";
8459
8458
  status: "completed" | "failed" | "pending" | "in_progress";
8460
8459
  title: string;
8460
+ kind: "search" | "edit" | "delete" | "move" | "other" | "read" | "execute" | "think" | "fetch";
8461
8461
  toolCallId: string;
8462
8462
  content?: ({
8463
8463
  type: "content";
8464
8464
  content: {
8465
- text: string;
8466
8465
  type: "text";
8466
+ text: string;
8467
8467
  annotations?: {
8468
8468
  priority?: number | null | undefined;
8469
8469
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -8493,8 +8493,8 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
8493
8493
  uri: string;
8494
8494
  description?: string | null | undefined;
8495
8495
  title?: string | null | undefined;
8496
- size?: number | null | undefined;
8497
8496
  mimeType?: string | null | undefined;
8497
+ size?: number | null | undefined;
8498
8498
  annotations?: {
8499
8499
  priority?: number | null | undefined;
8500
8500
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -8537,15 +8537,15 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
8537
8537
  }[];
8538
8538
  sessionId: string;
8539
8539
  toolCall: {
8540
- kind: "search" | "delete" | "edit" | "move" | "other" | "read" | "execute" | "think" | "fetch";
8541
8540
  status: "completed" | "failed" | "pending" | "in_progress";
8542
8541
  title: string;
8542
+ kind: "search" | "edit" | "delete" | "move" | "other" | "read" | "execute" | "think" | "fetch";
8543
8543
  toolCallId: string;
8544
8544
  content?: ({
8545
8545
  type: "content";
8546
8546
  content: {
8547
- text: string;
8548
8547
  type: "text";
8548
+ text: string;
8549
8549
  annotations?: {
8550
8550
  priority?: number | null | undefined;
8551
8551
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -8575,8 +8575,8 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
8575
8575
  uri: string;
8576
8576
  description?: string | null | undefined;
8577
8577
  title?: string | null | undefined;
8578
- size?: number | null | undefined;
8579
8578
  mimeType?: string | null | undefined;
8579
+ size?: number | null | undefined;
8580
8580
  annotations?: {
8581
8581
  priority?: number | null | undefined;
8582
8582
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -8619,15 +8619,15 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
8619
8619
  }[];
8620
8620
  sessionId: string;
8621
8621
  toolCall: {
8622
- kind: "search" | "delete" | "edit" | "move" | "other" | "read" | "execute" | "think" | "fetch";
8623
8622
  status: "completed" | "failed" | "pending" | "in_progress";
8624
8623
  title: string;
8624
+ kind: "search" | "edit" | "delete" | "move" | "other" | "read" | "execute" | "think" | "fetch";
8625
8625
  toolCallId: string;
8626
8626
  content?: ({
8627
8627
  type: "content";
8628
8628
  content: {
8629
- text: string;
8630
8629
  type: "text";
8630
+ text: string;
8631
8631
  annotations?: {
8632
8632
  priority?: number | null | undefined;
8633
8633
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -8657,8 +8657,8 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
8657
8657
  uri: string;
8658
8658
  description?: string | null | undefined;
8659
8659
  title?: string | null | undefined;
8660
- size?: number | null | undefined;
8661
8660
  mimeType?: string | null | undefined;
8661
+ size?: number | null | undefined;
8662
8662
  annotations?: {
8663
8663
  priority?: number | null | undefined;
8664
8664
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -8871,16 +8871,16 @@ export declare const agentRequestSchema: z.ZodUnion<[z.ZodObject<{
8871
8871
  text: z.ZodString;
8872
8872
  type: z.ZodLiteral<"text">;
8873
8873
  }, "strip", z.ZodTypeAny, {
8874
- text: string;
8875
8874
  type: "text";
8875
+ text: string;
8876
8876
  annotations?: {
8877
8877
  priority?: number | null | undefined;
8878
8878
  audience?: ("user" | "assistant")[] | null | undefined;
8879
8879
  lastModified?: string | null | undefined;
8880
8880
  } | null | undefined;
8881
8881
  }, {
8882
- text: string;
8883
8882
  type: "text";
8883
+ text: string;
8884
8884
  annotations?: {
8885
8885
  priority?: number | null | undefined;
8886
8886
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -8983,8 +8983,8 @@ export declare const agentRequestSchema: z.ZodUnion<[z.ZodObject<{
8983
8983
  uri: string;
8984
8984
  description?: string | null | undefined;
8985
8985
  title?: string | null | undefined;
8986
- size?: number | null | undefined;
8987
8986
  mimeType?: string | null | undefined;
8987
+ size?: number | null | undefined;
8988
8988
  annotations?: {
8989
8989
  priority?: number | null | undefined;
8990
8990
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -8996,8 +8996,8 @@ export declare const agentRequestSchema: z.ZodUnion<[z.ZodObject<{
8996
8996
  uri: string;
8997
8997
  description?: string | null | undefined;
8998
8998
  title?: string | null | undefined;
8999
- size?: number | null | undefined;
9000
8999
  mimeType?: string | null | undefined;
9000
+ size?: number | null | undefined;
9001
9001
  annotations?: {
9002
9002
  priority?: number | null | undefined;
9003
9003
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -9079,8 +9079,8 @@ export declare const agentRequestSchema: z.ZodUnion<[z.ZodObject<{
9079
9079
  sessionId: z.ZodString;
9080
9080
  }, "strip", z.ZodTypeAny, {
9081
9081
  prompt: ({
9082
- text: string;
9083
9082
  type: "text";
9083
+ text: string;
9084
9084
  annotations?: {
9085
9085
  priority?: number | null | undefined;
9086
9086
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -9110,8 +9110,8 @@ export declare const agentRequestSchema: z.ZodUnion<[z.ZodObject<{
9110
9110
  uri: string;
9111
9111
  description?: string | null | undefined;
9112
9112
  title?: string | null | undefined;
9113
- size?: number | null | undefined;
9114
9113
  mimeType?: string | null | undefined;
9114
+ size?: number | null | undefined;
9115
9115
  annotations?: {
9116
9116
  priority?: number | null | undefined;
9117
9117
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -9137,8 +9137,8 @@ export declare const agentRequestSchema: z.ZodUnion<[z.ZodObject<{
9137
9137
  sessionId: string;
9138
9138
  }, {
9139
9139
  prompt: ({
9140
- text: string;
9141
9140
  type: "text";
9141
+ text: string;
9142
9142
  annotations?: {
9143
9143
  priority?: number | null | undefined;
9144
9144
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -9168,8 +9168,8 @@ export declare const agentRequestSchema: z.ZodUnion<[z.ZodObject<{
9168
9168
  uri: string;
9169
9169
  description?: string | null | undefined;
9170
9170
  title?: string | null | undefined;
9171
- size?: number | null | undefined;
9172
9171
  mimeType?: string | null | undefined;
9172
+ size?: number | null | undefined;
9173
9173
  annotations?: {
9174
9174
  priority?: number | null | undefined;
9175
9175
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -9214,16 +9214,16 @@ export declare const agentNotificationSchema: z.ZodObject<{
9214
9214
  text: z.ZodString;
9215
9215
  type: z.ZodLiteral<"text">;
9216
9216
  }, "strip", z.ZodTypeAny, {
9217
- text: string;
9218
9217
  type: "text";
9218
+ text: string;
9219
9219
  annotations?: {
9220
9220
  priority?: number | null | undefined;
9221
9221
  audience?: ("user" | "assistant")[] | null | undefined;
9222
9222
  lastModified?: string | null | undefined;
9223
9223
  } | null | undefined;
9224
9224
  }, {
9225
- text: string;
9226
9225
  type: "text";
9226
+ text: string;
9227
9227
  annotations?: {
9228
9228
  priority?: number | null | undefined;
9229
9229
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -9326,8 +9326,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
9326
9326
  uri: string;
9327
9327
  description?: string | null | undefined;
9328
9328
  title?: string | null | undefined;
9329
- size?: number | null | undefined;
9330
9329
  mimeType?: string | null | undefined;
9330
+ size?: number | null | undefined;
9331
9331
  annotations?: {
9332
9332
  priority?: number | null | undefined;
9333
9333
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -9339,8 +9339,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
9339
9339
  uri: string;
9340
9340
  description?: string | null | undefined;
9341
9341
  title?: string | null | undefined;
9342
- size?: number | null | undefined;
9343
9342
  mimeType?: string | null | undefined;
9343
+ size?: number | null | undefined;
9344
9344
  annotations?: {
9345
9345
  priority?: number | null | undefined;
9346
9346
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -9422,8 +9422,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
9422
9422
  sessionUpdate: z.ZodLiteral<"user_message_chunk">;
9423
9423
  }, "strip", z.ZodTypeAny, {
9424
9424
  content: {
9425
- text: string;
9426
9425
  type: "text";
9426
+ text: string;
9427
9427
  annotations?: {
9428
9428
  priority?: number | null | undefined;
9429
9429
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -9453,8 +9453,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
9453
9453
  uri: string;
9454
9454
  description?: string | null | undefined;
9455
9455
  title?: string | null | undefined;
9456
- size?: number | null | undefined;
9457
9456
  mimeType?: string | null | undefined;
9457
+ size?: number | null | undefined;
9458
9458
  annotations?: {
9459
9459
  priority?: number | null | undefined;
9460
9460
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -9480,8 +9480,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
9480
9480
  sessionUpdate: "user_message_chunk";
9481
9481
  }, {
9482
9482
  content: {
9483
- text: string;
9484
9483
  type: "text";
9484
+ text: string;
9485
9485
  annotations?: {
9486
9486
  priority?: number | null | undefined;
9487
9487
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -9511,8 +9511,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
9511
9511
  uri: string;
9512
9512
  description?: string | null | undefined;
9513
9513
  title?: string | null | undefined;
9514
- size?: number | null | undefined;
9515
9514
  mimeType?: string | null | undefined;
9515
+ size?: number | null | undefined;
9516
9516
  annotations?: {
9517
9517
  priority?: number | null | undefined;
9518
9518
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -9554,16 +9554,16 @@ export declare const agentNotificationSchema: z.ZodObject<{
9554
9554
  text: z.ZodString;
9555
9555
  type: z.ZodLiteral<"text">;
9556
9556
  }, "strip", z.ZodTypeAny, {
9557
- text: string;
9558
9557
  type: "text";
9558
+ text: string;
9559
9559
  annotations?: {
9560
9560
  priority?: number | null | undefined;
9561
9561
  audience?: ("user" | "assistant")[] | null | undefined;
9562
9562
  lastModified?: string | null | undefined;
9563
9563
  } | null | undefined;
9564
9564
  }, {
9565
- text: string;
9566
9565
  type: "text";
9566
+ text: string;
9567
9567
  annotations?: {
9568
9568
  priority?: number | null | undefined;
9569
9569
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -9666,8 +9666,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
9666
9666
  uri: string;
9667
9667
  description?: string | null | undefined;
9668
9668
  title?: string | null | undefined;
9669
- size?: number | null | undefined;
9670
9669
  mimeType?: string | null | undefined;
9670
+ size?: number | null | undefined;
9671
9671
  annotations?: {
9672
9672
  priority?: number | null | undefined;
9673
9673
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -9679,8 +9679,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
9679
9679
  uri: string;
9680
9680
  description?: string | null | undefined;
9681
9681
  title?: string | null | undefined;
9682
- size?: number | null | undefined;
9683
9682
  mimeType?: string | null | undefined;
9683
+ size?: number | null | undefined;
9684
9684
  annotations?: {
9685
9685
  priority?: number | null | undefined;
9686
9686
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -9762,8 +9762,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
9762
9762
  sessionUpdate: z.ZodLiteral<"agent_message_chunk">;
9763
9763
  }, "strip", z.ZodTypeAny, {
9764
9764
  content: {
9765
- text: string;
9766
9765
  type: "text";
9766
+ text: string;
9767
9767
  annotations?: {
9768
9768
  priority?: number | null | undefined;
9769
9769
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -9793,8 +9793,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
9793
9793
  uri: string;
9794
9794
  description?: string | null | undefined;
9795
9795
  title?: string | null | undefined;
9796
- size?: number | null | undefined;
9797
9796
  mimeType?: string | null | undefined;
9797
+ size?: number | null | undefined;
9798
9798
  annotations?: {
9799
9799
  priority?: number | null | undefined;
9800
9800
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -9820,8 +9820,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
9820
9820
  sessionUpdate: "agent_message_chunk";
9821
9821
  }, {
9822
9822
  content: {
9823
- text: string;
9824
9823
  type: "text";
9824
+ text: string;
9825
9825
  annotations?: {
9826
9826
  priority?: number | null | undefined;
9827
9827
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -9851,8 +9851,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
9851
9851
  uri: string;
9852
9852
  description?: string | null | undefined;
9853
9853
  title?: string | null | undefined;
9854
- size?: number | null | undefined;
9855
9854
  mimeType?: string | null | undefined;
9855
+ size?: number | null | undefined;
9856
9856
  annotations?: {
9857
9857
  priority?: number | null | undefined;
9858
9858
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -9894,16 +9894,16 @@ export declare const agentNotificationSchema: z.ZodObject<{
9894
9894
  text: z.ZodString;
9895
9895
  type: z.ZodLiteral<"text">;
9896
9896
  }, "strip", z.ZodTypeAny, {
9897
- text: string;
9898
9897
  type: "text";
9898
+ text: string;
9899
9899
  annotations?: {
9900
9900
  priority?: number | null | undefined;
9901
9901
  audience?: ("user" | "assistant")[] | null | undefined;
9902
9902
  lastModified?: string | null | undefined;
9903
9903
  } | null | undefined;
9904
9904
  }, {
9905
- text: string;
9906
9905
  type: "text";
9906
+ text: string;
9907
9907
  annotations?: {
9908
9908
  priority?: number | null | undefined;
9909
9909
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -10006,8 +10006,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
10006
10006
  uri: string;
10007
10007
  description?: string | null | undefined;
10008
10008
  title?: string | null | undefined;
10009
- size?: number | null | undefined;
10010
10009
  mimeType?: string | null | undefined;
10010
+ size?: number | null | undefined;
10011
10011
  annotations?: {
10012
10012
  priority?: number | null | undefined;
10013
10013
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -10019,8 +10019,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
10019
10019
  uri: string;
10020
10020
  description?: string | null | undefined;
10021
10021
  title?: string | null | undefined;
10022
- size?: number | null | undefined;
10023
10022
  mimeType?: string | null | undefined;
10023
+ size?: number | null | undefined;
10024
10024
  annotations?: {
10025
10025
  priority?: number | null | undefined;
10026
10026
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -10102,8 +10102,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
10102
10102
  sessionUpdate: z.ZodLiteral<"agent_thought_chunk">;
10103
10103
  }, "strip", z.ZodTypeAny, {
10104
10104
  content: {
10105
- text: string;
10106
10105
  type: "text";
10106
+ text: string;
10107
10107
  annotations?: {
10108
10108
  priority?: number | null | undefined;
10109
10109
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -10133,8 +10133,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
10133
10133
  uri: string;
10134
10134
  description?: string | null | undefined;
10135
10135
  title?: string | null | undefined;
10136
- size?: number | null | undefined;
10137
10136
  mimeType?: string | null | undefined;
10137
+ size?: number | null | undefined;
10138
10138
  annotations?: {
10139
10139
  priority?: number | null | undefined;
10140
10140
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -10160,8 +10160,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
10160
10160
  sessionUpdate: "agent_thought_chunk";
10161
10161
  }, {
10162
10162
  content: {
10163
- text: string;
10164
10163
  type: "text";
10164
+ text: string;
10165
10165
  annotations?: {
10166
10166
  priority?: number | null | undefined;
10167
10167
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -10191,8 +10191,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
10191
10191
  uri: string;
10192
10192
  description?: string | null | undefined;
10193
10193
  title?: string | null | undefined;
10194
- size?: number | null | undefined;
10195
10194
  mimeType?: string | null | undefined;
10195
+ size?: number | null | undefined;
10196
10196
  annotations?: {
10197
10197
  priority?: number | null | undefined;
10198
10198
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -10235,16 +10235,16 @@ export declare const agentNotificationSchema: z.ZodObject<{
10235
10235
  text: z.ZodString;
10236
10236
  type: z.ZodLiteral<"text">;
10237
10237
  }, "strip", z.ZodTypeAny, {
10238
- text: string;
10239
10238
  type: "text";
10239
+ text: string;
10240
10240
  annotations?: {
10241
10241
  priority?: number | null | undefined;
10242
10242
  audience?: ("user" | "assistant")[] | null | undefined;
10243
10243
  lastModified?: string | null | undefined;
10244
10244
  } | null | undefined;
10245
10245
  }, {
10246
- text: string;
10247
10246
  type: "text";
10247
+ text: string;
10248
10248
  annotations?: {
10249
10249
  priority?: number | null | undefined;
10250
10250
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -10347,8 +10347,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
10347
10347
  uri: string;
10348
10348
  description?: string | null | undefined;
10349
10349
  title?: string | null | undefined;
10350
- size?: number | null | undefined;
10351
10350
  mimeType?: string | null | undefined;
10351
+ size?: number | null | undefined;
10352
10352
  annotations?: {
10353
10353
  priority?: number | null | undefined;
10354
10354
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -10360,8 +10360,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
10360
10360
  uri: string;
10361
10361
  description?: string | null | undefined;
10362
10362
  title?: string | null | undefined;
10363
- size?: number | null | undefined;
10364
10363
  mimeType?: string | null | undefined;
10364
+ size?: number | null | undefined;
10365
10365
  annotations?: {
10366
10366
  priority?: number | null | undefined;
10367
10367
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -10444,8 +10444,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
10444
10444
  }, "strip", z.ZodTypeAny, {
10445
10445
  type: "content";
10446
10446
  content: {
10447
- text: string;
10448
10447
  type: "text";
10448
+ text: string;
10449
10449
  annotations?: {
10450
10450
  priority?: number | null | undefined;
10451
10451
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -10475,8 +10475,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
10475
10475
  uri: string;
10476
10476
  description?: string | null | undefined;
10477
10477
  title?: string | null | undefined;
10478
- size?: number | null | undefined;
10479
10478
  mimeType?: string | null | undefined;
10479
+ size?: number | null | undefined;
10480
10480
  annotations?: {
10481
10481
  priority?: number | null | undefined;
10482
10482
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -10502,8 +10502,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
10502
10502
  }, {
10503
10503
  type: "content";
10504
10504
  content: {
10505
- text: string;
10506
10505
  type: "text";
10506
+ text: string;
10507
10507
  annotations?: {
10508
10508
  priority?: number | null | undefined;
10509
10509
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -10533,8 +10533,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
10533
10533
  uri: string;
10534
10534
  description?: string | null | undefined;
10535
10535
  title?: string | null | undefined;
10536
- size?: number | null | undefined;
10537
10536
  mimeType?: string | null | undefined;
10537
+ size?: number | null | undefined;
10538
10538
  annotations?: {
10539
10539
  priority?: number | null | undefined;
10540
10540
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -10590,16 +10590,16 @@ export declare const agentNotificationSchema: z.ZodObject<{
10590
10590
  title: z.ZodString;
10591
10591
  toolCallId: z.ZodString;
10592
10592
  }, "strip", z.ZodTypeAny, {
10593
- kind: "search" | "delete" | "edit" | "move" | "other" | "read" | "execute" | "think" | "fetch";
10594
10593
  status: "completed" | "failed" | "pending" | "in_progress";
10595
10594
  title: string;
10595
+ kind: "search" | "edit" | "delete" | "move" | "other" | "read" | "execute" | "think" | "fetch";
10596
10596
  toolCallId: string;
10597
10597
  sessionUpdate: "tool_call";
10598
10598
  content?: ({
10599
10599
  type: "content";
10600
10600
  content: {
10601
- text: string;
10602
10601
  type: "text";
10602
+ text: string;
10603
10603
  annotations?: {
10604
10604
  priority?: number | null | undefined;
10605
10605
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -10629,8 +10629,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
10629
10629
  uri: string;
10630
10630
  description?: string | null | undefined;
10631
10631
  title?: string | null | undefined;
10632
- size?: number | null | undefined;
10633
10632
  mimeType?: string | null | undefined;
10633
+ size?: number | null | undefined;
10634
10634
  annotations?: {
10635
10635
  priority?: number | null | undefined;
10636
10636
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -10665,16 +10665,16 @@ export declare const agentNotificationSchema: z.ZodObject<{
10665
10665
  }[] | undefined;
10666
10666
  rawInput?: unknown;
10667
10667
  }, {
10668
- kind: "search" | "delete" | "edit" | "move" | "other" | "read" | "execute" | "think" | "fetch";
10669
10668
  status: "completed" | "failed" | "pending" | "in_progress";
10670
10669
  title: string;
10670
+ kind: "search" | "edit" | "delete" | "move" | "other" | "read" | "execute" | "think" | "fetch";
10671
10671
  toolCallId: string;
10672
10672
  sessionUpdate: "tool_call";
10673
10673
  content?: ({
10674
10674
  type: "content";
10675
10675
  content: {
10676
- text: string;
10677
10676
  type: "text";
10677
+ text: string;
10678
10678
  annotations?: {
10679
10679
  priority?: number | null | undefined;
10680
10680
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -10704,8 +10704,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
10704
10704
  uri: string;
10705
10705
  description?: string | null | undefined;
10706
10706
  title?: string | null | undefined;
10707
- size?: number | null | undefined;
10708
10707
  mimeType?: string | null | undefined;
10708
+ size?: number | null | undefined;
10709
10709
  annotations?: {
10710
10710
  priority?: number | null | undefined;
10711
10711
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -10758,16 +10758,16 @@ export declare const agentNotificationSchema: z.ZodObject<{
10758
10758
  text: z.ZodString;
10759
10759
  type: z.ZodLiteral<"text">;
10760
10760
  }, "strip", z.ZodTypeAny, {
10761
- text: string;
10762
10761
  type: "text";
10762
+ text: string;
10763
10763
  annotations?: {
10764
10764
  priority?: number | null | undefined;
10765
10765
  audience?: ("user" | "assistant")[] | null | undefined;
10766
10766
  lastModified?: string | null | undefined;
10767
10767
  } | null | undefined;
10768
10768
  }, {
10769
- text: string;
10770
10769
  type: "text";
10770
+ text: string;
10771
10771
  annotations?: {
10772
10772
  priority?: number | null | undefined;
10773
10773
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -10870,8 +10870,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
10870
10870
  uri: string;
10871
10871
  description?: string | null | undefined;
10872
10872
  title?: string | null | undefined;
10873
- size?: number | null | undefined;
10874
10873
  mimeType?: string | null | undefined;
10874
+ size?: number | null | undefined;
10875
10875
  annotations?: {
10876
10876
  priority?: number | null | undefined;
10877
10877
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -10883,8 +10883,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
10883
10883
  uri: string;
10884
10884
  description?: string | null | undefined;
10885
10885
  title?: string | null | undefined;
10886
- size?: number | null | undefined;
10887
10886
  mimeType?: string | null | undefined;
10887
+ size?: number | null | undefined;
10888
10888
  annotations?: {
10889
10889
  priority?: number | null | undefined;
10890
10890
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -10967,8 +10967,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
10967
10967
  }, "strip", z.ZodTypeAny, {
10968
10968
  type: "content";
10969
10969
  content: {
10970
- text: string;
10971
10970
  type: "text";
10971
+ text: string;
10972
10972
  annotations?: {
10973
10973
  priority?: number | null | undefined;
10974
10974
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -10998,8 +10998,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
10998
10998
  uri: string;
10999
10999
  description?: string | null | undefined;
11000
11000
  title?: string | null | undefined;
11001
- size?: number | null | undefined;
11002
11001
  mimeType?: string | null | undefined;
11002
+ size?: number | null | undefined;
11003
11003
  annotations?: {
11004
11004
  priority?: number | null | undefined;
11005
11005
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -11025,8 +11025,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
11025
11025
  }, {
11026
11026
  type: "content";
11027
11027
  content: {
11028
- text: string;
11029
11028
  type: "text";
11029
+ text: string;
11030
11030
  annotations?: {
11031
11031
  priority?: number | null | undefined;
11032
11032
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -11056,8 +11056,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
11056
11056
  uri: string;
11057
11057
  description?: string | null | undefined;
11058
11058
  title?: string | null | undefined;
11059
- size?: number | null | undefined;
11060
11059
  mimeType?: string | null | undefined;
11060
+ size?: number | null | undefined;
11061
11061
  annotations?: {
11062
11062
  priority?: number | null | undefined;
11063
11063
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -11115,11 +11115,12 @@ export declare const agentNotificationSchema: z.ZodObject<{
11115
11115
  }, "strip", z.ZodTypeAny, {
11116
11116
  toolCallId: string;
11117
11117
  sessionUpdate: "tool_call_update";
11118
+ status?: "completed" | "failed" | "pending" | "in_progress" | null | undefined;
11118
11119
  content?: ({
11119
11120
  type: "content";
11120
11121
  content: {
11121
- text: string;
11122
11122
  type: "text";
11123
+ text: string;
11123
11124
  annotations?: {
11124
11125
  priority?: number | null | undefined;
11125
11126
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -11149,8 +11150,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
11149
11150
  uri: string;
11150
11151
  description?: string | null | undefined;
11151
11152
  title?: string | null | undefined;
11152
- size?: number | null | undefined;
11153
11153
  mimeType?: string | null | undefined;
11154
+ size?: number | null | undefined;
11154
11155
  annotations?: {
11155
11156
  priority?: number | null | undefined;
11156
11157
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -11179,9 +11180,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
11179
11180
  newText: string;
11180
11181
  oldText: string | null;
11181
11182
  })[] | null | undefined;
11182
- kind?: "search" | "delete" | "edit" | "move" | "other" | "read" | "execute" | "think" | "fetch" | null | undefined;
11183
- status?: "completed" | "failed" | "pending" | "in_progress" | null | undefined;
11184
11183
  title?: string | null | undefined;
11184
+ kind?: "search" | "edit" | "delete" | "move" | "other" | "read" | "execute" | "think" | "fetch" | null | undefined;
11185
11185
  locations?: {
11186
11186
  path: string;
11187
11187
  line?: number | null | undefined;
@@ -11190,11 +11190,12 @@ export declare const agentNotificationSchema: z.ZodObject<{
11190
11190
  }, {
11191
11191
  toolCallId: string;
11192
11192
  sessionUpdate: "tool_call_update";
11193
+ status?: "completed" | "failed" | "pending" | "in_progress" | null | undefined;
11193
11194
  content?: ({
11194
11195
  type: "content";
11195
11196
  content: {
11196
- text: string;
11197
11197
  type: "text";
11198
+ text: string;
11198
11199
  annotations?: {
11199
11200
  priority?: number | null | undefined;
11200
11201
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -11224,8 +11225,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
11224
11225
  uri: string;
11225
11226
  description?: string | null | undefined;
11226
11227
  title?: string | null | undefined;
11227
- size?: number | null | undefined;
11228
11228
  mimeType?: string | null | undefined;
11229
+ size?: number | null | undefined;
11229
11230
  annotations?: {
11230
11231
  priority?: number | null | undefined;
11231
11232
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -11254,9 +11255,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
11254
11255
  newText: string;
11255
11256
  oldText: string | null;
11256
11257
  })[] | null | undefined;
11257
- kind?: "search" | "delete" | "edit" | "move" | "other" | "read" | "execute" | "think" | "fetch" | null | undefined;
11258
- status?: "completed" | "failed" | "pending" | "in_progress" | null | undefined;
11259
11258
  title?: string | null | undefined;
11259
+ kind?: "search" | "edit" | "delete" | "move" | "other" | "read" | "execute" | "think" | "fetch" | null | undefined;
11260
11260
  locations?: {
11261
11261
  path: string;
11262
11262
  line?: number | null | undefined;
@@ -11268,26 +11268,26 @@ export declare const agentNotificationSchema: z.ZodObject<{
11268
11268
  priority: z.ZodUnion<[z.ZodLiteral<"high">, z.ZodLiteral<"medium">, z.ZodLiteral<"low">]>;
11269
11269
  status: z.ZodUnion<[z.ZodLiteral<"pending">, z.ZodLiteral<"in_progress">, z.ZodLiteral<"completed">]>;
11270
11270
  }, "strip", z.ZodTypeAny, {
11271
- content: string;
11272
11271
  status: "completed" | "pending" | "in_progress";
11272
+ content: string;
11273
11273
  priority: "medium" | "high" | "low";
11274
11274
  }, {
11275
- content: string;
11276
11275
  status: "completed" | "pending" | "in_progress";
11276
+ content: string;
11277
11277
  priority: "medium" | "high" | "low";
11278
11278
  }>, "many">;
11279
11279
  sessionUpdate: z.ZodLiteral<"plan">;
11280
11280
  }, "strip", z.ZodTypeAny, {
11281
11281
  entries: {
11282
- content: string;
11283
11282
  status: "completed" | "pending" | "in_progress";
11283
+ content: string;
11284
11284
  priority: "medium" | "high" | "low";
11285
11285
  }[];
11286
11286
  sessionUpdate: "plan";
11287
11287
  }, {
11288
11288
  entries: {
11289
- content: string;
11290
11289
  status: "completed" | "pending" | "in_progress";
11290
+ content: string;
11291
11291
  priority: "medium" | "high" | "low";
11292
11292
  }[];
11293
11293
  sessionUpdate: "plan";
@@ -11303,14 +11303,14 @@ export declare const agentNotificationSchema: z.ZodObject<{
11303
11303
  }>>>;
11304
11304
  name: z.ZodString;
11305
11305
  }, "strip", z.ZodTypeAny, {
11306
- description: string;
11307
11306
  name: string;
11307
+ description: string;
11308
11308
  input?: {
11309
11309
  hint: string;
11310
11310
  } | null | undefined;
11311
11311
  }, {
11312
- description: string;
11313
11312
  name: string;
11313
+ description: string;
11314
11314
  input?: {
11315
11315
  hint: string;
11316
11316
  } | null | undefined;
@@ -11319,8 +11319,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
11319
11319
  }, "strip", z.ZodTypeAny, {
11320
11320
  sessionUpdate: "available_commands_update";
11321
11321
  availableCommands: {
11322
- description: string;
11323
11322
  name: string;
11323
+ description: string;
11324
11324
  input?: {
11325
11325
  hint: string;
11326
11326
  } | null | undefined;
@@ -11328,18 +11328,19 @@ export declare const agentNotificationSchema: z.ZodObject<{
11328
11328
  }, {
11329
11329
  sessionUpdate: "available_commands_update";
11330
11330
  availableCommands: {
11331
- description: string;
11332
11331
  name: string;
11332
+ description: string;
11333
11333
  input?: {
11334
11334
  hint: string;
11335
11335
  } | null | undefined;
11336
11336
  }[];
11337
11337
  }>]>;
11338
11338
  }, "strip", z.ZodTypeAny, {
11339
+ sessionId: string;
11339
11340
  update: {
11340
11341
  content: {
11341
- text: string;
11342
11342
  type: "text";
11343
+ text: string;
11343
11344
  annotations?: {
11344
11345
  priority?: number | null | undefined;
11345
11346
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -11369,8 +11370,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
11369
11370
  uri: string;
11370
11371
  description?: string | null | undefined;
11371
11372
  title?: string | null | undefined;
11372
- size?: number | null | undefined;
11373
11373
  mimeType?: string | null | undefined;
11374
+ size?: number | null | undefined;
11374
11375
  annotations?: {
11375
11376
  priority?: number | null | undefined;
11376
11377
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -11396,8 +11397,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
11396
11397
  sessionUpdate: "user_message_chunk";
11397
11398
  } | {
11398
11399
  content: {
11399
- text: string;
11400
11400
  type: "text";
11401
+ text: string;
11401
11402
  annotations?: {
11402
11403
  priority?: number | null | undefined;
11403
11404
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -11427,8 +11428,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
11427
11428
  uri: string;
11428
11429
  description?: string | null | undefined;
11429
11430
  title?: string | null | undefined;
11430
- size?: number | null | undefined;
11431
11431
  mimeType?: string | null | undefined;
11432
+ size?: number | null | undefined;
11432
11433
  annotations?: {
11433
11434
  priority?: number | null | undefined;
11434
11435
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -11454,8 +11455,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
11454
11455
  sessionUpdate: "agent_message_chunk";
11455
11456
  } | {
11456
11457
  content: {
11457
- text: string;
11458
11458
  type: "text";
11459
+ text: string;
11459
11460
  annotations?: {
11460
11461
  priority?: number | null | undefined;
11461
11462
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -11485,8 +11486,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
11485
11486
  uri: string;
11486
11487
  description?: string | null | undefined;
11487
11488
  title?: string | null | undefined;
11488
- size?: number | null | undefined;
11489
11489
  mimeType?: string | null | undefined;
11490
+ size?: number | null | undefined;
11490
11491
  annotations?: {
11491
11492
  priority?: number | null | undefined;
11492
11493
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -11511,16 +11512,16 @@ export declare const agentNotificationSchema: z.ZodObject<{
11511
11512
  };
11512
11513
  sessionUpdate: "agent_thought_chunk";
11513
11514
  } | {
11514
- kind: "search" | "delete" | "edit" | "move" | "other" | "read" | "execute" | "think" | "fetch";
11515
11515
  status: "completed" | "failed" | "pending" | "in_progress";
11516
11516
  title: string;
11517
+ kind: "search" | "edit" | "delete" | "move" | "other" | "read" | "execute" | "think" | "fetch";
11517
11518
  toolCallId: string;
11518
11519
  sessionUpdate: "tool_call";
11519
11520
  content?: ({
11520
11521
  type: "content";
11521
11522
  content: {
11522
- text: string;
11523
11523
  type: "text";
11524
+ text: string;
11524
11525
  annotations?: {
11525
11526
  priority?: number | null | undefined;
11526
11527
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -11550,8 +11551,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
11550
11551
  uri: string;
11551
11552
  description?: string | null | undefined;
11552
11553
  title?: string | null | undefined;
11553
- size?: number | null | undefined;
11554
11554
  mimeType?: string | null | undefined;
11555
+ size?: number | null | undefined;
11555
11556
  annotations?: {
11556
11557
  priority?: number | null | undefined;
11557
11558
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -11588,11 +11589,12 @@ export declare const agentNotificationSchema: z.ZodObject<{
11588
11589
  } | {
11589
11590
  toolCallId: string;
11590
11591
  sessionUpdate: "tool_call_update";
11592
+ status?: "completed" | "failed" | "pending" | "in_progress" | null | undefined;
11591
11593
  content?: ({
11592
11594
  type: "content";
11593
11595
  content: {
11594
- text: string;
11595
11596
  type: "text";
11597
+ text: string;
11596
11598
  annotations?: {
11597
11599
  priority?: number | null | undefined;
11598
11600
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -11622,8 +11624,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
11622
11624
  uri: string;
11623
11625
  description?: string | null | undefined;
11624
11626
  title?: string | null | undefined;
11625
- size?: number | null | undefined;
11626
11627
  mimeType?: string | null | undefined;
11628
+ size?: number | null | undefined;
11627
11629
  annotations?: {
11628
11630
  priority?: number | null | undefined;
11629
11631
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -11652,9 +11654,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
11652
11654
  newText: string;
11653
11655
  oldText: string | null;
11654
11656
  })[] | null | undefined;
11655
- kind?: "search" | "delete" | "edit" | "move" | "other" | "read" | "execute" | "think" | "fetch" | null | undefined;
11656
- status?: "completed" | "failed" | "pending" | "in_progress" | null | undefined;
11657
11657
  title?: string | null | undefined;
11658
+ kind?: "search" | "edit" | "delete" | "move" | "other" | "read" | "execute" | "think" | "fetch" | null | undefined;
11658
11659
  locations?: {
11659
11660
  path: string;
11660
11661
  line?: number | null | undefined;
@@ -11662,27 +11663,27 @@ export declare const agentNotificationSchema: z.ZodObject<{
11662
11663
  rawInput?: unknown;
11663
11664
  } | {
11664
11665
  entries: {
11665
- content: string;
11666
11666
  status: "completed" | "pending" | "in_progress";
11667
+ content: string;
11667
11668
  priority: "medium" | "high" | "low";
11668
11669
  }[];
11669
11670
  sessionUpdate: "plan";
11670
11671
  } | {
11671
11672
  sessionUpdate: "available_commands_update";
11672
11673
  availableCommands: {
11673
- description: string;
11674
11674
  name: string;
11675
+ description: string;
11675
11676
  input?: {
11676
11677
  hint: string;
11677
11678
  } | null | undefined;
11678
11679
  }[];
11679
11680
  };
11680
- sessionId: string;
11681
11681
  }, {
11682
+ sessionId: string;
11682
11683
  update: {
11683
11684
  content: {
11684
- text: string;
11685
11685
  type: "text";
11686
+ text: string;
11686
11687
  annotations?: {
11687
11688
  priority?: number | null | undefined;
11688
11689
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -11712,8 +11713,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
11712
11713
  uri: string;
11713
11714
  description?: string | null | undefined;
11714
11715
  title?: string | null | undefined;
11715
- size?: number | null | undefined;
11716
11716
  mimeType?: string | null | undefined;
11717
+ size?: number | null | undefined;
11717
11718
  annotations?: {
11718
11719
  priority?: number | null | undefined;
11719
11720
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -11739,8 +11740,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
11739
11740
  sessionUpdate: "user_message_chunk";
11740
11741
  } | {
11741
11742
  content: {
11742
- text: string;
11743
11743
  type: "text";
11744
+ text: string;
11744
11745
  annotations?: {
11745
11746
  priority?: number | null | undefined;
11746
11747
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -11770,8 +11771,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
11770
11771
  uri: string;
11771
11772
  description?: string | null | undefined;
11772
11773
  title?: string | null | undefined;
11773
- size?: number | null | undefined;
11774
11774
  mimeType?: string | null | undefined;
11775
+ size?: number | null | undefined;
11775
11776
  annotations?: {
11776
11777
  priority?: number | null | undefined;
11777
11778
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -11797,8 +11798,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
11797
11798
  sessionUpdate: "agent_message_chunk";
11798
11799
  } | {
11799
11800
  content: {
11800
- text: string;
11801
11801
  type: "text";
11802
+ text: string;
11802
11803
  annotations?: {
11803
11804
  priority?: number | null | undefined;
11804
11805
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -11828,8 +11829,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
11828
11829
  uri: string;
11829
11830
  description?: string | null | undefined;
11830
11831
  title?: string | null | undefined;
11831
- size?: number | null | undefined;
11832
11832
  mimeType?: string | null | undefined;
11833
+ size?: number | null | undefined;
11833
11834
  annotations?: {
11834
11835
  priority?: number | null | undefined;
11835
11836
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -11854,16 +11855,16 @@ export declare const agentNotificationSchema: z.ZodObject<{
11854
11855
  };
11855
11856
  sessionUpdate: "agent_thought_chunk";
11856
11857
  } | {
11857
- kind: "search" | "delete" | "edit" | "move" | "other" | "read" | "execute" | "think" | "fetch";
11858
11858
  status: "completed" | "failed" | "pending" | "in_progress";
11859
11859
  title: string;
11860
+ kind: "search" | "edit" | "delete" | "move" | "other" | "read" | "execute" | "think" | "fetch";
11860
11861
  toolCallId: string;
11861
11862
  sessionUpdate: "tool_call";
11862
11863
  content?: ({
11863
11864
  type: "content";
11864
11865
  content: {
11865
- text: string;
11866
11866
  type: "text";
11867
+ text: string;
11867
11868
  annotations?: {
11868
11869
  priority?: number | null | undefined;
11869
11870
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -11893,8 +11894,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
11893
11894
  uri: string;
11894
11895
  description?: string | null | undefined;
11895
11896
  title?: string | null | undefined;
11896
- size?: number | null | undefined;
11897
11897
  mimeType?: string | null | undefined;
11898
+ size?: number | null | undefined;
11898
11899
  annotations?: {
11899
11900
  priority?: number | null | undefined;
11900
11901
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -11931,11 +11932,12 @@ export declare const agentNotificationSchema: z.ZodObject<{
11931
11932
  } | {
11932
11933
  toolCallId: string;
11933
11934
  sessionUpdate: "tool_call_update";
11935
+ status?: "completed" | "failed" | "pending" | "in_progress" | null | undefined;
11934
11936
  content?: ({
11935
11937
  type: "content";
11936
11938
  content: {
11937
- text: string;
11938
11939
  type: "text";
11940
+ text: string;
11939
11941
  annotations?: {
11940
11942
  priority?: number | null | undefined;
11941
11943
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -11965,8 +11967,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
11965
11967
  uri: string;
11966
11968
  description?: string | null | undefined;
11967
11969
  title?: string | null | undefined;
11968
- size?: number | null | undefined;
11969
11970
  mimeType?: string | null | undefined;
11971
+ size?: number | null | undefined;
11970
11972
  annotations?: {
11971
11973
  priority?: number | null | undefined;
11972
11974
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -11995,9 +11997,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
11995
11997
  newText: string;
11996
11998
  oldText: string | null;
11997
11999
  })[] | null | undefined;
11998
- kind?: "search" | "delete" | "edit" | "move" | "other" | "read" | "execute" | "think" | "fetch" | null | undefined;
11999
- status?: "completed" | "failed" | "pending" | "in_progress" | null | undefined;
12000
12000
  title?: string | null | undefined;
12001
+ kind?: "search" | "edit" | "delete" | "move" | "other" | "read" | "execute" | "think" | "fetch" | null | undefined;
12001
12002
  locations?: {
12002
12003
  path: string;
12003
12004
  line?: number | null | undefined;
@@ -12005,20 +12006,19 @@ export declare const agentNotificationSchema: z.ZodObject<{
12005
12006
  rawInput?: unknown;
12006
12007
  } | {
12007
12008
  entries: {
12008
- content: string;
12009
12009
  status: "completed" | "pending" | "in_progress";
12010
+ content: string;
12010
12011
  priority: "medium" | "high" | "low";
12011
12012
  }[];
12012
12013
  sessionUpdate: "plan";
12013
12014
  } | {
12014
12015
  sessionUpdate: "available_commands_update";
12015
12016
  availableCommands: {
12016
- description: string;
12017
12017
  name: string;
12018
+ description: string;
12018
12019
  input?: {
12019
12020
  hint: string;
12020
12021
  } | null | undefined;
12021
12022
  }[];
12022
12023
  };
12023
- sessionId: string;
12024
12024
  }>;