@hibanacloud/cli 0.3.18 → 0.3.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. package/dist/package.json +4 -4
  2. package/dist/src/config/extension.js +1 -1
  3. package/dist/src/config/extension.js.map +1 -1
  4. package/dist/src/generated/git-commit.d.ts +1 -1
  5. package/dist/src/generated/git-commit.js +1 -1
  6. package/dist/src/test-utils/createExtension.js +1 -1
  7. package/dist/src/test-utils/createExtension.js.map +1 -1
  8. package/dist/src/ui/AppContainer.js +1 -1
  9. package/dist/src/ui/AppContainer.js.map +1 -1
  10. package/dist/src/ui/auth/AuthDialog.js +1 -1
  11. package/dist/src/ui/auth/AuthDialog.js.map +1 -1
  12. package/dist/src/ui/auth/useAuth.js +3 -5
  13. package/dist/src/ui/auth/useAuth.js.map +1 -1
  14. package/dist/src/ui/commands/bugCommand.js +1 -1
  15. package/dist/src/ui/commands/bugCommand.js.map +1 -1
  16. package/dist/src/ui/commands/initCommand.js +1 -1
  17. package/dist/src/ui/commands/initCommand.js.map +1 -1
  18. package/dist/src/ui/commands/memoryCommand.js +2 -2
  19. package/dist/src/ui/commands/memoryCommand.js.map +1 -1
  20. package/dist/src/ui/commands/modelCommand.js +6 -2
  21. package/dist/src/ui/commands/modelCommand.js.map +1 -1
  22. package/dist/src/ui/components/OpenAIKeyPrompt.js +1 -1
  23. package/dist/src/ui/components/OpenAIKeyPrompt.js.map +1 -1
  24. package/dist/src/ui/components/OpenAIKeyPrompt.test.js +1 -1
  25. package/dist/src/ui/components/OpenAIKeyPrompt.test.js.map +1 -1
  26. package/dist/src/ui/components/Tips.js +1 -1
  27. package/dist/src/ui/components/Tips.js.map +1 -1
  28. package/dist/src/ui/hooks/useShowMemoryCommand.js +2 -2
  29. package/dist/src/ui/hooks/useShowMemoryCommand.js.map +1 -1
  30. package/dist/src/ui/models/availableModels.d.ts +1 -1
  31. package/dist/src/utils/gitUtils.js +1 -1
  32. package/dist/src/utils/gitUtils.js.map +1 -1
  33. package/dist/src/zed-integration/schema.d.ts +138 -138
  34. package/dist/tsconfig.tsbuildinfo +1 -1
  35. package/package.json +4 -4
@@ -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
+ id: string;
367
368
  name: string;
368
369
  description: string | null;
369
- id: string;
370
370
  }, {
371
+ id: string;
371
372
  name: string;
372
373
  description: string | null;
373
- id: string;
374
374
  }>;
375
375
  export declare const clientResponseSchema: z.ZodUnion<[z.ZodNull, z.ZodObject<{
376
376
  content: z.ZodString;
@@ -593,13 +593,13 @@ export declare const initializeResponseSchema: z.ZodObject<{
593
593
  id: z.ZodString;
594
594
  name: z.ZodString;
595
595
  }, "strip", z.ZodTypeAny, {
596
+ id: string;
596
597
  name: string;
597
598
  description: string | null;
598
- id: string;
599
599
  }, {
600
+ id: string;
600
601
  name: string;
601
602
  description: string | null;
602
- id: string;
603
603
  }>, "many">;
604
604
  protocolVersion: z.ZodNumber;
605
605
  }, "strip", z.ZodTypeAny, {
@@ -612,9 +612,9 @@ export declare const initializeResponseSchema: z.ZodObject<{
612
612
  } | undefined;
613
613
  };
614
614
  authMethods: {
615
+ id: string;
615
616
  name: string;
616
617
  description: string | null;
617
- id: string;
618
618
  }[];
619
619
  protocolVersion: number;
620
620
  }, {
@@ -627,9 +627,9 @@ export declare const initializeResponseSchema: z.ZodObject<{
627
627
  } | undefined;
628
628
  };
