@hibanacloud/cli 0.3.17 → 0.3.19
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/config/extension.js +1 -1
- package/dist/src/config/extension.js.map +1 -1
- package/dist/src/generated/git-commit.d.ts +2 -2
- package/dist/src/generated/git-commit.js +2 -2
- package/dist/src/test-utils/createExtension.js +1 -1
- package/dist/src/test-utils/createExtension.js.map +1 -1
- package/dist/src/ui/AppContainer.js +1 -1
- package/dist/src/ui/AppContainer.js.map +1 -1
- package/dist/src/ui/commands/initCommand.js +1 -1
- package/dist/src/ui/commands/initCommand.js.map +1 -1
- package/dist/src/ui/commands/memoryCommand.js +2 -2
- package/dist/src/ui/commands/memoryCommand.js.map +1 -1
- package/dist/src/ui/commands/modelCommand.js +6 -2
- package/dist/src/ui/commands/modelCommand.js.map +1 -1
- package/dist/src/ui/components/OpenAIKeyPrompt.js +1 -1
- package/dist/src/ui/components/OpenAIKeyPrompt.js.map +1 -1
- package/dist/src/ui/components/OpenAIKeyPrompt.test.js +1 -1
- package/dist/src/ui/components/OpenAIKeyPrompt.test.js.map +1 -1
- package/dist/src/ui/components/Tips.js +1 -1
- package/dist/src/ui/components/Tips.js.map +1 -1
- package/dist/src/ui/hooks/useShowMemoryCommand.js +2 -2
- package/dist/src/ui/hooks/useShowMemoryCommand.js.map +1 -1
- package/dist/src/zed-integration/schema.d.ts +228 -228
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +4 -4
|
@@ -75,12 +75,12 @@ export declare const writeTextFileRequestSchema: z.ZodObject<{
|
|
|
75
75
|
path: z.ZodString;
|
|
76
76
|
sessionId: z.ZodString;
|
|
77
77
|
}, "strip", z.ZodTypeAny, {
|
|
78
|
-
content: string;
|
|
79
78
|
path: string;
|
|
79
|
+
content: string;
|
|
80
80
|
sessionId: string;
|
|
81
81
|
}, {
|
|
82
|
-
content: string;
|
|
83
82
|
path: string;
|
|
83
|
+
content: string;
|
|
84
84
|
sessionId: string;
|
|
85
85
|
}>;
|
|
86
86
|
export declare const readTextFileRequestSchema: z.ZodObject<{
|
|
@@ -364,13 +364,13 @@ export declare const authMethodSchema: z.ZodObject<{
|
|
|
364
364
|
id: z.ZodString;
|
|
365
365
|
name: z.ZodString;
|
|
366
366
|
}, "strip", z.ZodTypeAny, {
|
|
367
|
+
name: string;
|
|
367
368
|
description: string | null;
|
|
368
369
|
id: string;
|
|
369
|
-
name: string;
|
|
370
370
|
}, {
|
|
371
|
+
name: string;
|
|
371
372
|
description: string | null;
|
|
372
373
|
id: string;
|
|
373
|
-
name: string;
|
|
374
374
|
}>;
|
|
375
375
|
export declare const clientResponseSchema: z.ZodUnion<[z.ZodNull, z.ZodObject<{
|
|
376
376
|
content: z.ZodString;
|
|
@@ -593,13 +593,13 @@ export declare const initializeResponseSchema: z.ZodObject<{
|
|
|
593
593
|
id: z.ZodString;
|
|
594
594
|
name: z.ZodString;
|
|
595
595
|
}, "strip", z.ZodTypeAny, {
|
|
596
|
+
name: string;
|
|
596
597
|
description: string | null;
|
|
597
598
|
id: string;
|
|
598
|
-
name: string;
|
|
599
599
|
}, {
|
|
600
|
+
name: string;
|
|
600
601
|
description: string | null;
|
|
601
602
|
id: string;
|
|
602
|
-
name: string;
|
|
603
603
|
}>, "many">;
|
|
604
604
|
protocolVersion: z.ZodNumber;
|
|
605
605
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -612,9 +612,9 @@ export declare const initializeResponseSchema: z.ZodObject<{
|
|
|
612
612
|
} | undefined;
|
|
613
613
|
};
|
|
614
614
|
authMethods: {
|
|
615
|
+
name: string;
|
|
615
616
|
description: string | null;
|
|
616
617
|
id: string;
|
|
617
|
-
name: string;
|
|
618
618
|
}[];
|
|
619
619
|
protocolVersion: number;
|
|
620
620
|
}, {
|
|
@@ -627,9 +627,9 @@ export declare const initializeResponseSchema: z.ZodObject<{
|
|
|
627
627
|
} | undefined;
|
|
628
628
|
};
|
|
629
629
|
authMethods: {
|
|
630
|
+
name: string;
|
|
630
631
|
description: string | null;
|
|
631
632
|
id: string;
|
|
632
|
-
name: string;
|
|
633
633
|
}[];
|
|
634
634
|
protocolVersion: number;
|
|
635
635
|
}>;
|
|
@@ -757,8 +757,8 @@ 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
|
-
type: "resource_link";
|
|
761
760
|
name: string;
|
|
761
|
+
type: "resource_link";
|
|
762
762
|
uri: string;
|
|
763
763
|
description?: string | null | undefined;
|
|
764
764
|
title?: string | null | undefined;
|
|
@@ -770,8 +770,8 @@ export declare const contentBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
770
770
|
lastModified?: string | null | undefined;
|
|
771
771
|
} | null | undefined;
|
|
772
772
|
}, {
|
|
773
|
-
type: "resource_link";
|
|
774
773
|
name: string;
|
|
774
|
+
type: "resource_link";
|
|
775
775
|
uri: string;
|
|
776
776
|
description?: string | null | undefined;
|
|
777
777
|
title?: string | null | undefined;
|
|
@@ -980,8 +980,8 @@ 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
|
-
type: "resource_link";
|
|
984
983
|
name: string;
|
|
984
|
+
type: "resource_link";
|
|
985
985
|
uri: string;
|
|
986
986
|
description?: string | null | undefined;
|
|
987
987
|
title?: string | null | undefined;
|
|
@@ -993,8 +993,8 @@ export declare const toolCallContentSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
993
993
|
lastModified?: string | null | undefined;
|
|
994
994
|
} | null | undefined;
|
|
995
995
|
}, {
|
|
996
|
-
type: "resource_link";
|
|
997
996
|
name: string;
|
|
997
|
+
type: "resource_link";
|
|
998
998
|
uri: string;
|
|
999
999
|
description?: string | null | undefined;
|
|
1000
1000
|
title?: string | null | undefined;
|
|
@@ -1108,8 +1108,8 @@ export declare const toolCallContentSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1108
1108
|
lastModified?: string | null | undefined;
|
|
1109
1109
|
} | null | undefined;
|
|
1110
1110
|
} | {
|
|
1111
|
-
type: "resource_link";
|
|
1112
1111
|
name: string;
|
|
1112
|
+
type: "resource_link";
|
|
1113
1113
|
uri: string;
|
|
1114
1114
|
description?: string | null | undefined;
|
|
1115
1115
|
title?: string | null | undefined;
|
|
@@ -1166,8 +1166,8 @@ export declare const toolCallContentSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1166
1166
|
lastModified?: string | null | undefined;
|
|
1167
1167
|
} | null | undefined;
|
|
1168
1168
|
} | {
|
|
1169
|
-
type: "resource_link";
|
|
1170
1169
|
name: string;
|
|
1170
|
+
type: "resource_link";
|
|
1171
1171
|
uri: string;
|
|
1172
1172
|
description?: string | null | undefined;
|
|
1173
1173
|
title?: string | null | undefined;
|
|
@@ -1337,8 +1337,8 @@ export declare const toolCallSchema: z.ZodObject<{
|
|
|
1337
1337
|
type: z.ZodLiteral<"resource_link">;
|
|
1338
1338
|
uri: z.ZodString;
|
|
1339
1339
|
}, "strip", z.ZodTypeAny, {
|
|
1340
|
-
type: "resource_link";
|
|
1341
1340
|
name: string;
|
|
1341
|
+
type: "resource_link";
|
|
1342
1342
|
uri: string;
|
|
1343
1343
|
description?: string | null | undefined;
|
|
1344
1344
|
title?: string | null | undefined;
|
|
@@ -1350,8 +1350,8 @@ export declare const toolCallSchema: z.ZodObject<{
|
|
|
1350
1350
|
lastModified?: string | null | undefined;
|
|
1351
1351
|
} | null | undefined;
|
|
1352
1352
|
}, {
|
|
1353
|
-
type: "resource_link";
|
|
1354
1353
|
name: string;
|
|
1354
|
+
type: "resource_link";
|
|
1355
1355
|
uri: string;
|
|
1356
1356
|
description?: string | null | undefined;
|
|
1357
1357
|
title?: string | null | undefined;
|
|
@@ -1465,8 +1465,8 @@ export declare const toolCallSchema: z.ZodObject<{
|
|
|
1465
1465
|
lastModified?: string | null | undefined;
|
|
1466
1466
|
} | null | undefined;
|
|
1467
1467
|
} | {
|
|
1468
|
-
type: "resource_link";
|
|
1469
1468
|
name: string;
|
|
1469
|
+
type: "resource_link";
|
|
1470
1470
|
uri: string;
|
|
1471
1471
|
description?: string | null | undefined;
|
|
1472
1472
|
title?: string | null | undefined;
|
|
@@ -1523,8 +1523,8 @@ export declare const toolCallSchema: z.ZodObject<{
|
|
|
1523
1523
|
lastModified?: string | null | undefined;
|
|
1524
1524
|
} | null | undefined;
|
|
1525
1525
|
} | {
|
|
1526
|
-
type: "resource_link";
|
|
1527
1526
|
name: string;
|
|
1527
|
+
type: "resource_link";
|
|
1528
1528
|
uri: string;
|
|
1529
1529
|
description?: string | null | undefined;
|
|
1530
1530
|
title?: string | 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
|
-
kind: "search" | "delete" | "edit" | "move" | "other" | "read" | "execute" | "think" | "fetch";
|
|
1588
|
-
status: "completed" | "failed" | "pending" | "in_progress";
|
|
1589
1587
|
title: string;
|
|
1588
|
+
status: "completed" | "failed" | "pending" | "in_progress";
|
|
1589
|
+
kind: "search" | "delete" | "move" | "edit" | "other" | "read" | "execute" | "think" | "fetch";
|
|
1590
1590
|
toolCallId: string;
|
|
1591
1591
|
content?: ({
|
|
1592
1592
|
type: "content";
|
|
@@ -1617,8 +1617,8 @@ export declare const toolCallSchema: z.ZodObject<{
|
|
|
1617
1617
|
lastModified?: string | null | undefined;
|
|
1618
1618
|
} | null | undefined;
|
|
1619
1619
|
} | {
|
|
1620
|
-
type: "resource_link";
|
|
1621
1620
|
name: string;
|
|
1621
|
+
type: "resource_link";
|
|
1622
1622
|
uri: string;
|
|
1623
1623
|
description?: string | null | undefined;
|
|
1624
1624
|
title?: string | null | undefined;
|
|
@@ -1658,9 +1658,9 @@ export declare const toolCallSchema: z.ZodObject<{
|
|
|
1658
1658
|
}[] | undefined;
|
|
1659
1659
|
rawInput?: unknown;
|
|
1660
1660
|
}, {
|
|
1661
|
-
kind: "search" | "delete" | "edit" | "move" | "other" | "read" | "execute" | "think" | "fetch";
|
|
1662
|
-
status: "completed" | "failed" | "pending" | "in_progress";
|
|
1663
1661
|
title: string;
|
|
1662
|
+
status: "completed" | "failed" | "pending" | "in_progress";
|
|
1663
|
+
kind: "search" | "delete" | "move" | "edit" | "other" | "read" | "execute" | "think" | "fetch";
|
|
1664
1664
|
toolCallId: string;
|
|
1665
1665
|
content?: ({
|
|
1666
1666
|
type: "content";
|
|
@@ -1691,8 +1691,8 @@ export declare const toolCallSchema: z.ZodObject<{
|
|
|
1691
1691
|
lastModified?: string | null | undefined;
|
|
1692
1692
|
} | null | undefined;
|
|
1693
1693
|
} | {
|
|
1694
|
-
type: "resource_link";
|
|
1695
1694
|
name: string;
|
|
1695
|
+
type: "resource_link";
|
|
1696
1696
|
uri: string;
|
|
1697
1697
|
description?: string | null | undefined;
|
|
1698
1698
|
title?: string | null | undefined;
|
|
@@ -1879,8 +1879,8 @@ export declare const promptRequestSchema: z.ZodObject<{
|
|
|
1879
1879
|
type: z.ZodLiteral<"resource_link">;
|
|
1880
1880
|
uri: z.ZodString;
|
|
1881
1881
|
}, "strip", z.ZodTypeAny, {
|
|
1882
|
-
type: "resource_link";
|
|
1883
1882
|
name: string;
|
|
1883
|
+
type: "resource_link";
|
|
1884
1884
|
uri: string;
|
|
1885
1885
|
description?: string | null | undefined;
|
|
1886
1886
|
title?: string | null | undefined;
|
|
@@ -1892,8 +1892,8 @@ export declare const promptRequestSchema: z.ZodObject<{
|
|
|
1892
1892
|
lastModified?: string | null | undefined;
|
|
1893
1893
|
} | null | undefined;
|
|
1894
1894
|
}, {
|
|
1895
|
-
type: "resource_link";
|
|
1896
1895
|
name: string;
|
|
1896
|
+
type: "resource_link";
|
|
1897
1897
|
uri: string;
|
|
1898
1898
|
description?: string | null | undefined;
|
|
1899
1899
|
title?: string | null | undefined;
|
|
@@ -2006,8 +2006,8 @@ export declare const promptRequestSchema: z.ZodObject<{
|
|
|
2006
2006
|
lastModified?: string | null | undefined;
|
|
2007
2007
|
} | null | undefined;
|
|
2008
2008
|
} | {
|
|
2009
|
-
type: "resource_link";
|
|
2010
2009
|
name: string;
|
|
2010
|
+
type: "resource_link";
|
|
2011
2011
|
uri: string;
|
|
2012
2012
|
description?: string | null | undefined;
|
|
2013
2013
|
title?: string | null | undefined;
|
|
@@ -2064,8 +2064,8 @@ export declare const promptRequestSchema: z.ZodObject<{
|
|
|
2064
2064
|
lastModified?: string | null | undefined;
|
|
2065
2065
|
} | null | undefined;
|
|
2066
2066
|
} | {
|
|
2067
|
-
type: "resource_link";
|
|
2068
2067
|
name: string;
|
|
2068
|
+
type: "resource_link";
|
|
2069
2069
|
uri: string;
|
|
2070
2070
|
description?: string | null | undefined;
|
|
2071
2071
|
title?: string | null | undefined;
|
|
@@ -2113,14 +2113,14 @@ export declare const availableCommandSchema: z.ZodObject<{
|
|
|
2113
2113
|
}>>>;
|
|
2114
2114
|
name: z.ZodString;
|
|
2115
2115
|
}, "strip", z.ZodTypeAny, {
|
|
2116
|
-
description: string;
|
|
2117
2116
|
name: string;
|
|
2117
|
+
description: string;
|
|
2118
2118
|
input?: {
|
|
2119
2119
|
hint: string;
|
|
2120
2120
|
} | null | undefined;
|
|
2121
2121
|
}, {
|
|
2122
|
-
description: string;
|
|
2123
2122
|
name: string;
|
|
2123
|
+
description: string;
|
|
2124
2124
|
input?: {
|
|
2125
2125
|
hint: string;
|
|
2126
2126
|
} | null | undefined;
|
|
@@ -2137,14 +2137,14 @@ export declare const availableCommandsUpdateSchema: z.ZodObject<{
|
|
|
2137
2137
|
}>>>;
|
|
2138
2138
|
name: z.ZodString;
|
|
2139
2139
|
}, "strip", z.ZodTypeAny, {
|
|
2140
|
-
description: string;
|
|
2141
2140
|
name: string;
|
|
2141
|
+
description: string;
|
|
2142
2142
|
input?: {
|
|
2143
2143
|
hint: string;
|
|
2144
2144
|
} | null | undefined;
|
|
2145
2145
|
}, {
|
|
2146
|
-
description: string;
|
|
2147
2146
|
name: string;
|
|
2147
|
+
description: string;
|
|
2148
2148
|
input?: {
|
|
2149
2149
|
hint: string;
|
|
2150
2150
|
} | null | undefined;
|
|
@@ -2153,8 +2153,8 @@ export declare const availableCommandsUpdateSchema: z.ZodObject<{
|
|
|
2153
2153
|
}, "strip", z.ZodTypeAny, {
|
|
2154
2154
|
sessionUpdate: "available_commands_update";
|
|
2155
2155
|
availableCommands: {
|
|
2156
|
-
description: string;
|
|
2157
2156
|
name: string;
|
|
2157
|
+
description: string;
|
|
2158
2158
|
input?: {
|
|
2159
2159
|
hint: string;
|
|
2160
2160
|
} | null | undefined;
|
|
@@ -2162,8 +2162,8 @@ export declare const availableCommandsUpdateSchema: z.ZodObject<{
|
|
|
2162
2162
|
}, {
|
|
2163
2163
|
sessionUpdate: "available_commands_update";
|
|
2164
2164
|
availableCommands: {
|
|
2165
|
-
description: string;
|
|
2166
2165
|
name: string;
|
|
2166
|
+
description: string;
|
|
2167
2167
|
input?: {
|
|
2168
2168
|
hint: string;
|
|
2169
2169
|
} | null | undefined;
|
|
@@ -2294,8 +2294,8 @@ 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
|
-
type: "resource_link";
|
|
2298
2297
|
name: string;
|
|
2298
|
+
type: "resource_link";
|
|
2299
2299
|
uri: string;
|
|
2300
2300
|
description?: string | null | undefined;
|
|
2301
2301
|
title?: string | null | undefined;
|
|
@@ -2307,8 +2307,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2307
2307
|
lastModified?: string | null | undefined;
|
|
2308
2308
|
} | null | undefined;
|
|
2309
2309
|
}, {
|
|
2310
|
-
type: "resource_link";
|
|
2311
2310
|
name: string;
|
|
2311
|
+
type: "resource_link";
|
|
2312
2312
|
uri: string;
|
|
2313
2313
|
description?: string | null | undefined;
|
|
2314
2314
|
title?: string | null | undefined;
|
|
@@ -2421,8 +2421,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2421
2421
|
lastModified?: string | null | undefined;
|
|
2422
2422
|
} | null | undefined;
|
|
2423
2423
|
} | {
|
|
2424
|
-
type: "resource_link";
|
|
2425
2424
|
name: string;
|
|
2425
|
+
type: "resource_link";
|
|
2426
2426
|
uri: string;
|
|
2427
2427
|
description?: string | null | undefined;
|
|
2428
2428
|
title?: string | null | undefined;
|
|
@@ -2479,8 +2479,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2479
2479
|
lastModified?: string | null | undefined;
|
|
2480
2480
|
} | null | undefined;
|
|
2481
2481
|
} | {
|
|
2482
|
-
type: "resource_link";
|
|
2483
2482
|
name: string;
|
|
2483
|
+
type: "resource_link";
|
|
2484
2484
|
uri: string;
|
|
2485
2485
|
description?: string | null | undefined;
|
|
2486
2486
|
title?: string | null | undefined;
|
|
@@ -2634,8 +2634,8 @@ 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
|
-
type: "resource_link";
|
|
2638
2637
|
name: string;
|
|
2638
|
+
type: "resource_link";
|
|
2639
2639
|
uri: string;
|
|
2640
2640
|
description?: string | null | undefined;
|
|
2641
2641
|
title?: string | null | undefined;
|
|
@@ -2647,8 +2647,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2647
2647
|
lastModified?: string | null | undefined;
|
|
2648
2648
|
} | null | undefined;
|
|
2649
2649
|
}, {
|
|
2650
|
-
type: "resource_link";
|
|
2651
2650
|
name: string;
|
|
2651
|
+
type: "resource_link";
|
|
2652
2652
|
uri: string;
|
|
2653
2653
|
description?: string | null | undefined;
|
|
2654
2654
|
title?: string | null | undefined;
|
|
@@ -2761,8 +2761,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2761
2761
|
lastModified?: string | null | undefined;
|
|
2762
2762
|
} | null | undefined;
|
|
2763
2763
|
} | {
|
|
2764
|
-
type: "resource_link";
|
|
2765
2764
|
name: string;
|
|
2765
|
+
type: "resource_link";
|
|
2766
2766
|
uri: string;
|
|
2767
2767
|
description?: string | null | undefined;
|
|
2768
2768
|
title?: string | null | undefined;
|
|
@@ -2819,8 +2819,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2819
2819
|
lastModified?: string | null | undefined;
|
|
2820
2820
|
} | null | undefined;
|
|
2821
2821
|
} | {
|
|
2822
|
-
type: "resource_link";
|
|
2823
2822
|
name: string;
|
|
2823
|
+
type: "resource_link";
|
|
2824
2824
|
uri: string;
|
|
2825
2825
|
description?: string | null | undefined;
|
|
2826
2826
|
title?: string | null | undefined;
|
|
@@ -2974,8 +2974,8 @@ 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
|
-
type: "resource_link";
|
|
2978
2977
|
name: string;
|
|
2978
|
+
type: "resource_link";
|
|
2979
2979
|
uri: string;
|
|
2980
2980
|
description?: string | null | undefined;
|
|
2981
2981
|
title?: string | null | undefined;
|
|
@@ -2987,8 +2987,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2987
2987
|
lastModified?: string | null | undefined;
|
|
2988
2988
|
} | null | undefined;
|
|
2989
2989
|
}, {
|
|
2990
|
-
type: "resource_link";
|
|
2991
2990
|
name: string;
|
|
2991
|
+
type: "resource_link";
|
|
2992
2992
|
uri: string;
|
|
2993
2993
|
description?: string | null | undefined;
|
|
2994
2994
|
title?: string | null | undefined;
|
|
@@ -3101,8 +3101,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3101
3101
|
lastModified?: string | null | undefined;
|
|
3102
3102
|
} | null | undefined;
|
|
3103
3103
|
} | {
|
|
3104
|
-
type: "resource_link";
|
|
3105
3104
|
name: string;
|
|
3105
|
+
type: "resource_link";
|
|
3106
3106
|
uri: string;
|
|
3107
3107
|
description?: string | null | undefined;
|
|
3108
3108
|
title?: string | null | undefined;
|
|
@@ -3159,8 +3159,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3159
3159
|
lastModified?: string | null | undefined;
|
|
3160
3160
|
} | null | undefined;
|
|
3161
3161
|
} | {
|
|
3162
|
-
type: "resource_link";
|
|
3163
3162
|
name: string;
|
|
3163
|
+
type: "resource_link";
|
|
3164
3164
|
uri: string;
|
|
3165
3165
|
description?: string | null | undefined;
|
|
3166
3166
|
title?: string | null | undefined;
|
|
@@ -3315,8 +3315,8 @@ 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
|
-
type: "resource_link";
|
|
3319
3318
|
name: string;
|
|
3319
|
+
type: "resource_link";
|
|
3320
3320
|
uri: string;
|
|
3321
3321
|
description?: string | null | undefined;
|
|
3322
3322
|
title?: string | null | undefined;
|
|
@@ -3328,8 +3328,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3328
3328
|
lastModified?: string | null | undefined;
|
|
3329
3329
|
} | null | undefined;
|
|
3330
3330
|
}, {
|
|
3331
|
-
type: "resource_link";
|
|
3332
3331
|
name: string;
|
|
3332
|
+
type: "resource_link";
|
|
3333
3333
|
uri: string;
|
|
3334
3334
|
description?: string | null | undefined;
|
|
3335
3335
|
title?: string | null | undefined;
|
|
@@ -3443,8 +3443,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3443
3443
|
lastModified?: string | null | undefined;
|
|
3444
3444
|
} | null | undefined;
|
|
3445
3445
|
} | {
|
|
3446
|
-
type: "resource_link";
|
|
3447
3446
|
name: string;
|
|
3447
|
+
type: "resource_link";
|
|
3448
3448
|
uri: string;
|
|
3449
3449
|
description?: string | null | undefined;
|
|
3450
3450
|
title?: string | null | undefined;
|
|
@@ -3501,8 +3501,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3501
3501
|
lastModified?: string | null | undefined;
|
|
3502
3502
|
} | null | undefined;
|
|
3503
3503
|
} | {
|
|
3504
|
-
type: "resource_link";
|
|
3505
3504
|
name: string;
|
|
3505
|
+
type: "resource_link";
|
|
3506
3506
|
uri: string;
|
|
3507
3507
|
description?: string | null | undefined;
|
|
3508
3508
|
title?: string | 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
|
-
kind: "search" | "delete" | "edit" | "move" | "other" | "read" | "execute" | "think" | "fetch";
|
|
3567
|
-
status: "completed" | "failed" | "pending" | "in_progress";
|
|
3568
3566
|
title: string;
|
|
3567
|
+
status: "completed" | "failed" | "pending" | "in_progress";
|
|
3568
|
+
kind: "search" | "delete" | "move" | "edit" | "other" | "read" | "execute" | "think" | "fetch";
|
|
3569
3569
|
toolCallId: string;
|
|
3570
3570
|
sessionUpdate: "tool_call";
|
|
3571
3571
|
content?: ({
|
|
@@ -3597,8 +3597,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3597
3597
|
lastModified?: string | null | undefined;
|
|
3598
3598
|
} | null | undefined;
|
|
3599
3599
|
} | {
|
|
3600
|
-
type: "resource_link";
|
|
3601
3600
|
name: string;
|
|
3601
|
+
type: "resource_link";
|
|
3602
3602
|
uri: string;
|
|
3603
3603
|
description?: string | null | undefined;
|
|
3604
3604
|
title?: string | null | undefined;
|
|
@@ -3638,9 +3638,9 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3638
3638
|
}[] | undefined;
|
|
3639
3639
|
rawInput?: unknown;
|
|
3640
3640
|
}, {
|
|
3641
|
-
kind: "search" | "delete" | "edit" | "move" | "other" | "read" | "execute" | "think" | "fetch";
|
|
3642
|
-
status: "completed" | "failed" | "pending" | "in_progress";
|
|
3643
3641
|
title: string;
|
|
3642
|
+
status: "completed" | "failed" | "pending" | "in_progress";
|
|
3643
|
+
kind: "search" | "delete" | "move" | "edit" | "other" | "read" | "execute" | "think" | "fetch";
|
|
3644
3644
|
toolCallId: string;
|
|
3645
3645
|
sessionUpdate: "tool_call";
|
|
3646
3646
|
content?: ({
|
|
@@ -3672,8 +3672,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3672
3672
|
lastModified?: string | null | undefined;
|
|
3673
3673
|
} | null | undefined;
|
|
3674
3674
|
} | {
|
|
3675
|
-
type: "resource_link";
|
|
3676
3675
|
name: string;
|
|
3676
|
+
type: "resource_link";
|
|
3677
3677
|
uri: string;
|
|
3678
3678
|
description?: string | null | undefined;
|
|
3679
3679
|
title?: string | null | undefined;
|
|
@@ -3838,8 +3838,8 @@ 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
|
-
type: "resource_link";
|
|
3842
3841
|
name: string;
|
|
3842
|
+
type: "resource_link";
|
|
3843
3843
|
uri: string;
|
|
3844
3844
|
description?: string | null | undefined;
|
|
3845
3845
|
title?: string | null | undefined;
|
|
@@ -3851,8 +3851,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3851
3851
|
lastModified?: string | null | undefined;
|
|
3852
3852
|
} | null | undefined;
|
|
3853
3853
|
}, {
|
|
3854
|
-
type: "resource_link";
|
|
3855
3854
|
name: string;
|
|
3855
|
+
type: "resource_link";
|
|
3856
3856
|
uri: string;
|
|
3857
3857
|
description?: string | null | undefined;
|
|
3858
3858
|
title?: string | null | undefined;
|
|
@@ -3966,8 +3966,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3966
3966
|
lastModified?: string | null | undefined;
|
|
3967
3967
|
} | null | undefined;
|
|
3968
3968
|
} | {
|
|
3969
|
-
type: "resource_link";
|
|
3970
3969
|
name: string;
|
|
3970
|
+
type: "resource_link";
|
|
3971
3971
|
uri: string;
|
|
3972
3972
|
description?: string | null | undefined;
|
|
3973
3973
|
title?: string | null | undefined;
|
|
@@ -4024,8 +4024,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4024
4024
|
lastModified?: string | null | undefined;
|
|
4025
4025
|
} | null | undefined;
|
|
4026
4026
|
} | {
|
|
4027
|
-
type: "resource_link";
|
|
4028
4027
|
name: string;
|
|
4028
|
+
type: "resource_link";
|
|
4029
4029
|
uri: string;
|
|
4030
4030
|
description?: string | null | undefined;
|
|
4031
4031
|
title?: string | null | undefined;
|
|
@@ -4117,8 +4117,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4117
4117
|
lastModified?: string | null | undefined;
|
|
4118
4118
|
} | null | undefined;
|
|
4119
4119
|
} | {
|
|
4120
|
-
type: "resource_link";
|
|
4121
4120
|
name: string;
|
|
4121
|
+
type: "resource_link";
|
|
4122
4122
|
uri: string;
|
|
4123
4123
|
description?: string | null | undefined;
|
|
4124
4124
|
title?: string | null | undefined;
|
|
@@ -4152,9 +4152,9 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4152
4152
|
newText: string;
|
|
4153
4153
|
oldText: string | null;
|
|
4154
4154
|
})[] | null | undefined;
|
|
4155
|
-
kind?: "search" | "delete" | "edit" | "move" | "other" | "read" | "execute" | "think" | "fetch" | null | undefined;
|
|
4156
|
-
status?: "completed" | "failed" | "pending" | "in_progress" | null | undefined;
|
|
4157
4155
|
title?: string | null | undefined;
|
|
4156
|
+
status?: "completed" | "failed" | "pending" | "in_progress" | null | undefined;
|
|
4157
|
+
kind?: "search" | "delete" | "move" | "edit" | "other" | "read" | "execute" | "think" | "fetch" | null | undefined;
|
|
4158
4158
|
locations?: {
|
|
4159
4159
|
path: string;
|
|
4160
4160
|
line?: number | null | undefined;
|
|
@@ -4192,8 +4192,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4192
4192
|
lastModified?: string | null | undefined;
|
|
4193
4193
|
} | null | undefined;
|
|
4194
4194
|
} | {
|
|
4195
|
-
type: "resource_link";
|
|
4196
4195
|
name: string;
|
|
4196
|
+
type: "resource_link";
|
|
4197
4197
|
uri: string;
|
|
4198
4198
|
description?: string | null | undefined;
|
|
4199
4199
|
title?: string | null | undefined;
|
|
@@ -4227,9 +4227,9 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4227
4227
|
newText: string;
|
|
4228
4228
|
oldText: string | null;
|
|
4229
4229
|
})[] | null | undefined;
|
|
4230
|
-
kind?: "search" | "delete" | "edit" | "move" | "other" | "read" | "execute" | "think" | "fetch" | null | undefined;
|
|
4231
|
-
status?: "completed" | "failed" | "pending" | "in_progress" | null | undefined;
|
|
4232
4230
|
title?: string | null | undefined;
|
|
4231
|
+
status?: "completed" | "failed" | "pending" | "in_progress" | null | undefined;
|
|
4232
|
+
kind?: "search" | "delete" | "move" | "edit" | "other" | "read" | "execute" | "think" | "fetch" | null | undefined;
|
|
4233
4233
|
locations?: {
|
|
4234
4234
|
path: string;
|
|
4235
4235
|
line?: number | null | undefined;
|
|
@@ -4276,14 +4276,14 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4276
4276
|
}>>>;
|
|
4277
4277
|
name: z.ZodString;
|
|
4278
4278
|
}, "strip", z.ZodTypeAny, {
|
|
4279
|
-
description: string;
|
|
4280
4279
|
name: string;
|
|
4280
|
+
description: string;
|
|
4281
4281
|
input?: {
|
|
4282
4282
|
hint: string;
|
|
4283
4283
|
} | null | undefined;
|
|
4284
4284
|
}, {
|
|
4285
|
-
description: string;
|
|
4286
4285
|
name: string;
|
|
4286
|
+
description: string;
|
|
4287
4287
|
input?: {
|
|
4288
4288
|
hint: string;
|
|
4289
4289
|
} | null | undefined;
|
|
@@ -4292,8 +4292,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4292
4292
|
}, "strip", z.ZodTypeAny, {
|
|
4293
4293
|
sessionUpdate: "available_commands_update";
|
|
4294
4294
|
availableCommands: {
|
|
4295
|
-
description: string;
|
|
4296
4295
|
name: string;
|
|
4296
|
+
description: string;
|
|
4297
4297
|
input?: {
|
|
4298
4298
|
hint: string;
|
|
4299
4299
|
} | null | undefined;
|
|
@@ -4301,8 +4301,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4301
4301
|
}, {
|
|
4302
4302
|
sessionUpdate: "available_commands_update";
|
|
4303
4303
|
availableCommands: {
|
|
4304
|
-
description: string;
|
|
4305
4304
|
name: string;
|
|
4305
|
+
description: string;
|
|
4306
4306
|
input?: {
|
|
4307
4307
|
hint: string;
|
|
4308
4308
|
} | null | undefined;
|
|
@@ -4344,13 +4344,13 @@ export declare const agentResponseSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4344
4344
|
id: z.ZodString;
|
|
4345
4345
|
name: z.ZodString;
|
|
4346
4346
|
}, "strip", z.ZodTypeAny, {
|
|
4347
|
+
name: string;
|
|
4347
4348
|
description: string | null;
|
|
4348
4349
|
id: string;
|
|
4349
|
-
name: string;
|
|
4350
4350
|
}, {
|
|
4351
|
+
name: string;
|
|
4351
4352
|
description: string | null;
|
|
4352
4353
|
id: string;
|
|
4353
|
-
name: string;
|
|
4354
4354
|
}>, "many">;
|
|
4355
4355
|
protocolVersion: z.ZodNumber;
|
|
4356
4356
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -4363,9 +4363,9 @@ export declare const agentResponseSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4363
4363
|
} | undefined;
|
|
4364
4364
|
};
|
|
4365
4365
|
authMethods: {
|
|
4366
|
+
name: string;
|
|
4366
4367
|
description: string | null;
|
|
4367
4368
|
id: string;
|
|
4368
|
-
name: string;
|
|
4369
4369
|
}[];
|
|
4370
4370
|
protocolVersion: number;
|
|
4371
4371
|
}, {
|
|
@@ -4378,9 +4378,9 @@ export declare const agentResponseSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4378
4378
|
} | undefined;
|
|
4379
4379
|
};
|
|
4380
4380
|
authMethods: {
|
|
4381
|
+
name: string;
|
|
4381
4382
|
description: string | null;
|
|
4382
4383
|
id: string;
|
|
4383
|
-
name: string;
|
|
4384
4384
|
}[];
|
|
4385
4385
|
protocolVersion: number;
|
|
4386
4386
|
}>, z.ZodNull, z.ZodObject<{
|
|
@@ -4537,8 +4537,8 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
|
4537
4537
|
type: z.ZodLiteral<"resource_link">;
|
|
4538
4538
|
uri: z.ZodString;
|
|
4539
4539
|
}, "strip", z.ZodTypeAny, {
|
|
4540
|
-
type: "resource_link";
|
|
4541
4540
|
name: string;
|
|
4541
|
+
type: "resource_link";
|
|
4542
4542
|
uri: string;
|
|
4543
4543
|
description?: string | null | undefined;
|
|
4544
4544
|
title?: string | null | undefined;
|
|
@@ -4550,8 +4550,8 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
|
4550
4550
|
lastModified?: string | null | undefined;
|
|
4551
4551
|
} | null | undefined;
|
|
4552
4552
|
}, {
|
|
4553
|
-
type: "resource_link";
|
|
4554
4553
|
name: string;
|
|
4554
|
+
type: "resource_link";
|
|
4555
4555
|
uri: string;
|
|
4556
4556
|
description?: string | null | undefined;
|
|
4557
4557
|
title?: string | null | undefined;
|
|
@@ -4665,8 +4665,8 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
|
4665
4665
|
lastModified?: string | null | undefined;
|
|
4666
4666
|
} | null | undefined;
|
|
4667
4667
|
} | {
|
|
4668
|
-
type: "resource_link";
|
|
4669
4668
|
name: string;
|
|
4669
|
+
type: "resource_link";
|
|
4670
4670
|
uri: string;
|
|
4671
4671
|
description?: string | null | undefined;
|
|
4672
4672
|
title?: string | null | undefined;
|
|
@@ -4723,8 +4723,8 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
|
4723
4723
|
lastModified?: string | null | undefined;
|
|
4724
4724
|
} | null | undefined;
|
|
4725
4725
|
} | {
|
|
4726
|
-
type: "resource_link";
|
|
4727
4726
|
name: string;
|
|
4727
|
+
type: "resource_link";
|
|
4728
4728
|
uri: string;
|
|
4729
4729
|
description?: string | null | undefined;
|
|
4730
4730
|
title?: string | 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
|
-
kind: "search" | "delete" | "edit" | "move" | "other" | "read" | "execute" | "think" | "fetch";
|
|
4788
|
-
status: "completed" | "failed" | "pending" | "in_progress";
|
|
4789
4787
|
title: string;
|
|
4788
|
+
status: "completed" | "failed" | "pending" | "in_progress";
|
|
4789
|
+
kind: "search" | "delete" | "move" | "edit" | "other" | "read" | "execute" | "think" | "fetch";
|
|
4790
4790
|
toolCallId: string;
|
|
4791
4791
|
content?: ({
|
|
4792
4792
|
type: "content";
|
|
@@ -4817,8 +4817,8 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
|
4817
4817
|
lastModified?: string | null | undefined;
|
|
4818
4818
|
} | null | undefined;
|
|
4819
4819
|
} | {
|
|
4820
|
-
type: "resource_link";
|
|
4821
4820
|
name: string;
|
|
4821
|
+
type: "resource_link";
|
|
4822
4822
|
uri: string;
|
|
4823
4823
|
description?: string | null | undefined;
|
|
4824
4824
|
title?: string | null | undefined;
|
|
@@ -4858,9 +4858,9 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
|
4858
4858
|
}[] | undefined;
|
|
4859
4859
|
rawInput?: unknown;
|
|
4860
4860
|
}, {
|
|
4861
|
-
kind: "search" | "delete" | "edit" | "move" | "other" | "read" | "execute" | "think" | "fetch";
|
|
4862
|
-
status: "completed" | "failed" | "pending" | "in_progress";
|
|
4863
4861
|
title: string;
|
|
4862
|
+
status: "completed" | "failed" | "pending" | "in_progress";
|
|
4863
|
+
kind: "search" | "delete" | "move" | "edit" | "other" | "read" | "execute" | "think" | "fetch";
|
|
4864
4864
|
toolCallId: string;
|
|
4865
4865
|
content?: ({
|
|
4866
4866
|
type: "content";
|
|
@@ -4891,8 +4891,8 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
|
4891
4891
|
lastModified?: string | null | undefined;
|
|
4892
4892
|
} | null | undefined;
|
|
4893
4893
|
} | {
|
|
4894
|
-
type: "resource_link";
|
|
4895
4894
|
name: string;
|
|
4895
|
+
type: "resource_link";
|
|
4896
4896
|
uri: string;
|
|
4897
4897
|
description?: string | null | undefined;
|
|
4898
4898
|
title?: string | null | undefined;
|
|
@@ -4940,9 +4940,9 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
|
4940
4940
|
}[];
|
|
4941
4941
|
sessionId: string;
|
|
4942
4942
|
toolCall: {
|
|
4943
|
-
kind: "search" | "delete" | "edit" | "move" | "other" | "read" | "execute" | "think" | "fetch";
|
|
4944
|
-
status: "completed" | "failed" | "pending" | "in_progress";
|
|
4945
4943
|
title: string;
|
|
4944
|
+
status: "completed" | "failed" | "pending" | "in_progress";
|
|
4945
|
+
kind: "search" | "delete" | "move" | "edit" | "other" | "read" | "execute" | "think" | "fetch";
|
|
4946
4946
|
toolCallId: string;
|
|
4947
4947
|
content?: ({
|
|
4948
4948
|
type: "content";
|
|
@@ -4973,8 +4973,8 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
|
4973
4973
|
lastModified?: string | null | undefined;
|
|
4974
4974
|
} | null | undefined;
|
|
4975
4975
|
} | {
|
|
4976
|
-
type: "resource_link";
|
|
4977
4976
|
name: string;
|
|
4977
|
+
type: "resource_link";
|
|
4978
4978
|
uri: string;
|
|
4979
4979
|
description?: string | null | undefined;
|
|
4980
4980
|
title?: string | null | undefined;
|
|
@@ -5022,9 +5022,9 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
|
5022
5022
|
}[];
|
|
5023
5023
|
sessionId: string;
|
|
5024
5024
|
toolCall: {
|
|
5025
|
-
kind: "search" | "delete" | "edit" | "move" | "other" | "read" | "execute" | "think" | "fetch";
|
|
5026
|
-
status: "completed" | "failed" | "pending" | "in_progress";
|
|
5027
5025
|
title: string;
|
|
5026
|
+
status: "completed" | "failed" | "pending" | "in_progress";
|
|
5027
|
+
kind: "search" | "delete" | "move" | "edit" | "other" | "read" | "execute" | "think" | "fetch";
|
|
5028
5028
|
toolCallId: string;
|
|
5029
5029
|
content?: ({
|
|
5030
5030
|
type: "content";
|
|
@@ -5055,8 +5055,8 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
|
5055
5055
|
lastModified?: string | null | undefined;
|
|
5056
5056
|
} | null | undefined;
|
|
5057
5057
|
} | {
|
|
5058
|
-
type: "resource_link";
|
|
5059
5058
|
name: string;
|
|
5059
|
+
type: "resource_link";
|
|
5060
5060
|
uri: string;
|
|
5061
5061
|
description?: string | null | undefined;
|
|
5062
5062
|
title?: string | null | undefined;
|
|
@@ -5265,8 +5265,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
5265
5265
|
type: z.ZodLiteral<"resource_link">;
|
|
5266
5266
|
uri: z.ZodString;
|
|
5267
5267
|
}, "strip", z.ZodTypeAny, {
|
|
5268
|
-
type: "resource_link";
|
|
5269
5268
|
name: string;
|
|
5269
|
+
type: "resource_link";
|
|
5270
5270
|
uri: string;
|
|
5271
5271
|
description?: string | null | undefined;
|
|
5272
5272
|
title?: string | null | undefined;
|
|
@@ -5278,8 +5278,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
5278
5278
|
lastModified?: string | null | undefined;
|
|
5279
5279
|
} | null | undefined;
|
|
5280
5280
|
}, {
|
|
5281
|
-
type: "resource_link";
|
|
5282
5281
|
name: string;
|
|
5282
|
+
type: "resource_link";
|
|
5283
5283
|
uri: string;
|
|
5284
5284
|
description?: string | null | undefined;
|
|
5285
5285
|
title?: string | null | undefined;
|
|
@@ -5392,8 +5392,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
5392
5392
|
lastModified?: string | null | undefined;
|
|
5393
5393
|
} | null | undefined;
|
|
5394
5394
|
} | {
|
|
5395
|
-
type: "resource_link";
|
|
5396
5395
|
name: string;
|
|
5396
|
+
type: "resource_link";
|
|
5397
5397
|
uri: string;
|
|
5398
5398
|
description?: string | null | undefined;
|
|
5399
5399
|
title?: string | null | undefined;
|
|
@@ -5450,8 +5450,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
5450
5450
|
lastModified?: string | null | undefined;
|
|
5451
5451
|
} | null | undefined;
|
|
5452
5452
|
} | {
|
|
5453
|
-
type: "resource_link";
|
|
5454
5453
|
name: string;
|
|
5454
|
+
type: "resource_link";
|
|
5455
5455
|
uri: string;
|
|
5456
5456
|
description?: string | null | undefined;
|
|
5457
5457
|
title?: string | null | undefined;
|
|
@@ -5605,8 +5605,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
5605
5605
|
type: z.ZodLiteral<"resource_link">;
|
|
5606
5606
|
uri: z.ZodString;
|
|
5607
5607
|
}, "strip", z.ZodTypeAny, {
|
|
5608
|
-
type: "resource_link";
|
|
5609
5608
|
name: string;
|
|
5609
|
+
type: "resource_link";
|
|
5610
5610
|
uri: string;
|
|
5611
5611
|
description?: string | null | undefined;
|
|
5612
5612
|
title?: string | null | undefined;
|
|
@@ -5618,8 +5618,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
5618
5618
|
lastModified?: string | null | undefined;
|
|
5619
5619
|
} | null | undefined;
|
|
5620
5620
|
}, {
|
|
5621
|
-
type: "resource_link";
|
|
5622
5621
|
name: string;
|
|
5622
|
+
type: "resource_link";
|
|
5623
5623
|
uri: string;
|
|
5624
5624
|
description?: string | null | undefined;
|
|
5625
5625
|
title?: string | null | undefined;
|
|
@@ -5732,8 +5732,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
5732
5732
|
lastModified?: string | null | undefined;
|
|
5733
5733
|
} | null | undefined;
|
|
5734
5734
|
} | {
|
|
5735
|
-
type: "resource_link";
|
|
5736
5735
|
name: string;
|
|
5736
|
+
type: "resource_link";
|
|
5737
5737
|
uri: string;
|
|
5738
5738
|
description?: string | null | undefined;
|
|
5739
5739
|
title?: string | null | undefined;
|
|
@@ -5790,8 +5790,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
5790
5790
|
lastModified?: string | null | undefined;
|
|
5791
5791
|
} | null | undefined;
|
|
5792
5792
|
} | {
|
|
5793
|
-
type: "resource_link";
|
|
5794
5793
|
name: string;
|
|
5794
|
+
type: "resource_link";
|
|
5795
5795
|
uri: string;
|
|
5796
5796
|
description?: string | null | undefined;
|
|
5797
5797
|
title?: string | null | undefined;
|
|
@@ -5945,8 +5945,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
5945
5945
|
type: z.ZodLiteral<"resource_link">;
|
|
5946
5946
|
uri: z.ZodString;
|
|
5947
5947
|
}, "strip", z.ZodTypeAny, {
|
|
5948
|
-
type: "resource_link";
|
|
5949
5948
|
name: string;
|
|
5949
|
+
type: "resource_link";
|
|
5950
5950
|
uri: string;
|
|
5951
5951
|
description?: string | null | undefined;
|
|
5952
5952
|
title?: string | null | undefined;
|
|
@@ -5958,8 +5958,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
5958
5958
|
lastModified?: string | null | undefined;
|
|
5959
5959
|
} | null | undefined;
|
|
5960
5960
|
}, {
|
|
5961
|
-
type: "resource_link";
|
|
5962
5961
|
name: string;
|
|
5962
|
+
type: "resource_link";
|
|
5963
5963
|
uri: string;
|
|
5964
5964
|
description?: string | null | undefined;
|
|
5965
5965
|
title?: string | null | undefined;
|
|
@@ -6072,8 +6072,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
6072
6072
|
lastModified?: string | null | undefined;
|
|
6073
6073
|
} | null | undefined;
|
|
6074
6074
|
} | {
|
|
6075
|
-
type: "resource_link";
|
|
6076
6075
|
name: string;
|
|
6076
|
+
type: "resource_link";
|
|
6077
6077
|
uri: string;
|
|
6078
6078
|
description?: string | null | undefined;
|
|
6079
6079
|
title?: string | null | undefined;
|
|
@@ -6130,8 +6130,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
6130
6130
|
lastModified?: string | null | undefined;
|
|
6131
6131
|
} | null | undefined;
|
|
6132
6132
|
} | {
|
|
6133
|
-
type: "resource_link";
|
|
6134
6133
|
name: string;
|
|
6134
|
+
type: "resource_link";
|
|
6135
6135
|
uri: string;
|
|
6136
6136
|
description?: string | null | undefined;
|
|
6137
6137
|
title?: string | null | undefined;
|
|
@@ -6286,8 +6286,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
6286
6286
|
type: z.ZodLiteral<"resource_link">;
|
|
6287
6287
|
uri: z.ZodString;
|
|
6288
6288
|
}, "strip", z.ZodTypeAny, {
|
|
6289
|
-
type: "resource_link";
|
|
6290
6289
|
name: string;
|
|
6290
|
+
type: "resource_link";
|
|
6291
6291
|
uri: string;
|
|
6292
6292
|
description?: string | null | undefined;
|
|
6293
6293
|
title?: string | null | undefined;
|
|
@@ -6299,8 +6299,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
6299
6299
|
lastModified?: string | null | undefined;
|
|
6300
6300
|
} | null | undefined;
|
|
6301
6301
|
}, {
|
|
6302
|
-
type: "resource_link";
|
|
6303
6302
|
name: string;
|
|
6303
|
+
type: "resource_link";
|
|
6304
6304
|
uri: string;
|
|
6305
6305
|
description?: string | null | undefined;
|
|
6306
6306
|
title?: string | null | undefined;
|
|
@@ -6414,8 +6414,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
6414
6414
|
lastModified?: string | null | undefined;
|
|
6415
6415
|
} | null | undefined;
|
|
6416
6416
|
} | {
|
|
6417
|
-
type: "resource_link";
|
|
6418
6417
|
name: string;
|
|
6418
|
+
type: "resource_link";
|
|
6419
6419
|
uri: string;
|
|
6420
6420
|
description?: string | null | undefined;
|
|
6421
6421
|
title?: string | null | undefined;
|
|
@@ -6472,8 +6472,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
6472
6472
|
lastModified?: string | null | undefined;
|
|
6473
6473
|
} | null | undefined;
|
|
6474
6474
|
} | {
|
|
6475
|
-
type: "resource_link";
|
|
6476
6475
|
name: string;
|
|
6476
|
+
type: "resource_link";
|
|
6477
6477
|
uri: string;
|
|
6478
6478
|
description?: string | null | undefined;
|
|
6479
6479
|
title?: string | 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
|
-
kind: "search" | "delete" | "edit" | "move" | "other" | "read" | "execute" | "think" | "fetch";
|
|
6538
|
-
status: "completed" | "failed" | "pending" | "in_progress";
|
|
6539
6537
|
title: string;
|
|
6538
|
+
status: "completed" | "failed" | "pending" | "in_progress";
|
|
6539
|
+
kind: "search" | "delete" | "move" | "edit" | "other" | "read" | "execute" | "think" | "fetch";
|
|
6540
6540
|
toolCallId: string;
|
|
6541
6541
|
sessionUpdate: "tool_call";
|
|
6542
6542
|
content?: ({
|
|
@@ -6568,8 +6568,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
6568
6568
|
lastModified?: string | null | undefined;
|
|
6569
6569
|
} | null | undefined;
|
|
6570
6570
|
} | {
|
|
6571
|
-
type: "resource_link";
|
|
6572
6571
|
name: string;
|
|
6572
|
+
type: "resource_link";
|
|
6573
6573
|
uri: string;
|
|
6574
6574
|
description?: string | null | undefined;
|
|
6575
6575
|
title?: string | null | undefined;
|
|
@@ -6609,9 +6609,9 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
6609
6609
|
}[] | undefined;
|
|
6610
6610
|
rawInput?: unknown;
|
|
6611
6611
|
}, {
|
|
6612
|
-
kind: "search" | "delete" | "edit" | "move" | "other" | "read" | "execute" | "think" | "fetch";
|
|
6613
|
-
status: "completed" | "failed" | "pending" | "in_progress";
|
|
6614
6612
|
title: string;
|
|
6613
|
+
status: "completed" | "failed" | "pending" | "in_progress";
|
|
6614
|
+
kind: "search" | "delete" | "move" | "edit" | "other" | "read" | "execute" | "think" | "fetch";
|
|
6615
6615
|
toolCallId: string;
|
|
6616
6616
|
sessionUpdate: "tool_call";
|
|
6617
6617
|
content?: ({
|
|
@@ -6643,8 +6643,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
6643
6643
|
lastModified?: string | null | undefined;
|
|
6644
6644
|
} | null | undefined;
|
|
6645
6645
|
} | {
|
|
6646
|
-
type: "resource_link";
|
|
6647
6646
|
name: string;
|
|
6647
|
+
type: "resource_link";
|
|
6648
6648
|
uri: string;
|
|
6649
6649
|
description?: string | null | undefined;
|
|
6650
6650
|
title?: string | null | undefined;
|
|
@@ -6809,8 +6809,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
6809
6809
|
type: z.ZodLiteral<"resource_link">;
|
|
6810
6810
|
uri: z.ZodString;
|
|
6811
6811
|
}, "strip", z.ZodTypeAny, {
|
|
6812
|
-
type: "resource_link";
|
|
6813
6812
|
name: string;
|
|
6813
|
+
type: "resource_link";
|
|
6814
6814
|
uri: string;
|
|
6815
6815
|
description?: string | null | undefined;
|
|
6816
6816
|
title?: string | null | undefined;
|
|
@@ -6822,8 +6822,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
6822
6822
|
lastModified?: string | null | undefined;
|
|
6823
6823
|
} | null | undefined;
|
|
6824
6824
|
}, {
|
|
6825
|
-
type: "resource_link";
|
|
6826
6825
|
name: string;
|
|
6826
|
+
type: "resource_link";
|
|
6827
6827
|
uri: string;
|
|
6828
6828
|
description?: string | null | undefined;
|
|
6829
6829
|
title?: string | null | undefined;
|
|
@@ -6937,8 +6937,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
6937
6937
|
lastModified?: string | null | undefined;
|
|
6938
6938
|
} | null | undefined;
|
|
6939
6939
|
} | {
|
|
6940
|
-
type: "resource_link";
|
|
6941
6940
|
name: string;
|
|
6941
|
+
type: "resource_link";
|
|
6942
6942
|
uri: string;
|
|
6943
6943
|
description?: string | null | undefined;
|
|
6944
6944
|
title?: string | null | undefined;
|
|
@@ -6995,8 +6995,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
6995
6995
|
lastModified?: string | null | undefined;
|
|
6996
6996
|
} | null | undefined;
|
|
6997
6997
|
} | {
|
|
6998
|
-
type: "resource_link";
|
|
6999
6998
|
name: string;
|
|
6999
|
+
type: "resource_link";
|
|
7000
7000
|
uri: string;
|
|
7001
7001
|
description?: string | null | undefined;
|
|
7002
7002
|
title?: string | null | undefined;
|
|
@@ -7088,8 +7088,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7088
7088
|
lastModified?: string | null | undefined;
|
|
7089
7089
|
} | null | undefined;
|
|
7090
7090
|
} | {
|
|
7091
|
-
type: "resource_link";
|
|
7092
7091
|
name: string;
|
|
7092
|
+
type: "resource_link";
|
|
7093
7093
|
uri: string;
|
|
7094
7094
|
description?: string | null | undefined;
|
|
7095
7095
|
title?: string | null | undefined;
|
|
@@ -7123,9 +7123,9 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7123
7123
|
newText: string;
|
|
7124
7124
|
oldText: string | null;
|
|
7125
7125
|
})[] | null | undefined;
|
|
7126
|
-
kind?: "search" | "delete" | "edit" | "move" | "other" | "read" | "execute" | "think" | "fetch" | null | undefined;
|
|
7127
|
-
status?: "completed" | "failed" | "pending" | "in_progress" | null | undefined;
|
|
7128
7126
|
title?: string | null | undefined;
|
|
7127
|
+
status?: "completed" | "failed" | "pending" | "in_progress" | null | undefined;
|
|
7128
|
+
kind?: "search" | "delete" | "move" | "edit" | "other" | "read" | "execute" | "think" | "fetch" | null | undefined;
|
|
7129
7129
|
locations?: {
|
|
7130
7130
|
path: string;
|
|
7131
7131
|
line?: number | null | undefined;
|
|
@@ -7163,8 +7163,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7163
7163
|
lastModified?: string | null | undefined;
|
|
7164
7164
|
} | null | undefined;
|
|
7165
7165
|
} | {
|
|
7166
|
-
type: "resource_link";
|
|
7167
7166
|
name: string;
|
|
7167
|
+
type: "resource_link";
|
|
7168
7168
|
uri: string;
|
|
7169
7169
|
description?: string | null | undefined;
|
|
7170
7170
|
title?: string | null | undefined;
|
|
@@ -7198,9 +7198,9 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7198
7198
|
newText: string;
|
|
7199
7199
|
oldText: string | null;
|
|
7200
7200
|
})[] | null | undefined;
|
|
7201
|
-
kind?: "search" | "delete" | "edit" | "move" | "other" | "read" | "execute" | "think" | "fetch" | null | undefined;
|
|
7202
|
-
status?: "completed" | "failed" | "pending" | "in_progress" | null | undefined;
|
|
7203
7201
|
title?: string | null | undefined;
|
|
7202
|
+
status?: "completed" | "failed" | "pending" | "in_progress" | null | undefined;
|
|
7203
|
+
kind?: "search" | "delete" | "move" | "edit" | "other" | "read" | "execute" | "think" | "fetch" | null | undefined;
|
|
7204
7204
|
locations?: {
|
|
7205
7205
|
path: string;
|
|
7206
7206
|
line?: number | null | undefined;
|
|
@@ -7247,14 +7247,14 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7247
7247
|
}>>>;
|
|
7248
7248
|
name: z.ZodString;
|
|
7249
7249
|
}, "strip", z.ZodTypeAny, {
|
|
7250
|
-
description: string;
|
|
7251
7250
|
name: string;
|
|
7251
|
+
description: string;
|
|
7252
7252
|
input?: {
|
|
7253
7253
|
hint: string;
|
|
7254
7254
|
} | null | undefined;
|
|
7255
7255
|
}, {
|
|
7256
|
-
description: string;
|
|
7257
7256
|
name: string;
|
|
7257
|
+
description: string;
|
|
7258
7258
|
input?: {
|
|
7259
7259
|
hint: string;
|
|
7260
7260
|
} | null | undefined;
|
|
@@ -7263,8 +7263,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7263
7263
|
}, "strip", z.ZodTypeAny, {
|
|
7264
7264
|
sessionUpdate: "available_commands_update";
|
|
7265
7265
|
availableCommands: {
|
|
7266
|
-
description: string;
|
|
7267
7266
|
name: string;
|
|
7267
|
+
description: string;
|
|
7268
7268
|
input?: {
|
|
7269
7269
|
hint: string;
|
|
7270
7270
|
} | null | undefined;
|
|
@@ -7272,14 +7272,15 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7272
7272
|
}, {
|
|
7273
7273
|
sessionUpdate: "available_commands_update";
|
|
7274
7274
|
availableCommands: {
|
|
7275
|
-
description: string;
|
|
7276
7275
|
name: string;
|
|
7276
|
+
description: string;
|
|
7277
7277
|
input?: {
|
|
7278
7278
|
hint: string;
|
|
7279
7279
|
} | null | undefined;
|
|
7280
7280
|
}[];
|
|
7281
7281
|
}>]>;
|
|
7282
7282
|
}, "strip", z.ZodTypeAny, {
|
|
7283
|
+
sessionId: string;
|
|
7283
7284
|
update: {
|
|
7284
7285
|
content: {
|
|
7285
7286
|
text: string;
|
|
@@ -7308,8 +7309,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7308
7309
|
lastModified?: string | null | undefined;
|
|
7309
7310
|
} | null | undefined;
|
|
7310
7311
|
} | {
|
|
7311
|
-
type: "resource_link";
|
|
7312
7312
|
name: string;
|
|
7313
|
+
type: "resource_link";
|
|
7313
7314
|
uri: string;
|
|
7314
7315
|
description?: string | null | undefined;
|
|
7315
7316
|
title?: string | null | undefined;
|
|
@@ -7366,8 +7367,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7366
7367
|
lastModified?: string | null | undefined;
|
|
7367
7368
|
} | null | undefined;
|
|
7368
7369
|
} | {
|
|
7369
|
-
type: "resource_link";
|
|
7370
7370
|
name: string;
|
|
7371
|
+
type: "resource_link";
|
|
7371
7372
|
uri: string;
|
|
7372
7373
|
description?: string | null | undefined;
|
|
7373
7374
|
title?: string | null | undefined;
|
|
@@ -7424,8 +7425,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7424
7425
|
lastModified?: string | null | undefined;
|
|
7425
7426
|
} | null | undefined;
|
|
7426
7427
|
} | {
|
|
7427
|
-
type: "resource_link";
|
|
7428
7428
|
name: string;
|
|
7429
|
+
type: "resource_link";
|
|
7429
7430
|
uri: string;
|
|
7430
7431
|
description?: string | null | undefined;
|
|
7431
7432
|
title?: string | null | undefined;
|
|
@@ -7455,9 +7456,9 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7455
7456
|
};
|
|
7456
7457
|
sessionUpdate: "agent_thought_chunk";
|
|
7457
7458
|
} | {
|
|
7458
|
-
kind: "search" | "delete" | "edit" | "move" | "other" | "read" | "execute" | "think" | "fetch";
|
|
7459
|
-
status: "completed" | "failed" | "pending" | "in_progress";
|
|
7460
7459
|
title: string;
|
|
7460
|
+
status: "completed" | "failed" | "pending" | "in_progress";
|
|
7461
|
+
kind: "search" | "delete" | "move" | "edit" | "other" | "read" | "execute" | "think" | "fetch";
|
|
7461
7462
|
toolCallId: string;
|
|
7462
7463
|
sessionUpdate: "tool_call";
|
|
7463
7464
|
content?: ({
|
|
@@ -7489,8 +7490,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7489
7490
|
lastModified?: string | null | undefined;
|
|
7490
7491
|
} | null | undefined;
|
|
7491
7492
|
} | {
|
|
7492
|
-
type: "resource_link";
|
|
7493
7493
|
name: string;
|
|
7494
|
+
type: "resource_link";
|
|
7494
7495
|
uri: string;
|
|
7495
7496
|
description?: string | null | undefined;
|
|
7496
7497
|
title?: string | null | undefined;
|
|
@@ -7561,8 +7562,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7561
7562
|
lastModified?: string | null | undefined;
|
|
7562
7563
|
} | null | undefined;
|
|
7563
7564
|
} | {
|
|
7564
|
-
type: "resource_link";
|
|
7565
7565
|
name: string;
|
|
7566
|
+
type: "resource_link";
|
|
7566
7567
|
uri: string;
|
|
7567
7568
|
description?: string | null | undefined;
|
|
7568
7569
|
title?: string | null | undefined;
|
|
@@ -7596,9 +7597,9 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7596
7597
|
newText: string;
|
|
7597
7598
|
oldText: string | null;
|
|
7598
7599
|
})[] | null | undefined;
|
|
7599
|
-
kind?: "search" | "delete" | "edit" | "move" | "other" | "read" | "execute" | "think" | "fetch" | null | undefined;
|
|
7600
|
-
status?: "completed" | "failed" | "pending" | "in_progress" | null | undefined;
|
|
7601
7600
|
title?: string | null | undefined;
|
|
7601
|
+
status?: "completed" | "failed" | "pending" | "in_progress" | null | undefined;
|
|
7602
|
+
kind?: "search" | "delete" | "move" | "edit" | "other" | "read" | "execute" | "think" | "fetch" | null | undefined;
|
|
7602
7603
|
locations?: {
|
|
7603
7604
|
path: string;
|
|
7604
7605
|
line?: number | null | undefined;
|
|
@@ -7614,15 +7615,15 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7614
7615
|
} | {
|
|
7615
7616
|
sessionUpdate: "available_commands_update";
|
|
7616
7617
|
availableCommands: {
|
|
7617
|
-
description: string;
|
|
7618
7618
|
name: string;
|
|
7619
|
+
description: string;
|
|
7619
7620
|
input?: {
|
|
7620
7621
|
hint: string;
|
|
7621
7622
|
} | null | undefined;
|
|
7622
7623
|
}[];
|
|
7623
7624
|
};
|
|
7624
|
-
sessionId: string;
|
|
7625
7625
|
}, {
|
|
7626
|
+
sessionId: string;
|
|
7626
7627
|
update: {
|
|
7627
7628
|
content: {
|
|
7628
7629
|
text: string;
|
|
@@ -7651,8 +7652,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7651
7652
|
lastModified?: string | null | undefined;
|
|
7652
7653
|
} | null | undefined;
|
|
7653
7654
|
} | {
|
|
7654
|
-
type: "resource_link";
|
|
7655
7655
|
name: string;
|
|
7656
|
+
type: "resource_link";
|
|
7656
7657
|
uri: string;
|
|
7657
7658
|
description?: string | null | undefined;
|
|
7658
7659
|
title?: string | null | undefined;
|
|
@@ -7709,8 +7710,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7709
7710
|
lastModified?: string | null | undefined;
|
|
7710
7711
|
} | null | undefined;
|
|
7711
7712
|
} | {
|
|
7712
|
-
type: "resource_link";
|
|
7713
7713
|
name: string;
|
|
7714
|
+
type: "resource_link";
|
|
7714
7715
|
uri: string;
|
|
7715
7716
|
description?: string | null | undefined;
|
|
7716
7717
|
title?: string | null | undefined;
|
|
@@ -7767,8 +7768,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7767
7768
|
lastModified?: string | null | undefined;
|
|
7768
7769
|
} | null | undefined;
|
|
7769
7770
|
} | {
|
|
7770
|
-
type: "resource_link";
|
|
7771
7771
|
name: string;
|
|
7772
|
+
type: "resource_link";
|
|
7772
7773
|
uri: string;
|
|
7773
7774
|
description?: string | null | undefined;
|
|
7774
7775
|
title?: string | null | undefined;
|
|
@@ -7798,9 +7799,9 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7798
7799
|
};
|
|
7799
7800
|
sessionUpdate: "agent_thought_chunk";
|
|
7800
7801
|
} | {
|
|
7801
|
-
kind: "search" | "delete" | "edit" | "move" | "other" | "read" | "execute" | "think" | "fetch";
|
|
7802
|
-
status: "completed" | "failed" | "pending" | "in_progress";
|
|
7803
7802
|
title: string;
|
|
7803
|
+
status: "completed" | "failed" | "pending" | "in_progress";
|
|
7804
|
+
kind: "search" | "delete" | "move" | "edit" | "other" | "read" | "execute" | "think" | "fetch";
|
|
7804
7805
|
toolCallId: string;
|
|
7805
7806
|
sessionUpdate: "tool_call";
|
|
7806
7807
|
content?: ({
|
|
@@ -7832,8 +7833,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7832
7833
|
lastModified?: string | null | undefined;
|
|
7833
7834
|
} | null | undefined;
|
|
7834
7835
|
} | {
|
|
7835
|
-
type: "resource_link";
|
|
7836
7836
|
name: string;
|
|
7837
|
+
type: "resource_link";
|
|
7837
7838
|
uri: string;
|
|
7838
7839
|
description?: string | null | undefined;
|
|
7839
7840
|
title?: string | null | undefined;
|
|
@@ -7904,8 +7905,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7904
7905
|
lastModified?: string | null | undefined;
|
|
7905
7906
|
} | null | undefined;
|
|
7906
7907
|
} | {
|
|
7907
|
-
type: "resource_link";
|
|
7908
7908
|
name: string;
|
|
7909
|
+
type: "resource_link";
|
|
7909
7910
|
uri: string;
|
|
7910
7911
|
description?: string | null | undefined;
|
|
7911
7912
|
title?: string | null | undefined;
|
|
@@ -7939,9 +7940,9 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7939
7940
|
newText: string;
|
|
7940
7941
|
oldText: string | null;
|
|
7941
7942
|
})[] | null | undefined;
|
|
7942
|
-
kind?: "search" | "delete" | "edit" | "move" | "other" | "read" | "execute" | "think" | "fetch" | null | undefined;
|
|
7943
|
-
status?: "completed" | "failed" | "pending" | "in_progress" | null | undefined;
|
|
7944
7943
|
title?: string | null | undefined;
|
|
7944
|
+
status?: "completed" | "failed" | "pending" | "in_progress" | null | undefined;
|
|
7945
|
+
kind?: "search" | "delete" | "move" | "edit" | "other" | "read" | "execute" | "think" | "fetch" | null | undefined;
|
|
7945
7946
|
locations?: {
|
|
7946
7947
|
path: string;
|
|
7947
7948
|
line?: number | null | undefined;
|
|
@@ -7957,26 +7958,25 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7957
7958
|
} | {
|
|
7958
7959
|
sessionUpdate: "available_commands_update";
|
|
7959
7960
|
availableCommands: {
|
|
7960
|
-
description: string;
|
|
7961
7961
|
name: string;
|
|
7962
|
+
description: string;
|
|
7962
7963
|
input?: {
|
|
7963
7964
|
hint: string;
|
|
7964
7965
|
} | null | undefined;
|
|
7965
7966
|
}[];
|
|
7966
7967
|
};
|
|
7967
|
-
sessionId: string;
|
|
7968
7968
|
}>;
|
|
7969
7969
|
export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
7970
7970
|
content: z.ZodString;
|
|
7971
7971
|
path: z.ZodString;
|
|
7972
7972
|
sessionId: z.ZodString;
|
|
7973
7973
|
}, "strip", z.ZodTypeAny, {
|
|
7974
|
-
content: string;
|
|
7975
7974
|
path: string;
|
|
7975
|
+
content: string;
|
|
7976
7976
|
sessionId: string;
|
|
7977
7977
|
}, {
|
|
7978
|
-
content: string;
|
|
7979
7978
|
path: string;
|
|
7979
|
+
content: string;
|
|
7980
7980
|
sessionId: string;
|
|
7981
7981
|
}>, z.ZodObject<{
|
|
7982
7982
|
limit: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -8134,8 +8134,8 @@ 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
|
-
type: "resource_link";
|
|
8138
8137
|
name: string;
|
|
8138
|
+
type: "resource_link";
|
|
8139
8139
|
uri: string;
|
|
8140
8140
|
description?: string | null | undefined;
|
|
8141
8141
|
title?: string | null | undefined;
|
|
@@ -8147,8 +8147,8 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8147
8147
|
lastModified?: string | null | undefined;
|
|
8148
8148
|
} | null | undefined;
|
|
8149
8149
|
}, {
|
|
8150
|
-
type: "resource_link";
|
|
8151
8150
|
name: string;
|
|
8151
|
+
type: "resource_link";
|
|
8152
8152
|
uri: string;
|
|
8153
8153
|
description?: string | null | undefined;
|
|
8154
8154
|
title?: string | null | undefined;
|
|
@@ -8262,8 +8262,8 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8262
8262
|
lastModified?: string | null | undefined;
|
|
8263
8263
|
} | null | undefined;
|
|
8264
8264
|
} | {
|
|
8265
|
-
type: "resource_link";
|
|
8266
8265
|
name: string;
|
|
8266
|
+
type: "resource_link";
|
|
8267
8267
|
uri: string;
|
|
8268
8268
|
description?: string | null | undefined;
|
|
8269
8269
|
title?: string | null | undefined;
|
|
@@ -8320,8 +8320,8 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8320
8320
|
lastModified?: string | null | undefined;
|
|
8321
8321
|
} | null | undefined;
|
|
8322
8322
|
} | {
|
|
8323
|
-
type: "resource_link";
|
|
8324
8323
|
name: string;
|
|
8324
|
+
type: "resource_link";
|
|
8325
8325
|
uri: string;
|
|
8326
8326
|
description?: string | null | undefined;
|
|
8327
8327
|
title?: string | 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
|
-
kind: "search" | "delete" | "edit" | "move" | "other" | "read" | "execute" | "think" | "fetch";
|
|
8385
|
-
status: "completed" | "failed" | "pending" | "in_progress";
|
|
8386
8384
|
title: string;
|
|
8385
|
+
status: "completed" | "failed" | "pending" | "in_progress";
|
|
8386
|
+
kind: "search" | "delete" | "move" | "edit" | "other" | "read" | "execute" | "think" | "fetch";
|
|
8387
8387
|
toolCallId: string;
|
|
8388
8388
|
content?: ({
|
|
8389
8389
|
type: "content";
|
|
@@ -8414,8 +8414,8 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8414
8414
|
lastModified?: string | null | undefined;
|
|
8415
8415
|
} | null | undefined;
|
|
8416
8416
|
} | {
|
|
8417
|
-
type: "resource_link";
|
|
8418
8417
|
name: string;
|
|
8418
|
+
type: "resource_link";
|
|
8419
8419
|
uri: string;
|
|
8420
8420
|
description?: string | null | undefined;
|
|
8421
8421
|
title?: string | null | undefined;
|
|
@@ -8455,9 +8455,9 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8455
8455
|
}[] | undefined;
|
|
8456
8456
|
rawInput?: unknown;
|
|
8457
8457
|
}, {
|
|
8458
|
-
kind: "search" | "delete" | "edit" | "move" | "other" | "read" | "execute" | "think" | "fetch";
|
|
8459
|
-
status: "completed" | "failed" | "pending" | "in_progress";
|
|
8460
8458
|
title: string;
|
|
8459
|
+
status: "completed" | "failed" | "pending" | "in_progress";
|
|
8460
|
+
kind: "search" | "delete" | "move" | "edit" | "other" | "read" | "execute" | "think" | "fetch";
|
|
8461
8461
|
toolCallId: string;
|
|
8462
8462
|
content?: ({
|
|
8463
8463
|
type: "content";
|
|
@@ -8488,8 +8488,8 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8488
8488
|
lastModified?: string | null | undefined;
|
|
8489
8489
|
} | null | undefined;
|
|
8490
8490
|
} | {
|
|
8491
|
-
type: "resource_link";
|
|
8492
8491
|
name: string;
|
|
8492
|
+
type: "resource_link";
|
|
8493
8493
|
uri: string;
|
|
8494
8494
|
description?: string | null | undefined;
|
|
8495
8495
|
title?: string | null | undefined;
|
|
@@ -8537,9 +8537,9 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8537
8537
|
}[];
|
|
8538
8538
|
sessionId: string;
|
|
8539
8539
|
toolCall: {
|
|
8540
|
-
kind: "search" | "delete" | "edit" | "move" | "other" | "read" | "execute" | "think" | "fetch";
|
|
8541
|
-
status: "completed" | "failed" | "pending" | "in_progress";
|
|
8542
8540
|
title: string;
|
|
8541
|
+
status: "completed" | "failed" | "pending" | "in_progress";
|
|
8542
|
+
kind: "search" | "delete" | "move" | "edit" | "other" | "read" | "execute" | "think" | "fetch";
|
|
8543
8543
|
toolCallId: string;
|
|
8544
8544
|
content?: ({
|
|
8545
8545
|
type: "content";
|
|
@@ -8570,8 +8570,8 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8570
8570
|
lastModified?: string | null | undefined;
|
|
8571
8571
|
} | null | undefined;
|
|
8572
8572
|
} | {
|
|
8573
|
-
type: "resource_link";
|
|
8574
8573
|
name: string;
|
|
8574
|
+
type: "resource_link";
|
|
8575
8575
|
uri: string;
|
|
8576
8576
|
description?: string | null | undefined;
|
|
8577
8577
|
title?: string | null | undefined;
|
|
@@ -8619,9 +8619,9 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8619
8619
|
}[];
|
|
8620
8620
|
sessionId: string;
|
|
8621
8621
|
toolCall: {
|
|
8622
|
-
kind: "search" | "delete" | "edit" | "move" | "other" | "read" | "execute" | "think" | "fetch";
|
|
8623
|
-
status: "completed" | "failed" | "pending" | "in_progress";
|
|
8624
8622
|
title: string;
|
|
8623
|
+
status: "completed" | "failed" | "pending" | "in_progress";
|
|
8624
|
+
kind: "search" | "delete" | "move" | "edit" | "other" | "read" | "execute" | "think" | "fetch";
|
|
8625
8625
|
toolCallId: string;
|
|
8626
8626
|
content?: ({
|
|
8627
8627
|
type: "content";
|
|
@@ -8652,8 +8652,8 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8652
8652
|
lastModified?: string | null | undefined;
|
|
8653
8653
|
} | null | undefined;
|
|
8654
8654
|
} | {
|
|
8655
|
-
type: "resource_link";
|
|
8656
8655
|
name: string;
|
|
8656
|
+
type: "resource_link";
|
|
8657
8657
|
uri: string;
|
|
8658
8658
|
description?: string | null | undefined;
|
|
8659
8659
|
title?: string | null | undefined;
|
|
@@ -8978,8 +8978,8 @@ 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
|
-
type: "resource_link";
|
|
8982
8981
|
name: string;
|
|
8982
|
+
type: "resource_link";
|
|
8983
8983
|
uri: string;
|
|
8984
8984
|
description?: string | null | undefined;
|
|
8985
8985
|
title?: string | null | undefined;
|
|
@@ -8991,8 +8991,8 @@ export declare const agentRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8991
8991
|
lastModified?: string | null | undefined;
|
|
8992
8992
|
} | null | undefined;
|
|
8993
8993
|
}, {
|
|
8994
|
-
type: "resource_link";
|
|
8995
8994
|
name: string;
|
|
8995
|
+
type: "resource_link";
|
|
8996
8996
|
uri: string;
|
|
8997
8997
|
description?: string | null | undefined;
|
|
8998
8998
|
title?: string | null | undefined;
|
|
@@ -9105,8 +9105,8 @@ export declare const agentRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
9105
9105
|
lastModified?: string | null | undefined;
|
|
9106
9106
|
} | null | undefined;
|
|
9107
9107
|
} | {
|
|
9108
|
-
type: "resource_link";
|
|
9109
9108
|
name: string;
|
|
9109
|
+
type: "resource_link";
|
|
9110
9110
|
uri: string;
|
|
9111
9111
|
description?: string | null | undefined;
|
|
9112
9112
|
title?: string | null | undefined;
|
|
@@ -9163,8 +9163,8 @@ export declare const agentRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
9163
9163
|
lastModified?: string | null | undefined;
|
|
9164
9164
|
} | null | undefined;
|
|
9165
9165
|
} | {
|
|
9166
|
-
type: "resource_link";
|
|
9167
9166
|
name: string;
|
|
9167
|
+
type: "resource_link";
|
|
9168
9168
|
uri: string;
|
|
9169
9169
|
description?: string | null | undefined;
|
|
9170
9170
|
title?: string | null | undefined;
|
|
@@ -9321,8 +9321,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
9321
9321
|
type: z.ZodLiteral<"resource_link">;
|
|
9322
9322
|
uri: z.ZodString;
|
|
9323
9323
|
}, "strip", z.ZodTypeAny, {
|
|
9324
|
-
type: "resource_link";
|
|
9325
9324
|
name: string;
|
|
9325
|
+
type: "resource_link";
|
|
9326
9326
|
uri: string;
|
|
9327
9327
|
description?: string | null | undefined;
|
|
9328
9328
|
title?: string | null | undefined;
|
|
@@ -9334,8 +9334,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
9334
9334
|
lastModified?: string | null | undefined;
|
|
9335
9335
|
} | null | undefined;
|
|
9336
9336
|
}, {
|
|
9337
|
-
type: "resource_link";
|
|
9338
9337
|
name: string;
|
|
9338
|
+
type: "resource_link";
|
|
9339
9339
|
uri: string;
|
|
9340
9340
|
description?: string | null | undefined;
|
|
9341
9341
|
title?: string | null | undefined;
|
|
@@ -9448,8 +9448,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
9448
9448
|
lastModified?: string | null | undefined;
|
|
9449
9449
|
} | null | undefined;
|
|
9450
9450
|
} | {
|
|
9451
|
-
type: "resource_link";
|
|
9452
9451
|
name: string;
|
|
9452
|
+
type: "resource_link";
|
|
9453
9453
|
uri: string;
|
|
9454
9454
|
description?: string | null | undefined;
|
|
9455
9455
|
title?: string | null | undefined;
|
|
@@ -9506,8 +9506,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
9506
9506
|
lastModified?: string | null | undefined;
|
|
9507
9507
|
} | null | undefined;
|
|
9508
9508
|
} | {
|
|
9509
|
-
type: "resource_link";
|
|
9510
9509
|
name: string;
|
|
9510
|
+
type: "resource_link";
|
|
9511
9511
|
uri: string;
|
|
9512
9512
|
description?: string | null | undefined;
|
|
9513
9513
|
title?: string | null | undefined;
|
|
@@ -9661,8 +9661,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
9661
9661
|
type: z.ZodLiteral<"resource_link">;
|
|
9662
9662
|
uri: z.ZodString;
|
|
9663
9663
|
}, "strip", z.ZodTypeAny, {
|
|
9664
|
-
type: "resource_link";
|
|
9665
9664
|
name: string;
|
|
9665
|
+
type: "resource_link";
|
|
9666
9666
|
uri: string;
|
|
9667
9667
|
description?: string | null | undefined;
|
|
9668
9668
|
title?: string | null | undefined;
|
|
@@ -9674,8 +9674,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
9674
9674
|
lastModified?: string | null | undefined;
|
|
9675
9675
|
} | null | undefined;
|
|
9676
9676
|
}, {
|
|
9677
|
-
type: "resource_link";
|
|
9678
9677
|
name: string;
|
|
9678
|
+
type: "resource_link";
|
|
9679
9679
|
uri: string;
|
|
9680
9680
|
description?: string | null | undefined;
|
|
9681
9681
|
title?: string | null | undefined;
|
|
@@ -9788,8 +9788,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
9788
9788
|
lastModified?: string | null | undefined;
|
|
9789
9789
|
} | null | undefined;
|
|
9790
9790
|
} | {
|
|
9791
|
-
type: "resource_link";
|
|
9792
9791
|
name: string;
|
|
9792
|
+
type: "resource_link";
|
|
9793
9793
|
uri: string;
|
|
9794
9794
|
description?: string | null | undefined;
|
|
9795
9795
|
title?: string | null | undefined;
|
|
@@ -9846,8 +9846,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
9846
9846
|
lastModified?: string | null | undefined;
|
|
9847
9847
|
} | null | undefined;
|
|
9848
9848
|
} | {
|
|
9849
|
-
type: "resource_link";
|
|
9850
9849
|
name: string;
|
|
9850
|
+
type: "resource_link";
|
|
9851
9851
|
uri: string;
|
|
9852
9852
|
description?: string | null | undefined;
|
|
9853
9853
|
title?: string | null | undefined;
|
|
@@ -10001,8 +10001,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
10001
10001
|
type: z.ZodLiteral<"resource_link">;
|
|
10002
10002
|
uri: z.ZodString;
|
|
10003
10003
|
}, "strip", z.ZodTypeAny, {
|
|
10004
|
-
type: "resource_link";
|
|
10005
10004
|
name: string;
|
|
10005
|
+
type: "resource_link";
|
|
10006
10006
|
uri: string;
|
|
10007
10007
|
description?: string | null | undefined;
|
|
10008
10008
|
title?: string | null | undefined;
|
|
@@ -10014,8 +10014,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
10014
10014
|
lastModified?: string | null | undefined;
|
|
10015
10015
|
} | null | undefined;
|
|
10016
10016
|
}, {
|
|
10017
|
-
type: "resource_link";
|
|
10018
10017
|
name: string;
|
|
10018
|
+
type: "resource_link";
|
|
10019
10019
|
uri: string;
|
|
10020
10020
|
description?: string | null | undefined;
|
|
10021
10021
|
title?: string | null | undefined;
|
|
@@ -10128,8 +10128,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
10128
10128
|
lastModified?: string | null | undefined;
|
|
10129
10129
|
} | null | undefined;
|
|
10130
10130
|
} | {
|
|
10131
|
-
type: "resource_link";
|
|
10132
10131
|
name: string;
|
|
10132
|
+
type: "resource_link";
|
|
10133
10133
|
uri: string;
|
|
10134
10134
|
description?: string | null | undefined;
|
|
10135
10135
|
title?: string | null | undefined;
|
|
@@ -10186,8 +10186,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
10186
10186
|
lastModified?: string | null | undefined;
|
|
10187
10187
|
} | null | undefined;
|
|
10188
10188
|
} | {
|
|
10189
|
-
type: "resource_link";
|
|
10190
10189
|
name: string;
|
|
10190
|
+
type: "resource_link";
|
|
10191
10191
|
uri: string;
|
|
10192
10192
|
description?: string | null | undefined;
|
|
10193
10193
|
title?: string | null | undefined;
|
|
@@ -10342,8 +10342,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
10342
10342
|
type: z.ZodLiteral<"resource_link">;
|
|
10343
10343
|
uri: z.ZodString;
|
|
10344
10344
|
}, "strip", z.ZodTypeAny, {
|
|
10345
|
-
type: "resource_link";
|
|
10346
10345
|
name: string;
|
|
10346
|
+
type: "resource_link";
|
|
10347
10347
|
uri: string;
|
|
10348
10348
|
description?: string | null | undefined;
|
|
10349
10349
|
title?: string | null | undefined;
|
|
@@ -10355,8 +10355,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
10355
10355
|
lastModified?: string | null | undefined;
|
|
10356
10356
|
} | null | undefined;
|
|
10357
10357
|
}, {
|
|
10358
|
-
type: "resource_link";
|
|
10359
10358
|
name: string;
|
|
10359
|
+
type: "resource_link";
|
|
10360
10360
|
uri: string;
|
|
10361
10361
|
description?: string | null | undefined;
|
|
10362
10362
|
title?: string | null | undefined;
|
|
@@ -10470,8 +10470,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
10470
10470
|
lastModified?: string | null | undefined;
|
|
10471
10471
|
} | null | undefined;
|
|
10472
10472
|
} | {
|
|
10473
|
-
type: "resource_link";
|
|
10474
10473
|
name: string;
|
|
10474
|
+
type: "resource_link";
|
|
10475
10475
|
uri: string;
|
|
10476
10476
|
description?: string | null | undefined;
|
|
10477
10477
|
title?: string | null | undefined;
|
|
@@ -10528,8 +10528,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
10528
10528
|
lastModified?: string | null | undefined;
|
|
10529
10529
|
} | null | undefined;
|
|
10530
10530
|
} | {
|
|
10531
|
-
type: "resource_link";
|
|
10532
10531
|
name: string;
|
|
10532
|
+
type: "resource_link";
|
|
10533
10533
|
uri: string;
|
|
10534
10534
|
description?: string | null | undefined;
|
|
10535
10535
|
title?: string | 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
|
-
kind: "search" | "delete" | "edit" | "move" | "other" | "read" | "execute" | "think" | "fetch";
|
|
10594
|
-
status: "completed" | "failed" | "pending" | "in_progress";
|
|
10595
10593
|
title: string;
|
|
10594
|
+
status: "completed" | "failed" | "pending" | "in_progress";
|
|
10595
|
+
kind: "search" | "delete" | "move" | "edit" | "other" | "read" | "execute" | "think" | "fetch";
|
|
10596
10596
|
toolCallId: string;
|
|
10597
10597
|
sessionUpdate: "tool_call";
|
|
10598
10598
|
content?: ({
|
|
@@ -10624,8 +10624,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
10624
10624
|
lastModified?: string | null | undefined;
|
|
10625
10625
|
} | null | undefined;
|
|
10626
10626
|
} | {
|
|
10627
|
-
type: "resource_link";
|
|
10628
10627
|
name: string;
|
|
10628
|
+
type: "resource_link";
|
|
10629
10629
|
uri: string;
|
|
10630
10630
|
description?: string | null | undefined;
|
|
10631
10631
|
title?: string | null | undefined;
|
|
@@ -10665,9 +10665,9 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
10665
10665
|
}[] | undefined;
|
|
10666
10666
|
rawInput?: unknown;
|
|
10667
10667
|
}, {
|
|
10668
|
-
kind: "search" | "delete" | "edit" | "move" | "other" | "read" | "execute" | "think" | "fetch";
|
|
10669
|
-
status: "completed" | "failed" | "pending" | "in_progress";
|
|
10670
10668
|
title: string;
|
|
10669
|
+
status: "completed" | "failed" | "pending" | "in_progress";
|
|
10670
|
+
kind: "search" | "delete" | "move" | "edit" | "other" | "read" | "execute" | "think" | "fetch";
|
|
10671
10671
|
toolCallId: string;
|
|
10672
10672
|
sessionUpdate: "tool_call";
|
|
10673
10673
|
content?: ({
|
|
@@ -10699,8 +10699,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
10699
10699
|
lastModified?: string | null | undefined;
|
|
10700
10700
|
} | null | undefined;
|
|
10701
10701
|
} | {
|
|
10702
|
-
type: "resource_link";
|
|
10703
10702
|
name: string;
|
|
10703
|
+
type: "resource_link";
|
|
10704
10704
|
uri: string;
|
|
10705
10705
|
description?: string | null | undefined;
|
|
10706
10706
|
title?: string | null | undefined;
|
|
@@ -10865,8 +10865,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
10865
10865
|
type: z.ZodLiteral<"resource_link">;
|
|
10866
10866
|
uri: z.ZodString;
|
|
10867
10867
|
}, "strip", z.ZodTypeAny, {
|
|
10868
|
-
type: "resource_link";
|
|
10869
10868
|
name: string;
|
|
10869
|
+
type: "resource_link";
|
|
10870
10870
|
uri: string;
|
|
10871
10871
|
description?: string | null | undefined;
|
|
10872
10872
|
title?: string | null | undefined;
|
|
@@ -10878,8 +10878,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
10878
10878
|
lastModified?: string | null | undefined;
|
|
10879
10879
|
} | null | undefined;
|
|
10880
10880
|
}, {
|
|
10881
|
-
type: "resource_link";
|
|
10882
10881
|
name: string;
|
|
10882
|
+
type: "resource_link";
|
|
10883
10883
|
uri: string;
|
|
10884
10884
|
description?: string | null | undefined;
|
|
10885
10885
|
title?: string | null | undefined;
|
|
@@ -10993,8 +10993,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
10993
10993
|
lastModified?: string | null | undefined;
|
|
10994
10994
|
} | null | undefined;
|
|
10995
10995
|
} | {
|
|
10996
|
-
type: "resource_link";
|
|
10997
10996
|
name: string;
|
|
10997
|
+
type: "resource_link";
|
|
10998
10998
|
uri: string;
|
|
10999
10999
|
description?: string | null | undefined;
|
|
11000
11000
|
title?: string | null | undefined;
|
|
@@ -11051,8 +11051,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11051
11051
|
lastModified?: string | null | undefined;
|
|
11052
11052
|
} | null | undefined;
|
|
11053
11053
|
} | {
|
|
11054
|
-
type: "resource_link";
|
|
11055
11054
|
name: string;
|
|
11055
|
+
type: "resource_link";
|
|
11056
11056
|
uri: string;
|
|
11057
11057
|
description?: string | null | undefined;
|
|
11058
11058
|
title?: string | null | undefined;
|
|
@@ -11144,8 +11144,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11144
11144
|
lastModified?: string | null | undefined;
|
|
11145
11145
|
} | null | undefined;
|
|
11146
11146
|
} | {
|
|
11147
|
-
type: "resource_link";
|
|
11148
11147
|
name: string;
|
|
11148
|
+
type: "resource_link";
|
|
11149
11149
|
uri: string;
|
|
11150
11150
|
description?: string | null | undefined;
|
|
11151
11151
|
title?: string | null | undefined;
|
|
@@ -11179,9 +11179,9 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11179
11179
|
newText: string;
|
|
11180
11180
|
oldText: string | null;
|
|
11181
11181
|
})[] | null | undefined;
|
|
11182
|
-
kind?: "search" | "delete" | "edit" | "move" | "other" | "read" | "execute" | "think" | "fetch" | null | undefined;
|
|
11183
|
-
status?: "completed" | "failed" | "pending" | "in_progress" | null | undefined;
|
|
11184
11182
|
title?: string | null | undefined;
|
|
11183
|
+
status?: "completed" | "failed" | "pending" | "in_progress" | null | undefined;
|
|
11184
|
+
kind?: "search" | "delete" | "move" | "edit" | "other" | "read" | "execute" | "think" | "fetch" | null | undefined;
|
|
11185
11185
|
locations?: {
|
|
11186
11186
|
path: string;
|
|
11187
11187
|
line?: number | null | undefined;
|
|
@@ -11219,8 +11219,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11219
11219
|
lastModified?: string | null | undefined;
|
|
11220
11220
|
} | null | undefined;
|
|
11221
11221
|
} | {
|
|
11222
|
-
type: "resource_link";
|
|
11223
11222
|
name: string;
|
|
11223
|
+
type: "resource_link";
|
|
11224
11224
|
uri: string;
|
|
11225
11225
|
description?: string | null | undefined;
|
|
11226
11226
|
title?: string | null | undefined;
|
|
@@ -11254,9 +11254,9 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11254
11254
|
newText: string;
|
|
11255
11255
|
oldText: string | null;
|
|
11256
11256
|
})[] | null | undefined;
|
|
11257
|
-
kind?: "search" | "delete" | "edit" | "move" | "other" | "read" | "execute" | "think" | "fetch" | null | undefined;
|
|
11258
|
-
status?: "completed" | "failed" | "pending" | "in_progress" | null | undefined;
|
|
11259
11257
|
title?: string | null | undefined;
|
|
11258
|
+
status?: "completed" | "failed" | "pending" | "in_progress" | null | undefined;
|
|
11259
|
+
kind?: "search" | "delete" | "move" | "edit" | "other" | "read" | "execute" | "think" | "fetch" | null | undefined;
|
|
11260
11260
|
locations?: {
|
|
11261
11261
|
path: string;
|
|
11262
11262
|
line?: number | null | undefined;
|
|
@@ -11303,14 +11303,14 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11303
11303
|
}>>>;
|
|
11304
11304
|
name: z.ZodString;
|
|
11305
11305
|
}, "strip", z.ZodTypeAny, {
|
|
11306
|
-
description: string;
|
|
11307
11306
|
name: string;
|
|
11307
|
+
description: string;
|
|
11308
11308
|
input?: {
|
|
11309
11309
|
hint: string;
|
|
11310
11310
|
} | null | undefined;
|
|
11311
11311
|
}, {
|
|
11312
|
-
description: string;
|
|
11313
11312
|
name: string;
|
|
11313
|
+
description: string;
|
|
11314
11314
|
input?: {
|
|
11315
11315
|
hint: string;
|
|
11316
11316
|
} | null | undefined;
|
|
@@ -11319,8 +11319,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11319
11319
|
}, "strip", z.ZodTypeAny, {
|
|
11320
11320
|
sessionUpdate: "available_commands_update";
|
|
11321
11321
|
availableCommands: {
|
|
11322
|
-
description: string;
|
|
11323
11322
|
name: string;
|
|
11323
|
+
description: string;
|
|
11324
11324
|
input?: {
|
|
11325
11325
|
hint: string;
|
|
11326
11326
|
} | null | undefined;
|
|
@@ -11328,14 +11328,15 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11328
11328
|
}, {
|
|
11329
11329
|
sessionUpdate: "available_commands_update";
|
|
11330
11330
|
availableCommands: {
|
|
11331
|
-
description: string;
|
|
11332
11331
|
name: string;
|
|
11332
|
+
description: string;
|
|
11333
11333
|
input?: {
|
|
11334
11334
|
hint: string;
|
|
11335
11335
|
} | null | undefined;
|
|
11336
11336
|
}[];
|
|
11337
11337
|
}>]>;
|
|
11338
11338
|
}, "strip", z.ZodTypeAny, {
|
|
11339
|
+
sessionId: string;
|
|
11339
11340
|
update: {
|
|
11340
11341
|
content: {
|
|
11341
11342
|
text: string;
|
|
@@ -11364,8 +11365,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11364
11365
|
lastModified?: string | null | undefined;
|
|
11365
11366
|
} | null | undefined;
|
|
11366
11367
|
} | {
|
|
11367
|
-
type: "resource_link";
|
|
11368
11368
|
name: string;
|
|
11369
|
+
type: "resource_link";
|
|
11369
11370
|
uri: string;
|
|
11370
11371
|
description?: string | null | undefined;
|
|
11371
11372
|
title?: string | null | undefined;
|
|
@@ -11422,8 +11423,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11422
11423
|
lastModified?: string | null | undefined;
|
|
11423
11424
|
} | null | undefined;
|
|
11424
11425
|
} | {
|
|
11425
|
-
type: "resource_link";
|
|
11426
11426
|
name: string;
|
|
11427
|
+
type: "resource_link";
|
|
11427
11428
|
uri: string;
|
|
11428
11429
|
description?: string | null | undefined;
|
|
11429
11430
|
title?: string | null | undefined;
|
|
@@ -11480,8 +11481,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11480
11481
|
lastModified?: string | null | undefined;
|
|
11481
11482
|
} | null | undefined;
|
|
11482
11483
|
} | {
|
|
11483
|
-
type: "resource_link";
|
|
11484
11484
|
name: string;
|
|
11485
|
+
type: "resource_link";
|
|
11485
11486
|
uri: string;
|
|
11486
11487
|
description?: string | null | undefined;
|
|
11487
11488
|
title?: string | null | undefined;
|
|
@@ -11511,9 +11512,9 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11511
11512
|
};
|
|
11512
11513
|
sessionUpdate: "agent_thought_chunk";
|
|
11513
11514
|
} | {
|
|
11514
|
-
kind: "search" | "delete" | "edit" | "move" | "other" | "read" | "execute" | "think" | "fetch";
|
|
11515
|
-
status: "completed" | "failed" | "pending" | "in_progress";
|
|
11516
11515
|
title: string;
|
|
11516
|
+
status: "completed" | "failed" | "pending" | "in_progress";
|
|
11517
|
+
kind: "search" | "delete" | "move" | "edit" | "other" | "read" | "execute" | "think" | "fetch";
|
|
11517
11518
|
toolCallId: string;
|
|
11518
11519
|
sessionUpdate: "tool_call";
|
|
11519
11520
|
content?: ({
|
|
@@ -11545,8 +11546,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11545
11546
|
lastModified?: string | null | undefined;
|
|
11546
11547
|
} | null | undefined;
|
|
11547
11548
|
} | {
|
|
11548
|
-
type: "resource_link";
|
|
11549
11549
|
name: string;
|
|
11550
|
+
type: "resource_link";
|
|
11550
11551
|
uri: string;
|
|
11551
11552
|
description?: string | null | undefined;
|
|
11552
11553
|
title?: string | null | undefined;
|
|
@@ -11617,8 +11618,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11617
11618
|
lastModified?: string | null | undefined;
|
|
11618
11619
|
} | null | undefined;
|
|
11619
11620
|
} | {
|
|
11620
|
-
type: "resource_link";
|
|
11621
11621
|
name: string;
|
|
11622
|
+
type: "resource_link";
|
|
11622
11623
|
uri: string;
|
|
11623
11624
|
description?: string | null | undefined;
|
|
11624
11625
|
title?: string | null | undefined;
|
|
@@ -11652,9 +11653,9 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11652
11653
|
newText: string;
|
|
11653
11654
|
oldText: string | null;
|
|
11654
11655
|
})[] | null | undefined;
|
|
11655
|
-
kind?: "search" | "delete" | "edit" | "move" | "other" | "read" | "execute" | "think" | "fetch" | null | undefined;
|
|
11656
|
-
status?: "completed" | "failed" | "pending" | "in_progress" | null | undefined;
|
|
11657
11656
|
title?: string | null | undefined;
|
|
11657
|
+
status?: "completed" | "failed" | "pending" | "in_progress" | null | undefined;
|
|
11658
|
+
kind?: "search" | "delete" | "move" | "edit" | "other" | "read" | "execute" | "think" | "fetch" | null | undefined;
|
|
11658
11659
|
locations?: {
|
|
11659
11660
|
path: string;
|
|
11660
11661
|
line?: number | null | undefined;
|
|
@@ -11670,15 +11671,15 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11670
11671
|
} | {
|
|
11671
11672
|
sessionUpdate: "available_commands_update";
|
|
11672
11673
|
availableCommands: {
|
|
11673
|
-
description: string;
|
|
11674
11674
|
name: string;
|
|
11675
|
+
description: string;
|
|
11675
11676
|
input?: {
|
|
11676
11677
|
hint: string;
|
|
11677
11678
|
} | null | undefined;
|
|
11678
11679
|
}[];
|
|
11679
11680
|
};
|
|
11680
|
-
sessionId: string;
|
|
11681
11681
|
}, {
|
|
11682
|
+
sessionId: string;
|
|
11682
11683
|
update: {
|
|
11683
11684
|
content: {
|
|
11684
11685
|
text: string;
|
|
@@ -11707,8 +11708,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11707
11708
|
lastModified?: string | null | undefined;
|
|
11708
11709
|
} | null | undefined;
|
|
11709
11710
|
} | {
|
|
11710
|
-
type: "resource_link";
|
|
11711
11711
|
name: string;
|
|
11712
|
+
type: "resource_link";
|
|
11712
11713
|
uri: string;
|
|
11713
11714
|
description?: string | null | undefined;
|
|
11714
11715
|
title?: string | null | undefined;
|
|
@@ -11765,8 +11766,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11765
11766
|
lastModified?: string | null | undefined;
|
|
11766
11767
|
} | null | undefined;
|
|
11767
11768
|
} | {
|
|
11768
|
-
type: "resource_link";
|
|
11769
11769
|
name: string;
|
|
11770
|
+
type: "resource_link";
|
|
11770
11771
|
uri: string;
|
|
11771
11772
|
description?: string | null | undefined;
|
|
11772
11773
|
title?: string | null | undefined;
|
|
@@ -11823,8 +11824,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11823
11824
|
lastModified?: string | null | undefined;
|
|
11824
11825
|
} | null | undefined;
|
|
11825
11826
|
} | {
|
|
11826
|
-
type: "resource_link";
|
|
11827
11827
|
name: string;
|
|
11828
|
+
type: "resource_link";
|
|
11828
11829
|
uri: string;
|
|
11829
11830
|
description?: string | null | undefined;
|
|
11830
11831
|
title?: string | null | undefined;
|
|
@@ -11854,9 +11855,9 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11854
11855
|
};
|
|
11855
11856
|
sessionUpdate: "agent_thought_chunk";
|
|
11856
11857
|
} | {
|
|
11857
|
-
kind: "search" | "delete" | "edit" | "move" | "other" | "read" | "execute" | "think" | "fetch";
|
|
11858
|
-
status: "completed" | "failed" | "pending" | "in_progress";
|
|
11859
11858
|
title: string;
|
|
11859
|
+
status: "completed" | "failed" | "pending" | "in_progress";
|
|
11860
|
+
kind: "search" | "delete" | "move" | "edit" | "other" | "read" | "execute" | "think" | "fetch";
|
|
11860
11861
|
toolCallId: string;
|
|
11861
11862
|
sessionUpdate: "tool_call";
|
|
11862
11863
|
content?: ({
|
|
@@ -11888,8 +11889,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11888
11889
|
lastModified?: string | null | undefined;
|
|
11889
11890
|
} | null | undefined;
|
|
11890
11891
|
} | {
|
|
11891
|
-
type: "resource_link";
|
|
11892
11892
|
name: string;
|
|
11893
|
+
type: "resource_link";
|
|
11893
11894
|
uri: string;
|
|
11894
11895
|
description?: string | null | undefined;
|
|
11895
11896
|
title?: string | null | undefined;
|
|
@@ -11960,8 +11961,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11960
11961
|
lastModified?: string | null | undefined;
|
|
11961
11962
|
} | null | undefined;
|
|
11962
11963
|
} | {
|
|
11963
|
-
type: "resource_link";
|
|
11964
11964
|
name: string;
|
|
11965
|
+
type: "resource_link";
|
|
11965
11966
|
uri: string;
|
|
11966
11967
|
description?: string | null | undefined;
|
|
11967
11968
|
title?: string | null | undefined;
|
|
@@ -11995,9 +11996,9 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11995
11996
|
newText: string;
|
|
11996
11997
|
oldText: string | null;
|
|
11997
11998
|
})[] | null | undefined;
|
|
11998
|
-
kind?: "search" | "delete" | "edit" | "move" | "other" | "read" | "execute" | "think" | "fetch" | null | undefined;
|
|
11999
|
-
status?: "completed" | "failed" | "pending" | "in_progress" | null | undefined;
|
|
12000
11999
|
title?: string | null | undefined;
|
|
12000
|
+
status?: "completed" | "failed" | "pending" | "in_progress" | null | undefined;
|
|
12001
|
+
kind?: "search" | "delete" | "move" | "edit" | "other" | "read" | "execute" | "think" | "fetch" | null | undefined;
|
|
12001
12002
|
locations?: {
|
|
12002
12003
|
path: string;
|
|
12003
12004
|
line?: number | null | undefined;
|
|
@@ -12013,12 +12014,11 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
12013
12014
|
} | {
|
|
12014
12015
|
sessionUpdate: "available_commands_update";
|
|
12015
12016
|
availableCommands: {
|
|
12016
|
-
description: string;
|
|
12017
12017
|
name: string;
|
|
12018
|
+
description: string;
|
|
12018
12019
|
input?: {
|
|
12019
12020
|
hint: string;
|
|
12020
12021
|
} | null | undefined;
|
|
12021
12022
|
}[];
|
|
12022
12023
|
};
|
|
12023
|
-
sessionId: string;
|
|
12024
12024
|
}>;
|