@blackbox_ai/blackbox-cli 0.0.6 → 0.0.9
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 -3
- package/dist/src/commands/configure/ConfigureUI.d.ts +11 -0
- package/dist/src/commands/configure/ConfigureUI.js +416 -0
- package/dist/src/commands/configure/ConfigureUI.js.map +1 -0
- package/dist/src/commands/configure/index.d.ts +7 -0
- package/dist/src/commands/configure/index.js +30 -0
- package/dist/src/commands/configure/index.js.map +1 -0
- package/dist/src/commands/configure.d.ts +7 -0
- package/dist/src/commands/configure.js +259 -0
- package/dist/src/commands/configure.js.map +1 -0
- package/dist/src/commands/configure.test.d.ts +6 -0
- package/dist/src/commands/configure.test.js +32 -0
- package/dist/src/commands/configure.test.js.map +1 -0
- package/dist/src/config/auth.d.ts +29 -0
- package/dist/src/config/auth.js +281 -1
- package/dist/src/config/auth.js.map +1 -1
- package/dist/src/config/config.js +5 -3
- package/dist/src/config/config.js.map +1 -1
- package/dist/src/config/modelFetcher.d.ts +21 -0
- package/dist/src/config/modelFetcher.js +251 -0
- package/dist/src/config/modelFetcher.js.map +1 -0
- package/dist/src/config/settings.js +37 -0
- package/dist/src/config/settings.js.map +1 -1
- package/dist/src/config/settingsSchema.d.ts +275 -0
- package/dist/src/config/settingsSchema.js +275 -0
- package/dist/src/config/settingsSchema.js.map +1 -1
- package/dist/src/gemini.js +4 -1
- package/dist/src/gemini.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/nonInteractiveCli.js +149 -5
- package/dist/src/nonInteractiveCli.js.map +1 -1
- package/dist/src/ui/App.js +1 -1
- package/dist/src/ui/App.js.map +1 -1
- package/dist/src/ui/components/AuthDialog.d.ts +3 -2
- package/dist/src/ui/components/AuthDialog.js +309 -61
- package/dist/src/ui/components/AuthDialog.js.map +1 -1
- package/dist/src/ui/components/GenericProviderKeyPrompt.d.ts +22 -0
- package/dist/src/ui/components/GenericProviderKeyPrompt.js +86 -0
- package/dist/src/ui/components/GenericProviderKeyPrompt.js.map +1 -0
- package/dist/src/ui/hooks/useGeminiStream.js +2 -0
- package/dist/src/ui/hooks/useGeminiStream.js.map +1 -1
- package/dist/src/zed-integration/schema.d.ts +286 -286
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +4 -3
|
@@ -681,8 +681,8 @@ export declare const contentBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
681
681
|
type: z.ZodLiteral<"image">;
|
|
682
682
|
}, "strip", z.ZodTypeAny, {
|
|
683
683
|
type: "image";
|
|
684
|
-
data: string;
|
|
685
684
|
mimeType: string;
|
|
685
|
+
data: string;
|
|
686
686
|
annotations?: {
|
|
687
687
|
priority?: number | null | undefined;
|
|
688
688
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -690,8 +690,8 @@ export declare const contentBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
690
690
|
} | null | undefined;
|
|
691
691
|
}, {
|
|
692
692
|
type: "image";
|
|
693
|
-
data: string;
|
|
694
693
|
mimeType: string;
|
|
694
|
+
data: string;
|
|
695
695
|
annotations?: {
|
|
696
696
|
priority?: number | null | undefined;
|
|
697
697
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -716,8 +716,8 @@ export declare const contentBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
716
716
|
type: z.ZodLiteral<"audio">;
|
|
717
717
|
}, "strip", z.ZodTypeAny, {
|
|
718
718
|
type: "audio";
|
|
719
|
-
data: string;
|
|
720
719
|
mimeType: string;
|
|
720
|
+
data: string;
|
|
721
721
|
annotations?: {
|
|
722
722
|
priority?: number | null | undefined;
|
|
723
723
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -725,8 +725,8 @@ export declare const contentBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
725
725
|
} | null | undefined;
|
|
726
726
|
}, {
|
|
727
727
|
type: "audio";
|
|
728
|
-
data: string;
|
|
729
728
|
mimeType: string;
|
|
729
|
+
data: string;
|
|
730
730
|
annotations?: {
|
|
731
731
|
priority?: number | null | undefined;
|
|
732
732
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -904,8 +904,8 @@ export declare const toolCallContentSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
904
904
|
type: z.ZodLiteral<"image">;
|
|
905
905
|
}, "strip", z.ZodTypeAny, {
|
|
906
906
|
type: "image";
|
|
907
|
-
data: string;
|
|
908
907
|
mimeType: string;
|
|
908
|
+
data: string;
|
|
909
909
|
annotations?: {
|
|
910
910
|
priority?: number | null | undefined;
|
|
911
911
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -913,8 +913,8 @@ export declare const toolCallContentSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
913
913
|
} | null | undefined;
|
|
914
914
|
}, {
|
|
915
915
|
type: "image";
|
|
916
|
-
data: string;
|
|
917
916
|
mimeType: string;
|
|
917
|
+
data: string;
|
|
918
918
|
annotations?: {
|
|
919
919
|
priority?: number | null | undefined;
|
|
920
920
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -939,8 +939,8 @@ export declare const toolCallContentSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
939
939
|
type: z.ZodLiteral<"audio">;
|
|
940
940
|
}, "strip", z.ZodTypeAny, {
|
|
941
941
|
type: "audio";
|
|
942
|
-
data: string;
|
|
943
942
|
mimeType: string;
|
|
943
|
+
data: string;
|
|
944
944
|
annotations?: {
|
|
945
945
|
priority?: number | null | undefined;
|
|
946
946
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -948,8 +948,8 @@ export declare const toolCallContentSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
948
948
|
} | null | undefined;
|
|
949
949
|
}, {
|
|
950
950
|
type: "audio";
|
|
951
|
-
data: string;
|
|
952
951
|
mimeType: string;
|
|
952
|
+
data: string;
|
|
953
953
|
annotations?: {
|
|
954
954
|
priority?: number | null | undefined;
|
|
955
955
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -1088,8 +1088,8 @@ export declare const toolCallContentSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1088
1088
|
} | null | undefined;
|
|
1089
1089
|
} | {
|
|
1090
1090
|
type: "image";
|
|
1091
|
-
data: string;
|
|
1092
1091
|
mimeType: string;
|
|
1092
|
+
data: string;
|
|
1093
1093
|
annotations?: {
|
|
1094
1094
|
priority?: number | null | undefined;
|
|
1095
1095
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -1097,8 +1097,8 @@ export declare const toolCallContentSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1097
1097
|
} | null | undefined;
|
|
1098
1098
|
} | {
|
|
1099
1099
|
type: "audio";
|
|
1100
|
-
data: string;
|
|
1101
1100
|
mimeType: string;
|
|
1101
|
+
data: string;
|
|
1102
1102
|
annotations?: {
|
|
1103
1103
|
priority?: number | null | undefined;
|
|
1104
1104
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -1146,8 +1146,8 @@ export declare const toolCallContentSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1146
1146
|
} | null | undefined;
|
|
1147
1147
|
} | {
|
|
1148
1148
|
type: "image";
|
|
1149
|
-
data: string;
|
|
1150
1149
|
mimeType: string;
|
|
1150
|
+
data: string;
|
|
1151
1151
|
annotations?: {
|
|
1152
1152
|
priority?: number | null | undefined;
|
|
1153
1153
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -1155,8 +1155,8 @@ export declare const toolCallContentSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
1155
1155
|
} | null | undefined;
|
|
1156
1156
|
} | {
|
|
1157
1157
|
type: "audio";
|
|
1158
|
-
data: string;
|
|
1159
1158
|
mimeType: string;
|
|
1159
|
+
data: string;
|
|
1160
1160
|
annotations?: {
|
|
1161
1161
|
priority?: number | null | undefined;
|
|
1162
1162
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -1261,8 +1261,8 @@ export declare const toolCallSchema: z.ZodObject<{
|
|
|
1261
1261
|
type: z.ZodLiteral<"image">;
|
|
1262
1262
|
}, "strip", z.ZodTypeAny, {
|
|
1263
1263
|
type: "image";
|
|
1264
|
-
data: string;
|
|
1265
1264
|
mimeType: string;
|
|
1265
|
+
data: string;
|
|
1266
1266
|
annotations?: {
|
|
1267
1267
|
priority?: number | null | undefined;
|
|
1268
1268
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -1270,8 +1270,8 @@ export declare const toolCallSchema: z.ZodObject<{
|
|
|
1270
1270
|
} | null | undefined;
|
|
1271
1271
|
}, {
|
|
1272
1272
|
type: "image";
|
|
1273
|
-
data: string;
|
|
1274
1273
|
mimeType: string;
|
|
1274
|
+
data: string;
|
|
1275
1275
|
annotations?: {
|
|
1276
1276
|
priority?: number | null | undefined;
|
|
1277
1277
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -1296,8 +1296,8 @@ export declare const toolCallSchema: z.ZodObject<{
|
|
|
1296
1296
|
type: z.ZodLiteral<"audio">;
|
|
1297
1297
|
}, "strip", z.ZodTypeAny, {
|
|
1298
1298
|
type: "audio";
|
|
1299
|
-
data: string;
|
|
1300
1299
|
mimeType: string;
|
|
1300
|
+
data: string;
|
|
1301
1301
|
annotations?: {
|
|
1302
1302
|
priority?: number | null | undefined;
|
|
1303
1303
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -1305,8 +1305,8 @@ export declare const toolCallSchema: z.ZodObject<{
|
|
|
1305
1305
|
} | null | undefined;
|
|
1306
1306
|
}, {
|
|
1307
1307
|
type: "audio";
|
|
1308
|
-
data: string;
|
|
1309
1308
|
mimeType: string;
|
|
1309
|
+
data: string;
|
|
1310
1310
|
annotations?: {
|
|
1311
1311
|
priority?: number | null | undefined;
|
|
1312
1312
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -1445,8 +1445,8 @@ export declare const toolCallSchema: z.ZodObject<{
|
|
|
1445
1445
|
} | null | undefined;
|
|
1446
1446
|
} | {
|
|
1447
1447
|
type: "image";
|
|
1448
|
-
data: string;
|
|
1449
1448
|
mimeType: string;
|
|
1449
|
+
data: string;
|
|
1450
1450
|
annotations?: {
|
|
1451
1451
|
priority?: number | null | undefined;
|
|
1452
1452
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -1454,8 +1454,8 @@ export declare const toolCallSchema: z.ZodObject<{
|
|
|
1454
1454
|
} | null | undefined;
|
|
1455
1455
|
} | {
|
|
1456
1456
|
type: "audio";
|
|
1457
|
-
data: string;
|
|
1458
1457
|
mimeType: string;
|
|
1458
|
+
data: string;
|
|
1459
1459
|
annotations?: {
|
|
1460
1460
|
priority?: number | null | undefined;
|
|
1461
1461
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -1503,8 +1503,8 @@ export declare const toolCallSchema: z.ZodObject<{
|
|
|
1503
1503
|
} | null | undefined;
|
|
1504
1504
|
} | {
|
|
1505
1505
|
type: "image";
|
|
1506
|
-
data: string;
|
|
1507
1506
|
mimeType: string;
|
|
1507
|
+
data: string;
|
|
1508
1508
|
annotations?: {
|
|
1509
1509
|
priority?: number | null | undefined;
|
|
1510
1510
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -1512,8 +1512,8 @@ export declare const toolCallSchema: z.ZodObject<{
|
|
|
1512
1512
|
} | null | undefined;
|
|
1513
1513
|
} | {
|
|
1514
1514
|
type: "audio";
|
|
1515
|
-
data: string;
|
|
1516
1515
|
mimeType: string;
|
|
1516
|
+
data: string;
|
|
1517
1517
|
annotations?: {
|
|
1518
1518
|
priority?: number | null | undefined;
|
|
1519
1519
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -1583,7 +1583,7 @@ export declare const toolCallSchema: z.ZodObject<{
|
|
|
1583
1583
|
}, "strip", z.ZodTypeAny, {
|
|
1584
1584
|
status: "completed" | "failed" | "pending" | "in_progress";
|
|
1585
1585
|
title: string;
|
|
1586
|
-
kind: "search" | "
|
|
1586
|
+
kind: "search" | "move" | "delete" | "other" | "edit" | "read" | "execute" | "think" | "fetch";
|
|
1587
1587
|
toolCallId: string;
|
|
1588
1588
|
content?: ({
|
|
1589
1589
|
type: "content";
|
|
@@ -1597,8 +1597,8 @@ export declare const toolCallSchema: z.ZodObject<{
|
|
|
1597
1597
|
} | null | undefined;
|
|
1598
1598
|
} | {
|
|
1599
1599
|
type: "image";
|
|
1600
|
-
data: string;
|
|
1601
1600
|
mimeType: string;
|
|
1601
|
+
data: string;
|
|
1602
1602
|
annotations?: {
|
|
1603
1603
|
priority?: number | null | undefined;
|
|
1604
1604
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -1606,8 +1606,8 @@ export declare const toolCallSchema: z.ZodObject<{
|
|
|
1606
1606
|
} | null | undefined;
|
|
1607
1607
|
} | {
|
|
1608
1608
|
type: "audio";
|
|
1609
|
-
data: string;
|
|
1610
1609
|
mimeType: string;
|
|
1610
|
+
data: string;
|
|
1611
1611
|
annotations?: {
|
|
1612
1612
|
priority?: number | null | undefined;
|
|
1613
1613
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -1657,7 +1657,7 @@ export declare const toolCallSchema: z.ZodObject<{
|
|
|
1657
1657
|
}, {
|
|
1658
1658
|
status: "completed" | "failed" | "pending" | "in_progress";
|
|
1659
1659
|
title: string;
|
|
1660
|
-
kind: "search" | "
|
|
1660
|
+
kind: "search" | "move" | "delete" | "other" | "edit" | "read" | "execute" | "think" | "fetch";
|
|
1661
1661
|
toolCallId: string;
|
|
1662
1662
|
content?: ({
|
|
1663
1663
|
type: "content";
|
|
@@ -1671,8 +1671,8 @@ export declare const toolCallSchema: z.ZodObject<{
|
|
|
1671
1671
|
} | null | undefined;
|
|
1672
1672
|
} | {
|
|
1673
1673
|
type: "image";
|
|
1674
|
-
data: string;
|
|
1675
1674
|
mimeType: string;
|
|
1675
|
+
data: string;
|
|
1676
1676
|
annotations?: {
|
|
1677
1677
|
priority?: number | null | undefined;
|
|
1678
1678
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -1680,8 +1680,8 @@ export declare const toolCallSchema: z.ZodObject<{
|
|
|
1680
1680
|
} | null | undefined;
|
|
1681
1681
|
} | {
|
|
1682
1682
|
type: "audio";
|
|
1683
|
-
data: string;
|
|
1684
1683
|
mimeType: string;
|
|
1684
|
+
data: string;
|
|
1685
1685
|
annotations?: {
|
|
1686
1686
|
priority?: number | null | undefined;
|
|
1687
1687
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -1803,8 +1803,8 @@ export declare const promptRequestSchema: z.ZodObject<{
|
|
|
1803
1803
|
type: z.ZodLiteral<"image">;
|
|
1804
1804
|
}, "strip", z.ZodTypeAny, {
|
|
1805
1805
|
type: "image";
|
|
1806
|
-
data: string;
|
|
1807
1806
|
mimeType: string;
|
|
1807
|
+
data: string;
|
|
1808
1808
|
annotations?: {
|
|
1809
1809
|
priority?: number | null | undefined;
|
|
1810
1810
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -1812,8 +1812,8 @@ export declare const promptRequestSchema: z.ZodObject<{
|
|
|
1812
1812
|
} | null | undefined;
|
|
1813
1813
|
}, {
|
|
1814
1814
|
type: "image";
|
|
1815
|
-
data: string;
|
|
1816
1815
|
mimeType: string;
|
|
1816
|
+
data: string;
|
|
1817
1817
|
annotations?: {
|
|
1818
1818
|
priority?: number | null | undefined;
|
|
1819
1819
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -1838,8 +1838,8 @@ export declare const promptRequestSchema: z.ZodObject<{
|
|
|
1838
1838
|
type: z.ZodLiteral<"audio">;
|
|
1839
1839
|
}, "strip", z.ZodTypeAny, {
|
|
1840
1840
|
type: "audio";
|
|
1841
|
-
data: string;
|
|
1842
1841
|
mimeType: string;
|
|
1842
|
+
data: string;
|
|
1843
1843
|
annotations?: {
|
|
1844
1844
|
priority?: number | null | undefined;
|
|
1845
1845
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -1847,8 +1847,8 @@ export declare const promptRequestSchema: z.ZodObject<{
|
|
|
1847
1847
|
} | null | undefined;
|
|
1848
1848
|
}, {
|
|
1849
1849
|
type: "audio";
|
|
1850
|
-
data: string;
|
|
1851
1850
|
mimeType: string;
|
|
1851
|
+
data: string;
|
|
1852
1852
|
annotations?: {
|
|
1853
1853
|
priority?: number | null | undefined;
|
|
1854
1854
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -1986,8 +1986,8 @@ export declare const promptRequestSchema: z.ZodObject<{
|
|
|
1986
1986
|
} | null | undefined;
|
|
1987
1987
|
} | {
|
|
1988
1988
|
type: "image";
|
|
1989
|
-
data: string;
|
|
1990
1989
|
mimeType: string;
|
|
1990
|
+
data: string;
|
|
1991
1991
|
annotations?: {
|
|
1992
1992
|
priority?: number | null | undefined;
|
|
1993
1993
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -1995,8 +1995,8 @@ export declare const promptRequestSchema: z.ZodObject<{
|
|
|
1995
1995
|
} | null | undefined;
|
|
1996
1996
|
} | {
|
|
1997
1997
|
type: "audio";
|
|
1998
|
-
data: string;
|
|
1999
1998
|
mimeType: string;
|
|
1999
|
+
data: string;
|
|
2000
2000
|
annotations?: {
|
|
2001
2001
|
priority?: number | null | undefined;
|
|
2002
2002
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -2044,8 +2044,8 @@ export declare const promptRequestSchema: z.ZodObject<{
|
|
|
2044
2044
|
} | null | undefined;
|
|
2045
2045
|
} | {
|
|
2046
2046
|
type: "image";
|
|
2047
|
-
data: string;
|
|
2048
2047
|
mimeType: string;
|
|
2048
|
+
data: string;
|
|
2049
2049
|
annotations?: {
|
|
2050
2050
|
priority?: number | null | undefined;
|
|
2051
2051
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -2053,8 +2053,8 @@ export declare const promptRequestSchema: z.ZodObject<{
|
|
|
2053
2053
|
} | null | undefined;
|
|
2054
2054
|
} | {
|
|
2055
2055
|
type: "audio";
|
|
2056
|
-
data: string;
|
|
2057
2056
|
mimeType: string;
|
|
2057
|
+
data: string;
|
|
2058
2058
|
annotations?: {
|
|
2059
2059
|
priority?: number | null | undefined;
|
|
2060
2060
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -2144,8 +2144,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2144
2144
|
type: z.ZodLiteral<"image">;
|
|
2145
2145
|
}, "strip", z.ZodTypeAny, {
|
|
2146
2146
|
type: "image";
|
|
2147
|
-
data: string;
|
|
2148
2147
|
mimeType: string;
|
|
2148
|
+
data: string;
|
|
2149
2149
|
annotations?: {
|
|
2150
2150
|
priority?: number | null | undefined;
|
|
2151
2151
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -2153,8 +2153,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2153
2153
|
} | null | undefined;
|
|
2154
2154
|
}, {
|
|
2155
2155
|
type: "image";
|
|
2156
|
-
data: string;
|
|
2157
2156
|
mimeType: string;
|
|
2157
|
+
data: string;
|
|
2158
2158
|
annotations?: {
|
|
2159
2159
|
priority?: number | null | undefined;
|
|
2160
2160
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -2179,8 +2179,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2179
2179
|
type: z.ZodLiteral<"audio">;
|
|
2180
2180
|
}, "strip", z.ZodTypeAny, {
|
|
2181
2181
|
type: "audio";
|
|
2182
|
-
data: string;
|
|
2183
2182
|
mimeType: string;
|
|
2183
|
+
data: string;
|
|
2184
2184
|
annotations?: {
|
|
2185
2185
|
priority?: number | null | undefined;
|
|
2186
2186
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -2188,8 +2188,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2188
2188
|
} | null | undefined;
|
|
2189
2189
|
}, {
|
|
2190
2190
|
type: "audio";
|
|
2191
|
-
data: string;
|
|
2192
2191
|
mimeType: string;
|
|
2192
|
+
data: string;
|
|
2193
2193
|
annotations?: {
|
|
2194
2194
|
priority?: number | null | undefined;
|
|
2195
2195
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -2327,8 +2327,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2327
2327
|
} | null | undefined;
|
|
2328
2328
|
} | {
|
|
2329
2329
|
type: "image";
|
|
2330
|
-
data: string;
|
|
2331
2330
|
mimeType: string;
|
|
2331
|
+
data: string;
|
|
2332
2332
|
annotations?: {
|
|
2333
2333
|
priority?: number | null | undefined;
|
|
2334
2334
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -2336,8 +2336,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2336
2336
|
} | null | undefined;
|
|
2337
2337
|
} | {
|
|
2338
2338
|
type: "audio";
|
|
2339
|
-
data: string;
|
|
2340
2339
|
mimeType: string;
|
|
2340
|
+
data: string;
|
|
2341
2341
|
annotations?: {
|
|
2342
2342
|
priority?: number | null | undefined;
|
|
2343
2343
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -2385,8 +2385,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2385
2385
|
} | null | undefined;
|
|
2386
2386
|
} | {
|
|
2387
2387
|
type: "image";
|
|
2388
|
-
data: string;
|
|
2389
2388
|
mimeType: string;
|
|
2389
|
+
data: string;
|
|
2390
2390
|
annotations?: {
|
|
2391
2391
|
priority?: number | null | undefined;
|
|
2392
2392
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -2394,8 +2394,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2394
2394
|
} | null | undefined;
|
|
2395
2395
|
} | {
|
|
2396
2396
|
type: "audio";
|
|
2397
|
-
data: string;
|
|
2398
2397
|
mimeType: string;
|
|
2398
|
+
data: string;
|
|
2399
2399
|
annotations?: {
|
|
2400
2400
|
priority?: number | null | undefined;
|
|
2401
2401
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -2484,8 +2484,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2484
2484
|
type: z.ZodLiteral<"image">;
|
|
2485
2485
|
}, "strip", z.ZodTypeAny, {
|
|
2486
2486
|
type: "image";
|
|
2487
|
-
data: string;
|
|
2488
2487
|
mimeType: string;
|
|
2488
|
+
data: string;
|
|
2489
2489
|
annotations?: {
|
|
2490
2490
|
priority?: number | null | undefined;
|
|
2491
2491
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -2493,8 +2493,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2493
2493
|
} | null | undefined;
|
|
2494
2494
|
}, {
|
|
2495
2495
|
type: "image";
|
|
2496
|
-
data: string;
|
|
2497
2496
|
mimeType: string;
|
|
2497
|
+
data: string;
|
|
2498
2498
|
annotations?: {
|
|
2499
2499
|
priority?: number | null | undefined;
|
|
2500
2500
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -2519,8 +2519,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2519
2519
|
type: z.ZodLiteral<"audio">;
|
|
2520
2520
|
}, "strip", z.ZodTypeAny, {
|
|
2521
2521
|
type: "audio";
|
|
2522
|
-
data: string;
|
|
2523
2522
|
mimeType: string;
|
|
2523
|
+
data: string;
|
|
2524
2524
|
annotations?: {
|
|
2525
2525
|
priority?: number | null | undefined;
|
|
2526
2526
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -2528,8 +2528,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2528
2528
|
} | null | undefined;
|
|
2529
2529
|
}, {
|
|
2530
2530
|
type: "audio";
|
|
2531
|
-
data: string;
|
|
2532
2531
|
mimeType: string;
|
|
2532
|
+
data: string;
|
|
2533
2533
|
annotations?: {
|
|
2534
2534
|
priority?: number | null | undefined;
|
|
2535
2535
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -2667,8 +2667,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2667
2667
|
} | null | undefined;
|
|
2668
2668
|
} | {
|
|
2669
2669
|
type: "image";
|
|
2670
|
-
data: string;
|
|
2671
2670
|
mimeType: string;
|
|
2671
|
+
data: string;
|
|
2672
2672
|
annotations?: {
|
|
2673
2673
|
priority?: number | null | undefined;
|
|
2674
2674
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -2676,8 +2676,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2676
2676
|
} | null | undefined;
|
|
2677
2677
|
} | {
|
|
2678
2678
|
type: "audio";
|
|
2679
|
-
data: string;
|
|
2680
2679
|
mimeType: string;
|
|
2680
|
+
data: string;
|
|
2681
2681
|
annotations?: {
|
|
2682
2682
|
priority?: number | null | undefined;
|
|
2683
2683
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -2725,8 +2725,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2725
2725
|
} | null | undefined;
|
|
2726
2726
|
} | {
|
|
2727
2727
|
type: "image";
|
|
2728
|
-
data: string;
|
|
2729
2728
|
mimeType: string;
|
|
2729
|
+
data: string;
|
|
2730
2730
|
annotations?: {
|
|
2731
2731
|
priority?: number | null | undefined;
|
|
2732
2732
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -2734,8 +2734,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2734
2734
|
} | null | undefined;
|
|
2735
2735
|
} | {
|
|
2736
2736
|
type: "audio";
|
|
2737
|
-
data: string;
|
|
2738
2737
|
mimeType: string;
|
|
2738
|
+
data: string;
|
|
2739
2739
|
annotations?: {
|
|
2740
2740
|
priority?: number | null | undefined;
|
|
2741
2741
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -2824,8 +2824,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2824
2824
|
type: z.ZodLiteral<"image">;
|
|
2825
2825
|
}, "strip", z.ZodTypeAny, {
|
|
2826
2826
|
type: "image";
|
|
2827
|
-
data: string;
|
|
2828
2827
|
mimeType: string;
|
|
2828
|
+
data: string;
|
|
2829
2829
|
annotations?: {
|
|
2830
2830
|
priority?: number | null | undefined;
|
|
2831
2831
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -2833,8 +2833,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2833
2833
|
} | null | undefined;
|
|
2834
2834
|
}, {
|
|
2835
2835
|
type: "image";
|
|
2836
|
-
data: string;
|
|
2837
2836
|
mimeType: string;
|
|
2837
|
+
data: string;
|
|
2838
2838
|
annotations?: {
|
|
2839
2839
|
priority?: number | null | undefined;
|
|
2840
2840
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -2859,8 +2859,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2859
2859
|
type: z.ZodLiteral<"audio">;
|
|
2860
2860
|
}, "strip", z.ZodTypeAny, {
|
|
2861
2861
|
type: "audio";
|
|
2862
|
-
data: string;
|
|
2863
2862
|
mimeType: string;
|
|
2863
|
+
data: string;
|
|
2864
2864
|
annotations?: {
|
|
2865
2865
|
priority?: number | null | undefined;
|
|
2866
2866
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -2868,8 +2868,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2868
2868
|
} | null | undefined;
|
|
2869
2869
|
}, {
|
|
2870
2870
|
type: "audio";
|
|
2871
|
-
data: string;
|
|
2872
2871
|
mimeType: string;
|
|
2872
|
+
data: string;
|
|
2873
2873
|
annotations?: {
|
|
2874
2874
|
priority?: number | null | undefined;
|
|
2875
2875
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -3007,8 +3007,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3007
3007
|
} | null | undefined;
|
|
3008
3008
|
} | {
|
|
3009
3009
|
type: "image";
|
|
3010
|
-
data: string;
|
|
3011
3010
|
mimeType: string;
|
|
3011
|
+
data: string;
|
|
3012
3012
|
annotations?: {
|
|
3013
3013
|
priority?: number | null | undefined;
|
|
3014
3014
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -3016,8 +3016,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3016
3016
|
} | null | undefined;
|
|
3017
3017
|
} | {
|
|
3018
3018
|
type: "audio";
|
|
3019
|
-
data: string;
|
|
3020
3019
|
mimeType: string;
|
|
3020
|
+
data: string;
|
|
3021
3021
|
annotations?: {
|
|
3022
3022
|
priority?: number | null | undefined;
|
|
3023
3023
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -3065,8 +3065,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3065
3065
|
} | null | undefined;
|
|
3066
3066
|
} | {
|
|
3067
3067
|
type: "image";
|
|
3068
|
-
data: string;
|
|
3069
3068
|
mimeType: string;
|
|
3069
|
+
data: string;
|
|
3070
3070
|
annotations?: {
|
|
3071
3071
|
priority?: number | null | undefined;
|
|
3072
3072
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -3074,8 +3074,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3074
3074
|
} | null | undefined;
|
|
3075
3075
|
} | {
|
|
3076
3076
|
type: "audio";
|
|
3077
|
-
data: string;
|
|
3078
3077
|
mimeType: string;
|
|
3078
|
+
data: string;
|
|
3079
3079
|
annotations?: {
|
|
3080
3080
|
priority?: number | null | undefined;
|
|
3081
3081
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -3165,8 +3165,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3165
3165
|
type: z.ZodLiteral<"image">;
|
|
3166
3166
|
}, "strip", z.ZodTypeAny, {
|
|
3167
3167
|
type: "image";
|
|
3168
|
-
data: string;
|
|
3169
3168
|
mimeType: string;
|
|
3169
|
+
data: string;
|
|
3170
3170
|
annotations?: {
|
|
3171
3171
|
priority?: number | null | undefined;
|
|
3172
3172
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -3174,8 +3174,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3174
3174
|
} | null | undefined;
|
|
3175
3175
|
}, {
|
|
3176
3176
|
type: "image";
|
|
3177
|
-
data: string;
|
|
3178
3177
|
mimeType: string;
|
|
3178
|
+
data: string;
|
|
3179
3179
|
annotations?: {
|
|
3180
3180
|
priority?: number | null | undefined;
|
|
3181
3181
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -3200,8 +3200,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3200
3200
|
type: z.ZodLiteral<"audio">;
|
|
3201
3201
|
}, "strip", z.ZodTypeAny, {
|
|
3202
3202
|
type: "audio";
|
|
3203
|
-
data: string;
|
|
3204
3203
|
mimeType: string;
|
|
3204
|
+
data: string;
|
|
3205
3205
|
annotations?: {
|
|
3206
3206
|
priority?: number | null | undefined;
|
|
3207
3207
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -3209,8 +3209,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3209
3209
|
} | null | undefined;
|
|
3210
3210
|
}, {
|
|
3211
3211
|
type: "audio";
|
|
3212
|
-
data: string;
|
|
3213
3212
|
mimeType: string;
|
|
3213
|
+
data: string;
|
|
3214
3214
|
annotations?: {
|
|
3215
3215
|
priority?: number | null | undefined;
|
|
3216
3216
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -3349,8 +3349,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3349
3349
|
} | null | undefined;
|
|
3350
3350
|
} | {
|
|
3351
3351
|
type: "image";
|
|
3352
|
-
data: string;
|
|
3353
3352
|
mimeType: string;
|
|
3353
|
+
data: string;
|
|
3354
3354
|
annotations?: {
|
|
3355
3355
|
priority?: number | null | undefined;
|
|
3356
3356
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -3358,8 +3358,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3358
3358
|
} | null | undefined;
|
|
3359
3359
|
} | {
|
|
3360
3360
|
type: "audio";
|
|
3361
|
-
data: string;
|
|
3362
3361
|
mimeType: string;
|
|
3362
|
+
data: string;
|
|
3363
3363
|
annotations?: {
|
|
3364
3364
|
priority?: number | null | undefined;
|
|
3365
3365
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -3407,8 +3407,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3407
3407
|
} | null | undefined;
|
|
3408
3408
|
} | {
|
|
3409
3409
|
type: "image";
|
|
3410
|
-
data: string;
|
|
3411
3410
|
mimeType: string;
|
|
3411
|
+
data: string;
|
|
3412
3412
|
annotations?: {
|
|
3413
3413
|
priority?: number | null | undefined;
|
|
3414
3414
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -3416,8 +3416,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3416
3416
|
} | null | undefined;
|
|
3417
3417
|
} | {
|
|
3418
3418
|
type: "audio";
|
|
3419
|
-
data: string;
|
|
3420
3419
|
mimeType: string;
|
|
3420
|
+
data: string;
|
|
3421
3421
|
annotations?: {
|
|
3422
3422
|
priority?: number | null | undefined;
|
|
3423
3423
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -3488,7 +3488,7 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3488
3488
|
}, "strip", z.ZodTypeAny, {
|
|
3489
3489
|
status: "completed" | "failed" | "pending" | "in_progress";
|
|
3490
3490
|
title: string;
|
|
3491
|
-
kind: "search" | "
|
|
3491
|
+
kind: "search" | "move" | "delete" | "other" | "edit" | "read" | "execute" | "think" | "fetch";
|
|
3492
3492
|
toolCallId: string;
|
|
3493
3493
|
sessionUpdate: "tool_call";
|
|
3494
3494
|
content?: ({
|
|
@@ -3503,8 +3503,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3503
3503
|
} | null | undefined;
|
|
3504
3504
|
} | {
|
|
3505
3505
|
type: "image";
|
|
3506
|
-
data: string;
|
|
3507
3506
|
mimeType: string;
|
|
3507
|
+
data: string;
|
|
3508
3508
|
annotations?: {
|
|
3509
3509
|
priority?: number | null | undefined;
|
|
3510
3510
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -3512,8 +3512,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3512
3512
|
} | null | undefined;
|
|
3513
3513
|
} | {
|
|
3514
3514
|
type: "audio";
|
|
3515
|
-
data: string;
|
|
3516
3515
|
mimeType: string;
|
|
3516
|
+
data: string;
|
|
3517
3517
|
annotations?: {
|
|
3518
3518
|
priority?: number | null | undefined;
|
|
3519
3519
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -3563,7 +3563,7 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3563
3563
|
}, {
|
|
3564
3564
|
status: "completed" | "failed" | "pending" | "in_progress";
|
|
3565
3565
|
title: string;
|
|
3566
|
-
kind: "search" | "
|
|
3566
|
+
kind: "search" | "move" | "delete" | "other" | "edit" | "read" | "execute" | "think" | "fetch";
|
|
3567
3567
|
toolCallId: string;
|
|
3568
3568
|
sessionUpdate: "tool_call";
|
|
3569
3569
|
content?: ({
|
|
@@ -3578,8 +3578,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3578
3578
|
} | null | undefined;
|
|
3579
3579
|
} | {
|
|
3580
3580
|
type: "image";
|
|
3581
|
-
data: string;
|
|
3582
3581
|
mimeType: string;
|
|
3582
|
+
data: string;
|
|
3583
3583
|
annotations?: {
|
|
3584
3584
|
priority?: number | null | undefined;
|
|
3585
3585
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -3587,8 +3587,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3587
3587
|
} | null | undefined;
|
|
3588
3588
|
} | {
|
|
3589
3589
|
type: "audio";
|
|
3590
|
-
data: string;
|
|
3591
3590
|
mimeType: string;
|
|
3591
|
+
data: string;
|
|
3592
3592
|
annotations?: {
|
|
3593
3593
|
priority?: number | null | undefined;
|
|
3594
3594
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -3688,8 +3688,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3688
3688
|
type: z.ZodLiteral<"image">;
|
|
3689
3689
|
}, "strip", z.ZodTypeAny, {
|
|
3690
3690
|
type: "image";
|
|
3691
|
-
data: string;
|
|
3692
3691
|
mimeType: string;
|
|
3692
|
+
data: string;
|
|
3693
3693
|
annotations?: {
|
|
3694
3694
|
priority?: number | null | undefined;
|
|
3695
3695
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -3697,8 +3697,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3697
3697
|
} | null | undefined;
|
|
3698
3698
|
}, {
|
|
3699
3699
|
type: "image";
|
|
3700
|
-
data: string;
|
|
3701
3700
|
mimeType: string;
|
|
3701
|
+
data: string;
|
|
3702
3702
|
annotations?: {
|
|
3703
3703
|
priority?: number | null | undefined;
|
|
3704
3704
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -3723,8 +3723,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3723
3723
|
type: z.ZodLiteral<"audio">;
|
|
3724
3724
|
}, "strip", z.ZodTypeAny, {
|
|
3725
3725
|
type: "audio";
|
|
3726
|
-
data: string;
|
|
3727
3726
|
mimeType: string;
|
|
3727
|
+
data: string;
|
|
3728
3728
|
annotations?: {
|
|
3729
3729
|
priority?: number | null | undefined;
|
|
3730
3730
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -3732,8 +3732,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3732
3732
|
} | null | undefined;
|
|
3733
3733
|
}, {
|
|
3734
3734
|
type: "audio";
|
|
3735
|
-
data: string;
|
|
3736
3735
|
mimeType: string;
|
|
3736
|
+
data: string;
|
|
3737
3737
|
annotations?: {
|
|
3738
3738
|
priority?: number | null | undefined;
|
|
3739
3739
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -3872,8 +3872,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3872
3872
|
} | null | undefined;
|
|
3873
3873
|
} | {
|
|
3874
3874
|
type: "image";
|
|
3875
|
-
data: string;
|
|
3876
3875
|
mimeType: string;
|
|
3876
|
+
data: string;
|
|
3877
3877
|
annotations?: {
|
|
3878
3878
|
priority?: number | null | undefined;
|
|
3879
3879
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -3881,8 +3881,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3881
3881
|
} | null | undefined;
|
|
3882
3882
|
} | {
|
|
3883
3883
|
type: "audio";
|
|
3884
|
-
data: string;
|
|
3885
3884
|
mimeType: string;
|
|
3885
|
+
data: string;
|
|
3886
3886
|
annotations?: {
|
|
3887
3887
|
priority?: number | null | undefined;
|
|
3888
3888
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -3930,8 +3930,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3930
3930
|
} | null | undefined;
|
|
3931
3931
|
} | {
|
|
3932
3932
|
type: "image";
|
|
3933
|
-
data: string;
|
|
3934
3933
|
mimeType: string;
|
|
3934
|
+
data: string;
|
|
3935
3935
|
annotations?: {
|
|
3936
3936
|
priority?: number | null | undefined;
|
|
3937
3937
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -3939,8 +3939,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3939
3939
|
} | null | undefined;
|
|
3940
3940
|
} | {
|
|
3941
3941
|
type: "audio";
|
|
3942
|
-
data: string;
|
|
3943
3942
|
mimeType: string;
|
|
3943
|
+
data: string;
|
|
3944
3944
|
annotations?: {
|
|
3945
3945
|
priority?: number | null | undefined;
|
|
3946
3946
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -4025,8 +4025,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4025
4025
|
} | null | undefined;
|
|
4026
4026
|
} | {
|
|
4027
4027
|
type: "image";
|
|
4028
|
-
data: string;
|
|
4029
4028
|
mimeType: string;
|
|
4029
|
+
data: string;
|
|
4030
4030
|
annotations?: {
|
|
4031
4031
|
priority?: number | null | undefined;
|
|
4032
4032
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -4034,8 +4034,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4034
4034
|
} | null | undefined;
|
|
4035
4035
|
} | {
|
|
4036
4036
|
type: "audio";
|
|
4037
|
-
data: string;
|
|
4038
4037
|
mimeType: string;
|
|
4038
|
+
data: string;
|
|
4039
4039
|
annotations?: {
|
|
4040
4040
|
priority?: number | null | undefined;
|
|
4041
4041
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -4077,7 +4077,7 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4077
4077
|
newText: string;
|
|
4078
4078
|
oldText: string | null;
|
|
4079
4079
|
})[] | null | undefined;
|
|
4080
|
-
kind?: "search" | "
|
|
4080
|
+
kind?: "search" | "move" | "delete" | "other" | "edit" | "read" | "execute" | "think" | "fetch" | null | undefined;
|
|
4081
4081
|
locations?: {
|
|
4082
4082
|
path: string;
|
|
4083
4083
|
line?: number | null | undefined;
|
|
@@ -4100,8 +4100,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4100
4100
|
} | null | undefined;
|
|
4101
4101
|
} | {
|
|
4102
4102
|
type: "image";
|
|
4103
|
-
data: string;
|
|
4104
4103
|
mimeType: string;
|
|
4104
|
+
data: string;
|
|
4105
4105
|
annotations?: {
|
|
4106
4106
|
priority?: number | null | undefined;
|
|
4107
4107
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -4109,8 +4109,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4109
4109
|
} | null | undefined;
|
|
4110
4110
|
} | {
|
|
4111
4111
|
type: "audio";
|
|
4112
|
-
data: string;
|
|
4113
4112
|
mimeType: string;
|
|
4113
|
+
data: string;
|
|
4114
4114
|
annotations?: {
|
|
4115
4115
|
priority?: number | null | undefined;
|
|
4116
4116
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -4152,7 +4152,7 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
4152
4152
|
newText: string;
|
|
4153
4153
|
oldText: string | null;
|
|
4154
4154
|
})[] | null | undefined;
|
|
4155
|
-
kind?: "search" | "
|
|
4155
|
+
kind?: "search" | "move" | "delete" | "other" | "edit" | "read" | "execute" | "think" | "fetch" | null | undefined;
|
|
4156
4156
|
locations?: {
|
|
4157
4157
|
path: string;
|
|
4158
4158
|
line?: number | null | undefined;
|
|
@@ -4344,8 +4344,8 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
|
4344
4344
|
type: z.ZodLiteral<"image">;
|
|
4345
4345
|
}, "strip", z.ZodTypeAny, {
|
|
4346
4346
|
type: "image";
|
|
4347
|
-
data: string;
|
|
4348
4347
|
mimeType: string;
|
|
4348
|
+
data: string;
|
|
4349
4349
|
annotations?: {
|
|
4350
4350
|
priority?: number | null | undefined;
|
|
4351
4351
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -4353,8 +4353,8 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
|
4353
4353
|
} | null | undefined;
|
|
4354
4354
|
}, {
|
|
4355
4355
|
type: "image";
|
|
4356
|
-
data: string;
|
|
4357
4356
|
mimeType: string;
|
|
4357
|
+
data: string;
|
|
4358
4358
|
annotations?: {
|
|
4359
4359
|
priority?: number | null | undefined;
|
|
4360
4360
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -4379,8 +4379,8 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
|
4379
4379
|
type: z.ZodLiteral<"audio">;
|
|
4380
4380
|
}, "strip", z.ZodTypeAny, {
|
|
4381
4381
|
type: "audio";
|
|
4382
|
-
data: string;
|
|
4383
4382
|
mimeType: string;
|
|
4383
|
+
data: string;
|
|
4384
4384
|
annotations?: {
|
|
4385
4385
|
priority?: number | null | undefined;
|
|
4386
4386
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -4388,8 +4388,8 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
|
4388
4388
|
} | null | undefined;
|
|
4389
4389
|
}, {
|
|
4390
4390
|
type: "audio";
|
|
4391
|
-
data: string;
|
|
4392
4391
|
mimeType: string;
|
|
4392
|
+
data: string;
|
|
4393
4393
|
annotations?: {
|
|
4394
4394
|
priority?: number | null | undefined;
|
|
4395
4395
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -4528,8 +4528,8 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
|
4528
4528
|
} | null | undefined;
|
|
4529
4529
|
} | {
|
|
4530
4530
|
type: "image";
|
|
4531
|
-
data: string;
|
|
4532
4531
|
mimeType: string;
|
|
4532
|
+
data: string;
|
|
4533
4533
|
annotations?: {
|
|
4534
4534
|
priority?: number | null | undefined;
|
|
4535
4535
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -4537,8 +4537,8 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
|
4537
4537
|
} | null | undefined;
|
|
4538
4538
|
} | {
|
|
4539
4539
|
type: "audio";
|
|
4540
|
-
data: string;
|
|
4541
4540
|
mimeType: string;
|
|
4541
|
+
data: string;
|
|
4542
4542
|
annotations?: {
|
|
4543
4543
|
priority?: number | null | undefined;
|
|
4544
4544
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -4586,8 +4586,8 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
|
4586
4586
|
} | null | undefined;
|
|
4587
4587
|
} | {
|
|
4588
4588
|
type: "image";
|
|
4589
|
-
data: string;
|
|
4590
4589
|
mimeType: string;
|
|
4590
|
+
data: string;
|
|
4591
4591
|
annotations?: {
|
|
4592
4592
|
priority?: number | null | undefined;
|
|
4593
4593
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -4595,8 +4595,8 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
|
4595
4595
|
} | null | undefined;
|
|
4596
4596
|
} | {
|
|
4597
4597
|
type: "audio";
|
|
4598
|
-
data: string;
|
|
4599
4598
|
mimeType: string;
|
|
4599
|
+
data: string;
|
|
4600
4600
|
annotations?: {
|
|
4601
4601
|
priority?: number | null | undefined;
|
|
4602
4602
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -4666,7 +4666,7 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
|
4666
4666
|
}, "strip", z.ZodTypeAny, {
|
|
4667
4667
|
status: "completed" | "failed" | "pending" | "in_progress";
|
|
4668
4668
|
title: string;
|
|
4669
|
-
kind: "search" | "
|
|
4669
|
+
kind: "search" | "move" | "delete" | "other" | "edit" | "read" | "execute" | "think" | "fetch";
|
|
4670
4670
|
toolCallId: string;
|
|
4671
4671
|
content?: ({
|
|
4672
4672
|
type: "content";
|
|
@@ -4680,8 +4680,8 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
|
4680
4680
|
} | null | undefined;
|
|
4681
4681
|
} | {
|
|
4682
4682
|
type: "image";
|
|
4683
|
-
data: string;
|
|
4684
4683
|
mimeType: string;
|
|
4684
|
+
data: string;
|
|
4685
4685
|
annotations?: {
|
|
4686
4686
|
priority?: number | null | undefined;
|
|
4687
4687
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -4689,8 +4689,8 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
|
4689
4689
|
} | null | undefined;
|
|
4690
4690
|
} | {
|
|
4691
4691
|
type: "audio";
|
|
4692
|
-
data: string;
|
|
4693
4692
|
mimeType: string;
|
|
4693
|
+
data: string;
|
|
4694
4694
|
annotations?: {
|
|
4695
4695
|
priority?: number | null | undefined;
|
|
4696
4696
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -4740,7 +4740,7 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
|
4740
4740
|
}, {
|
|
4741
4741
|
status: "completed" | "failed" | "pending" | "in_progress";
|
|
4742
4742
|
title: string;
|
|
4743
|
-
kind: "search" | "
|
|
4743
|
+
kind: "search" | "move" | "delete" | "other" | "edit" | "read" | "execute" | "think" | "fetch";
|
|
4744
4744
|
toolCallId: string;
|
|
4745
4745
|
content?: ({
|
|
4746
4746
|
type: "content";
|
|
@@ -4754,8 +4754,8 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
|
4754
4754
|
} | null | undefined;
|
|
4755
4755
|
} | {
|
|
4756
4756
|
type: "image";
|
|
4757
|
-
data: string;
|
|
4758
4757
|
mimeType: string;
|
|
4758
|
+
data: string;
|
|
4759
4759
|
annotations?: {
|
|
4760
4760
|
priority?: number | null | undefined;
|
|
4761
4761
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -4763,8 +4763,8 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
|
4763
4763
|
} | null | undefined;
|
|
4764
4764
|
} | {
|
|
4765
4765
|
type: "audio";
|
|
4766
|
-
data: string;
|
|
4767
4766
|
mimeType: string;
|
|
4767
|
+
data: string;
|
|
4768
4768
|
annotations?: {
|
|
4769
4769
|
priority?: number | null | undefined;
|
|
4770
4770
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -4822,7 +4822,7 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
|
4822
4822
|
toolCall: {
|
|
4823
4823
|
status: "completed" | "failed" | "pending" | "in_progress";
|
|
4824
4824
|
title: string;
|
|
4825
|
-
kind: "search" | "
|
|
4825
|
+
kind: "search" | "move" | "delete" | "other" | "edit" | "read" | "execute" | "think" | "fetch";
|
|
4826
4826
|
toolCallId: string;
|
|
4827
4827
|
content?: ({
|
|
4828
4828
|
type: "content";
|
|
@@ -4836,8 +4836,8 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
|
4836
4836
|
} | null | undefined;
|
|
4837
4837
|
} | {
|
|
4838
4838
|
type: "image";
|
|
4839
|
-
data: string;
|
|
4840
4839
|
mimeType: string;
|
|
4840
|
+
data: string;
|
|
4841
4841
|
annotations?: {
|
|
4842
4842
|
priority?: number | null | undefined;
|
|
4843
4843
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -4845,8 +4845,8 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
|
4845
4845
|
} | null | undefined;
|
|
4846
4846
|
} | {
|
|
4847
4847
|
type: "audio";
|
|
4848
|
-
data: string;
|
|
4849
4848
|
mimeType: string;
|
|
4849
|
+
data: string;
|
|
4850
4850
|
annotations?: {
|
|
4851
4851
|
priority?: number | null | undefined;
|
|
4852
4852
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -4904,7 +4904,7 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
|
4904
4904
|
toolCall: {
|
|
4905
4905
|
status: "completed" | "failed" | "pending" | "in_progress";
|
|
4906
4906
|
title: string;
|
|
4907
|
-
kind: "search" | "
|
|
4907
|
+
kind: "search" | "move" | "delete" | "other" | "edit" | "read" | "execute" | "think" | "fetch";
|
|
4908
4908
|
toolCallId: string;
|
|
4909
4909
|
content?: ({
|
|
4910
4910
|
type: "content";
|
|
@@ -4918,8 +4918,8 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
|
4918
4918
|
} | null | undefined;
|
|
4919
4919
|
} | {
|
|
4920
4920
|
type: "image";
|
|
4921
|
-
data: string;
|
|
4922
4921
|
mimeType: string;
|
|
4922
|
+
data: string;
|
|
4923
4923
|
annotations?: {
|
|
4924
4924
|
priority?: number | null | undefined;
|
|
4925
4925
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -4927,8 +4927,8 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
|
4927
4927
|
} | null | undefined;
|
|
4928
4928
|
} | {
|
|
4929
4929
|
type: "audio";
|
|
4930
|
-
data: string;
|
|
4931
4930
|
mimeType: string;
|
|
4931
|
+
data: string;
|
|
4932
4932
|
annotations?: {
|
|
4933
4933
|
priority?: number | null | undefined;
|
|
4934
4934
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -5072,8 +5072,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
5072
5072
|
type: z.ZodLiteral<"image">;
|
|
5073
5073
|
}, "strip", z.ZodTypeAny, {
|
|
5074
5074
|
type: "image";
|
|
5075
|
-
data: string;
|
|
5076
5075
|
mimeType: string;
|
|
5076
|
+
data: string;
|
|
5077
5077
|
annotations?: {
|
|
5078
5078
|
priority?: number | null | undefined;
|
|
5079
5079
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -5081,8 +5081,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
5081
5081
|
} | null | undefined;
|
|
5082
5082
|
}, {
|
|
5083
5083
|
type: "image";
|
|
5084
|
-
data: string;
|
|
5085
5084
|
mimeType: string;
|
|
5085
|
+
data: string;
|
|
5086
5086
|
annotations?: {
|
|
5087
5087
|
priority?: number | null | undefined;
|
|
5088
5088
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -5107,8 +5107,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
5107
5107
|
type: z.ZodLiteral<"audio">;
|
|
5108
5108
|
}, "strip", z.ZodTypeAny, {
|
|
5109
5109
|
type: "audio";
|
|
5110
|
-
data: string;
|
|
5111
5110
|
mimeType: string;
|
|
5111
|
+
data: string;
|
|
5112
5112
|
annotations?: {
|
|
5113
5113
|
priority?: number | null | undefined;
|
|
5114
5114
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -5116,8 +5116,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
5116
5116
|
} | null | undefined;
|
|
5117
5117
|
}, {
|
|
5118
5118
|
type: "audio";
|
|
5119
|
-
data: string;
|
|
5120
5119
|
mimeType: string;
|
|
5120
|
+
data: string;
|
|
5121
5121
|
annotations?: {
|
|
5122
5122
|
priority?: number | null | undefined;
|
|
5123
5123
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -5255,8 +5255,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
5255
5255
|
} | null | undefined;
|
|
5256
5256
|
} | {
|
|
5257
5257
|
type: "image";
|
|
5258
|
-
data: string;
|
|
5259
5258
|
mimeType: string;
|
|
5259
|
+
data: string;
|
|
5260
5260
|
annotations?: {
|
|
5261
5261
|
priority?: number | null | undefined;
|
|
5262
5262
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -5264,8 +5264,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
5264
5264
|
} | null | undefined;
|
|
5265
5265
|
} | {
|
|
5266
5266
|
type: "audio";
|
|
5267
|
-
data: string;
|
|
5268
5267
|
mimeType: string;
|
|
5268
|
+
data: string;
|
|
5269
5269
|
annotations?: {
|
|
5270
5270
|
priority?: number | null | undefined;
|
|
5271
5271
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -5313,8 +5313,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
5313
5313
|
} | null | undefined;
|
|
5314
5314
|
} | {
|
|
5315
5315
|
type: "image";
|
|
5316
|
-
data: string;
|
|
5317
5316
|
mimeType: string;
|
|
5317
|
+
data: string;
|
|
5318
5318
|
annotations?: {
|
|
5319
5319
|
priority?: number | null | undefined;
|
|
5320
5320
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -5322,8 +5322,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
5322
5322
|
} | null | undefined;
|
|
5323
5323
|
} | {
|
|
5324
5324
|
type: "audio";
|
|
5325
|
-
data: string;
|
|
5326
5325
|
mimeType: string;
|
|
5326
|
+
data: string;
|
|
5327
5327
|
annotations?: {
|
|
5328
5328
|
priority?: number | null | undefined;
|
|
5329
5329
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -5412,8 +5412,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
5412
5412
|
type: z.ZodLiteral<"image">;
|
|
5413
5413
|
}, "strip", z.ZodTypeAny, {
|
|
5414
5414
|
type: "image";
|
|
5415
|
-
data: string;
|
|
5416
5415
|
mimeType: string;
|
|
5416
|
+
data: string;
|
|
5417
5417
|
annotations?: {
|
|
5418
5418
|
priority?: number | null | undefined;
|
|
5419
5419
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -5421,8 +5421,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
5421
5421
|
} | null | undefined;
|
|
5422
5422
|
}, {
|
|
5423
5423
|
type: "image";
|
|
5424
|
-
data: string;
|
|
5425
5424
|
mimeType: string;
|
|
5425
|
+
data: string;
|
|
5426
5426
|
annotations?: {
|
|
5427
5427
|
priority?: number | null | undefined;
|
|
5428
5428
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -5447,8 +5447,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
5447
5447
|
type: z.ZodLiteral<"audio">;
|
|
5448
5448
|
}, "strip", z.ZodTypeAny, {
|
|
5449
5449
|
type: "audio";
|
|
5450
|
-
data: string;
|
|
5451
5450
|
mimeType: string;
|
|
5451
|
+
data: string;
|
|
5452
5452
|
annotations?: {
|
|
5453
5453
|
priority?: number | null | undefined;
|
|
5454
5454
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -5456,8 +5456,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
5456
5456
|
} | null | undefined;
|
|
5457
5457
|
}, {
|
|
5458
5458
|
type: "audio";
|
|
5459
|
-
data: string;
|
|
5460
5459
|
mimeType: string;
|
|
5460
|
+
data: string;
|
|
5461
5461
|
annotations?: {
|
|
5462
5462
|
priority?: number | null | undefined;
|
|
5463
5463
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -5595,8 +5595,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
5595
5595
|
} | null | undefined;
|
|
5596
5596
|
} | {
|
|
5597
5597
|
type: "image";
|
|
5598
|
-
data: string;
|
|
5599
5598
|
mimeType: string;
|
|
5599
|
+
data: string;
|
|
5600
5600
|
annotations?: {
|
|
5601
5601
|
priority?: number | null | undefined;
|
|
5602
5602
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -5604,8 +5604,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
5604
5604
|
} | null | undefined;
|
|
5605
5605
|
} | {
|
|
5606
5606
|
type: "audio";
|
|
5607
|
-
data: string;
|
|
5608
5607
|
mimeType: string;
|
|
5608
|
+
data: string;
|
|
5609
5609
|
annotations?: {
|
|
5610
5610
|
priority?: number | null | undefined;
|
|
5611
5611
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -5653,8 +5653,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
5653
5653
|
} | null | undefined;
|
|
5654
5654
|
} | {
|
|
5655
5655
|
type: "image";
|
|
5656
|
-
data: string;
|
|
5657
5656
|
mimeType: string;
|
|
5657
|
+
data: string;
|
|
5658
5658
|
annotations?: {
|
|
5659
5659
|
priority?: number | null | undefined;
|
|
5660
5660
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -5662,8 +5662,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
5662
5662
|
} | null | undefined;
|
|
5663
5663
|
} | {
|
|
5664
5664
|
type: "audio";
|
|
5665
|
-
data: string;
|
|
5666
5665
|
mimeType: string;
|
|
5666
|
+
data: string;
|
|
5667
5667
|
annotations?: {
|
|
5668
5668
|
priority?: number | null | undefined;
|
|
5669
5669
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -5752,8 +5752,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
5752
5752
|
type: z.ZodLiteral<"image">;
|
|
5753
5753
|
}, "strip", z.ZodTypeAny, {
|
|
5754
5754
|
type: "image";
|
|
5755
|
-
data: string;
|
|
5756
5755
|
mimeType: string;
|
|
5756
|
+
data: string;
|
|
5757
5757
|
annotations?: {
|
|
5758
5758
|
priority?: number | null | undefined;
|
|
5759
5759
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -5761,8 +5761,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
5761
5761
|
} | null | undefined;
|
|
5762
5762
|
}, {
|
|
5763
5763
|
type: "image";
|
|
5764
|
-
data: string;
|
|
5765
5764
|
mimeType: string;
|
|
5765
|
+
data: string;
|
|
5766
5766
|
annotations?: {
|
|
5767
5767
|
priority?: number | null | undefined;
|
|
5768
5768
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -5787,8 +5787,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
5787
5787
|
type: z.ZodLiteral<"audio">;
|
|
5788
5788
|
}, "strip", z.ZodTypeAny, {
|
|
5789
5789
|
type: "audio";
|
|
5790
|
-
data: string;
|
|
5791
5790
|
mimeType: string;
|
|
5791
|
+
data: string;
|
|
5792
5792
|
annotations?: {
|
|
5793
5793
|
priority?: number | null | undefined;
|
|
5794
5794
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -5796,8 +5796,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
5796
5796
|
} | null | undefined;
|
|
5797
5797
|
}, {
|
|
5798
5798
|
type: "audio";
|
|
5799
|
-
data: string;
|
|
5800
5799
|
mimeType: string;
|
|
5800
|
+
data: string;
|
|
5801
5801
|
annotations?: {
|
|
5802
5802
|
priority?: number | null | undefined;
|
|
5803
5803
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -5935,8 +5935,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
5935
5935
|
} | null | undefined;
|
|
5936
5936
|
} | {
|
|
5937
5937
|
type: "image";
|
|
5938
|
-
data: string;
|
|
5939
5938
|
mimeType: string;
|
|
5939
|
+
data: string;
|
|
5940
5940
|
annotations?: {
|
|
5941
5941
|
priority?: number | null | undefined;
|
|
5942
5942
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -5944,8 +5944,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
5944
5944
|
} | null | undefined;
|
|
5945
5945
|
} | {
|
|
5946
5946
|
type: "audio";
|
|
5947
|
-
data: string;
|
|
5948
5947
|
mimeType: string;
|
|
5948
|
+
data: string;
|
|
5949
5949
|
annotations?: {
|
|
5950
5950
|
priority?: number | null | undefined;
|
|
5951
5951
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -5993,8 +5993,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
5993
5993
|
} | null | undefined;
|
|
5994
5994
|
} | {
|
|
5995
5995
|
type: "image";
|
|
5996
|
-
data: string;
|
|
5997
5996
|
mimeType: string;
|
|
5997
|
+
data: string;
|
|
5998
5998
|
annotations?: {
|
|
5999
5999
|
priority?: number | null | undefined;
|
|
6000
6000
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -6002,8 +6002,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
6002
6002
|
} | null | undefined;
|
|
6003
6003
|
} | {
|
|
6004
6004
|
type: "audio";
|
|
6005
|
-
data: string;
|
|
6006
6005
|
mimeType: string;
|
|
6006
|
+
data: string;
|
|
6007
6007
|
annotations?: {
|
|
6008
6008
|
priority?: number | null | undefined;
|
|
6009
6009
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -6093,8 +6093,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
6093
6093
|
type: z.ZodLiteral<"image">;
|
|
6094
6094
|
}, "strip", z.ZodTypeAny, {
|
|
6095
6095
|
type: "image";
|
|
6096
|
-
data: string;
|
|
6097
6096
|
mimeType: string;
|
|
6097
|
+
data: string;
|
|
6098
6098
|
annotations?: {
|
|
6099
6099
|
priority?: number | null | undefined;
|
|
6100
6100
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -6102,8 +6102,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
6102
6102
|
} | null | undefined;
|
|
6103
6103
|
}, {
|
|
6104
6104
|
type: "image";
|
|
6105
|
-
data: string;
|
|
6106
6105
|
mimeType: string;
|
|
6106
|
+
data: string;
|
|
6107
6107
|
annotations?: {
|
|
6108
6108
|
priority?: number | null | undefined;
|
|
6109
6109
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -6128,8 +6128,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
6128
6128
|
type: z.ZodLiteral<"audio">;
|
|
6129
6129
|
}, "strip", z.ZodTypeAny, {
|
|
6130
6130
|
type: "audio";
|
|
6131
|
-
data: string;
|
|
6132
6131
|
mimeType: string;
|
|
6132
|
+
data: string;
|
|
6133
6133
|
annotations?: {
|
|
6134
6134
|
priority?: number | null | undefined;
|
|
6135
6135
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -6137,8 +6137,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
6137
6137
|
} | null | undefined;
|
|
6138
6138
|
}, {
|
|
6139
6139
|
type: "audio";
|
|
6140
|
-
data: string;
|
|
6141
6140
|
mimeType: string;
|
|
6141
|
+
data: string;
|
|
6142
6142
|
annotations?: {
|
|
6143
6143
|
priority?: number | null | undefined;
|
|
6144
6144
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -6277,8 +6277,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
6277
6277
|
} | null | undefined;
|
|
6278
6278
|
} | {
|
|
6279
6279
|
type: "image";
|
|
6280
|
-
data: string;
|
|
6281
6280
|
mimeType: string;
|
|
6281
|
+
data: string;
|
|
6282
6282
|
annotations?: {
|
|
6283
6283
|
priority?: number | null | undefined;
|
|
6284
6284
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -6286,8 +6286,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
6286
6286
|
} | null | undefined;
|
|
6287
6287
|
} | {
|
|
6288
6288
|
type: "audio";
|
|
6289
|
-
data: string;
|
|
6290
6289
|
mimeType: string;
|
|
6290
|
+
data: string;
|
|
6291
6291
|
annotations?: {
|
|
6292
6292
|
priority?: number | null | undefined;
|
|
6293
6293
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -6335,8 +6335,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
6335
6335
|
} | null | undefined;
|
|
6336
6336
|
} | {
|
|
6337
6337
|
type: "image";
|
|
6338
|
-
data: string;
|
|
6339
6338
|
mimeType: string;
|
|
6339
|
+
data: string;
|
|
6340
6340
|
annotations?: {
|
|
6341
6341
|
priority?: number | null | undefined;
|
|
6342
6342
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -6344,8 +6344,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
6344
6344
|
} | null | undefined;
|
|
6345
6345
|
} | {
|
|
6346
6346
|
type: "audio";
|
|
6347
|
-
data: string;
|
|
6348
6347
|
mimeType: string;
|
|
6348
|
+
data: string;
|
|
6349
6349
|
annotations?: {
|
|
6350
6350
|
priority?: number | null | undefined;
|
|
6351
6351
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -6416,7 +6416,7 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
6416
6416
|
}, "strip", z.ZodTypeAny, {
|
|
6417
6417
|
status: "completed" | "failed" | "pending" | "in_progress";
|
|
6418
6418
|
title: string;
|
|
6419
|
-
kind: "search" | "
|
|
6419
|
+
kind: "search" | "move" | "delete" | "other" | "edit" | "read" | "execute" | "think" | "fetch";
|
|
6420
6420
|
toolCallId: string;
|
|
6421
6421
|
sessionUpdate: "tool_call";
|
|
6422
6422
|
content?: ({
|
|
@@ -6431,8 +6431,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
6431
6431
|
} | null | undefined;
|
|
6432
6432
|
} | {
|
|
6433
6433
|
type: "image";
|
|
6434
|
-
data: string;
|
|
6435
6434
|
mimeType: string;
|
|
6435
|
+
data: string;
|
|
6436
6436
|
annotations?: {
|
|
6437
6437
|
priority?: number | null | undefined;
|
|
6438
6438
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -6440,8 +6440,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
6440
6440
|
} | null | undefined;
|
|
6441
6441
|
} | {
|
|
6442
6442
|
type: "audio";
|
|
6443
|
-
data: string;
|
|
6444
6443
|
mimeType: string;
|
|
6444
|
+
data: string;
|
|
6445
6445
|
annotations?: {
|
|
6446
6446
|
priority?: number | null | undefined;
|
|
6447
6447
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -6491,7 +6491,7 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
6491
6491
|
}, {
|
|
6492
6492
|
status: "completed" | "failed" | "pending" | "in_progress";
|
|
6493
6493
|
title: string;
|
|
6494
|
-
kind: "search" | "
|
|
6494
|
+
kind: "search" | "move" | "delete" | "other" | "edit" | "read" | "execute" | "think" | "fetch";
|
|
6495
6495
|
toolCallId: string;
|
|
6496
6496
|
sessionUpdate: "tool_call";
|
|
6497
6497
|
content?: ({
|
|
@@ -6506,8 +6506,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
6506
6506
|
} | null | undefined;
|
|
6507
6507
|
} | {
|
|
6508
6508
|
type: "image";
|
|
6509
|
-
data: string;
|
|
6510
6509
|
mimeType: string;
|
|
6510
|
+
data: string;
|
|
6511
6511
|
annotations?: {
|
|
6512
6512
|
priority?: number | null | undefined;
|
|
6513
6513
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -6515,8 +6515,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
6515
6515
|
} | null | undefined;
|
|
6516
6516
|
} | {
|
|
6517
6517
|
type: "audio";
|
|
6518
|
-
data: string;
|
|
6519
6518
|
mimeType: string;
|
|
6519
|
+
data: string;
|
|
6520
6520
|
annotations?: {
|
|
6521
6521
|
priority?: number | null | undefined;
|
|
6522
6522
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -6616,8 +6616,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
6616
6616
|
type: z.ZodLiteral<"image">;
|
|
6617
6617
|
}, "strip", z.ZodTypeAny, {
|
|
6618
6618
|
type: "image";
|
|
6619
|
-
data: string;
|
|
6620
6619
|
mimeType: string;
|
|
6620
|
+
data: string;
|
|
6621
6621
|
annotations?: {
|
|
6622
6622
|
priority?: number | null | undefined;
|
|
6623
6623
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -6625,8 +6625,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
6625
6625
|
} | null | undefined;
|
|
6626
6626
|
}, {
|
|
6627
6627
|
type: "image";
|
|
6628
|
-
data: string;
|
|
6629
6628
|
mimeType: string;
|
|
6629
|
+
data: string;
|
|
6630
6630
|
annotations?: {
|
|
6631
6631
|
priority?: number | null | undefined;
|
|
6632
6632
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -6651,8 +6651,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
6651
6651
|
type: z.ZodLiteral<"audio">;
|
|
6652
6652
|
}, "strip", z.ZodTypeAny, {
|
|
6653
6653
|
type: "audio";
|
|
6654
|
-
data: string;
|
|
6655
6654
|
mimeType: string;
|
|
6655
|
+
data: string;
|
|
6656
6656
|
annotations?: {
|
|
6657
6657
|
priority?: number | null | undefined;
|
|
6658
6658
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -6660,8 +6660,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
6660
6660
|
} | null | undefined;
|
|
6661
6661
|
}, {
|
|
6662
6662
|
type: "audio";
|
|
6663
|
-
data: string;
|
|
6664
6663
|
mimeType: string;
|
|
6664
|
+
data: string;
|
|
6665
6665
|
annotations?: {
|
|
6666
6666
|
priority?: number | null | undefined;
|
|
6667
6667
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -6800,8 +6800,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
6800
6800
|
} | null | undefined;
|
|
6801
6801
|
} | {
|
|
6802
6802
|
type: "image";
|
|
6803
|
-
data: string;
|
|
6804
6803
|
mimeType: string;
|
|
6804
|
+
data: string;
|
|
6805
6805
|
annotations?: {
|
|
6806
6806
|
priority?: number | null | undefined;
|
|
6807
6807
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -6809,8 +6809,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
6809
6809
|
} | null | undefined;
|
|
6810
6810
|
} | {
|
|
6811
6811
|
type: "audio";
|
|
6812
|
-
data: string;
|
|
6813
6812
|
mimeType: string;
|
|
6813
|
+
data: string;
|
|
6814
6814
|
annotations?: {
|
|
6815
6815
|
priority?: number | null | undefined;
|
|
6816
6816
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -6858,8 +6858,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
6858
6858
|
} | null | undefined;
|
|
6859
6859
|
} | {
|
|
6860
6860
|
type: "image";
|
|
6861
|
-
data: string;
|
|
6862
6861
|
mimeType: string;
|
|
6862
|
+
data: string;
|
|
6863
6863
|
annotations?: {
|
|
6864
6864
|
priority?: number | null | undefined;
|
|
6865
6865
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -6867,8 +6867,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
6867
6867
|
} | null | undefined;
|
|
6868
6868
|
} | {
|
|
6869
6869
|
type: "audio";
|
|
6870
|
-
data: string;
|
|
6871
6870
|
mimeType: string;
|
|
6871
|
+
data: string;
|
|
6872
6872
|
annotations?: {
|
|
6873
6873
|
priority?: number | null | undefined;
|
|
6874
6874
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -6953,8 +6953,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
6953
6953
|
} | null | undefined;
|
|
6954
6954
|
} | {
|
|
6955
6955
|
type: "image";
|
|
6956
|
-
data: string;
|
|
6957
6956
|
mimeType: string;
|
|
6957
|
+
data: string;
|
|
6958
6958
|
annotations?: {
|
|
6959
6959
|
priority?: number | null | undefined;
|
|
6960
6960
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -6962,8 +6962,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
6962
6962
|
} | null | undefined;
|
|
6963
6963
|
} | {
|
|
6964
6964
|
type: "audio";
|
|
6965
|
-
data: string;
|
|
6966
6965
|
mimeType: string;
|
|
6966
|
+
data: string;
|
|
6967
6967
|
annotations?: {
|
|
6968
6968
|
priority?: number | null | undefined;
|
|
6969
6969
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -7005,7 +7005,7 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7005
7005
|
newText: string;
|
|
7006
7006
|
oldText: string | null;
|
|
7007
7007
|
})[] | null | undefined;
|
|
7008
|
-
kind?: "search" | "
|
|
7008
|
+
kind?: "search" | "move" | "delete" | "other" | "edit" | "read" | "execute" | "think" | "fetch" | null | undefined;
|
|
7009
7009
|
locations?: {
|
|
7010
7010
|
path: string;
|
|
7011
7011
|
line?: number | null | undefined;
|
|
@@ -7028,8 +7028,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7028
7028
|
} | null | undefined;
|
|
7029
7029
|
} | {
|
|
7030
7030
|
type: "image";
|
|
7031
|
-
data: string;
|
|
7032
7031
|
mimeType: string;
|
|
7032
|
+
data: string;
|
|
7033
7033
|
annotations?: {
|
|
7034
7034
|
priority?: number | null | undefined;
|
|
7035
7035
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -7037,8 +7037,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7037
7037
|
} | null | undefined;
|
|
7038
7038
|
} | {
|
|
7039
7039
|
type: "audio";
|
|
7040
|
-
data: string;
|
|
7041
7040
|
mimeType: string;
|
|
7041
|
+
data: string;
|
|
7042
7042
|
annotations?: {
|
|
7043
7043
|
priority?: number | null | undefined;
|
|
7044
7044
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -7080,7 +7080,7 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7080
7080
|
newText: string;
|
|
7081
7081
|
oldText: string | null;
|
|
7082
7082
|
})[] | null | undefined;
|
|
7083
|
-
kind?: "search" | "
|
|
7083
|
+
kind?: "search" | "move" | "delete" | "other" | "edit" | "read" | "execute" | "think" | "fetch" | null | undefined;
|
|
7084
7084
|
locations?: {
|
|
7085
7085
|
path: string;
|
|
7086
7086
|
line?: number | null | undefined;
|
|
@@ -7129,8 +7129,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7129
7129
|
} | null | undefined;
|
|
7130
7130
|
} | {
|
|
7131
7131
|
type: "image";
|
|
7132
|
-
data: string;
|
|
7133
7132
|
mimeType: string;
|
|
7133
|
+
data: string;
|
|
7134
7134
|
annotations?: {
|
|
7135
7135
|
priority?: number | null | undefined;
|
|
7136
7136
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -7138,8 +7138,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7138
7138
|
} | null | undefined;
|
|
7139
7139
|
} | {
|
|
7140
7140
|
type: "audio";
|
|
7141
|
-
data: string;
|
|
7142
7141
|
mimeType: string;
|
|
7142
|
+
data: string;
|
|
7143
7143
|
annotations?: {
|
|
7144
7144
|
priority?: number | null | undefined;
|
|
7145
7145
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -7187,8 +7187,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7187
7187
|
} | null | undefined;
|
|
7188
7188
|
} | {
|
|
7189
7189
|
type: "image";
|
|
7190
|
-
data: string;
|
|
7191
7190
|
mimeType: string;
|
|
7191
|
+
data: string;
|
|
7192
7192
|
annotations?: {
|
|
7193
7193
|
priority?: number | null | undefined;
|
|
7194
7194
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -7196,8 +7196,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7196
7196
|
} | null | undefined;
|
|
7197
7197
|
} | {
|
|
7198
7198
|
type: "audio";
|
|
7199
|
-
data: string;
|
|
7200
7199
|
mimeType: string;
|
|
7200
|
+
data: string;
|
|
7201
7201
|
annotations?: {
|
|
7202
7202
|
priority?: number | null | undefined;
|
|
7203
7203
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -7245,8 +7245,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7245
7245
|
} | null | undefined;
|
|
7246
7246
|
} | {
|
|
7247
7247
|
type: "image";
|
|
7248
|
-
data: string;
|
|
7249
7248
|
mimeType: string;
|
|
7249
|
+
data: string;
|
|
7250
7250
|
annotations?: {
|
|
7251
7251
|
priority?: number | null | undefined;
|
|
7252
7252
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -7254,8 +7254,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7254
7254
|
} | null | undefined;
|
|
7255
7255
|
} | {
|
|
7256
7256
|
type: "audio";
|
|
7257
|
-
data: string;
|
|
7258
7257
|
mimeType: string;
|
|
7258
|
+
data: string;
|
|
7259
7259
|
annotations?: {
|
|
7260
7260
|
priority?: number | null | undefined;
|
|
7261
7261
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -7295,7 +7295,7 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7295
7295
|
} | {
|
|
7296
7296
|
status: "completed" | "failed" | "pending" | "in_progress";
|
|
7297
7297
|
title: string;
|
|
7298
|
-
kind: "search" | "
|
|
7298
|
+
kind: "search" | "move" | "delete" | "other" | "edit" | "read" | "execute" | "think" | "fetch";
|
|
7299
7299
|
toolCallId: string;
|
|
7300
7300
|
sessionUpdate: "tool_call";
|
|
7301
7301
|
content?: ({
|
|
@@ -7310,8 +7310,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7310
7310
|
} | null | undefined;
|
|
7311
7311
|
} | {
|
|
7312
7312
|
type: "image";
|
|
7313
|
-
data: string;
|
|
7314
7313
|
mimeType: string;
|
|
7314
|
+
data: string;
|
|
7315
7315
|
annotations?: {
|
|
7316
7316
|
priority?: number | null | undefined;
|
|
7317
7317
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -7319,8 +7319,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7319
7319
|
} | null | undefined;
|
|
7320
7320
|
} | {
|
|
7321
7321
|
type: "audio";
|
|
7322
|
-
data: string;
|
|
7323
7322
|
mimeType: string;
|
|
7323
|
+
data: string;
|
|
7324
7324
|
annotations?: {
|
|
7325
7325
|
priority?: number | null | undefined;
|
|
7326
7326
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -7384,8 +7384,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7384
7384
|
} | null | undefined;
|
|
7385
7385
|
} | {
|
|
7386
7386
|
type: "image";
|
|
7387
|
-
data: string;
|
|
7388
7387
|
mimeType: string;
|
|
7388
|
+
data: string;
|
|
7389
7389
|
annotations?: {
|
|
7390
7390
|
priority?: number | null | undefined;
|
|
7391
7391
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -7393,8 +7393,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7393
7393
|
} | null | undefined;
|
|
7394
7394
|
} | {
|
|
7395
7395
|
type: "audio";
|
|
7396
|
-
data: string;
|
|
7397
7396
|
mimeType: string;
|
|
7397
|
+
data: string;
|
|
7398
7398
|
annotations?: {
|
|
7399
7399
|
priority?: number | null | undefined;
|
|
7400
7400
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -7436,7 +7436,7 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7436
7436
|
newText: string;
|
|
7437
7437
|
oldText: string | null;
|
|
7438
7438
|
})[] | null | undefined;
|
|
7439
|
-
kind?: "search" | "
|
|
7439
|
+
kind?: "search" | "move" | "delete" | "other" | "edit" | "read" | "execute" | "think" | "fetch" | null | undefined;
|
|
7440
7440
|
locations?: {
|
|
7441
7441
|
path: string;
|
|
7442
7442
|
line?: number | null | undefined;
|
|
@@ -7463,8 +7463,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7463
7463
|
} | null | undefined;
|
|
7464
7464
|
} | {
|
|
7465
7465
|
type: "image";
|
|
7466
|
-
data: string;
|
|
7467
7466
|
mimeType: string;
|
|
7467
|
+
data: string;
|
|
7468
7468
|
annotations?: {
|
|
7469
7469
|
priority?: number | null | undefined;
|
|
7470
7470
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -7472,8 +7472,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7472
7472
|
} | null | undefined;
|
|
7473
7473
|
} | {
|
|
7474
7474
|
type: "audio";
|
|
7475
|
-
data: string;
|
|
7476
7475
|
mimeType: string;
|
|
7476
|
+
data: string;
|
|
7477
7477
|
annotations?: {
|
|
7478
7478
|
priority?: number | null | undefined;
|
|
7479
7479
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -7521,8 +7521,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7521
7521
|
} | null | undefined;
|
|
7522
7522
|
} | {
|
|
7523
7523
|
type: "image";
|
|
7524
|
-
data: string;
|
|
7525
7524
|
mimeType: string;
|
|
7525
|
+
data: string;
|
|
7526
7526
|
annotations?: {
|
|
7527
7527
|
priority?: number | null | undefined;
|
|
7528
7528
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -7530,8 +7530,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7530
7530
|
} | null | undefined;
|
|
7531
7531
|
} | {
|
|
7532
7532
|
type: "audio";
|
|
7533
|
-
data: string;
|
|
7534
7533
|
mimeType: string;
|
|
7534
|
+
data: string;
|
|
7535
7535
|
annotations?: {
|
|
7536
7536
|
priority?: number | null | undefined;
|
|
7537
7537
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -7579,8 +7579,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7579
7579
|
} | null | undefined;
|
|
7580
7580
|
} | {
|
|
7581
7581
|
type: "image";
|
|
7582
|
-
data: string;
|
|
7583
7582
|
mimeType: string;
|
|
7583
|
+
data: string;
|
|
7584
7584
|
annotations?: {
|
|
7585
7585
|
priority?: number | null | undefined;
|
|
7586
7586
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -7588,8 +7588,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7588
7588
|
} | null | undefined;
|
|
7589
7589
|
} | {
|
|
7590
7590
|
type: "audio";
|
|
7591
|
-
data: string;
|
|
7592
7591
|
mimeType: string;
|
|
7592
|
+
data: string;
|
|
7593
7593
|
annotations?: {
|
|
7594
7594
|
priority?: number | null | undefined;
|
|
7595
7595
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -7629,7 +7629,7 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7629
7629
|
} | {
|
|
7630
7630
|
status: "completed" | "failed" | "pending" | "in_progress";
|
|
7631
7631
|
title: string;
|
|
7632
|
-
kind: "search" | "
|
|
7632
|
+
kind: "search" | "move" | "delete" | "other" | "edit" | "read" | "execute" | "think" | "fetch";
|
|
7633
7633
|
toolCallId: string;
|
|
7634
7634
|
sessionUpdate: "tool_call";
|
|
7635
7635
|
content?: ({
|
|
@@ -7644,8 +7644,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7644
7644
|
} | null | undefined;
|
|
7645
7645
|
} | {
|
|
7646
7646
|
type: "image";
|
|
7647
|
-
data: string;
|
|
7648
7647
|
mimeType: string;
|
|
7648
|
+
data: string;
|
|
7649
7649
|
annotations?: {
|
|
7650
7650
|
priority?: number | null | undefined;
|
|
7651
7651
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -7653,8 +7653,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7653
7653
|
} | null | undefined;
|
|
7654
7654
|
} | {
|
|
7655
7655
|
type: "audio";
|
|
7656
|
-
data: string;
|
|
7657
7656
|
mimeType: string;
|
|
7657
|
+
data: string;
|
|
7658
7658
|
annotations?: {
|
|
7659
7659
|
priority?: number | null | undefined;
|
|
7660
7660
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -7718,8 +7718,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7718
7718
|
} | null | undefined;
|
|
7719
7719
|
} | {
|
|
7720
7720
|
type: "image";
|
|
7721
|
-
data: string;
|
|
7722
7721
|
mimeType: string;
|
|
7722
|
+
data: string;
|
|
7723
7723
|
annotations?: {
|
|
7724
7724
|
priority?: number | null | undefined;
|
|
7725
7725
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -7727,8 +7727,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7727
7727
|
} | null | undefined;
|
|
7728
7728
|
} | {
|
|
7729
7729
|
type: "audio";
|
|
7730
|
-
data: string;
|
|
7731
7730
|
mimeType: string;
|
|
7731
|
+
data: string;
|
|
7732
7732
|
annotations?: {
|
|
7733
7733
|
priority?: number | null | undefined;
|
|
7734
7734
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -7770,7 +7770,7 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
|
7770
7770
|
newText: string;
|
|
7771
7771
|
oldText: string | null;
|
|
7772
7772
|
})[] | null | undefined;
|
|
7773
|
-
kind?: "search" | "
|
|
7773
|
+
kind?: "search" | "move" | "delete" | "other" | "edit" | "read" | "execute" | "think" | "fetch" | null | undefined;
|
|
7774
7774
|
locations?: {
|
|
7775
7775
|
path: string;
|
|
7776
7776
|
line?: number | null | undefined;
|
|
@@ -7880,8 +7880,8 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7880
7880
|
type: z.ZodLiteral<"image">;
|
|
7881
7881
|
}, "strip", z.ZodTypeAny, {
|
|
7882
7882
|
type: "image";
|
|
7883
|
-
data: string;
|
|
7884
7883
|
mimeType: string;
|
|
7884
|
+
data: string;
|
|
7885
7885
|
annotations?: {
|
|
7886
7886
|
priority?: number | null | undefined;
|
|
7887
7887
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -7889,8 +7889,8 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7889
7889
|
} | null | undefined;
|
|
7890
7890
|
}, {
|
|
7891
7891
|
type: "image";
|
|
7892
|
-
data: string;
|
|
7893
7892
|
mimeType: string;
|
|
7893
|
+
data: string;
|
|
7894
7894
|
annotations?: {
|
|
7895
7895
|
priority?: number | null | undefined;
|
|
7896
7896
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -7915,8 +7915,8 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7915
7915
|
type: z.ZodLiteral<"audio">;
|
|
7916
7916
|
}, "strip", z.ZodTypeAny, {
|
|
7917
7917
|
type: "audio";
|
|
7918
|
-
data: string;
|
|
7919
7918
|
mimeType: string;
|
|
7919
|
+
data: string;
|
|
7920
7920
|
annotations?: {
|
|
7921
7921
|
priority?: number | null | undefined;
|
|
7922
7922
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -7924,8 +7924,8 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
7924
7924
|
} | null | undefined;
|
|
7925
7925
|
}, {
|
|
7926
7926
|
type: "audio";
|
|
7927
|
-
data: string;
|
|
7928
7927
|
mimeType: string;
|
|
7928
|
+
data: string;
|
|
7929
7929
|
annotations?: {
|
|
7930
7930
|
priority?: number | null | undefined;
|
|
7931
7931
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -8064,8 +8064,8 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8064
8064
|
} | null | undefined;
|
|
8065
8065
|
} | {
|
|
8066
8066
|
type: "image";
|
|
8067
|
-
data: string;
|
|
8068
8067
|
mimeType: string;
|
|
8068
|
+
data: string;
|
|
8069
8069
|
annotations?: {
|
|
8070
8070
|
priority?: number | null | undefined;
|
|
8071
8071
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -8073,8 +8073,8 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8073
8073
|
} | null | undefined;
|
|
8074
8074
|
} | {
|
|
8075
8075
|
type: "audio";
|
|
8076
|
-
data: string;
|
|
8077
8076
|
mimeType: string;
|
|
8077
|
+
data: string;
|
|
8078
8078
|
annotations?: {
|
|
8079
8079
|
priority?: number | null | undefined;
|
|
8080
8080
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -8122,8 +8122,8 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8122
8122
|
} | null | undefined;
|
|
8123
8123
|
} | {
|
|
8124
8124
|
type: "image";
|
|
8125
|
-
data: string;
|
|
8126
8125
|
mimeType: string;
|
|
8126
|
+
data: string;
|
|
8127
8127
|
annotations?: {
|
|
8128
8128
|
priority?: number | null | undefined;
|
|
8129
8129
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -8131,8 +8131,8 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8131
8131
|
} | null | undefined;
|
|
8132
8132
|
} | {
|
|
8133
8133
|
type: "audio";
|
|
8134
|
-
data: string;
|
|
8135
8134
|
mimeType: string;
|
|
8135
|
+
data: string;
|
|
8136
8136
|
annotations?: {
|
|
8137
8137
|
priority?: number | null | undefined;
|
|
8138
8138
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -8202,7 +8202,7 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8202
8202
|
}, "strip", z.ZodTypeAny, {
|
|
8203
8203
|
status: "completed" | "failed" | "pending" | "in_progress";
|
|
8204
8204
|
title: string;
|
|
8205
|
-
kind: "search" | "
|
|
8205
|
+
kind: "search" | "move" | "delete" | "other" | "edit" | "read" | "execute" | "think" | "fetch";
|
|
8206
8206
|
toolCallId: string;
|
|
8207
8207
|
content?: ({
|
|
8208
8208
|
type: "content";
|
|
@@ -8216,8 +8216,8 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8216
8216
|
} | null | undefined;
|
|
8217
8217
|
} | {
|
|
8218
8218
|
type: "image";
|
|
8219
|
-
data: string;
|
|
8220
8219
|
mimeType: string;
|
|
8220
|
+
data: string;
|
|
8221
8221
|
annotations?: {
|
|
8222
8222
|
priority?: number | null | undefined;
|
|
8223
8223
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -8225,8 +8225,8 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8225
8225
|
} | null | undefined;
|
|
8226
8226
|
} | {
|
|
8227
8227
|
type: "audio";
|
|
8228
|
-
data: string;
|
|
8229
8228
|
mimeType: string;
|
|
8229
|
+
data: string;
|
|
8230
8230
|
annotations?: {
|
|
8231
8231
|
priority?: number | null | undefined;
|
|
8232
8232
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -8276,7 +8276,7 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8276
8276
|
}, {
|
|
8277
8277
|
status: "completed" | "failed" | "pending" | "in_progress";
|
|
8278
8278
|
title: string;
|
|
8279
|
-
kind: "search" | "
|
|
8279
|
+
kind: "search" | "move" | "delete" | "other" | "edit" | "read" | "execute" | "think" | "fetch";
|
|
8280
8280
|
toolCallId: string;
|
|
8281
8281
|
content?: ({
|
|
8282
8282
|
type: "content";
|
|
@@ -8290,8 +8290,8 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8290
8290
|
} | null | undefined;
|
|
8291
8291
|
} | {
|
|
8292
8292
|
type: "image";
|
|
8293
|
-
data: string;
|
|
8294
8293
|
mimeType: string;
|
|
8294
|
+
data: string;
|
|
8295
8295
|
annotations?: {
|
|
8296
8296
|
priority?: number | null | undefined;
|
|
8297
8297
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -8299,8 +8299,8 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8299
8299
|
} | null | undefined;
|
|
8300
8300
|
} | {
|
|
8301
8301
|
type: "audio";
|
|
8302
|
-
data: string;
|
|
8303
8302
|
mimeType: string;
|
|
8303
|
+
data: string;
|
|
8304
8304
|
annotations?: {
|
|
8305
8305
|
priority?: number | null | undefined;
|
|
8306
8306
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -8358,7 +8358,7 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8358
8358
|
toolCall: {
|
|
8359
8359
|
status: "completed" | "failed" | "pending" | "in_progress";
|
|
8360
8360
|
title: string;
|
|
8361
|
-
kind: "search" | "
|
|
8361
|
+
kind: "search" | "move" | "delete" | "other" | "edit" | "read" | "execute" | "think" | "fetch";
|
|
8362
8362
|
toolCallId: string;
|
|
8363
8363
|
content?: ({
|
|
8364
8364
|
type: "content";
|
|
@@ -8372,8 +8372,8 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8372
8372
|
} | null | undefined;
|
|
8373
8373
|
} | {
|
|
8374
8374
|
type: "image";
|
|
8375
|
-
data: string;
|
|
8376
8375
|
mimeType: string;
|
|
8376
|
+
data: string;
|
|
8377
8377
|
annotations?: {
|
|
8378
8378
|
priority?: number | null | undefined;
|
|
8379
8379
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -8381,8 +8381,8 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8381
8381
|
} | null | undefined;
|
|
8382
8382
|
} | {
|
|
8383
8383
|
type: "audio";
|
|
8384
|
-
data: string;
|
|
8385
8384
|
mimeType: string;
|
|
8385
|
+
data: string;
|
|
8386
8386
|
annotations?: {
|
|
8387
8387
|
priority?: number | null | undefined;
|
|
8388
8388
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -8440,7 +8440,7 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8440
8440
|
toolCall: {
|
|
8441
8441
|
status: "completed" | "failed" | "pending" | "in_progress";
|
|
8442
8442
|
title: string;
|
|
8443
|
-
kind: "search" | "
|
|
8443
|
+
kind: "search" | "move" | "delete" | "other" | "edit" | "read" | "execute" | "think" | "fetch";
|
|
8444
8444
|
toolCallId: string;
|
|
8445
8445
|
content?: ({
|
|
8446
8446
|
type: "content";
|
|
@@ -8454,8 +8454,8 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8454
8454
|
} | null | undefined;
|
|
8455
8455
|
} | {
|
|
8456
8456
|
type: "image";
|
|
8457
|
-
data: string;
|
|
8458
8457
|
mimeType: string;
|
|
8458
|
+
data: string;
|
|
8459
8459
|
annotations?: {
|
|
8460
8460
|
priority?: number | null | undefined;
|
|
8461
8461
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -8463,8 +8463,8 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8463
8463
|
} | null | undefined;
|
|
8464
8464
|
} | {
|
|
8465
8465
|
type: "audio";
|
|
8466
|
-
data: string;
|
|
8467
8466
|
mimeType: string;
|
|
8467
|
+
data: string;
|
|
8468
8468
|
annotations?: {
|
|
8469
8469
|
priority?: number | null | undefined;
|
|
8470
8470
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -8724,8 +8724,8 @@ export declare const agentRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8724
8724
|
type: z.ZodLiteral<"image">;
|
|
8725
8725
|
}, "strip", z.ZodTypeAny, {
|
|
8726
8726
|
type: "image";
|
|
8727
|
-
data: string;
|
|
8728
8727
|
mimeType: string;
|
|
8728
|
+
data: string;
|
|
8729
8729
|
annotations?: {
|
|
8730
8730
|
priority?: number | null | undefined;
|
|
8731
8731
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -8733,8 +8733,8 @@ export declare const agentRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8733
8733
|
} | null | undefined;
|
|
8734
8734
|
}, {
|
|
8735
8735
|
type: "image";
|
|
8736
|
-
data: string;
|
|
8737
8736
|
mimeType: string;
|
|
8737
|
+
data: string;
|
|
8738
8738
|
annotations?: {
|
|
8739
8739
|
priority?: number | null | undefined;
|
|
8740
8740
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -8759,8 +8759,8 @@ export declare const agentRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8759
8759
|
type: z.ZodLiteral<"audio">;
|
|
8760
8760
|
}, "strip", z.ZodTypeAny, {
|
|
8761
8761
|
type: "audio";
|
|
8762
|
-
data: string;
|
|
8763
8762
|
mimeType: string;
|
|
8763
|
+
data: string;
|
|
8764
8764
|
annotations?: {
|
|
8765
8765
|
priority?: number | null | undefined;
|
|
8766
8766
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -8768,8 +8768,8 @@ export declare const agentRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8768
8768
|
} | null | undefined;
|
|
8769
8769
|
}, {
|
|
8770
8770
|
type: "audio";
|
|
8771
|
-
data: string;
|
|
8772
8771
|
mimeType: string;
|
|
8772
|
+
data: string;
|
|
8773
8773
|
annotations?: {
|
|
8774
8774
|
priority?: number | null | undefined;
|
|
8775
8775
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -8907,8 +8907,8 @@ export declare const agentRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8907
8907
|
} | null | undefined;
|
|
8908
8908
|
} | {
|
|
8909
8909
|
type: "image";
|
|
8910
|
-
data: string;
|
|
8911
8910
|
mimeType: string;
|
|
8911
|
+
data: string;
|
|
8912
8912
|
annotations?: {
|
|
8913
8913
|
priority?: number | null | undefined;
|
|
8914
8914
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -8916,8 +8916,8 @@ export declare const agentRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8916
8916
|
} | null | undefined;
|
|
8917
8917
|
} | {
|
|
8918
8918
|
type: "audio";
|
|
8919
|
-
data: string;
|
|
8920
8919
|
mimeType: string;
|
|
8920
|
+
data: string;
|
|
8921
8921
|
annotations?: {
|
|
8922
8922
|
priority?: number | null | undefined;
|
|
8923
8923
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -8965,8 +8965,8 @@ export declare const agentRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8965
8965
|
} | null | undefined;
|
|
8966
8966
|
} | {
|
|
8967
8967
|
type: "image";
|
|
8968
|
-
data: string;
|
|
8969
8968
|
mimeType: string;
|
|
8969
|
+
data: string;
|
|
8970
8970
|
annotations?: {
|
|
8971
8971
|
priority?: number | null | undefined;
|
|
8972
8972
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -8974,8 +8974,8 @@ export declare const agentRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
8974
8974
|
} | null | undefined;
|
|
8975
8975
|
} | {
|
|
8976
8976
|
type: "audio";
|
|
8977
|
-
data: string;
|
|
8978
8977
|
mimeType: string;
|
|
8978
|
+
data: string;
|
|
8979
8979
|
annotations?: {
|
|
8980
8980
|
priority?: number | null | undefined;
|
|
8981
8981
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -9067,8 +9067,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
9067
9067
|
type: z.ZodLiteral<"image">;
|
|
9068
9068
|
}, "strip", z.ZodTypeAny, {
|
|
9069
9069
|
type: "image";
|
|
9070
|
-
data: string;
|
|
9071
9070
|
mimeType: string;
|
|
9071
|
+
data: string;
|
|
9072
9072
|
annotations?: {
|
|
9073
9073
|
priority?: number | null | undefined;
|
|
9074
9074
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -9076,8 +9076,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
9076
9076
|
} | null | undefined;
|
|
9077
9077
|
}, {
|
|
9078
9078
|
type: "image";
|
|
9079
|
-
data: string;
|
|
9080
9079
|
mimeType: string;
|
|
9080
|
+
data: string;
|
|
9081
9081
|
annotations?: {
|
|
9082
9082
|
priority?: number | null | undefined;
|
|
9083
9083
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -9102,8 +9102,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
9102
9102
|
type: z.ZodLiteral<"audio">;
|
|
9103
9103
|
}, "strip", z.ZodTypeAny, {
|
|
9104
9104
|
type: "audio";
|
|
9105
|
-
data: string;
|
|
9106
9105
|
mimeType: string;
|
|
9106
|
+
data: string;
|
|
9107
9107
|
annotations?: {
|
|
9108
9108
|
priority?: number | null | undefined;
|
|
9109
9109
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -9111,8 +9111,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
9111
9111
|
} | null | undefined;
|
|
9112
9112
|
}, {
|
|
9113
9113
|
type: "audio";
|
|
9114
|
-
data: string;
|
|
9115
9114
|
mimeType: string;
|
|
9115
|
+
data: string;
|
|
9116
9116
|
annotations?: {
|
|
9117
9117
|
priority?: number | null | undefined;
|
|
9118
9118
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -9250,8 +9250,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
9250
9250
|
} | null | undefined;
|
|
9251
9251
|
} | {
|
|
9252
9252
|
type: "image";
|
|
9253
|
-
data: string;
|
|
9254
9253
|
mimeType: string;
|
|
9254
|
+
data: string;
|
|
9255
9255
|
annotations?: {
|
|
9256
9256
|
priority?: number | null | undefined;
|
|
9257
9257
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -9259,8 +9259,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
9259
9259
|
} | null | undefined;
|
|
9260
9260
|
} | {
|
|
9261
9261
|
type: "audio";
|
|
9262
|
-
data: string;
|
|
9263
9262
|
mimeType: string;
|
|
9263
|
+
data: string;
|
|
9264
9264
|
annotations?: {
|
|
9265
9265
|
priority?: number | null | undefined;
|
|
9266
9266
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -9308,8 +9308,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
9308
9308
|
} | null | undefined;
|
|
9309
9309
|
} | {
|
|
9310
9310
|
type: "image";
|
|
9311
|
-
data: string;
|
|
9312
9311
|
mimeType: string;
|
|
9312
|
+
data: string;
|
|
9313
9313
|
annotations?: {
|
|
9314
9314
|
priority?: number | null | undefined;
|
|
9315
9315
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -9317,8 +9317,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
9317
9317
|
} | null | undefined;
|
|
9318
9318
|
} | {
|
|
9319
9319
|
type: "audio";
|
|
9320
|
-
data: string;
|
|
9321
9320
|
mimeType: string;
|
|
9321
|
+
data: string;
|
|
9322
9322
|
annotations?: {
|
|
9323
9323
|
priority?: number | null | undefined;
|
|
9324
9324
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -9407,8 +9407,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
9407
9407
|
type: z.ZodLiteral<"image">;
|
|
9408
9408
|
}, "strip", z.ZodTypeAny, {
|
|
9409
9409
|
type: "image";
|
|
9410
|
-
data: string;
|
|
9411
9410
|
mimeType: string;
|
|
9411
|
+
data: string;
|
|
9412
9412
|
annotations?: {
|
|
9413
9413
|
priority?: number | null | undefined;
|
|
9414
9414
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -9416,8 +9416,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
9416
9416
|
} | null | undefined;
|
|
9417
9417
|
}, {
|
|
9418
9418
|
type: "image";
|
|
9419
|
-
data: string;
|
|
9420
9419
|
mimeType: string;
|
|
9420
|
+
data: string;
|
|
9421
9421
|
annotations?: {
|
|
9422
9422
|
priority?: number | null | undefined;
|
|
9423
9423
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -9442,8 +9442,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
9442
9442
|
type: z.ZodLiteral<"audio">;
|
|
9443
9443
|
}, "strip", z.ZodTypeAny, {
|
|
9444
9444
|
type: "audio";
|
|
9445
|
-
data: string;
|
|
9446
9445
|
mimeType: string;
|
|
9446
|
+
data: string;
|
|
9447
9447
|
annotations?: {
|
|
9448
9448
|
priority?: number | null | undefined;
|
|
9449
9449
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -9451,8 +9451,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
9451
9451
|
} | null | undefined;
|
|
9452
9452
|
}, {
|
|
9453
9453
|
type: "audio";
|
|
9454
|
-
data: string;
|
|
9455
9454
|
mimeType: string;
|
|
9455
|
+
data: string;
|
|
9456
9456
|
annotations?: {
|
|
9457
9457
|
priority?: number | null | undefined;
|
|
9458
9458
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -9590,8 +9590,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
9590
9590
|
} | null | undefined;
|
|
9591
9591
|
} | {
|
|
9592
9592
|
type: "image";
|
|
9593
|
-
data: string;
|
|
9594
9593
|
mimeType: string;
|
|
9594
|
+
data: string;
|
|
9595
9595
|
annotations?: {
|
|
9596
9596
|
priority?: number | null | undefined;
|
|
9597
9597
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -9599,8 +9599,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
9599
9599
|
} | null | undefined;
|
|
9600
9600
|
} | {
|
|
9601
9601
|
type: "audio";
|
|
9602
|
-
data: string;
|
|
9603
9602
|
mimeType: string;
|
|
9603
|
+
data: string;
|
|
9604
9604
|
annotations?: {
|
|
9605
9605
|
priority?: number | null | undefined;
|
|
9606
9606
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -9648,8 +9648,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
9648
9648
|
} | null | undefined;
|
|
9649
9649
|
} | {
|
|
9650
9650
|
type: "image";
|
|
9651
|
-
data: string;
|
|
9652
9651
|
mimeType: string;
|
|
9652
|
+
data: string;
|
|
9653
9653
|
annotations?: {
|
|
9654
9654
|
priority?: number | null | undefined;
|
|
9655
9655
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -9657,8 +9657,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
9657
9657
|
} | null | undefined;
|
|
9658
9658
|
} | {
|
|
9659
9659
|
type: "audio";
|
|
9660
|
-
data: string;
|
|
9661
9660
|
mimeType: string;
|
|
9661
|
+
data: string;
|
|
9662
9662
|
annotations?: {
|
|
9663
9663
|
priority?: number | null | undefined;
|
|
9664
9664
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -9747,8 +9747,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
9747
9747
|
type: z.ZodLiteral<"image">;
|
|
9748
9748
|
}, "strip", z.ZodTypeAny, {
|
|
9749
9749
|
type: "image";
|
|
9750
|
-
data: string;
|
|
9751
9750
|
mimeType: string;
|
|
9751
|
+
data: string;
|
|
9752
9752
|
annotations?: {
|
|
9753
9753
|
priority?: number | null | undefined;
|
|
9754
9754
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -9756,8 +9756,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
9756
9756
|
} | null | undefined;
|
|
9757
9757
|
}, {
|
|
9758
9758
|
type: "image";
|
|
9759
|
-
data: string;
|
|
9760
9759
|
mimeType: string;
|
|
9760
|
+
data: string;
|
|
9761
9761
|
annotations?: {
|
|
9762
9762
|
priority?: number | null | undefined;
|
|
9763
9763
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -9782,8 +9782,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
9782
9782
|
type: z.ZodLiteral<"audio">;
|
|
9783
9783
|
}, "strip", z.ZodTypeAny, {
|
|
9784
9784
|
type: "audio";
|
|
9785
|
-
data: string;
|
|
9786
9785
|
mimeType: string;
|
|
9786
|
+
data: string;
|
|
9787
9787
|
annotations?: {
|
|
9788
9788
|
priority?: number | null | undefined;
|
|
9789
9789
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -9791,8 +9791,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
9791
9791
|
} | null | undefined;
|
|
9792
9792
|
}, {
|
|
9793
9793
|
type: "audio";
|
|
9794
|
-
data: string;
|
|
9795
9794
|
mimeType: string;
|
|
9795
|
+
data: string;
|
|
9796
9796
|
annotations?: {
|
|
9797
9797
|
priority?: number | null | undefined;
|
|
9798
9798
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -9930,8 +9930,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
9930
9930
|
} | null | undefined;
|
|
9931
9931
|
} | {
|
|
9932
9932
|
type: "image";
|
|
9933
|
-
data: string;
|
|
9934
9933
|
mimeType: string;
|
|
9934
|
+
data: string;
|
|
9935
9935
|
annotations?: {
|
|
9936
9936
|
priority?: number | null | undefined;
|
|
9937
9937
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -9939,8 +9939,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
9939
9939
|
} | null | undefined;
|
|
9940
9940
|
} | {
|
|
9941
9941
|
type: "audio";
|
|
9942
|
-
data: string;
|
|
9943
9942
|
mimeType: string;
|
|
9943
|
+
data: string;
|
|
9944
9944
|
annotations?: {
|
|
9945
9945
|
priority?: number | null | undefined;
|
|
9946
9946
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -9988,8 +9988,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
9988
9988
|
} | null | undefined;
|
|
9989
9989
|
} | {
|
|
9990
9990
|
type: "image";
|
|
9991
|
-
data: string;
|
|
9992
9991
|
mimeType: string;
|
|
9992
|
+
data: string;
|
|
9993
9993
|
annotations?: {
|
|
9994
9994
|
priority?: number | null | undefined;
|
|
9995
9995
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -9997,8 +9997,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
9997
9997
|
} | null | undefined;
|
|
9998
9998
|
} | {
|
|
9999
9999
|
type: "audio";
|
|
10000
|
-
data: string;
|
|
10001
10000
|
mimeType: string;
|
|
10001
|
+
data: string;
|
|
10002
10002
|
annotations?: {
|
|
10003
10003
|
priority?: number | null | undefined;
|
|
10004
10004
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -10088,8 +10088,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
10088
10088
|
type: z.ZodLiteral<"image">;
|
|
10089
10089
|
}, "strip", z.ZodTypeAny, {
|
|
10090
10090
|
type: "image";
|
|
10091
|
-
data: string;
|
|
10092
10091
|
mimeType: string;
|
|
10092
|
+
data: string;
|
|
10093
10093
|
annotations?: {
|
|
10094
10094
|
priority?: number | null | undefined;
|
|
10095
10095
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -10097,8 +10097,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
10097
10097
|
} | null | undefined;
|
|
10098
10098
|
}, {
|
|
10099
10099
|
type: "image";
|
|
10100
|
-
data: string;
|
|
10101
10100
|
mimeType: string;
|
|
10101
|
+
data: string;
|
|
10102
10102
|
annotations?: {
|
|
10103
10103
|
priority?: number | null | undefined;
|
|
10104
10104
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -10123,8 +10123,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
10123
10123
|
type: z.ZodLiteral<"audio">;
|
|
10124
10124
|
}, "strip", z.ZodTypeAny, {
|
|
10125
10125
|
type: "audio";
|
|
10126
|
-
data: string;
|
|
10127
10126
|
mimeType: string;
|
|
10127
|
+
data: string;
|
|
10128
10128
|
annotations?: {
|
|
10129
10129
|
priority?: number | null | undefined;
|
|
10130
10130
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -10132,8 +10132,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
10132
10132
|
} | null | undefined;
|
|
10133
10133
|
}, {
|
|
10134
10134
|
type: "audio";
|
|
10135
|
-
data: string;
|
|
10136
10135
|
mimeType: string;
|
|
10136
|
+
data: string;
|
|
10137
10137
|
annotations?: {
|
|
10138
10138
|
priority?: number | null | undefined;
|
|
10139
10139
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -10272,8 +10272,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
10272
10272
|
} | null | undefined;
|
|
10273
10273
|
} | {
|
|
10274
10274
|
type: "image";
|
|
10275
|
-
data: string;
|
|
10276
10275
|
mimeType: string;
|
|
10276
|
+
data: string;
|
|
10277
10277
|
annotations?: {
|
|
10278
10278
|
priority?: number | null | undefined;
|
|
10279
10279
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -10281,8 +10281,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
10281
10281
|
} | null | undefined;
|
|
10282
10282
|
} | {
|
|
10283
10283
|
type: "audio";
|
|
10284
|
-
data: string;
|
|
10285
10284
|
mimeType: string;
|
|
10285
|
+
data: string;
|
|
10286
10286
|
annotations?: {
|
|
10287
10287
|
priority?: number | null | undefined;
|
|
10288
10288
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -10330,8 +10330,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
10330
10330
|
} | null | undefined;
|
|
10331
10331
|
} | {
|
|
10332
10332
|
type: "image";
|
|
10333
|
-
data: string;
|
|
10334
10333
|
mimeType: string;
|
|
10334
|
+
data: string;
|
|
10335
10335
|
annotations?: {
|
|
10336
10336
|
priority?: number | null | undefined;
|
|
10337
10337
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -10339,8 +10339,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
10339
10339
|
} | null | undefined;
|
|
10340
10340
|
} | {
|
|
10341
10341
|
type: "audio";
|
|
10342
|
-
data: string;
|
|
10343
10342
|
mimeType: string;
|
|
10343
|
+
data: string;
|
|
10344
10344
|
annotations?: {
|
|
10345
10345
|
priority?: number | null | undefined;
|
|
10346
10346
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -10411,7 +10411,7 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
10411
10411
|
}, "strip", z.ZodTypeAny, {
|
|
10412
10412
|
status: "completed" | "failed" | "pending" | "in_progress";
|
|
10413
10413
|
title: string;
|
|
10414
|
-
kind: "search" | "
|
|
10414
|
+
kind: "search" | "move" | "delete" | "other" | "edit" | "read" | "execute" | "think" | "fetch";
|
|
10415
10415
|
toolCallId: string;
|
|
10416
10416
|
sessionUpdate: "tool_call";
|
|
10417
10417
|
content?: ({
|
|
@@ -10426,8 +10426,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
10426
10426
|
} | null | undefined;
|
|
10427
10427
|
} | {
|
|
10428
10428
|
type: "image";
|
|
10429
|
-
data: string;
|
|
10430
10429
|
mimeType: string;
|
|
10430
|
+
data: string;
|
|
10431
10431
|
annotations?: {
|
|
10432
10432
|
priority?: number | null | undefined;
|
|
10433
10433
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -10435,8 +10435,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
10435
10435
|
} | null | undefined;
|
|
10436
10436
|
} | {
|
|
10437
10437
|
type: "audio";
|
|
10438
|
-
data: string;
|
|
10439
10438
|
mimeType: string;
|
|
10439
|
+
data: string;
|
|
10440
10440
|
annotations?: {
|
|
10441
10441
|
priority?: number | null | undefined;
|
|
10442
10442
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -10486,7 +10486,7 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
10486
10486
|
}, {
|
|
10487
10487
|
status: "completed" | "failed" | "pending" | "in_progress";
|
|
10488
10488
|
title: string;
|
|
10489
|
-
kind: "search" | "
|
|
10489
|
+
kind: "search" | "move" | "delete" | "other" | "edit" | "read" | "execute" | "think" | "fetch";
|
|
10490
10490
|
toolCallId: string;
|
|
10491
10491
|
sessionUpdate: "tool_call";
|
|
10492
10492
|
content?: ({
|
|
@@ -10501,8 +10501,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
10501
10501
|
} | null | undefined;
|
|
10502
10502
|
} | {
|
|
10503
10503
|
type: "image";
|
|
10504
|
-
data: string;
|
|
10505
10504
|
mimeType: string;
|
|
10505
|
+
data: string;
|
|
10506
10506
|
annotations?: {
|
|
10507
10507
|
priority?: number | null | undefined;
|
|
10508
10508
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -10510,8 +10510,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
10510
10510
|
} | null | undefined;
|
|
10511
10511
|
} | {
|
|
10512
10512
|
type: "audio";
|
|
10513
|
-
data: string;
|
|
10514
10513
|
mimeType: string;
|
|
10514
|
+
data: string;
|
|
10515
10515
|
annotations?: {
|
|
10516
10516
|
priority?: number | null | undefined;
|
|
10517
10517
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -10611,8 +10611,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
10611
10611
|
type: z.ZodLiteral<"image">;
|
|
10612
10612
|
}, "strip", z.ZodTypeAny, {
|
|
10613
10613
|
type: "image";
|
|
10614
|
-
data: string;
|
|
10615
10614
|
mimeType: string;
|
|
10615
|
+
data: string;
|
|
10616
10616
|
annotations?: {
|
|
10617
10617
|
priority?: number | null | undefined;
|
|
10618
10618
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -10620,8 +10620,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
10620
10620
|
} | null | undefined;
|
|
10621
10621
|
}, {
|
|
10622
10622
|
type: "image";
|
|
10623
|
-
data: string;
|
|
10624
10623
|
mimeType: string;
|
|
10624
|
+
data: string;
|
|
10625
10625
|
annotations?: {
|
|
10626
10626
|
priority?: number | null | undefined;
|
|
10627
10627
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -10646,8 +10646,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
10646
10646
|
type: z.ZodLiteral<"audio">;
|
|
10647
10647
|
}, "strip", z.ZodTypeAny, {
|
|
10648
10648
|
type: "audio";
|
|
10649
|
-
data: string;
|
|
10650
10649
|
mimeType: string;
|
|
10650
|
+
data: string;
|
|
10651
10651
|
annotations?: {
|
|
10652
10652
|
priority?: number | null | undefined;
|
|
10653
10653
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -10655,8 +10655,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
10655
10655
|
} | null | undefined;
|
|
10656
10656
|
}, {
|
|
10657
10657
|
type: "audio";
|
|
10658
|
-
data: string;
|
|
10659
10658
|
mimeType: string;
|
|
10659
|
+
data: string;
|
|
10660
10660
|
annotations?: {
|
|
10661
10661
|
priority?: number | null | undefined;
|
|
10662
10662
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -10795,8 +10795,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
10795
10795
|
} | null | undefined;
|
|
10796
10796
|
} | {
|
|
10797
10797
|
type: "image";
|
|
10798
|
-
data: string;
|
|
10799
10798
|
mimeType: string;
|
|
10799
|
+
data: string;
|
|
10800
10800
|
annotations?: {
|
|
10801
10801
|
priority?: number | null | undefined;
|
|
10802
10802
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -10804,8 +10804,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
10804
10804
|
} | null | undefined;
|
|
10805
10805
|
} | {
|
|
10806
10806
|
type: "audio";
|
|
10807
|
-
data: string;
|
|
10808
10807
|
mimeType: string;
|
|
10808
|
+
data: string;
|
|
10809
10809
|
annotations?: {
|
|
10810
10810
|
priority?: number | null | undefined;
|
|
10811
10811
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -10853,8 +10853,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
10853
10853
|
} | null | undefined;
|
|
10854
10854
|
} | {
|
|
10855
10855
|
type: "image";
|
|
10856
|
-
data: string;
|
|
10857
10856
|
mimeType: string;
|
|
10857
|
+
data: string;
|
|
10858
10858
|
annotations?: {
|
|
10859
10859
|
priority?: number | null | undefined;
|
|
10860
10860
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -10862,8 +10862,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
10862
10862
|
} | null | undefined;
|
|
10863
10863
|
} | {
|
|
10864
10864
|
type: "audio";
|
|
10865
|
-
data: string;
|
|
10866
10865
|
mimeType: string;
|
|
10866
|
+
data: string;
|
|
10867
10867
|
annotations?: {
|
|
10868
10868
|
priority?: number | null | undefined;
|
|
10869
10869
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -10948,8 +10948,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
10948
10948
|
} | null | undefined;
|
|
10949
10949
|
} | {
|
|
10950
10950
|
type: "image";
|
|
10951
|
-
data: string;
|
|
10952
10951
|
mimeType: string;
|
|
10952
|
+
data: string;
|
|
10953
10953
|
annotations?: {
|
|
10954
10954
|
priority?: number | null | undefined;
|
|
10955
10955
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -10957,8 +10957,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
10957
10957
|
} | null | undefined;
|
|
10958
10958
|
} | {
|
|
10959
10959
|
type: "audio";
|
|
10960
|
-
data: string;
|
|
10961
10960
|
mimeType: string;
|
|
10961
|
+
data: string;
|
|
10962
10962
|
annotations?: {
|
|
10963
10963
|
priority?: number | null | undefined;
|
|
10964
10964
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -11000,7 +11000,7 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11000
11000
|
newText: string;
|
|
11001
11001
|
oldText: string | null;
|
|
11002
11002
|
})[] | null | undefined;
|
|
11003
|
-
kind?: "search" | "
|
|
11003
|
+
kind?: "search" | "move" | "delete" | "other" | "edit" | "read" | "execute" | "think" | "fetch" | null | undefined;
|
|
11004
11004
|
locations?: {
|
|
11005
11005
|
path: string;
|
|
11006
11006
|
line?: number | null | undefined;
|
|
@@ -11023,8 +11023,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11023
11023
|
} | null | undefined;
|
|
11024
11024
|
} | {
|
|
11025
11025
|
type: "image";
|
|
11026
|
-
data: string;
|
|
11027
11026
|
mimeType: string;
|
|
11027
|
+
data: string;
|
|
11028
11028
|
annotations?: {
|
|
11029
11029
|
priority?: number | null | undefined;
|
|
11030
11030
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -11032,8 +11032,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11032
11032
|
} | null | undefined;
|
|
11033
11033
|
} | {
|
|
11034
11034
|
type: "audio";
|
|
11035
|
-
data: string;
|
|
11036
11035
|
mimeType: string;
|
|
11036
|
+
data: string;
|
|
11037
11037
|
annotations?: {
|
|
11038
11038
|
priority?: number | null | undefined;
|
|
11039
11039
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -11075,7 +11075,7 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11075
11075
|
newText: string;
|
|
11076
11076
|
oldText: string | null;
|
|
11077
11077
|
})[] | null | undefined;
|
|
11078
|
-
kind?: "search" | "
|
|
11078
|
+
kind?: "search" | "move" | "delete" | "other" | "edit" | "read" | "execute" | "think" | "fetch" | null | undefined;
|
|
11079
11079
|
locations?: {
|
|
11080
11080
|
path: string;
|
|
11081
11081
|
line?: number | null | undefined;
|
|
@@ -11124,8 +11124,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11124
11124
|
} | null | undefined;
|
|
11125
11125
|
} | {
|
|
11126
11126
|
type: "image";
|
|
11127
|
-
data: string;
|
|
11128
11127
|
mimeType: string;
|
|
11128
|
+
data: string;
|
|
11129
11129
|
annotations?: {
|
|
11130
11130
|
priority?: number | null | undefined;
|
|
11131
11131
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -11133,8 +11133,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11133
11133
|
} | null | undefined;
|
|
11134
11134
|
} | {
|
|
11135
11135
|
type: "audio";
|
|
11136
|
-
data: string;
|
|
11137
11136
|
mimeType: string;
|
|
11137
|
+
data: string;
|
|
11138
11138
|
annotations?: {
|
|
11139
11139
|
priority?: number | null | undefined;
|
|
11140
11140
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -11182,8 +11182,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11182
11182
|
} | null | undefined;
|
|
11183
11183
|
} | {
|
|
11184
11184
|
type: "image";
|
|
11185
|
-
data: string;
|
|
11186
11185
|
mimeType: string;
|
|
11186
|
+
data: string;
|
|
11187
11187
|
annotations?: {
|
|
11188
11188
|
priority?: number | null | undefined;
|
|
11189
11189
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -11191,8 +11191,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11191
11191
|
} | null | undefined;
|
|
11192
11192
|
} | {
|
|
11193
11193
|
type: "audio";
|
|
11194
|
-
data: string;
|
|
11195
11194
|
mimeType: string;
|
|
11195
|
+
data: string;
|
|
11196
11196
|
annotations?: {
|
|
11197
11197
|
priority?: number | null | undefined;
|
|
11198
11198
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -11240,8 +11240,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11240
11240
|
} | null | undefined;
|
|
11241
11241
|
} | {
|
|
11242
11242
|
type: "image";
|
|
11243
|
-
data: string;
|
|
11244
11243
|
mimeType: string;
|
|
11244
|
+
data: string;
|
|
11245
11245
|
annotations?: {
|
|
11246
11246
|
priority?: number | null | undefined;
|
|
11247
11247
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -11249,8 +11249,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11249
11249
|
} | null | undefined;
|
|
11250
11250
|
} | {
|
|
11251
11251
|
type: "audio";
|
|
11252
|
-
data: string;
|
|
11253
11252
|
mimeType: string;
|
|
11253
|
+
data: string;
|
|
11254
11254
|
annotations?: {
|
|
11255
11255
|
priority?: number | null | undefined;
|
|
11256
11256
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -11290,7 +11290,7 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11290
11290
|
} | {
|
|
11291
11291
|
status: "completed" | "failed" | "pending" | "in_progress";
|
|
11292
11292
|
title: string;
|
|
11293
|
-
kind: "search" | "
|
|
11293
|
+
kind: "search" | "move" | "delete" | "other" | "edit" | "read" | "execute" | "think" | "fetch";
|
|
11294
11294
|
toolCallId: string;
|
|
11295
11295
|
sessionUpdate: "tool_call";
|
|
11296
11296
|
content?: ({
|
|
@@ -11305,8 +11305,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11305
11305
|
} | null | undefined;
|
|
11306
11306
|
} | {
|
|
11307
11307
|
type: "image";
|
|
11308
|
-
data: string;
|
|
11309
11308
|
mimeType: string;
|
|
11309
|
+
data: string;
|
|
11310
11310
|
annotations?: {
|
|
11311
11311
|
priority?: number | null | undefined;
|
|
11312
11312
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -11314,8 +11314,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11314
11314
|
} | null | undefined;
|
|
11315
11315
|
} | {
|
|
11316
11316
|
type: "audio";
|
|
11317
|
-
data: string;
|
|
11318
11317
|
mimeType: string;
|
|
11318
|
+
data: string;
|
|
11319
11319
|
annotations?: {
|
|
11320
11320
|
priority?: number | null | undefined;
|
|
11321
11321
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -11379,8 +11379,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11379
11379
|
} | null | undefined;
|
|
11380
11380
|
} | {
|
|
11381
11381
|
type: "image";
|
|
11382
|
-
data: string;
|
|
11383
11382
|
mimeType: string;
|
|
11383
|
+
data: string;
|
|
11384
11384
|
annotations?: {
|
|
11385
11385
|
priority?: number | null | undefined;
|
|
11386
11386
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -11388,8 +11388,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11388
11388
|
} | null | undefined;
|
|
11389
11389
|
} | {
|
|
11390
11390
|
type: "audio";
|
|
11391
|
-
data: string;
|
|
11392
11391
|
mimeType: string;
|
|
11392
|
+
data: string;
|
|
11393
11393
|
annotations?: {
|
|
11394
11394
|
priority?: number | null | undefined;
|
|
11395
11395
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -11431,7 +11431,7 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11431
11431
|
newText: string;
|
|
11432
11432
|
oldText: string | null;
|
|
11433
11433
|
})[] | null | undefined;
|
|
11434
|
-
kind?: "search" | "
|
|
11434
|
+
kind?: "search" | "move" | "delete" | "other" | "edit" | "read" | "execute" | "think" | "fetch" | null | undefined;
|
|
11435
11435
|
locations?: {
|
|
11436
11436
|
path: string;
|
|
11437
11437
|
line?: number | null | undefined;
|
|
@@ -11458,8 +11458,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11458
11458
|
} | null | undefined;
|
|
11459
11459
|
} | {
|
|
11460
11460
|
type: "image";
|
|
11461
|
-
data: string;
|
|
11462
11461
|
mimeType: string;
|
|
11462
|
+
data: string;
|
|
11463
11463
|
annotations?: {
|
|
11464
11464
|
priority?: number | null | undefined;
|
|
11465
11465
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -11467,8 +11467,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11467
11467
|
} | null | undefined;
|
|
11468
11468
|
} | {
|
|
11469
11469
|
type: "audio";
|
|
11470
|
-
data: string;
|
|
11471
11470
|
mimeType: string;
|
|
11471
|
+
data: string;
|
|
11472
11472
|
annotations?: {
|
|
11473
11473
|
priority?: number | null | undefined;
|
|
11474
11474
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -11516,8 +11516,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11516
11516
|
} | null | undefined;
|
|
11517
11517
|
} | {
|
|
11518
11518
|
type: "image";
|
|
11519
|
-
data: string;
|
|
11520
11519
|
mimeType: string;
|
|
11520
|
+
data: string;
|
|
11521
11521
|
annotations?: {
|
|
11522
11522
|
priority?: number | null | undefined;
|
|
11523
11523
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -11525,8 +11525,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11525
11525
|
} | null | undefined;
|
|
11526
11526
|
} | {
|
|
11527
11527
|
type: "audio";
|
|
11528
|
-
data: string;
|
|
11529
11528
|
mimeType: string;
|
|
11529
|
+
data: string;
|
|
11530
11530
|
annotations?: {
|
|
11531
11531
|
priority?: number | null | undefined;
|
|
11532
11532
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -11574,8 +11574,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11574
11574
|
} | null | undefined;
|
|
11575
11575
|
} | {
|
|
11576
11576
|
type: "image";
|
|
11577
|
-
data: string;
|
|
11578
11577
|
mimeType: string;
|
|
11578
|
+
data: string;
|
|
11579
11579
|
annotations?: {
|
|
11580
11580
|
priority?: number | null | undefined;
|
|
11581
11581
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -11583,8 +11583,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11583
11583
|
} | null | undefined;
|
|
11584
11584
|
} | {
|
|
11585
11585
|
type: "audio";
|
|
11586
|
-
data: string;
|
|
11587
11586
|
mimeType: string;
|
|
11587
|
+
data: string;
|
|
11588
11588
|
annotations?: {
|
|
11589
11589
|
priority?: number | null | undefined;
|
|
11590
11590
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -11624,7 +11624,7 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11624
11624
|
} | {
|
|
11625
11625
|
status: "completed" | "failed" | "pending" | "in_progress";
|
|
11626
11626
|
title: string;
|
|
11627
|
-
kind: "search" | "
|
|
11627
|
+
kind: "search" | "move" | "delete" | "other" | "edit" | "read" | "execute" | "think" | "fetch";
|
|
11628
11628
|
toolCallId: string;
|
|
11629
11629
|
sessionUpdate: "tool_call";
|
|
11630
11630
|
content?: ({
|
|
@@ -11639,8 +11639,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11639
11639
|
} | null | undefined;
|
|
11640
11640
|
} | {
|
|
11641
11641
|
type: "image";
|
|
11642
|
-
data: string;
|
|
11643
11642
|
mimeType: string;
|
|
11643
|
+
data: string;
|
|
11644
11644
|
annotations?: {
|
|
11645
11645
|
priority?: number | null | undefined;
|
|
11646
11646
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -11648,8 +11648,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11648
11648
|
} | null | undefined;
|
|
11649
11649
|
} | {
|
|
11650
11650
|
type: "audio";
|
|
11651
|
-
data: string;
|
|
11652
11651
|
mimeType: string;
|
|
11652
|
+
data: string;
|
|
11653
11653
|
annotations?: {
|
|
11654
11654
|
priority?: number | null | undefined;
|
|
11655
11655
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -11713,8 +11713,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11713
11713
|
} | null | undefined;
|
|
11714
11714
|
} | {
|
|
11715
11715
|
type: "image";
|
|
11716
|
-
data: string;
|
|
11717
11716
|
mimeType: string;
|
|
11717
|
+
data: string;
|
|
11718
11718
|
annotations?: {
|
|
11719
11719
|
priority?: number | null | undefined;
|
|
11720
11720
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -11722,8 +11722,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11722
11722
|
} | null | undefined;
|
|
11723
11723
|
} | {
|
|
11724
11724
|
type: "audio";
|
|
11725
|
-
data: string;
|
|
11726
11725
|
mimeType: string;
|
|
11726
|
+
data: string;
|
|
11727
11727
|
annotations?: {
|
|
11728
11728
|
priority?: number | null | undefined;
|
|
11729
11729
|
audience?: ("user" | "assistant")[] | null | undefined;
|
|
@@ -11765,7 +11765,7 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
|
11765
11765
|
newText: string;
|
|
11766
11766
|
oldText: string | null;
|
|
11767
11767
|
})[] | null | undefined;
|
|
11768
|
-
kind?: "search" | "
|
|
11768
|
+
kind?: "search" | "move" | "delete" | "other" | "edit" | "read" | "execute" | "think" | "fetch" | null | undefined;
|
|
11769
11769
|
locations?: {
|
|
11770
11770
|
path: string;
|
|
11771
11771
|
line?: number | null | undefined;
|