@hibanacloud/cli 0.3.19 → 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.
- package/dist/package.json +4 -4
- package/dist/src/generated/git-commit.d.ts +1 -1
- package/dist/src/generated/git-commit.js +1 -1
- package/dist/src/ui/auth/AuthDialog.js +1 -1
- package/dist/src/ui/auth/AuthDialog.js.map +1 -1
- package/dist/src/ui/auth/useAuth.js +3 -5
- package/dist/src/ui/auth/useAuth.js.map +1 -1
- package/dist/src/ui/commands/bugCommand.js +1 -1
- package/dist/src/ui/commands/bugCommand.js.map +1 -1
- package/dist/src/ui/models/availableModels.d.ts +1 -1
- package/dist/src/utils/gitUtils.js +1 -1
- package/dist/src/utils/gitUtils.js.map +1 -1
- package/dist/src/zed-integration/schema.d.ts +362 -362
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +4 -4
|
@@ -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
|
+
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;
|
|
@@ -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
|
+
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, {
|
|
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
|
+
id: string;
|
|
615
616
|
name: string;
|
|
616
617
|
description: string | null;
|
|
617
|
-
id: 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
|
+
id: string;
|
|
630
631
|
name: string;
|
|
631
632
|
description: string | null;
|
|
632
|
-
id: string;
|
|
633
633
|
}[];
|
|
634
634
|
protocolVersion: number;
|
|
635
635
|
}>;
|
|
@@ -757,26 +757,26 @@ export declare const contentBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
757
757
|
type: z.ZodLiteral<"resource_link">;
|
|
758
758
|
uri: z.ZodString;
|
|
759
759
|
}, "strip", z.ZodTypeAny, {
|
|
760
|
-
name: string;
|
|
761
760
|
type: "resource_link";
|
|
761
|
+
name: string;
|
|
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;
|
|
770
770
|
lastModified?: string | null | undefined;
|
|
771
771
|
} | null | undefined;
|
|
772
772
|
}, {
|
|
773
|
-
name: string;
|
|
774
773
|
type: "resource_link";
|
|
774
|
+
name: string;
|
|
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;
|
|
@@ -980,26 +980,26 @@ export declare const toolCallContentSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
980
980
|
type: z.ZodLiteral<"resource_link">;
|
|
981
981
|
uri: z.ZodString;
|
|
982
982
|
}, "strip", z.ZodTypeAny, {
|
|
983
|
-
name: string;
|
|
984
983
|
type: "resource_link";
|
|
984
|
+
name: string;
|
|
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;
|
|
993
993
|
lastModified?: string | null | undefined;
|
|
994
994
|
} | null | undefined;
|
|
995
995
|
}, {
|
|
996
|
-
name: string;
|
|
997
996
|
type: "resource_link";
|
|
997
|
+
name: string;
|
|
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;
|
|
@@ -1108,13 +1108,13 @@ export declare const toolCallContentSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1108
1108
|
lastModified?: string | null | undefined;
|
|
1109
1109
|
} | null | undefined;
|
|
1110
1110
|
} | {
|
|
1111
|
-
name: string;
|
|
1112
1111
|
type: "resource_link";
|
|
1112
|
+
name: string;
|
|
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;
|
|
@@ -1166,13 +1166,13 @@ export declare const toolCallContentSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1166
1166
|
lastModified?: string | null | undefined;
|
|
1167
1167
|
} | null | undefined;
|
|
1168
1168
|
} | {
|
|
1169
|
-
name: string;
|
|
1170
1169
|
type: "resource_link";
|
|
1170
|
+
name: string;
|
|
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;
|
|
@@ -1337,26 +1337,26 @@ export declare const toolCallSchema: z.ZodObject<{
|
|
|
1337
1337
|
type: z.ZodLiteral<"resource_link">;
|
|
1338
1338
|
uri: z.ZodString;
|
|
1339
1339
|
}, "strip", z.ZodTypeAny, {
|
|
1340
|
-
name: string;
|
|
1341
1340
|
type: "resource_link";
|
|
1341
|
+
name: string;
|
|
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;
|
|
1350
1350
|
lastModified?: string | null | undefined;
|
|
1351
1351
|
} | null | undefined;
|
|
1352
1352
|
}, {
|
|
1353
|
-
name: string;
|
|
1354
1353
|
type: "resource_link";
|
|
1354
|
+
name: string;
|
|
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;
|
|
@@ -1465,13 +1465,13 @@ export declare const toolCallSchema: z.ZodObject<{
|
|
|
1465
1465
|
lastModified?: string | null | undefined;
|
|
1466
1466
|
} | null | undefined;
|
|
1467
1467
|
} | {
|
|
1468
|
-
name: string;
|
|
1469
1468
|
type: "resource_link";
|
|
1469
|
+
name: string;
|
|
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;
|
|
@@ -1523,13 +1523,13 @@ export declare const toolCallSchema: z.ZodObject<{
|
|
|
1523
1523
|
lastModified?: string | null | undefined;
|
|
1524
1524
|
} | null | undefined;
|
|
1525
1525
|
} | {
|
|
1526
|
-
name: string;
|
|
1527
1526
|
type: "resource_link";
|
|
1527
|
+
name: string;
|
|
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,9 +1584,9 @@ export declare const toolCallSchema: z.ZodObject<{
|
|
|
1584
1584
|
title: z.ZodString;
|
|
1585
1585
|
toolCallId: z.ZodString;
|
|
1586
1586
|
}, "strip", z.ZodTypeAny, {
|
|
1587
|
-
title: string;
|
|
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";
|
|
@@ -1617,13 +1617,13 @@ export declare const toolCallSchema: z.ZodObject<{
|
|
|
1617
1617
|
lastModified?: string | null | undefined;
|
|
1618
1618
|
} | null | undefined;
|
|
1619
1619
|
} | {
|
|
1620
|
-
name: string;
|
|
1621
1620
|
type: "resource_link";
|
|
1621
|
+
name: string;
|
|
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,9 +1658,9 @@ export declare const toolCallSchema: z.ZodObject<{
|
|
|
1658
1658
|
}[] | undefined;
|
|
1659
1659
|
rawInput?: unknown;
|
|
1660
1660
|
}, {
|
|
1661
|
-
title: string;
|
|
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";
|
|
@@ -1691,13 +1691,13 @@ export declare const toolCallSchema: z.ZodObject<{
|
|
|
1691
1691
|
lastModified?: string | null | undefined;
|
|
1692
1692
|
} | null | undefined;
|
|
1693
1693
|
} | {
|
|
1694
|
-
name: string;
|
|
1695
1694
|
type: "resource_link";
|
|
1695
|
+
name: string;
|
|
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;
|
|
@@ -1879,26 +1879,26 @@ export declare const promptRequestSchema: z.ZodObject<{
|
|
|
1879
1879
|
type: z.ZodLiteral<"resource_link">;
|
|
1880
1880
|
uri: z.ZodString;
|
|
1881
1881
|
}, "strip", z.ZodTypeAny, {
|
|
1882
|
-
name: string;
|
|
1883
1882
|
type: "resource_link";
|
|
1883
|
+
name: string;
|
|
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;
|
|
1892
1892
|
lastModified?: string | null | undefined;
|
|
1893
1893
|
} | null | undefined;
|
|
1894
1894
|
}, {
|
|
1895
|
-
name: string;
|
|
1896
1895
|
type: "resource_link";
|
|
1896
|
+
name: string;
|
|
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;
|
|
@@ -2006,13 +2006,13 @@ export declare const promptRequestSchema: z.ZodObject<{
|
|
|
2006
2006
|
lastModified?: string | null | undefined;
|
|
2007
2007
|
} | null | undefined;
|
|
2008
2008
|
} | {
|
|
2009
|
-
name: string;
|
|
2010
2009
|
type: "resource_link";
|
|
2010
|
+
name: string;
|
|
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;
|
|
@@ -2064,13 +2064,13 @@ export declare const promptRequestSchema: z.ZodObject<{
|
|
|
2064
2064
|
lastModified?: string | null | undefined;
|
|
2065
2065
|
} | null | undefined;
|
|
2066
2066
|
} | {
|
|
2067
|
-
name: string;
|
|
2068
2067
|
type: "resource_link";
|
|
2068
|
+
name: string;
|
|
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;
|
|
@@ -2294,26 +2294,26 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2294
2294
|
type: z.ZodLiteral<"resource_link">;
|
|
2295
2295
|
uri: z.ZodString;
|
|
2296
2296
|
}, "strip", z.ZodTypeAny, {
|
|
2297
|
-
name: string;
|
|
2298
2297
|
type: "resource_link";
|
|
2298
|
+
name: string;
|
|
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;
|
|
2307
2307
|
lastModified?: string | null | undefined;
|
|
2308
2308
|
} | null | undefined;
|
|
2309
2309
|
}, {
|
|
2310
|
-
name: string;
|
|
2311
2310
|
type: "resource_link";
|
|
2311
|
+
name: string;
|
|
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;
|
|
@@ -2421,13 +2421,13 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2421
2421
|
lastModified?: string | null | undefined;
|
|
2422
2422
|
} | null | undefined;
|
|
2423
2423
|
} | {
|
|
2424
|
-
name: string;
|
|
2425
2424
|
type: "resource_link";
|
|
2425
|
+
name: string;
|
|
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;
|
|
@@ -2479,13 +2479,13 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2479
2479
|
lastModified?: string | null | undefined;
|
|
2480
2480
|
} | null | undefined;
|
|
2481
2481
|
} | {
|
|
2482
|
-
name: string;
|
|
2483
2482
|
type: "resource_link";
|
|
2483
|
+
name: string;
|
|
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;
|
|
@@ -2634,26 +2634,26 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2634
2634
|
type: z.ZodLiteral<"resource_link">;
|
|
2635
2635
|
uri: z.ZodString;
|
|
2636
2636
|
}, "strip", z.ZodTypeAny, {
|
|
2637
|
-
name: string;
|
|
2638
2637
|
type: "resource_link";
|
|
2638
|
+
name: string;
|
|
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;
|
|
2647
2647
|
lastModified?: string | null | undefined;
|
|
2648
2648
|
} | null | undefined;
|
|
2649
2649
|
}, {
|
|
2650
|
-
name: string;
|
|
2651
2650
|
type: "resource_link";
|
|
2651
|
+
name: string;
|
|
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;
|
|
@@ -2761,13 +2761,13 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2761
2761
|
lastModified?: string | null | undefined;
|
|
2762
2762
|
} | null | undefined;
|
|
2763
2763
|
} | {
|
|
2764
|
-
name: string;
|
|
2765
2764
|
type: "resource_link";
|
|
2765
|
+
name: string;
|
|
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;
|
|
@@ -2819,13 +2819,13 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2819
2819
|
lastModified?: string | null | undefined;
|
|
2820
2820
|
} | null | undefined;
|
|
2821
2821
|
} | {
|
|
2822
|
-
name: string;
|
|
2823
2822
|
type: "resource_link";
|
|
2823
|
+
name: string;
|
|
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;
|
|
@@ -2974,26 +2974,26 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2974
2974
|
type: z.ZodLiteral<"resource_link">;
|
|
2975
2975
|
uri: z.ZodString;
|
|
2976
2976
|
}, "strip", z.ZodTypeAny, {
|
|
2977
|
-
name: string;
|
|
2978
2977
|
type: "resource_link";
|
|
2978
|
+
name: string;
|
|
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;
|
|
2987
2987
|
lastModified?: string | null | undefined;
|
|
2988
2988
|
} | null | undefined;
|
|
2989
2989
|
}, {
|
|
2990
|
-
name: string;
|
|
2991
2990
|
type: "resource_link";
|
|
2991
|
+
name: string;
|
|
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;
|
|
@@ -3101,13 +3101,13 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3101
3101
|
lastModified?: string | null | undefined;
|
|
3102
3102
|
} | null | undefined;
|
|
3103
3103
|
} | {
|
|
3104
|
-
name: string;
|
|
3105
3104
|
type: "resource_link";
|
|
3105
|
+
name: string;
|
|
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;
|
|
@@ -3159,13 +3159,13 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3159
3159
|
lastModified?: string | null | undefined;
|
|
3160
3160
|
} | null | undefined;
|
|
3161
3161
|
} | {
|
|
3162
|
-
name: string;
|
|
3163
3162
|
type: "resource_link";
|
|
3163
|
+
name: string;
|
|
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;
|
|
@@ -3315,26 +3315,26 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3315
3315
|
type: z.ZodLiteral<"resource_link">;
|
|
3316
3316
|
uri: z.ZodString;
|
|
3317
3317
|
}, "strip", z.ZodTypeAny, {
|
|
3318
|
-
name: string;
|
|
3319
3318
|
type: "resource_link";
|
|
3319
|
+
name: string;
|
|
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;
|
|
3328
3328
|
lastModified?: string | null | undefined;
|
|
3329
3329
|
} | null | undefined;
|
|
3330
3330
|
}, {
|
|
3331
|
-
name: string;
|
|
3332
3331
|
type: "resource_link";
|
|
3332
|
+
name: string;
|
|
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;
|
|
@@ -3443,13 +3443,13 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3443
3443
|
lastModified?: string | null | undefined;
|
|
3444
3444
|
} | null | undefined;
|
|
3445
3445
|
} | {
|
|
3446
|
-
name: string;
|
|
3447
3446
|
type: "resource_link";
|
|
3447
|
+
name: string;
|
|
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;
|
|
@@ -3501,13 +3501,13 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3501
3501
|
lastModified?: string | null | undefined;
|
|
3502
3502
|
} | null | undefined;
|
|
3503
3503
|
} | {
|
|
3504
|
-
name: string;
|
|
3505
3504
|
type: "resource_link";
|
|
3505
|
+
name: string;
|
|
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,9 +3563,9 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3563
3563
|
title: z.ZodString;
|
|
3564
3564
|
toolCallId: z.ZodString;
|
|
3565
3565
|
}, "strip", z.ZodTypeAny, {
|
|
3566
|
-
title: string;
|
|
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?: ({
|
|
@@ -3597,13 +3597,13 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3597
3597
|
lastModified?: string | null | undefined;
|
|
3598
3598
|
} | null | undefined;
|
|
3599
3599
|
} | {
|
|
3600
|
-
name: string;
|
|
3601
3600
|
type: "resource_link";
|
|
3601
|
+
name: string;
|
|
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,9 +3638,9 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3638
3638
|
}[] | undefined;
|
|
3639
3639
|
rawInput?: unknown;
|
|
3640
3640
|
}, {
|
|
3641
|
-
title: string;
|
|
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?: ({
|
|
@@ -3672,13 +3672,13 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3672
3672
|
lastModified?: string | null | undefined;
|
|
3673
3673
|
} | null | undefined;
|
|
3674
3674
|
} | {
|
|
3675
|
-
name: string;
|
|
3676
3675
|
type: "resource_link";
|
|
3676
|
+
name: string;
|
|
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;
|
|
@@ -3838,26 +3838,26 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3838
3838
|
type: z.ZodLiteral<"resource_link">;
|
|
3839
3839
|
uri: z.ZodString;
|
|
3840
3840
|
}, "strip", z.ZodTypeAny, {
|
|
3841
|
-
name: string;
|
|
3842
3841
|
type: "resource_link";
|
|
3842
|
+
name: string;
|
|
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;
|
|
3851
3851
|
lastModified?: string | null | undefined;
|
|
3852
3852
|
} | null | undefined;
|
|
3853
3853
|
}, {
|
|
3854
|
-
name: string;
|
|
3855
3854
|
type: "resource_link";
|
|
3855
|
+
name: string;
|
|
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;
|
|
@@ -3966,13 +3966,13 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3966
3966
|
lastModified?: string | null | undefined;
|
|
3967
3967
|
} | null | undefined;
|
|
3968
3968
|
} | {
|
|
3969
|
-
name: string;
|
|
3970
3969
|
type: "resource_link";
|
|
3970
|
+
name: string;
|
|
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;
|
|
@@ -4024,13 +4024,13 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4024
4024
|
lastModified?: string | null | undefined;
|
|
4025
4025
|
} | null | undefined;
|
|
4026
4026
|
} | {
|
|
4027
|
-
name: string;
|
|
4028
4027
|
type: "resource_link";
|
|
4028
|
+
name: string;
|
|
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,6 +4088,7 @@ 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: {
|
|
@@ -4117,13 +4118,13 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4117
4118
|
lastModified?: string | null | undefined;
|
|
4118
4119
|
} | null | undefined;
|
|
4119
4120
|
} | {
|
|
4120
|
-
name: string;
|
|
4121
4121
|
type: "resource_link";
|
|
4122
|
+
name: string;
|
|
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;
|
|
@@ -4153,8 +4154,7 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4153
4154
|
oldText: string | null;
|
|
4154
4155
|
})[] | null | undefined;
|
|
4155
4156
|
title?: string | null | undefined;
|
|
4156
|
-
|
|
4157
|
-
kind?: "search" | "delete" | "move" | "edit" | "other" | "read" | "execute" | "think" | "fetch" | 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,6 +4163,7 @@ 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: {
|
|
@@ -4192,13 +4193,13 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4192
4193
|
lastModified?: string | null | undefined;
|
|
4193
4194
|
} | null | undefined;
|
|
4194
4195
|
} | {
|
|
4195
|
-
name: string;
|
|
4196
4196
|
type: "resource_link";
|
|
4197
|
+
name: string;
|
|
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;
|
|
@@ -4228,8 +4229,7 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4228
4229
|
oldText: string | null;
|
|
4229
4230
|
})[] | null | undefined;
|
|
4230
4231
|
title?: string | null | undefined;
|
|
4231
|
-
|
|
4232
|
-
kind?: "search" | "delete" | "move" | "edit" | "other" | "read" | "execute" | "think" | "fetch" | 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";
|
|
@@ -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
|
+
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, {
|
|
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
|
+
id: string;
|
|
4366
4367
|
name: string;
|
|
4367
4368
|
description: string | null;
|
|
4368
|
-
id: 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
|
+
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<{
|
|
@@ -4537,26 +4537,26 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
|
4537
4537
|
type: z.ZodLiteral<"resource_link">;
|
|
4538
4538
|
uri: z.ZodString;
|
|
4539
4539
|
}, "strip", z.ZodTypeAny, {
|
|
4540
|
-
name: string;
|
|
4541
4540
|
type: "resource_link";
|
|
4541
|
+
name: string;
|
|
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;
|
|
4550
4550
|
lastModified?: string | null | undefined;
|
|
4551
4551
|
} | null | undefined;
|
|
4552
4552
|
}, {
|
|
4553
|
-
name: string;
|
|
4554
4553
|
type: "resource_link";
|
|
4554
|
+
name: string;
|
|
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;
|
|
@@ -4665,13 +4665,13 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
|
4665
4665
|
lastModified?: string | null | undefined;
|
|
4666
4666
|
} | null | undefined;
|
|
4667
4667
|
} | {
|
|
4668
|
-
name: string;
|
|
4669
4668
|
type: "resource_link";
|
|
4669
|
+
name: string;
|
|
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;
|
|
@@ -4723,13 +4723,13 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
|
4723
4723
|
lastModified?: string | null | undefined;
|
|
4724
4724
|
} | null | undefined;
|
|
4725
4725
|
} | {
|
|
4726
|
-
name: string;
|
|
4727
4726
|
type: "resource_link";
|
|
4727
|
+
name: string;
|
|
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,9 +4784,9 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
|
4784
4784
|
title: z.ZodString;
|
|
4785
4785
|
toolCallId: z.ZodString;
|
|
4786
4786
|
}, "strip", z.ZodTypeAny, {
|
|
4787
|
-
title: string;
|
|
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";
|
|
@@ -4817,13 +4817,13 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
|
4817
4817
|
lastModified?: string | null | undefined;
|
|
4818
4818
|
} | null | undefined;
|
|
4819
4819
|
} | {
|
|
4820
|
-
name: string;
|
|
4821
4820
|
type: "resource_link";
|
|
4821
|
+
name: string;
|
|
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,9 +4858,9 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
|
4858
4858
|
}[] | undefined;
|
|
4859
4859
|
rawInput?: unknown;
|
|
4860
4860
|
}, {
|
|
4861
|
-
title: string;
|
|
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";
|
|
@@ -4891,13 +4891,13 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
|
4891
4891
|
lastModified?: string | null | undefined;
|
|
4892
4892
|
} | null | undefined;
|
|
4893
4893
|
} | {
|
|
4894
|
-
name: string;
|
|
4895
4894
|
type: "resource_link";
|
|
4895
|
+
name: string;
|
|
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,9 +4940,9 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
|
4940
4940
|
}[];
|
|
4941
4941
|
sessionId: string;
|
|
4942
4942
|
toolCall: {
|
|
4943
|
-
title: string;
|
|
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";
|
|
@@ -4973,13 +4973,13 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
|
4973
4973
|
lastModified?: string | null | undefined;
|
|
4974
4974
|
} | null | undefined;
|
|
4975
4975
|
} | {
|
|
4976
|
-
name: string;
|
|
4977
4976
|
type: "resource_link";
|
|
4977
|
+
name: string;
|
|
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,9 +5022,9 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
|
5022
5022
|
}[];
|
|
5023
5023
|
sessionId: string;
|
|
5024
5024
|
toolCall: {
|
|
5025
|
-
title: string;
|
|
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";
|
|
@@ -5055,13 +5055,13 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
|
5055
5055
|
lastModified?: string | null | undefined;
|
|
5056
5056
|
} | null | undefined;
|
|
5057
5057
|
} | {
|
|
5058
|
-
name: string;
|
|
5059
5058
|
type: "resource_link";
|
|
5059
|
+
name: string;
|
|
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;
|
|
@@ -5265,26 +5265,26 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
5265
5265
|
type: z.ZodLiteral<"resource_link">;
|
|
5266
5266
|
uri: z.ZodString;
|
|
5267
5267
|
}, "strip", z.ZodTypeAny, {
|
|
5268
|
-
name: string;
|
|
5269
5268
|
type: "resource_link";
|
|
5269
|
+
name: string;
|
|
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;
|
|
5278
5278
|
lastModified?: string | null | undefined;
|
|
5279
5279
|
} | null | undefined;
|
|
5280
5280
|
}, {
|
|
5281
|
-
name: string;
|
|
5282
5281
|
type: "resource_link";
|
|
5282
|
+
name: string;
|
|
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;
|
|
@@ -5392,13 +5392,13 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
5392
5392
|
lastModified?: string | null | undefined;
|
|
5393
5393
|
} | null | undefined;
|
|
5394
5394
|
} | {
|
|
5395
|
-
name: string;
|
|
5396
5395
|
type: "resource_link";
|
|
5396
|
+
name: string;
|
|
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;
|
|
@@ -5450,13 +5450,13 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
5450
5450
|
lastModified?: string | null | undefined;
|
|
5451
5451
|
} | null | undefined;
|
|
5452
5452
|
} | {
|
|
5453
|
-
name: string;
|
|
5454
5453
|
type: "resource_link";
|
|
5454
|
+
name: string;
|
|
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;
|
|
@@ -5605,26 +5605,26 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
5605
5605
|
type: z.ZodLiteral<"resource_link">;
|
|
5606
5606
|
uri: z.ZodString;
|
|
5607
5607
|
}, "strip", z.ZodTypeAny, {
|
|
5608
|
-
name: string;
|
|
5609
5608
|
type: "resource_link";
|
|
5609
|
+
name: string;
|
|
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;
|
|
5618
5618
|
lastModified?: string | null | undefined;
|
|
5619
5619
|
} | null | undefined;
|
|
5620
5620
|
}, {
|
|
5621
|
-
name: string;
|
|
5622
5621
|
type: "resource_link";
|
|
5622
|
+
name: string;
|
|
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;
|
|
@@ -5732,13 +5732,13 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
5732
5732
|
lastModified?: string | null | undefined;
|
|
5733
5733
|
} | null | undefined;
|
|
5734
5734
|
} | {
|
|
5735
|
-
name: string;
|
|
5736
5735
|
type: "resource_link";
|
|
5736
|
+
name: string;
|
|
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;
|
|
@@ -5790,13 +5790,13 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
5790
5790
|
lastModified?: string | null | undefined;
|
|
5791
5791
|
} | null | undefined;
|
|
5792
5792
|
} | {
|
|
5793
|
-
name: string;
|
|
5794
5793
|
type: "resource_link";
|
|
5794
|
+
name: string;
|
|
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;
|
|
@@ -5945,26 +5945,26 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
5945
5945
|
type: z.ZodLiteral<"resource_link">;
|
|
5946
5946
|
uri: z.ZodString;
|
|
5947
5947
|
}, "strip", z.ZodTypeAny, {
|
|
5948
|
-
name: string;
|
|
5949
5948
|
type: "resource_link";
|
|
5949
|
+
name: string;
|
|
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;
|
|
5958
5958
|
lastModified?: string | null | undefined;
|
|
5959
5959
|
} | null | undefined;
|
|
5960
5960
|
}, {
|
|
5961
|
-
name: string;
|
|
5962
5961
|
type: "resource_link";
|
|
5962
|
+
name: string;
|
|
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;
|
|
@@ -6072,13 +6072,13 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
6072
6072
|
lastModified?: string | null | undefined;
|
|
6073
6073
|
} | null | undefined;
|
|
6074
6074
|
} | {
|
|
6075
|
-
name: string;
|
|
6076
6075
|
type: "resource_link";
|
|
6076
|
+
name: string;
|
|
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;
|
|
@@ -6130,13 +6130,13 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
6130
6130
|
lastModified?: string | null | undefined;
|
|
6131
6131
|
} | null | undefined;
|
|
6132
6132
|
} | {
|
|
6133
|
-
name: string;
|
|
6134
6133
|
type: "resource_link";
|
|
6134
|
+
name: string;
|
|
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;
|
|
@@ -6286,26 +6286,26 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
6286
6286
|
type: z.ZodLiteral<"resource_link">;
|
|
6287
6287
|
uri: z.ZodString;
|
|
6288
6288
|
}, "strip", z.ZodTypeAny, {
|
|
6289
|
-
name: string;
|
|
6290
6289
|
type: "resource_link";
|
|
6290
|
+
name: string;
|
|
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;
|
|
6299
6299
|
lastModified?: string | null | undefined;
|
|
6300
6300
|
} | null | undefined;
|
|
6301
6301
|
}, {
|
|
6302
|
-
name: string;
|
|
6303
6302
|
type: "resource_link";
|
|
6303
|
+
name: string;
|
|
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;
|
|
@@ -6414,13 +6414,13 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
6414
6414
|
lastModified?: string | null | undefined;
|
|
6415
6415
|
} | null | undefined;
|
|
6416
6416
|
} | {
|
|
6417
|
-
name: string;
|
|
6418
6417
|
type: "resource_link";
|
|
6418
|
+
name: string;
|
|
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;
|
|
@@ -6472,13 +6472,13 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
6472
6472
|
lastModified?: string | null | undefined;
|
|
6473
6473
|
} | null | undefined;
|
|
6474
6474
|
} | {
|
|
6475
|
-
name: string;
|
|
6476
6475
|
type: "resource_link";
|
|
6476
|
+
name: string;
|
|
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,9 +6534,9 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
6534
6534
|
title: z.ZodString;
|
|
6535
6535
|
toolCallId: z.ZodString;
|
|
6536
6536
|
}, "strip", z.ZodTypeAny, {
|
|
6537
|
-
title: string;
|
|
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?: ({
|
|
@@ -6568,13 +6568,13 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
6568
6568
|
lastModified?: string | null | undefined;
|
|
6569
6569
|
} | null | undefined;
|
|
6570
6570
|
} | {
|
|
6571
|
-
name: string;
|
|
6572
6571
|
type: "resource_link";
|
|
6572
|
+
name: string;
|
|
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,9 +6609,9 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
6609
6609
|
}[] | undefined;
|
|
6610
6610
|
rawInput?: unknown;
|
|
6611
6611
|
}, {
|
|
6612
|
-
title: string;
|
|
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?: ({
|
|
@@ -6643,13 +6643,13 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
6643
6643
|
lastModified?: string | null | undefined;
|
|
6644
6644
|
} | null | undefined;
|
|
6645
6645
|
} | {
|
|
6646
|
-
name: string;
|
|
6647
6646
|
type: "resource_link";
|
|
6647
|
+
name: string;
|
|
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;
|
|
@@ -6809,26 +6809,26 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
6809
6809
|
type: z.ZodLiteral<"resource_link">;
|
|
6810
6810
|
uri: z.ZodString;
|
|
6811
6811
|
}, "strip", z.ZodTypeAny, {
|
|
6812
|
-
name: string;
|
|
6813
6812
|
type: "resource_link";
|
|
6813
|
+
name: string;
|
|
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;
|
|
6822
6822
|
lastModified?: string | null | undefined;
|
|
6823
6823
|
} | null | undefined;
|
|
6824
6824
|
}, {
|
|
6825
|
-
name: string;
|
|
6826
6825
|
type: "resource_link";
|
|
6826
|
+
name: string;
|
|
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;
|
|
@@ -6937,13 +6937,13 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
6937
6937
|
lastModified?: string | null | undefined;
|
|
6938
6938
|
} | null | undefined;
|
|
6939
6939
|
} | {
|
|
6940
|
-
name: string;
|
|
6941
6940
|
type: "resource_link";
|
|
6941
|
+
name: string;
|
|
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;
|
|
@@ -6995,13 +6995,13 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
6995
6995
|
lastModified?: string | null | undefined;
|
|
6996
6996
|
} | null | undefined;
|
|
6997
6997
|
} | {
|
|
6998
|
-
name: string;
|
|
6999
6998
|
type: "resource_link";
|
|
6999
|
+
name: string;
|
|
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,6 +7059,7 @@ 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: {
|
|
@@ -7088,13 +7089,13 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7088
7089
|
lastModified?: string | null | undefined;
|
|
7089
7090
|
} | null | undefined;
|
|
7090
7091
|
} | {
|
|
7091
|
-
name: string;
|
|
7092
7092
|
type: "resource_link";
|
|
7093
|
+
name: string;
|
|
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;
|
|
@@ -7124,8 +7125,7 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7124
7125
|
oldText: string | null;
|
|
7125
7126
|
})[] | null | undefined;
|
|
7126
7127
|
title?: string | null | undefined;
|
|
7127
|
-
|
|
7128
|
-
kind?: "search" | "delete" | "move" | "edit" | "other" | "read" | "execute" | "think" | "fetch" | 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,6 +7134,7 @@ 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: {
|
|
@@ -7163,13 +7164,13 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7163
7164
|
lastModified?: string | null | undefined;
|
|
7164
7165
|
} | null | undefined;
|
|
7165
7166
|
} | {
|
|
7166
|
-
name: string;
|
|
7167
7167
|
type: "resource_link";
|
|
7168
|
+
name: string;
|
|
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;
|
|
@@ -7199,8 +7200,7 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7199
7200
|
oldText: string | null;
|
|
7200
7201
|
})[] | null | undefined;
|
|
7201
7202
|
title?: string | null | undefined;
|
|
7202
|
-
|
|
7203
|
-
kind?: "search" | "delete" | "move" | "edit" | "other" | "read" | "execute" | "think" | "fetch" | 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";
|
|
@@ -7309,13 +7309,13 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7309
7309
|
lastModified?: string | null | undefined;
|
|
7310
7310
|
} | null | undefined;
|
|
7311
7311
|
} | {
|
|
7312
|
-
name: string;
|
|
7313
7312
|
type: "resource_link";
|
|
7313
|
+
name: string;
|
|
7314
7314
|
uri: string;
|
|
7315
7315
|
description?: string | null | undefined;
|
|
7316
7316
|
title?: string | null | undefined;
|
|
7317
|
-
size?: number | null | undefined;
|
|
7318
7317
|
mimeType?: string | null | undefined;
|
|
7318
|
+
size?: number | null | undefined;
|
|
7319
7319
|
annotations?: {
|
|
7320
7320
|
priority?: number | null | undefined;
|
|
7321
7321
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -7367,13 +7367,13 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7367
7367
|
lastModified?: string | null | undefined;
|
|
7368
7368
|
} | null | undefined;
|
|
7369
7369
|
} | {
|
|
7370
|
-
name: string;
|
|
7371
7370
|
type: "resource_link";
|
|
7371
|
+
name: string;
|
|
7372
7372
|
uri: string;
|
|
7373
7373
|
description?: string | null | undefined;
|
|
7374
7374
|
title?: string | null | undefined;
|
|
7375
|
-
size?: number | null | undefined;
|
|
7376
7375
|
mimeType?: string | null | undefined;
|
|
7376
|
+
size?: number | null | undefined;
|
|
7377
7377
|
annotations?: {
|
|
7378
7378
|
priority?: number | null | undefined;
|
|
7379
7379
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -7425,13 +7425,13 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7425
7425
|
lastModified?: string | null | undefined;
|
|
7426
7426
|
} | null | undefined;
|
|
7427
7427
|
} | {
|
|
7428
|
-
name: string;
|
|
7429
7428
|
type: "resource_link";
|
|
7429
|
+
name: string;
|
|
7430
7430
|
uri: string;
|
|
7431
7431
|
description?: string | null | undefined;
|
|
7432
7432
|
title?: string | null | undefined;
|
|
7433
|
-
size?: number | null | undefined;
|
|
7434
7433
|
mimeType?: string | null | undefined;
|
|
7434
|
+
size?: number | null | undefined;
|
|
7435
7435
|
annotations?: {
|
|
7436
7436
|
priority?: number | null | undefined;
|
|
7437
7437
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -7456,9 +7456,9 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7456
7456
|
};
|
|
7457
7457
|
sessionUpdate: "agent_thought_chunk";
|
|
7458
7458
|
} | {
|
|
7459
|
-
title: string;
|
|
7460
7459
|
status: "completed" | "failed" | "pending" | "in_progress";
|
|
7461
|
-
|
|
7460
|
+
title: string;
|
|
7461
|
+
kind: "search" | "edit" | "delete" | "move" | "other" | "read" | "execute" | "think" | "fetch";
|
|
7462
7462
|
toolCallId: string;
|
|
7463
7463
|
sessionUpdate: "tool_call";
|
|
7464
7464
|
content?: ({
|
|
@@ -7490,13 +7490,13 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7490
7490
|
lastModified?: string | null | undefined;
|
|
7491
7491
|
} | null | undefined;
|
|
7492
7492
|
} | {
|
|
7493
|
-
name: string;
|
|
7494
7493
|
type: "resource_link";
|
|
7494
|
+
name: string;
|
|
7495
7495
|
uri: string;
|
|
7496
7496
|
description?: string | null | undefined;
|
|
7497
7497
|
title?: string | null | undefined;
|
|
7498
|
-
size?: number | null | undefined;
|
|
7499
7498
|
mimeType?: string | null | undefined;
|
|
7499
|
+
size?: number | null | undefined;
|
|
7500
7500
|
annotations?: {
|
|
7501
7501
|
priority?: number | null | undefined;
|
|
7502
7502
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -7533,6 +7533,7 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7533
7533
|
} | {
|
|
7534
7534
|
toolCallId: string;
|
|
7535
7535
|
sessionUpdate: "tool_call_update";
|
|
7536
|
+
status?: "completed" | "failed" | "pending" | "in_progress" | null | undefined;
|
|
7536
7537
|
content?: ({
|
|
7537
7538
|
type: "content";
|
|
7538
7539
|
content: {
|
|
@@ -7562,13 +7563,13 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7562
7563
|
lastModified?: string | null | undefined;
|
|
7563
7564
|
} | null | undefined;
|
|
7564
7565
|
} | {
|
|
7565
|
-
name: string;
|
|
7566
7566
|
type: "resource_link";
|
|
7567
|
+
name: string;
|
|
7567
7568
|
uri: string;
|
|
7568
7569
|
description?: string | null | undefined;
|
|
7569
7570
|
title?: string | null | undefined;
|
|
7570
|
-
size?: number | null | undefined;
|
|
7571
7571
|
mimeType?: string | null | undefined;
|
|
7572
|
+
size?: number | null | undefined;
|
|
7572
7573
|
annotations?: {
|
|
7573
7574
|
priority?: number | null | undefined;
|
|
7574
7575
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -7598,8 +7599,7 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7598
7599
|
oldText: string | null;
|
|
7599
7600
|
})[] | null | undefined;
|
|
7600
7601
|
title?: string | null | undefined;
|
|
7601
|
-
|
|
7602
|
-
kind?: "search" | "delete" | "move" | "edit" | "other" | "read" | "execute" | "think" | "fetch" | null | undefined;
|
|
7602
|
+
kind?: "search" | "edit" | "delete" | "move" | "other" | "read" | "execute" | "think" | "fetch" | null | undefined;
|
|
7603
7603
|
locations?: {
|
|
7604
7604
|
path: string;
|
|
7605
7605
|
line?: number | null | undefined;
|
|
@@ -7607,8 +7607,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7607
7607
|
rawInput?: unknown;
|
|
7608
7608
|
} | {
|
|
7609
7609
|
entries: {
|
|
7610
|
-
content: string;
|
|
7611
7610
|
status: "completed" | "pending" | "in_progress";
|
|
7611
|
+
content: string;
|
|
7612
7612
|
priority: "medium" | "high" | "low";
|
|
7613
7613
|
}[];
|
|
7614
7614
|
sessionUpdate: "plan";
|
|
@@ -7652,13 +7652,13 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7652
7652
|
lastModified?: string | null | undefined;
|
|
7653
7653
|
} | null | undefined;
|
|
7654
7654
|
} | {
|
|
7655
|
-
name: string;
|
|
7656
7655
|
type: "resource_link";
|
|
7656
|
+
name: string;
|
|
7657
7657
|
uri: string;
|
|
7658
7658
|
description?: string | null | undefined;
|
|
7659
7659
|
title?: string | null | undefined;
|
|
7660
|
-
size?: number | null | undefined;
|
|
7661
7660
|
mimeType?: string | null | undefined;
|
|
7661
|
+
size?: number | null | undefined;
|
|
7662
7662
|
annotations?: {
|
|
7663
7663
|
priority?: number | null | undefined;
|
|
7664
7664
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -7710,13 +7710,13 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7710
7710
|
lastModified?: string | null | undefined;
|
|
7711
7711
|
} | null | undefined;
|
|
7712
7712
|
} | {
|
|
7713
|
-
name: string;
|
|
7714
7713
|
type: "resource_link";
|
|
7714
|
+
name: string;
|
|
7715
7715
|
uri: string;
|
|
7716
7716
|
description?: string | null | undefined;
|
|
7717
7717
|
title?: string | null | undefined;
|
|
7718
|
-
size?: number | null | undefined;
|
|
7719
7718
|
mimeType?: string | null | undefined;
|
|
7719
|
+
size?: number | null | undefined;
|
|
7720
7720
|
annotations?: {
|
|
7721
7721
|
priority?: number | null | undefined;
|
|
7722
7722
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -7768,13 +7768,13 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7768
7768
|
lastModified?: string | null | undefined;
|
|
7769
7769
|
} | null | undefined;
|
|
7770
7770
|
} | {
|
|
7771
|
-
name: string;
|
|
7772
7771
|
type: "resource_link";
|
|
7772
|
+
name: string;
|
|
7773
7773
|
uri: string;
|
|
7774
7774
|
description?: string | null | undefined;
|
|
7775
7775
|
title?: string | null | undefined;
|
|
7776
|
-
size?: number | null | undefined;
|
|
7777
7776
|
mimeType?: string | null | undefined;
|
|
7777
|
+
size?: number | null | undefined;
|
|
7778
7778
|
annotations?: {
|
|
7779
7779
|
priority?: number | null | undefined;
|
|
7780
7780
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -7799,9 +7799,9 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7799
7799
|
};
|
|
7800
7800
|
sessionUpdate: "agent_thought_chunk";
|
|
7801
7801
|
} | {
|
|
7802
|
-
title: string;
|
|
7803
7802
|
status: "completed" | "failed" | "pending" | "in_progress";
|
|
7804
|
-
|
|
7803
|
+
title: string;
|
|
7804
|
+
kind: "search" | "edit" | "delete" | "move" | "other" | "read" | "execute" | "think" | "fetch";
|
|
7805
7805
|
toolCallId: string;
|
|
7806
7806
|
sessionUpdate: "tool_call";
|
|
7807
7807
|
content?: ({
|
|
@@ -7833,13 +7833,13 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7833
7833
|
lastModified?: string | null | undefined;
|
|
7834
7834
|
} | null | undefined;
|
|
7835
7835
|
} | {
|
|
7836
|
-
name: string;
|
|
7837
7836
|
type: "resource_link";
|
|
7837
|
+
name: string;
|
|
7838
7838
|
uri: string;
|
|
7839
7839
|
description?: string | null | undefined;
|
|
7840
7840
|
title?: string | null | undefined;
|
|
7841
|
-
size?: number | null | undefined;
|
|
7842
7841
|
mimeType?: string | null | undefined;
|
|
7842
|
+
size?: number | null | undefined;
|
|
7843
7843
|
annotations?: {
|
|
7844
7844
|
priority?: number | null | undefined;
|
|
7845
7845
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -7876,6 +7876,7 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7876
7876
|
} | {
|
|
7877
7877
|
toolCallId: string;
|
|
7878
7878
|
sessionUpdate: "tool_call_update";
|
|
7879
|
+
status?: "completed" | "failed" | "pending" | "in_progress" | null | undefined;
|
|
7879
7880
|
content?: ({
|
|
7880
7881
|
type: "content";
|
|
7881
7882
|
content: {
|
|
@@ -7905,13 +7906,13 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7905
7906
|
lastModified?: string | null | undefined;
|
|
7906
7907
|
} | null | undefined;
|
|
7907
7908
|
} | {
|
|
7908
|
-
name: string;
|
|
7909
7909
|
type: "resource_link";
|
|
7910
|
+
name: string;
|
|
7910
7911
|
uri: string;
|
|
7911
7912
|
description?: string | null | undefined;
|
|
7912
7913
|
title?: string | null | undefined;
|
|
7913
|
-
size?: number | null | undefined;
|
|
7914
7914
|
mimeType?: string | null | undefined;
|
|
7915
|
+
size?: number | null | undefined;
|
|
7915
7916
|
annotations?: {
|
|
7916
7917
|
priority?: number | null | undefined;
|
|
7917
7918
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -7941,8 +7942,7 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7941
7942
|
oldText: string | null;
|
|
7942
7943
|
})[] | null | undefined;
|
|
7943
7944
|
title?: string | null | undefined;
|
|
7944
|
-
|
|
7945
|
-
kind?: "search" | "delete" | "move" | "edit" | "other" | "read" | "execute" | "think" | "fetch" | null | undefined;
|
|
7945
|
+
kind?: "search" | "edit" | "delete" | "move" | "other" | "read" | "execute" | "think" | "fetch" | null | undefined;
|
|
7946
7946
|
locations?: {
|
|
7947
7947
|
path: string;
|
|
7948
7948
|
line?: number | null | undefined;
|
|
@@ -7950,8 +7950,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7950
7950
|
rawInput?: unknown;
|
|
7951
7951
|
} | {
|
|
7952
7952
|
entries: {
|
|
7953
|
-
content: string;
|
|
7954
7953
|
status: "completed" | "pending" | "in_progress";
|
|
7954
|
+
content: string;
|
|
7955
7955
|
priority: "medium" | "high" | "low";
|
|
7956
7956
|
}[];
|
|
7957
7957
|
sessionUpdate: "plan";
|
|
@@ -8134,26 +8134,26 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8134
8134
|
type: z.ZodLiteral<"resource_link">;
|
|
8135
8135
|
uri: z.ZodString;
|
|
8136
8136
|
}, "strip", z.ZodTypeAny, {
|
|
8137
|
-
name: string;
|
|
8138
8137
|
type: "resource_link";
|
|
8138
|
+
name: string;
|
|
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;
|
|
8147
8147
|
lastModified?: string | null | undefined;
|
|
8148
8148
|
} | null | undefined;
|
|
8149
8149
|
}, {
|
|
8150
|
-
name: string;
|
|
8151
8150
|
type: "resource_link";
|
|
8151
|
+
name: string;
|
|
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;
|
|
@@ -8262,13 +8262,13 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8262
8262
|
lastModified?: string | null | undefined;
|
|
8263
8263
|
} | null | undefined;
|
|
8264
8264
|
} | {
|
|
8265
|
-
name: string;
|
|
8266
8265
|
type: "resource_link";
|
|
8266
|
+
name: string;
|
|
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;
|
|
@@ -8320,13 +8320,13 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8320
8320
|
lastModified?: string | null | undefined;
|
|
8321
8321
|
} | null | undefined;
|
|
8322
8322
|
} | {
|
|
8323
|
-
name: string;
|
|
8324
8323
|
type: "resource_link";
|
|
8324
|
+
name: string;
|
|
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,9 +8381,9 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8381
8381
|
title: z.ZodString;
|
|
8382
8382
|
toolCallId: z.ZodString;
|
|
8383
8383
|
}, "strip", z.ZodTypeAny, {
|
|
8384
|
-
title: string;
|
|
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";
|
|
@@ -8414,13 +8414,13 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8414
8414
|
lastModified?: string | null | undefined;
|
|
8415
8415
|
} | null | undefined;
|
|
8416
8416
|
} | {
|
|
8417
|
-
name: string;
|
|
8418
8417
|
type: "resource_link";
|
|
8418
|
+
name: string;
|
|
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,9 +8455,9 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8455
8455
|
}[] | undefined;
|
|
8456
8456
|
rawInput?: unknown;
|
|
8457
8457
|
}, {
|
|
8458
|
-
title: string;
|
|
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";
|
|
@@ -8488,13 +8488,13 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8488
8488
|
lastModified?: string | null | undefined;
|
|
8489
8489
|
} | null | undefined;
|
|
8490
8490
|
} | {
|
|
8491
|
-
name: string;
|
|
8492
8491
|
type: "resource_link";
|
|
8492
|
+
name: string;
|
|
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,9 +8537,9 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8537
8537
|
}[];
|
|
8538
8538
|
sessionId: string;
|
|
8539
8539
|
toolCall: {
|
|
8540
|
-
title: string;
|
|
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";
|
|
@@ -8570,13 +8570,13 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8570
8570
|
lastModified?: string | null | undefined;
|
|
8571
8571
|
} | null | undefined;
|
|
8572
8572
|
} | {
|
|
8573
|
-
name: string;
|
|
8574
8573
|
type: "resource_link";
|
|
8574
|
+
name: string;
|
|
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,9 +8619,9 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8619
8619
|
}[];
|
|
8620
8620
|
sessionId: string;
|
|
8621
8621
|
toolCall: {
|
|
8622
|
-
title: string;
|
|
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";
|
|
@@ -8652,13 +8652,13 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8652
8652
|
lastModified?: string | null | undefined;
|
|
8653
8653
|
} | null | undefined;
|
|
8654
8654
|
} | {
|
|
8655
|
-
name: string;
|
|
8656
8655
|
type: "resource_link";
|
|
8656
|
+
name: string;
|
|
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;
|
|
@@ -8978,26 +8978,26 @@ export declare const agentRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8978
8978
|
type: z.ZodLiteral<"resource_link">;
|
|
8979
8979
|
uri: z.ZodString;
|
|
8980
8980
|
}, "strip", z.ZodTypeAny, {
|
|
8981
|
-
name: string;
|
|
8982
8981
|
type: "resource_link";
|
|
8982
|
+
name: string;
|
|
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;
|
|
8991
8991
|
lastModified?: string | null | undefined;
|
|
8992
8992
|
} | null | undefined;
|
|
8993
8993
|
}, {
|
|
8994
|
-
name: string;
|
|
8995
8994
|
type: "resource_link";
|
|
8995
|
+
name: string;
|
|
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;
|
|
@@ -9105,13 +9105,13 @@ export declare const agentRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
9105
9105
|
lastModified?: string | null | undefined;
|
|
9106
9106
|
} | null | undefined;
|
|
9107
9107
|
} | {
|
|
9108
|
-
name: string;
|
|
9109
9108
|
type: "resource_link";
|
|
9109
|
+
name: string;
|
|
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;
|
|
@@ -9163,13 +9163,13 @@ export declare const agentRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
9163
9163
|
lastModified?: string | null | undefined;
|
|
9164
9164
|
} | null | undefined;
|
|
9165
9165
|
} | {
|
|
9166
|
-
name: string;
|
|
9167
9166
|
type: "resource_link";
|
|
9167
|
+
name: string;
|
|
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;
|
|
@@ -9321,26 +9321,26 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
9321
9321
|
type: z.ZodLiteral<"resource_link">;
|
|
9322
9322
|
uri: z.ZodString;
|
|
9323
9323
|
}, "strip", z.ZodTypeAny, {
|
|
9324
|
-
name: string;
|
|
9325
9324
|
type: "resource_link";
|
|
9325
|
+
name: string;
|
|
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;
|
|
9334
9334
|
lastModified?: string | null | undefined;
|
|
9335
9335
|
} | null | undefined;
|
|
9336
9336
|
}, {
|
|
9337
|
-
name: string;
|
|
9338
9337
|
type: "resource_link";
|
|
9338
|
+
name: string;
|
|
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;
|
|
@@ -9448,13 +9448,13 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
9448
9448
|
lastModified?: string | null | undefined;
|
|
9449
9449
|
} | null | undefined;
|
|
9450
9450
|
} | {
|
|
9451
|
-
name: string;
|
|
9452
9451
|
type: "resource_link";
|
|
9452
|
+
name: string;
|
|
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;
|
|
@@ -9506,13 +9506,13 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
9506
9506
|
lastModified?: string | null | undefined;
|
|
9507
9507
|
} | null | undefined;
|
|
9508
9508
|
} | {
|
|
9509
|
-
name: string;
|
|
9510
9509
|
type: "resource_link";
|
|
9510
|
+
name: string;
|
|
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;
|
|
@@ -9661,26 +9661,26 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
9661
9661
|
type: z.ZodLiteral<"resource_link">;
|
|
9662
9662
|
uri: z.ZodString;
|
|
9663
9663
|
}, "strip", z.ZodTypeAny, {
|
|
9664
|
-
name: string;
|
|
9665
9664
|
type: "resource_link";
|
|
9665
|
+
name: string;
|
|
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;
|
|
9674
9674
|
lastModified?: string | null | undefined;
|
|
9675
9675
|
} | null | undefined;
|
|
9676
9676
|
}, {
|
|
9677
|
-
name: string;
|
|
9678
9677
|
type: "resource_link";
|
|
9678
|
+
name: string;
|
|
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;
|
|
@@ -9788,13 +9788,13 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
9788
9788
|
lastModified?: string | null | undefined;
|
|
9789
9789
|
} | null | undefined;
|
|
9790
9790
|
} | {
|
|
9791
|
-
name: string;
|
|
9792
9791
|
type: "resource_link";
|
|
9792
|
+
name: string;
|
|
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;
|
|
@@ -9846,13 +9846,13 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
9846
9846
|
lastModified?: string | null | undefined;
|
|
9847
9847
|
} | null | undefined;
|
|
9848
9848
|
} | {
|
|
9849
|
-
name: string;
|
|
9850
9849
|
type: "resource_link";
|
|
9850
|
+
name: string;
|
|
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;
|
|
@@ -10001,26 +10001,26 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
10001
10001
|
type: z.ZodLiteral<"resource_link">;
|
|
10002
10002
|
uri: z.ZodString;
|
|
10003
10003
|
}, "strip", z.ZodTypeAny, {
|
|
10004
|
-
name: string;
|
|
10005
10004
|
type: "resource_link";
|
|
10005
|
+
name: string;
|
|
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;
|
|
10014
10014
|
lastModified?: string | null | undefined;
|
|
10015
10015
|
} | null | undefined;
|
|
10016
10016
|
}, {
|
|
10017
|
-
name: string;
|
|
10018
10017
|
type: "resource_link";
|
|
10018
|
+
name: string;
|
|
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;
|
|
@@ -10128,13 +10128,13 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
10128
10128
|
lastModified?: string | null | undefined;
|
|
10129
10129
|
} | null | undefined;
|
|
10130
10130
|
} | {
|
|
10131
|
-
name: string;
|
|
10132
10131
|
type: "resource_link";
|
|
10132
|
+
name: string;
|
|
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;
|
|
@@ -10186,13 +10186,13 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
10186
10186
|
lastModified?: string | null | undefined;
|
|
10187
10187
|
} | null | undefined;
|
|
10188
10188
|
} | {
|
|
10189
|
-
name: string;
|
|
10190
10189
|
type: "resource_link";
|
|
10190
|
+
name: string;
|
|
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;
|
|
@@ -10342,26 +10342,26 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
10342
10342
|
type: z.ZodLiteral<"resource_link">;
|
|
10343
10343
|
uri: z.ZodString;
|
|
10344
10344
|
}, "strip", z.ZodTypeAny, {
|
|
10345
|
-
name: string;
|
|
10346
10345
|
type: "resource_link";
|
|
10346
|
+
name: string;
|
|
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;
|
|
10355
10355
|
lastModified?: string | null | undefined;
|
|
10356
10356
|
} | null | undefined;
|
|
10357
10357
|
}, {
|
|
10358
|
-
name: string;
|
|
10359
10358
|
type: "resource_link";
|
|
10359
|
+
name: string;
|
|
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;
|
|
@@ -10470,13 +10470,13 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
10470
10470
|
lastModified?: string | null | undefined;
|
|
10471
10471
|
} | null | undefined;
|
|
10472
10472
|
} | {
|
|
10473
|
-
name: string;
|
|
10474
10473
|
type: "resource_link";
|
|
10474
|
+
name: string;
|
|
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;
|
|
@@ -10528,13 +10528,13 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
10528
10528
|
lastModified?: string | null | undefined;
|
|
10529
10529
|
} | null | undefined;
|
|
10530
10530
|
} | {
|
|
10531
|
-
name: string;
|
|
10532
10531
|
type: "resource_link";
|
|
10532
|
+
name: string;
|
|
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,9 +10590,9 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
10590
10590
|
title: z.ZodString;
|
|
10591
10591
|
toolCallId: z.ZodString;
|
|
10592
10592
|
}, "strip", z.ZodTypeAny, {
|
|
10593
|
-
title: string;
|
|
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?: ({
|
|
@@ -10624,13 +10624,13 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
10624
10624
|
lastModified?: string | null | undefined;
|
|
10625
10625
|
} | null | undefined;
|
|
10626
10626
|
} | {
|
|
10627
|
-
name: string;
|
|
10628
10627
|
type: "resource_link";
|
|
10628
|
+
name: string;
|
|
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,9 +10665,9 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
10665
10665
|
}[] | undefined;
|
|
10666
10666
|
rawInput?: unknown;
|
|
10667
10667
|
}, {
|
|
10668
|
-
title: string;
|
|
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?: ({
|
|
@@ -10699,13 +10699,13 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
10699
10699
|
lastModified?: string | null | undefined;
|
|
10700
10700
|
} | null | undefined;
|
|
10701
10701
|
} | {
|
|
10702
|
-
name: string;
|
|
10703
10702
|
type: "resource_link";
|
|
10703
|
+
name: string;
|
|
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;
|
|
@@ -10865,26 +10865,26 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
10865
10865
|
type: z.ZodLiteral<"resource_link">;
|
|
10866
10866
|
uri: z.ZodString;
|
|
10867
10867
|
}, "strip", z.ZodTypeAny, {
|
|
10868
|
-
name: string;
|
|
10869
10868
|
type: "resource_link";
|
|
10869
|
+
name: string;
|
|
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;
|
|
10878
10878
|
lastModified?: string | null | undefined;
|
|
10879
10879
|
} | null | undefined;
|
|
10880
10880
|
}, {
|
|
10881
|
-
name: string;
|
|
10882
10881
|
type: "resource_link";
|
|
10882
|
+
name: string;
|
|
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;
|
|
@@ -10993,13 +10993,13 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
10993
10993
|
lastModified?: string | null | undefined;
|
|
10994
10994
|
} | null | undefined;
|
|
10995
10995
|
} | {
|
|
10996
|
-
name: string;
|
|
10997
10996
|
type: "resource_link";
|
|
10997
|
+
name: string;
|
|
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;
|
|
@@ -11051,13 +11051,13 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11051
11051
|
lastModified?: string | null | undefined;
|
|
11052
11052
|
} | null | undefined;
|
|
11053
11053
|
} | {
|
|
11054
|
-
name: string;
|
|
11055
11054
|
type: "resource_link";
|
|
11055
|
+
name: string;
|
|
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,6 +11115,7 @@ 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: {
|
|
@@ -11144,13 +11145,13 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11144
11145
|
lastModified?: string | null | undefined;
|
|
11145
11146
|
} | null | undefined;
|
|
11146
11147
|
} | {
|
|
11147
|
-
name: string;
|
|
11148
11148
|
type: "resource_link";
|
|
11149
|
+
name: string;
|
|
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;
|
|
@@ -11180,8 +11181,7 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11180
11181
|
oldText: string | null;
|
|
11181
11182
|
})[] | null | undefined;
|
|
11182
11183
|
title?: string | null | undefined;
|
|
11183
|
-
|
|
11184
|
-
kind?: "search" | "delete" | "move" | "edit" | "other" | "read" | "execute" | "think" | "fetch" | 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,6 +11190,7 @@ 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: {
|
|
@@ -11219,13 +11220,13 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11219
11220
|
lastModified?: string | null | undefined;
|
|
11220
11221
|
} | null | undefined;
|
|
11221
11222
|
} | {
|
|
11222
|
-
name: string;
|
|
11223
11223
|
type: "resource_link";
|
|
11224
|
+
name: string;
|
|
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;
|
|
@@ -11255,8 +11256,7 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11255
11256
|
oldText: string | null;
|
|
11256
11257
|
})[] | null | undefined;
|
|
11257
11258
|
title?: string | null | undefined;
|
|
11258
|
-
|
|
11259
|
-
kind?: "search" | "delete" | "move" | "edit" | "other" | "read" | "execute" | "think" | "fetch" | 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";
|
|
@@ -11365,13 +11365,13 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11365
11365
|
lastModified?: string | null | undefined;
|
|
11366
11366
|
} | null | undefined;
|
|
11367
11367
|
} | {
|
|
11368
|
-
name: string;
|
|
11369
11368
|
type: "resource_link";
|
|
11369
|
+
name: string;
|
|
11370
11370
|
uri: string;
|
|
11371
11371
|
description?: string | null | undefined;
|
|
11372
11372
|
title?: string | null | undefined;
|
|
11373
|
-
size?: number | null | undefined;
|
|
11374
11373
|
mimeType?: string | null | undefined;
|
|
11374
|
+
size?: number | null | undefined;
|
|
11375
11375
|
annotations?: {
|
|
11376
11376
|
priority?: number | null | undefined;
|
|
11377
11377
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -11423,13 +11423,13 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11423
11423
|
lastModified?: string | null | undefined;
|
|
11424
11424
|
} | null | undefined;
|
|
11425
11425
|
} | {
|
|
11426
|
-
name: string;
|
|
11427
11426
|
type: "resource_link";
|
|
11427
|
+
name: string;
|
|
11428
11428
|
uri: string;
|
|
11429
11429
|
description?: string | null | undefined;
|
|
11430
11430
|
title?: string | null | undefined;
|
|
11431
|
-
size?: number | null | undefined;
|
|
11432
11431
|
mimeType?: string | null | undefined;
|
|
11432
|
+
size?: number | null | undefined;
|
|
11433
11433
|
annotations?: {
|
|
11434
11434
|
priority?: number | null | undefined;
|
|
11435
11435
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -11481,13 +11481,13 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11481
11481
|
lastModified?: string | null | undefined;
|
|
11482
11482
|
} | null | undefined;
|
|
11483
11483
|
} | {
|
|
11484
|
-
name: string;
|
|
11485
11484
|
type: "resource_link";
|
|
11485
|
+
name: string;
|
|
11486
11486
|
uri: string;
|
|
11487
11487
|
description?: string | null | undefined;
|
|
11488
11488
|
title?: string | null | undefined;
|
|
11489
|
-
size?: number | null | undefined;
|
|
11490
11489
|
mimeType?: string | null | undefined;
|
|
11490
|
+
size?: number | null | undefined;
|
|
11491
11491
|
annotations?: {
|
|
11492
11492
|
priority?: number | null | undefined;
|
|
11493
11493
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -11512,9 +11512,9 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11512
11512
|
};
|
|
11513
11513
|
sessionUpdate: "agent_thought_chunk";
|
|
11514
11514
|
} | {
|
|
11515
|
-
title: string;
|
|
11516
11515
|
status: "completed" | "failed" | "pending" | "in_progress";
|
|
11517
|
-
|
|
11516
|
+
title: string;
|
|
11517
|
+
kind: "search" | "edit" | "delete" | "move" | "other" | "read" | "execute" | "think" | "fetch";
|
|
11518
11518
|
toolCallId: string;
|
|
11519
11519
|
sessionUpdate: "tool_call";
|
|
11520
11520
|
content?: ({
|
|
@@ -11546,13 +11546,13 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11546
11546
|
lastModified?: string | null | undefined;
|
|
11547
11547
|
} | null | undefined;
|
|
11548
11548
|
} | {
|
|
11549
|
-
name: string;
|
|
11550
11549
|
type: "resource_link";
|
|
11550
|
+
name: string;
|
|
11551
11551
|
uri: string;
|
|
11552
11552
|
description?: string | null | undefined;
|
|
11553
11553
|
title?: string | null | undefined;
|
|
11554
|
-
size?: number | null | undefined;
|
|
11555
11554
|
mimeType?: string | null | undefined;
|
|
11555
|
+
size?: number | null | undefined;
|
|
11556
11556
|
annotations?: {
|
|
11557
11557
|
priority?: number | null | undefined;
|
|
11558
11558
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -11589,6 +11589,7 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11589
11589
|
} | {
|
|
11590
11590
|
toolCallId: string;
|
|
11591
11591
|
sessionUpdate: "tool_call_update";
|
|
11592
|
+
status?: "completed" | "failed" | "pending" | "in_progress" | null | undefined;
|
|
11592
11593
|
content?: ({
|
|
11593
11594
|
type: "content";
|
|
11594
11595
|
content: {
|
|
@@ -11618,13 +11619,13 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11618
11619
|
lastModified?: string | null | undefined;
|
|
11619
11620
|
} | null | undefined;
|
|
11620
11621
|
} | {
|
|
11621
|
-
name: string;
|
|
11622
11622
|
type: "resource_link";
|
|
11623
|
+
name: string;
|
|
11623
11624
|
uri: string;
|
|
11624
11625
|
description?: string | null | undefined;
|
|
11625
11626
|
title?: string | null | undefined;
|
|
11626
|
-
size?: number | null | undefined;
|
|
11627
11627
|
mimeType?: string | null | undefined;
|
|
11628
|
+
size?: number | null | undefined;
|
|
11628
11629
|
annotations?: {
|
|
11629
11630
|
priority?: number | null | undefined;
|
|
11630
11631
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -11654,8 +11655,7 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11654
11655
|
oldText: string | null;
|
|
11655
11656
|
})[] | null | undefined;
|
|
11656
11657
|
title?: string | null | undefined;
|
|
11657
|
-
|
|
11658
|
-
kind?: "search" | "delete" | "move" | "edit" | "other" | "read" | "execute" | "think" | "fetch" | null | undefined;
|
|
11658
|
+
kind?: "search" | "edit" | "delete" | "move" | "other" | "read" | "execute" | "think" | "fetch" | null | undefined;
|
|
11659
11659
|
locations?: {
|
|
11660
11660
|
path: string;
|
|
11661
11661
|
line?: number | null | undefined;
|
|
@@ -11663,8 +11663,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11663
11663
|
rawInput?: unknown;
|
|
11664
11664
|
} | {
|
|
11665
11665
|
entries: {
|
|
11666
|
-
content: string;
|
|
11667
11666
|
status: "completed" | "pending" | "in_progress";
|
|
11667
|
+
content: string;
|
|
11668
11668
|
priority: "medium" | "high" | "low";
|
|
11669
11669
|
}[];
|
|
11670
11670
|
sessionUpdate: "plan";
|
|
@@ -11708,13 +11708,13 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11708
11708
|
lastModified?: string | null | undefined;
|
|
11709
11709
|
} | null | undefined;
|
|
11710
11710
|
} | {
|
|
11711
|
-
name: string;
|
|
11712
11711
|
type: "resource_link";
|
|
11712
|
+
name: string;
|
|
11713
11713
|
uri: string;
|
|
11714
11714
|
description?: string | null | undefined;
|
|
11715
11715
|
title?: string | null | undefined;
|
|
11716
|
-
size?: number | null | undefined;
|
|
11717
11716
|
mimeType?: string | null | undefined;
|
|
11717
|
+
size?: number | null | undefined;
|
|
11718
11718
|
annotations?: {
|
|
11719
11719
|
priority?: number | null | undefined;
|
|
11720
11720
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -11766,13 +11766,13 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11766
11766
|
lastModified?: string | null | undefined;
|
|
11767
11767
|
} | null | undefined;
|
|
11768
11768
|
} | {
|
|
11769
|
-
name: string;
|
|
11770
11769
|
type: "resource_link";
|
|
11770
|
+
name: string;
|
|
11771
11771
|
uri: string;
|
|
11772
11772
|
description?: string | null | undefined;
|
|
11773
11773
|
title?: string | null | undefined;
|
|
11774
|
-
size?: number | null | undefined;
|
|
11775
11774
|
mimeType?: string | null | undefined;
|
|
11775
|
+
size?: number | null | undefined;
|
|
11776
11776
|
annotations?: {
|
|
11777
11777
|
priority?: number | null | undefined;
|
|
11778
11778
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -11824,13 +11824,13 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11824
11824
|
lastModified?: string | null | undefined;
|
|
11825
11825
|
} | null | undefined;
|
|
11826
11826
|
} | {
|
|
11827
|
-
name: string;
|
|
11828
11827
|
type: "resource_link";
|
|
11828
|
+
name: string;
|
|
11829
11829
|
uri: string;
|
|
11830
11830
|
description?: string | null | undefined;
|
|
11831
11831
|
title?: string | null | undefined;
|
|
11832
|
-
size?: number | null | undefined;
|
|
11833
11832
|
mimeType?: string | null | undefined;
|
|
11833
|
+
size?: number | null | undefined;
|
|
11834
11834
|
annotations?: {
|
|
11835
11835
|
priority?: number | null | undefined;
|
|
11836
11836
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -11855,9 +11855,9 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11855
11855
|
};
|
|
11856
11856
|
sessionUpdate: "agent_thought_chunk";
|
|
11857
11857
|
} | {
|
|
11858
|
-
title: string;
|
|
11859
11858
|
status: "completed" | "failed" | "pending" | "in_progress";
|
|
11860
|
-
|
|
11859
|
+
title: string;
|
|
11860
|
+
kind: "search" | "edit" | "delete" | "move" | "other" | "read" | "execute" | "think" | "fetch";
|
|
11861
11861
|
toolCallId: string;
|
|
11862
11862
|
sessionUpdate: "tool_call";
|
|
11863
11863
|
content?: ({
|
|
@@ -11889,13 +11889,13 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11889
11889
|
lastModified?: string | null | undefined;
|
|
11890
11890
|
} | null | undefined;
|
|
11891
11891
|
} | {
|
|
11892
|
-
name: string;
|
|
11893
11892
|
type: "resource_link";
|
|
11893
|
+
name: string;
|
|
11894
11894
|
uri: string;
|
|
11895
11895
|
description?: string | null | undefined;
|
|
11896
11896
|
title?: string | null | undefined;
|
|
11897
|
-
size?: number | null | undefined;
|
|
11898
11897
|
mimeType?: string | null | undefined;
|
|
11898
|
+
size?: number | null | undefined;
|
|
11899
11899
|
annotations?: {
|
|
11900
11900
|
priority?: number | null | undefined;
|
|
11901
11901
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -11932,6 +11932,7 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11932
11932
|
} | {
|
|
11933
11933
|
toolCallId: string;
|
|
11934
11934
|
sessionUpdate: "tool_call_update";
|
|
11935
|
+
status?: "completed" | "failed" | "pending" | "in_progress" | null | undefined;
|
|
11935
11936
|
content?: ({
|
|
11936
11937
|
type: "content";
|
|
11937
11938
|
content: {
|
|
@@ -11961,13 +11962,13 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11961
11962
|
lastModified?: string | null | undefined;
|
|
11962
11963
|
} | null | undefined;
|
|
11963
11964
|
} | {
|
|
11964
|
-
name: string;
|
|
11965
11965
|
type: "resource_link";
|
|
11966
|
+
name: string;
|
|
11966
11967
|
uri: string;
|
|
11967
11968
|
description?: string | null | undefined;
|
|
11968
11969
|
title?: string | null | undefined;
|
|
11969
|
-
size?: number | null | undefined;
|
|
11970
11970
|
mimeType?: string | null | undefined;
|
|
11971
|
+
size?: number | null | undefined;
|
|
11971
11972
|
annotations?: {
|
|
11972
11973
|
priority?: number | null | undefined;
|
|
11973
11974
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -11997,8 +11998,7 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11997
11998
|
oldText: string | null;
|
|
11998
11999
|
})[] | null | undefined;
|
|
11999
12000
|
title?: string | null | undefined;
|
|
12000
|
-
|
|
12001
|
-
kind?: "search" | "delete" | "move" | "edit" | "other" | "read" | "execute" | "think" | "fetch" | null | undefined;
|
|
12001
|
+
kind?: "search" | "edit" | "delete" | "move" | "other" | "read" | "execute" | "think" | "fetch" | null | undefined;
|
|
12002
12002
|
locations?: {
|
|
12003
12003
|
path: string;
|
|
12004
12004
|
line?: number | null | undefined;
|
|
@@ -12006,8 +12006,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
12006
12006
|
rawInput?: unknown;
|
|
12007
12007
|
} | {
|
|
12008
12008
|
entries: {
|
|
12009
|
-
content: string;
|
|
12010
12009
|
status: "completed" | "pending" | "in_progress";
|
|
12010
|
+
content: string;
|
|
12011
12011
|
priority: "medium" | "high" | "low";
|
|
12012
12012
|
}[];
|
|
12013
12013
|
sessionUpdate: "plan";
|