629
629
  authMethods: {
630
+ id: string;
630
631
  name: string;
631
632
  description: string | null;
632
- id: 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
- type: "text";
654
653
  text: string;
654
+ type: "text";
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
- type: "text";
662
661
  text: string;
662
+ type: "text";
663
663
  annotations?: {
664
664
  priority?: number | null | undefined;
665
665
  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
- type: "text";
877
876
  text: string;
877
+ type: "text";
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
- type: "text";
885
884
  text: string;
885
+ type: "text";
886
886
  annotations?: {
887
887
  priority?: number | null | undefined;
888
888
  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
- type: "text";
1086
1085
  text: string;
1086
+ type: "text";
1087
1087
  annotations?: {
1088
1088
  priority?: number | null | undefined;
1089
1089
  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
- type: "text";
1144
1143
  text: string;
1144
+ type: "text";
1145
1145
  annotations?: {
1146
1146
  priority?: number | null | undefined;
1147
1147
  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
- type: "text";
1234
1233
  text: string;
1234
+ type: "text";
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
- type: "text";
1242
1241
  text: string;
1242
+ type: "text";
1243
1243
  annotations?: {
1244
1244
  priority?: number | null | undefined;
1245
1245
  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
- type: "text";
1443
1442
  text: string;
1443
+ type: "text";
1444
1444
  annotations?: {
1445
1445
  priority?: number | null | undefined;
1446
1446
  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
- type: "text";
1501
1500
  text: string;
1501
+ type: "text";
1502
1502
  annotations?: {
1503
1503
  priority?: number | null | undefined;
1504
1504
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -1591,8 +1591,8 @@ export declare const toolCallSchema: z.ZodObject<{
1591
1591
  content?: ({
1592
1592
  type: "content";
1593
1593
  content: {
1594
- type: "text";
1595
1594
  text: string;
1595
+ type: "text";
1596
1596
  annotations?: {
1597
1597
  priority?: number | null | undefined;
1598
1598
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -1665,8 +1665,8 @@ export declare const toolCallSchema: z.ZodObject<{
1665
1665
  content?: ({
1666
1666
  type: "content";
1667
1667
  content: {
1668
- type: "text";
1669
1668
  text: string;
1669
+ type: "text";
1670
1670
  annotations?: {
1671
1671
  priority?: number | null | undefined;
1672
1672
  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
- type: "text";
1776
1775
  text: string;
1776
+ type: "text";
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
- type: "text";
1784
1783
  text: string;
1784
+ type: "text";
1785
1785
  annotations?: {
1786
1786
  priority?: number | null | undefined;
1787
1787
  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
- type: "text";
1984
1983
  text: string;
1984
+ type: "text";
1985
1985
  annotations?: {
1986
1986
  priority?: number | null | undefined;
1987
1987
  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
- type: "text";
2042
2041
  text: string;
2042
+ type: "text";
2043
2043
  annotations?: {
2044
2044
  priority?: number | null | undefined;
2045
2045
  audience?: ("user" | "assistant")[] | 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
- type: "text";
2191
2190
  text: string;
2191
+ type: "text";
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
- type: "text";
2199
2198
  text: string;
2199
+ type: "text";
2200
2200
  annotations?: {
2201
2201
  priority?: number | null | undefined;
2202
2202
  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
- type: "text";
2399
2398
  text: string;
2399
+ type: "text";
2400
2400
  annotations?: {
2401
2401
  priority?: number | null | undefined;
2402
2402
  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
- type: "text";
2457
2456
  text: string;
2457
+ type: "text";
2458
2458
  annotations?: {
2459
2459
  priority?: number | null | undefined;
2460
2460
  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
- type: "text";
2531
2530
  text: string;
2531
+ type: "text";
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
- type: "text";
2539
2538
  text: string;
2539
+ type: "text";
2540
2540
  annotations?: {
2541
2541
  priority?: number | null | undefined;
2542
2542
  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
- type: "text";
2739
2738
  text: string;
2739
+ type: "text";
2740
2740
  annotations?: {
2741
2741
  priority?: number | null | undefined;
2742
2742
  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
- type: "text";
2797
2796
  text: string;
2797
+ type: "text";
2798
2798
  annotations?: {
2799
2799
  priority?: number | null | undefined;
2800
2800
  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
- type: "text";
2871
2870
  text: string;
2871
+ type: "text";
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
- type: "text";
2879
2878
  text: string;
2879
+ type: "text";
2880
2880
  annotations?: {
2881
2881
  priority?: number | null | undefined;
2882
2882
  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
- type: "text";
3079
3078
  text: string;
3079
+ type: "text";
3080
3080
  annotations?: {
3081
3081
  priority?: number | null | undefined;
3082
3082
  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
- type: "text";
3137
3136
  text: string;
3137
+ type: "text";
3138
3138
  annotations?: {
3139
3139
  priority?: number | null | undefined;
3140
3140
  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
- type: "text";
3212
3211
  text: string;
3212
+ type: "text";
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
- type: "text";
3220
3219
  text: string;
3220
+ type: "text";
3221
3221
  annotations?: {
3222
3222
  priority?: number | null | undefined;
3223
3223
  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
- type: "text";
3421
3420
  text: string;
3421
+ type: "text";
3422
3422
  annotations?: {
3423
3423
  priority?: number | null | undefined;
3424
3424
  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
- type: "text";
3479
3478
  text: string;
3479
+ type: "text";
3480
3480
  annotations?: {
3481
3481
  priority?: number | null | undefined;
3482
3482
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -3571,8 +3571,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
3571
3571
  content?: ({
3572
3572
  type: "content";
3573
3573
  content: {
3574
- type: "text";
3575
3574
  text: string;
3575
+ type: "text";
3576
3576
  annotations?: {
3577
3577
  priority?: number | null | undefined;
3578
3578
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -3646,8 +3646,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
3646
3646
  content?: ({
3647
3647
  type: "content";
3648
3648
  content: {
3649
- type: "text";
3650
3649
  text: string;
3650
+ type: "text";
3651
3651
  annotations?: {
3652
3652
  priority?: number | null | undefined;
3653
3653
  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
- type: "text";
3735
3734
  text: string;
3735
+ type: "text";
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
- type: "text";
3743
3742
  text: string;
3743
+ type: "text";
3744
3744
  annotations?: {
3745
3745
  priority?: number | null | undefined;
3746
3746
  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
- type: "text";
3944
3943
  text: string;
3944
+ type: "text";
3945
3945
  annotations?: {
3946
3946
  priority?: number | null | undefined;
3947
3947
  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
- type: "text";
4002
4001
  text: string;
4002
+ type: "text";
4003
4003
  annotations?: {
4004
4004
  priority?: number | null | undefined;
4005
4005
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -4092,8 +4092,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
4092
4092
  content?: ({
4093
4093
  type: "content";
4094
4094
  content: {
4095
- type: "text";
4096
4095
  text: string;
4096
+ type: "text";
4097
4097
  annotations?: {
4098
4098
  priority?: number | null | undefined;
4099
4099
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -4167,8 +4167,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
4167
4167
  content?: ({
4168
4168
  type: "content";
4169
4169
  content: {
4170
- type: "text";
4171
4170
  text: string;
4171
+ type: "text";
4172
4172
  annotations?: {
4173
4173
  priority?: number | null | undefined;
4174
4174
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -4344,13 +4344,13 @@ export declare const agentResponseSchema: z.ZodUnion<[z.ZodObject<{
4344
4344
  id: z.ZodString;
4345
4345
  name: z.ZodString;
4346
4346
  }, "strip", z.ZodTypeAny, {
4347
+ id: string;
4347
4348
  name: string;
4348
4349
  description: string | null;
4349
- id: string;
4350
4350
  }, {
4351
+ id: string;
4351
4352
  name: string;
4352
4353
  description: string | null;
4353
- id: string;
4354
4354
  }>, "many">;
4355
4355
  protocolVersion: z.ZodNumber;
4356
4356
  }, "strip", z.ZodTypeAny, {
@@ -4363,9 +4363,9 @@ export declare const agentResponseSchema: z.ZodUnion<[z.ZodObject<{
4363
4363
  } | undefined;
4364
4364
  };
4365
4365
  authMethods: {
4366
+ id: string;
4366
4367
  name: string;
4367
4368
  description: string | null;
4368
- id: string;
4369
4369
  }[];
4370
4370
  protocolVersion: number;
4371
4371
  }, {
@@ -4378,9 +4378,9 @@ export declare const agentResponseSchema: z.ZodUnion<[z.ZodObject<{
4378
4378
  } | undefined;
4379
4379
  };
4380
4380
  authMethods: {
4381
+ id: string;
4381
4382
  name: string;
4382
4383
  description: string | null;
4383
- id: 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
- type: "text";
4434
4433
  text: string;
4434
+ type: "text";
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
- type: "text";
4442
4441
  text: string;
4442
+ type: "text";
4443
4443
  annotations?: {
4444
4444
  priority?: number | null | undefined;
4445
4445
  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
- type: "text";
4643
4642
  text: string;
4643
+ type: "text";
4644
4644
  annotations?: {
4645
4645
  priority?: number | null | undefined;
4646
4646
  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
- type: "text";
4701
4700
  text: string;
4701
+ type: "text";
4702
4702
  annotations?: {
4703
4703
  priority?: number | null | undefined;
4704
4704
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -4791,8 +4791,8 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
4791
4791
  content?: ({
4792
4792
  type: "content";
4793
4793
  content: {
4794
- type: "text";
4795
4794
  text: string;
4795
+ type: "text";
4796
4796
  annotations?: {
4797
4797
  priority?: number | null | undefined;
4798
4798
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -4865,8 +4865,8 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
4865
4865
  content?: ({
4866
4866
  type: "content";
4867
4867
  content: {
4868
- type: "text";
4869
4868
  text: string;
4869
+ type: "text";
4870
4870
  annotations?: {
4871
4871
  priority?: number | null | undefined;
4872
4872
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -4947,8 +4947,8 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
4947
4947
  content?: ({
4948
4948
  type: "content";
4949
4949
  content: {
4950
- type: "text";
4951
4950
  text: string;
4951
+ type: "text";
4952
4952
  annotations?: {
4953
4953
  priority?: number | null | undefined;
4954
4954
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -5029,8 +5029,8 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
5029
5029
  content?: ({
5030
5030
  type: "content";
5031
5031
  content: {
5032
- type: "text";
5033
5032
  text: string;
5033
+ type: "text";
5034
5034
  annotations?: {
5035
5035
  priority?: number | null | undefined;
5036
5036
  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
- type: "text";
5162
5161
  text: string;
5162
+ type: "text";
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
- type: "text";
5170
5169
  text: string;
5170
+ type: "text";
5171
5171
  annotations?: {
5172
5172
  priority?: number | null | undefined;
5173
5173
  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
- type: "text";
5370
5369
  text: string;
5370
+ type: "text";
5371
5371
  annotations?: {
5372
5372
  priority?: number | null | undefined;
5373
5373
  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
- type: "text";
5428
5427
  text: string;
5428
+ type: "text";
5429
5429
  annotations?: {
5430
5430
  priority?: number | null | undefined;
5431
5431
  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
- type: "text";
5502
5501
  text: string;
5502
+ type: "text";
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
- type: "text";
5510
5509
  text: string;
5510
+ type: "text";
5511
5511
  annotations?: {
5512
5512
  priority?: number | null | undefined;
5513
5513
  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
- type: "text";
5710
5709
  text: string;
5710
+ type: "text";
5711
5711
  annotations?: {
5712
5712
  priority?: number | null | undefined;
5713
5713
  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
- type: "text";
5768
5767
  text: string;
5768
+ type: "text";
5769
5769
  annotations?: {
5770
5770
  priority?: number | null | undefined;
5771
5771
  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
- type: "text";
5842
5841
  text: string;
5842
+ type: "text";
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
- type: "text";
5850
5849
  text: string;
5850
+ type: "text";
5851
5851
  annotations?: {
5852
5852
  priority?: number | null | undefined;
5853
5853
  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
- type: "text";
6050
6049
  text: string;
6050
+ type: "text";
6051
6051
  annotations?: {
6052
6052
  priority?: number | null | undefined;
6053
6053
  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
- type: "text";
6108
6107
  text: string;
6108
+ type: "text";
6109
6109
  annotations?: {
6110
6110
  priority?: number | null | undefined;
6111
6111
  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
- type: "text";
6183
6182
  text: string;
6183
+ type: "text";
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
- type: "text";
6191
6190
  text: string;
6191
+ type: "text";
6192
6192
  annotations?: {
6193
6193
  priority?: number | null | undefined;
6194
6194
  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
- type: "text";
6392
6391
  text: string;
6392
+ type: "text";
6393
6393
  annotations?: {
6394
6394
  priority?: number | null | undefined;
6395
6395
  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
- type: "text";
6450
6449
  text: string;
6450
+ type: "text";
6451
6451
  annotations?: {
6452
6452
  priority?: number | null | undefined;
6453
6453
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -6542,8 +6542,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
6542
6542
  content?: ({
6543
6543
  type: "content";
6544
6544
  content: {
6545
- type: "text";
6546
6545
  text: string;
6546
+ type: "text";
6547
6547
  annotations?: {
6548
6548
  priority?: number | null | undefined;
6549
6549
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -6617,8 +6617,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
6617
6617
  content?: ({
6618
6618
  type: "content";
6619
6619
  content: {
6620
- type: "text";
6621
6620
  text: string;
6621
+ type: "text";
6622
6622
  annotations?: {
6623
6623
  priority?: number | null | undefined;
6624
6624
  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
- type: "text";
6706
6705
  text: string;
6706
+ type: "text";
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
- type: "text";
6714
6713
  text: string;
6714
+ type: "text";
6715
6715
  annotations?: {
6716
6716
  priority?: number | null | undefined;
6717
6717
  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
- type: "text";
6915
6914
  text: string;
6915
+ type: "text";
6916
6916
  annotations?: {
6917
6917
  priority?: number | null | undefined;
6918
6918
  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
- type: "text";
6973
6972
  text: string;
6973
+ type: "text";
6974
6974
  annotations?: {
6975
6975
  priority?: number | null | undefined;
6976
6976
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -7063,8 +7063,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
7063
7063
  content?: ({
7064
7064
  type: "content";
7065
7065
  content: {
7066
- type: "text";
7067
7066
  text: string;
7067
+ type: "text";
7068
7068
  annotations?: {
7069
7069
  priority?: number | null | undefined;
7070
7070
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -7138,8 +7138,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
7138
7138
  content?: ({
7139
7139
  type: "content";
7140
7140
  content: {
7141
- type: "text";
7142
7141
  text: string;
7142
+ type: "text";
7143
7143
  annotations?: {
7144
7144
  priority?: number | null | undefined;
7145
7145
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -7283,8 +7283,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
7283
7283
  sessionId: string;
7284
7284
  update: {
7285
7285
  content: {
7286
- type: "text";
7287
7286
  text: string;
7287
+ type: "text";
7288
7288
  annotations?: {
7289
7289
  priority?: number | null | undefined;
7290
7290
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -7341,8 +7341,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
7341
7341
  sessionUpdate: "user_message_chunk";
7342
7342
  } | {
7343
7343
  content: {
7344
- type: "text";
7345
7344
  text: string;
7345
+ type: "text";
7346
7346
  annotations?: {
7347
7347
  priority?: number | null | undefined;
7348
7348
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -7399,8 +7399,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
7399
7399
  sessionUpdate: "agent_message_chunk";
7400
7400
  } | {
7401
7401
  content: {
7402
- type: "text";
7403
7402
  text: string;
7403
+ type: "text";
7404
7404
  annotations?: {
7405
7405
  priority?: number | null | undefined;
7406
7406
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -7464,8 +7464,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
7464
7464
  content?: ({
7465
7465
  type: "content";
7466
7466
  content: {
7467
- type: "text";
7468
7467
  text: string;
7468
+ type: "text";
7469
7469
  annotations?: {
7470
7470
  priority?: number | null | undefined;
7471
7471
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -7537,8 +7537,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
7537
7537
  content?: ({
7538
7538
  type: "content";
7539
7539
  content: {
7540
- type: "text";
7541
7540
  text: string;
7541
+ type: "text";
7542
7542
  annotations?: {
7543
7543
  priority?: number | null | undefined;
7544
7544
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -7626,8 +7626,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
7626
7626
  sessionId: string;
7627
7627
  update: {
7628
7628
  content: {
7629
- type: "text";
7630
7629
  text: string;
7630
+ type: "text";
7631
7631
  annotations?: {
7632
7632
  priority?: number | null | undefined;
7633
7633
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -7684,8 +7684,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
7684
7684
  sessionUpdate: "user_message_chunk";
7685
7685
  } | {
7686
7686
  content: {
7687
- type: "text";
7688
7687
  text: string;
7688
+ type: "text";
7689
7689
  annotations?: {
7690
7690
  priority?: number | null | undefined;
7691
7691
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -7742,8 +7742,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
7742
7742
  sessionUpdate: "agent_message_chunk";
7743
7743
  } | {
7744
7744
  content: {
7745
- type: "text";
7746
7745
  text: string;
7746
+ type: "text";
7747
7747
  annotations?: {
7748
7748
  priority?: number | null | undefined;
7749
7749
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -7807,8 +7807,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
7807
7807
  content?: ({
7808
7808
  type: "content";
7809
7809
  content: {
7810
- type: "text";
7811
7810
  text: string;
7811
+ type: "text";
7812
7812
  annotations?: {
7813
7813
  priority?: number | null | undefined;
7814
7814
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -7880,8 +7880,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
7880
7880
  content?: ({
7881
7881
  type: "content";
7882
7882
  content: {
7883
- type: "text";
7884
7883
  text: string;
7884
+ type: "text";
7885
7885
  annotations?: {
7886
7886
  priority?: number | null | undefined;
7887
7887
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -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
- type: "text";
8031
8030
  text: string;
8031
+ type: "text";
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
- type: "text";
8039
8038
  text: string;
8039
+ type: "text";
8040
8040
  annotations?: {
8041
8041
  priority?: number | null | undefined;
8042
8042
  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
- type: "text";
8240
8239
  text: string;
8240
+ type: "text";
8241
8241
  annotations?: {
8242
8242
  priority?: number | null | undefined;
8243
8243
  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
- type: "text";
8298
8297
  text: string;
8298
+ type: "text";
8299
8299
  annotations?: {
8300
8300
  priority?: number | null | undefined;
8301
8301
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -8388,8 +8388,8 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
8388
8388
  content?: ({
8389
8389
  type: "content";
8390
8390
  content: {
8391
- type: "text";
8392
8391
  text: string;
8392
+ type: "text";
8393
8393
  annotations?: {
8394
8394
  priority?: number | null | undefined;
8395
8395
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -8462,8 +8462,8 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
8462
8462
  content?: ({
8463
8463
  type: "content";
8464
8464
  content: {
8465
- type: "text";
8466
8465
  text: string;
8466
+ type: "text";
8467
8467
  annotations?: {
8468
8468
  priority?: number | null | undefined;
8469
8469
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -8544,8 +8544,8 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
8544
8544
  content?: ({
8545
8545
  type: "content";
8546
8546
  content: {
8547
- type: "text";
8548
8547
  text: string;
8548
+ type: "text";
8549
8549
  annotations?: {
8550
8550
  priority?: number | null | undefined;
8551
8551
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -8626,8 +8626,8 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
8626
8626
  content?: ({
8627
8627
  type: "content";
8628
8628
  content: {
8629
- type: "text";
8630
8629
  text: string;
8630
+ type: "text";
8631
8631
  annotations?: {
8632
8632
  priority?: number | null | undefined;
8633
8633
  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
- type: "text";
8875
8874
  text: string;
8875
+ type: "text";
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
- type: "text";
8883
8882
  text: string;
8883
+ type: "text";
8884
8884
  annotations?: {
8885
8885
  priority?: number | null | undefined;
8886
8886
  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
- type: "text";
9083
9082
  text: string;
9083
+ type: "text";
9084
9084
  annotations?: {
9085
9085
  priority?: number | null | undefined;
9086
9086
  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
- type: "text";
9141
9140
  text: string;
9141
+ type: "text";
9142
9142
  annotations?: {
9143
9143
  priority?: number | null | undefined;
9144
9144
  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
- type: "text";
9218
9217
  text: string;
9218
+ type: "text";
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
- type: "text";
9226
9225
  text: string;
9226
+ type: "text";
9227
9227
  annotations?: {
9228
9228
  priority?: number | null | undefined;
9229
9229
  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
- type: "text";
9426
9425
  text: string;
9426
+ type: "text";
9427
9427
  annotations?: {
9428
9428
  priority?: number | null | undefined;
9429
9429
  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
- type: "text";
9484
9483
  text: string;
9484
+ type: "text";
9485
9485
  annotations?: {
9486
9486
  priority?: number | null | undefined;
9487
9487
  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
- type: "text";
9558
9557
  text: string;
9558
+ type: "text";
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
- type: "text";
9566
9565
  text: string;
9566
+ type: "text";
9567
9567
  annotations?: {
9568
9568
  priority?: number | null | undefined;
9569
9569
  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
- type: "text";
9766
9765
  text: string;
9766
+ type: "text";
9767
9767
  annotations?: {
9768
9768
  priority?: number | null | undefined;
9769
9769
  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
- type: "text";
9824
9823
  text: string;
9824
+ type: "text";
9825
9825
  annotations?: {
9826
9826
  priority?: number | null | undefined;
9827
9827
  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
- type: "text";
9898
9897
  text: string;
9898
+ type: "text";
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
- type: "text";
9906
9905
  text: string;
9906
+ type: "text";
9907
9907
  annotations?: {
9908
9908
  priority?: number | null | undefined;
9909
9909
  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
- type: "text";
10106
10105
  text: string;
10106
+ type: "text";
10107
10107
  annotations?: {
10108
10108
  priority?: number | null | undefined;
10109
10109
  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
- type: "text";
10164
10163
  text: string;
10164
+ type: "text";
10165
10165
  annotations?: {
10166
10166
  priority?: number | null | undefined;
10167
10167
  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
- type: "text";
10239
10238
  text: string;
10239
+ type: "text";
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
- type: "text";
10247
10246
  text: string;
10247
+ type: "text";
10248
10248
  annotations?: {
10249
10249
  priority?: number | null | undefined;
10250
10250
  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
- type: "text";
10448
10447
  text: string;
10448
+ type: "text";
10449
10449
  annotations?: {
10450
10450
  priority?: number | null | undefined;
10451
10451
  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
- type: "text";
10506
10505
  text: string;
10506
+ type: "text";
10507
10507
  annotations?: {
10508
10508
  priority?: number | null | undefined;
10509
10509
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -10598,8 +10598,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
10598
10598
  content?: ({
10599
10599
  type: "content";
10600
10600
  content: {
10601
- type: "text";
10602
10601
  text: string;
10602
+ type: "text";
10603
10603
  annotations?: {
10604
10604
  priority?: number | null | undefined;
10605
10605
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -10673,8 +10673,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
10673
10673
  content?: ({
10674
10674
  type: "content";
10675
10675
  content: {
10676
- type: "text";
10677
10676
  text: string;
10677
+ type: "text";
10678
10678
  annotations?: {
10679
10679
  priority?: number | null | undefined;
10680
10680
  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
- type: "text";
10762
10761
  text: string;
10762
+ type: "text";
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
- type: "text";
10770
10769
  text: string;
10770
+ type: "text";
10771
10771
  annotations?: {
10772
10772
  priority?: number | null | undefined;
10773
10773
  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
- type: "text";
10971
10970
  text: string;
10971
+ type: "text";
10972
10972
  annotations?: {
10973
10973
  priority?: number | null | undefined;
10974
10974
  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
- type: "text";
11029
11028
  text: string;
11029
+ type: "text";
11030
11030
  annotations?: {
11031
11031
  priority?: number | null | undefined;
11032
11032
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -11119,8 +11119,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
11119
11119
  content?: ({
11120
11120
  type: "content";
11121
11121
  content: {
11122
- type: "text";
11123
11122
  text: string;
11123
+ type: "text";
11124
11124
  annotations?: {
11125
11125
  priority?: number | null | undefined;
11126
11126
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -11194,8 +11194,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
11194
11194
  content?: ({
11195
11195
  type: "content";
11196
11196
  content: {
11197
- type: "text";
11198
11197
  text: string;
11198
+ type: "text";
11199
11199
  annotations?: {
11200
11200
  priority?: number | null | undefined;
11201
11201
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -11339,8 +11339,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
11339
11339
  sessionId: string;
11340
11340
  update: {
11341
11341
  content: {
11342
- type: "text";
11343
11342
  text: string;
11343
+ type: "text";
11344
11344
  annotations?: {
11345
11345
  priority?: number | null | undefined;
11346
11346
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -11397,8 +11397,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
11397
11397
  sessionUpdate: "user_message_chunk";
11398
11398
  } | {
11399
11399
  content: {
11400
- type: "text";
11401
11400
  text: string;
11401
+ type: "text";
11402
11402
  annotations?: {
11403
11403
  priority?: number | null | undefined;
11404
11404
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -11455,8 +11455,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
11455
11455
  sessionUpdate: "agent_message_chunk";
11456
11456
  } | {
11457
11457
  content: {
11458
- type: "text";
11459
11458
  text: string;
11459
+ type: "text";
11460
11460
  annotations?: {
11461
11461
  priority?: number | null | undefined;
11462
11462
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -11520,8 +11520,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
11520
11520
  content?: ({
11521
11521
  type: "content";
11522
11522
  content: {
11523
- type: "text";
11524
11523
  text: string;
11524
+ type: "text";
11525
11525
  annotations?: {
11526
11526
  priority?: number | null | undefined;
11527
11527
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -11593,8 +11593,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
11593
11593
  content?: ({
11594
11594
  type: "content";
11595
11595
  content: {
11596
- type: "text";
11597
11596
  text: string;
11597
+ type: "text";
11598
11598
  annotations?: {
11599
11599
  priority?: number | null | undefined;
11600
11600
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -11682,8 +11682,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
11682
11682
  sessionId: string;
11683
11683
  update: {
11684
11684
  content: {
11685
- type: "text";
11686
11685
  text: string;
11686
+ type: "text";
11687
11687
  annotations?: {
11688
11688
  priority?: number | null | undefined;
11689
11689
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -11740,8 +11740,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
11740
11740
  sessionUpdate: "user_message_chunk";
11741
11741
  } | {
11742
11742
  content: {
11743
- type: "text";
11744
11743
  text: string;
11744
+ type: "text";
11745
11745
  annotations?: {
11746
11746
  priority?: number | null | undefined;
11747
11747
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -11798,8 +11798,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
11798
11798
  sessionUpdate: "agent_message_chunk";
11799
11799
  } | {
11800
11800
  content: {
11801
- type: "text";
11802
11801
  text: string;
11802
+ type: "text";
11803
11803
  annotations?: {
11804
11804
  priority?: number | null | undefined;
11805
11805
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -11863,8 +11863,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
11863
11863
  content?: ({
11864
11864
  type: "content";
11865
11865
  content: {
11866
- type: "text";
11867
11866
  text: string;
11867
+ type: "text";
11868
11868
  annotations?: {
11869
11869
  priority?: number | null | undefined;
11870
11870
  audience?: ("user" | "assistant")[] | null | undefined;
@@ -11936,8 +11936,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
11936
11936
  content?: ({
11937
11937
  type: "content";
11938
11938
  content: {
11939
- type: "text";
11940
11939
  text: string;
11940
+ type: "text";
11941
11941
  annotations?: {
11942
11942
  priority?: number | null | undefined;
11943
11943
  audience?: ("user" | "assistant")[] | null | undefined;