@vybestack/llxprt-code 0.3.4-nightly.250918.ed04d656 → 0.3.4-nightly.250921.fdbf3cd7
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/README.md +3 -0
- package/dist/package.json +7 -6
- package/dist/src/commands/extensions/examples/context/LLXPRT.md +8 -0
- package/dist/src/commands/extensions/examples/context/llxprt-extension.json +5 -0
- package/dist/src/commands/extensions/examples/custom-commands/commands/fs/grep-code.toml +6 -0
- package/dist/src/commands/extensions/examples/custom-commands/llxprt-extension.json +4 -0
- package/dist/src/commands/extensions/examples/exclude-tools/llxprt-extension.json +5 -0
- package/dist/src/commands/extensions/examples/mcp-server/example.d.ts +6 -0
- package/dist/src/commands/extensions/examples/mcp-server/example.js +46 -0
- package/dist/src/commands/extensions/examples/mcp-server/example.js.map +1 -0
- package/dist/src/commands/extensions/examples/mcp-server/example.ts +60 -0
- package/dist/src/commands/extensions/examples/mcp-server/llxprt-extension.json +10 -0
- package/dist/src/commands/extensions/install.js +35 -7
- package/dist/src/commands/extensions/install.js.map +1 -1
- package/dist/src/commands/extensions/install.test.js +20 -2
- package/dist/src/commands/extensions/install.test.js.map +1 -1
- package/dist/src/commands/extensions/link.d.ts +12 -0
- package/dist/src/commands/extensions/link.js +37 -0
- package/dist/src/commands/extensions/link.js.map +1 -0
- package/dist/src/commands/extensions/new.d.ts +7 -0
- package/dist/src/commands/extensions/new.js +70 -0
- package/dist/src/commands/extensions/new.js.map +1 -0
- package/dist/src/commands/extensions/new.test.d.ts +6 -0
- package/dist/src/commands/extensions/new.test.js +50 -0
- package/dist/src/commands/extensions/new.test.js.map +1 -0
- package/dist/src/commands/extensions/update.d.ts +2 -1
- package/dist/src/commands/extensions/update.js +40 -13
- package/dist/src/commands/extensions/update.js.map +1 -1
- package/dist/src/commands/extensions.js +4 -0
- package/dist/src/commands/extensions.js.map +1 -1
- package/dist/src/commands/mcp/add.js +1 -1
- package/dist/src/commands/mcp/add.js.map +1 -1
- package/dist/src/commands/mcp/list.js +2 -2
- package/dist/src/commands/mcp/list.js.map +1 -1
- package/dist/src/commands/mcp/remove.js +1 -1
- package/dist/src/commands/mcp/remove.js.map +1 -1
- package/dist/src/config/auth.d.ts +1 -1
- package/dist/src/config/auth.js +6 -13
- package/dist/src/config/auth.js.map +1 -1
- package/dist/src/config/auth.test.js +13 -7
- package/dist/src/config/auth.test.js.map +1 -1
- package/dist/src/config/config.d.ts +4 -1
- package/dist/src/config/config.js +47 -23
- package/dist/src/config/config.js.map +1 -1
- package/dist/src/config/extension.d.ts +8 -5
- package/dist/src/config/extension.js +76 -24
- package/dist/src/config/extension.js.map +1 -1
- package/dist/src/config/keyBindings.d.ts +1 -0
- package/dist/src/config/keyBindings.js +6 -25
- package/dist/src/config/keyBindings.js.map +1 -1
- package/dist/src/config/settings.d.ts +4 -4
- package/dist/src/config/settings.js +101 -68
- package/dist/src/config/settings.js.map +1 -1
- package/dist/src/config/settingsSchema.d.ts +252 -3
- package/dist/src/config/settingsSchema.js +248 -3
- package/dist/src/config/settingsSchema.js.map +1 -1
- package/dist/src/config/trustedFolders.d.ts +14 -3
- package/dist/src/config/trustedFolders.js +63 -37
- package/dist/src/config/trustedFolders.js.map +1 -1
- package/dist/src/config/trustedFolders.test.js +84 -9
- package/dist/src/config/trustedFolders.test.js.map +1 -1
- package/dist/src/gemini.js +74 -18
- package/dist/src/gemini.js.map +1 -1
- package/dist/src/gemini.test.js +7 -23
- package/dist/src/gemini.test.js.map +1 -1
- package/dist/src/generated/git-commit.d.ts +1 -1
- package/dist/src/generated/git-commit.js +1 -1
- package/dist/src/nonInteractiveCli.js +32 -2
- package/dist/src/nonInteractiveCli.js.map +1 -1
- package/dist/src/providers/providerManagerInstance.js +0 -1
- package/dist/src/providers/providerManagerInstance.js.map +1 -1
- package/dist/src/services/FileCommandLoader.d.ts +2 -0
- package/dist/src/services/FileCommandLoader.js +7 -0
- package/dist/src/services/FileCommandLoader.js.map +1 -1
- package/dist/src/ui/App.js +103 -51
- package/dist/src/ui/App.js.map +1 -1
- package/dist/src/ui/commands/directoryCommand.js +1 -1
- package/dist/src/ui/commands/directoryCommand.js.map +1 -1
- package/dist/src/ui/commands/memoryCommand.js +1 -1
- package/dist/src/ui/commands/memoryCommand.js.map +1 -1
- package/dist/src/ui/components/AuthDialog.test.js +13 -13
- package/dist/src/ui/components/AuthDialog.test.js.map +1 -1
- package/dist/src/ui/components/FolderTrustDialog.js +5 -3
- package/dist/src/ui/components/FolderTrustDialog.js.map +1 -1
- package/dist/src/ui/components/FolderTrustDialog.test.js +21 -6
- package/dist/src/ui/components/FolderTrustDialog.test.js.map +1 -1
- package/dist/src/ui/components/Footer.d.ts +3 -0
- package/dist/src/ui/components/Footer.js +4 -4
- package/dist/src/ui/components/Footer.js.map +1 -1
- package/dist/src/ui/components/GeminiRespondingSpinner.js +5 -3
- package/dist/src/ui/components/GeminiRespondingSpinner.js.map +1 -1
- package/dist/src/ui/components/InputPrompt.d.ts +2 -2
- package/dist/src/ui/components/InputPrompt.js +35 -25
- package/dist/src/ui/components/InputPrompt.js.map +1 -1
- package/dist/src/ui/components/MemoryUsageDisplay.js +1 -1
- package/dist/src/ui/components/MemoryUsageDisplay.js.map +1 -1
- package/dist/src/ui/components/ProQuotaDialog.d.ts +13 -0
- package/dist/src/ui/components/ProQuotaDialog.js +22 -0
- package/dist/src/ui/components/ProQuotaDialog.js.map +1 -0
- package/dist/src/ui/components/ProQuotaDialog.test.d.ts +6 -0
- package/dist/src/ui/components/ProQuotaDialog.test.js +57 -0
- package/dist/src/ui/components/ProQuotaDialog.test.js.map +1 -0
- package/dist/src/ui/components/SettingsDialog.test.js +2 -2
- package/dist/src/ui/components/SettingsDialog.test.js.map +1 -1
- package/dist/src/ui/components/messages/CompressionMessage.js +1 -1
- package/dist/src/ui/components/messages/CompressionMessage.js.map +1 -1
- package/dist/src/ui/components/messages/DiffRenderer.js +5 -1
- package/dist/src/ui/components/messages/DiffRenderer.js.map +1 -1
- package/dist/src/ui/components/messages/GeminiMessage.js +1 -1
- package/dist/src/ui/components/messages/GeminiMessage.js.map +1 -1
- package/dist/src/ui/components/messages/ToolConfirmationMessage.js +1 -1
- package/dist/src/ui/components/messages/ToolConfirmationMessage.js.map +1 -1
- package/dist/src/ui/components/messages/ToolConfirmationMessage.test.js +0 -8
- package/dist/src/ui/components/messages/ToolConfirmationMessage.test.js.map +1 -1
- package/dist/src/ui/components/messages/ToolMessage.js +2 -1
- package/dist/src/ui/components/messages/ToolMessage.js.map +1 -1
- package/dist/src/ui/components/messages/UserMessage.js +1 -1
- package/dist/src/ui/components/messages/UserMessage.js.map +1 -1
- package/dist/src/ui/components/shared/MaxSizedBox.js.map +1 -1
- package/dist/src/ui/components/shared/RadioButtonSelect.js +1 -1
- package/dist/src/ui/components/shared/RadioButtonSelect.js.map +1 -1
- package/dist/src/ui/components/shared/RadioButtonSelect.test.js +2 -2
- package/dist/src/ui/components/shared/RadioButtonSelect.test.js.map +1 -1
- package/dist/src/ui/components/shared/text-buffer.js +35 -51
- package/dist/src/ui/components/shared/text-buffer.js.map +1 -1
- package/dist/src/ui/constants.d.ts +8 -2
- package/dist/src/ui/constants.js +9 -2
- package/dist/src/ui/constants.js.map +1 -1
- package/dist/src/ui/containers/SessionController.js +1 -1
- package/dist/src/ui/containers/SessionController.js.map +1 -1
- package/dist/src/ui/containers/SessionController.test.js +1 -0
- package/dist/src/ui/containers/SessionController.test.js.map +1 -1
- package/dist/src/ui/contexts/KeypressContext.js +255 -42
- package/dist/src/ui/contexts/KeypressContext.js.map +1 -1
- package/dist/src/ui/contexts/KeypressContext.test.js +115 -1
- package/dist/src/ui/contexts/KeypressContext.test.js.map +1 -1
- package/dist/src/ui/hooks/slashCommandProcessor.js +3 -1
- package/dist/src/ui/hooks/slashCommandProcessor.js.map +1 -1
- package/dist/src/ui/hooks/useFolderTrust.js +6 -3
- package/dist/src/ui/hooks/useFolderTrust.js.map +1 -1
- package/dist/src/ui/hooks/useGeminiStream.d.ts +2 -1
- package/dist/src/ui/hooks/useGeminiStream.integration.test.js +1 -1
- package/dist/src/ui/hooks/useGeminiStream.integration.test.js.map +1 -1
- package/dist/src/ui/hooks/useGeminiStream.js +170 -35
- package/dist/src/ui/hooks/useGeminiStream.js.map +1 -1
- package/dist/src/ui/hooks/useIdeTrustListener.d.ts +15 -0
- package/dist/src/ui/hooks/useIdeTrustListener.js +37 -0
- package/dist/src/ui/hooks/useIdeTrustListener.js.map +1 -0
- package/dist/src/ui/hooks/useInputHistoryStore.d.ts +19 -0
- package/dist/src/ui/hooks/useInputHistoryStore.js +81 -0
- package/dist/src/ui/hooks/useInputHistoryStore.js.map +1 -0
- package/dist/src/ui/hooks/useInputHistoryStore.test.d.ts +6 -0
- package/dist/src/ui/hooks/useInputHistoryStore.test.js +234 -0
- package/dist/src/ui/hooks/useInputHistoryStore.test.js.map +1 -0
- package/dist/src/ui/hooks/useLoadingIndicator.d.ts +1 -1
- package/dist/src/ui/hooks/useLoadingIndicator.js +2 -2
- package/dist/src/ui/hooks/useLoadingIndicator.js.map +1 -1
- package/dist/src/ui/hooks/useLoadingIndicator.test.d.ts +6 -0
- package/dist/src/ui/hooks/useLoadingIndicator.test.js +102 -0
- package/dist/src/ui/hooks/useLoadingIndicator.test.js.map +1 -0
- package/dist/src/ui/hooks/usePhraseCycler.d.ts +1 -1
- package/dist/src/ui/hooks/usePhraseCycler.js +25 -17
- package/dist/src/ui/hooks/usePhraseCycler.js.map +1 -1
- package/dist/src/ui/hooks/usePrivacySettings.d.ts +1 -1
- package/dist/src/ui/hooks/usePrivacySettings.js +20 -13
- package/dist/src/ui/hooks/usePrivacySettings.js.map +1 -1
- package/dist/src/ui/hooks/usePrivacySettings.test.js +52 -105
- package/dist/src/ui/hooks/usePrivacySettings.test.js.map +1 -1
- package/dist/src/ui/hooks/useToolScheduler.test.js +57 -70
- package/dist/src/ui/hooks/useToolScheduler.test.js.map +1 -1
- package/dist/src/ui/keyMatchers.test.js +9 -0
- package/dist/src/ui/keyMatchers.test.js.map +1 -1
- package/dist/src/ui/textConstants.d.ts +9 -0
- package/dist/src/ui/textConstants.js +10 -0
- package/dist/src/ui/textConstants.js.map +1 -0
- package/dist/src/ui/utils/MarkdownDisplay.test.js +2 -2
- package/dist/src/ui/utils/MarkdownDisplay.test.js.map +1 -1
- package/dist/src/ui/utils/highlight.d.ts +10 -0
- package/dist/src/ui/utils/highlight.js +41 -0
- package/dist/src/ui/utils/highlight.js.map +1 -0
- package/dist/src/ui/utils/highlight.test.d.ts +6 -0
- package/dist/src/ui/utils/highlight.test.js +93 -0
- package/dist/src/ui/utils/highlight.test.js.map +1 -0
- package/dist/src/ui/utils/platformConstants.d.ts +24 -1
- package/dist/src/ui/utils/platformConstants.js +26 -1
- package/dist/src/ui/utils/platformConstants.js.map +1 -1
- package/dist/src/utils/envVarResolver.d.ts +39 -0
- package/dist/src/utils/envVarResolver.js +97 -0
- package/dist/src/utils/envVarResolver.js.map +1 -0
- package/dist/src/utils/envVarResolver.test.d.ts +6 -0
- package/dist/src/utils/envVarResolver.test.js +221 -0
- package/dist/src/utils/envVarResolver.test.js.map +1 -0
- package/dist/src/utils/errors.d.ts +9 -0
- package/dist/src/utils/errors.js +18 -0
- package/dist/src/utils/errors.js.map +1 -0
- package/dist/src/utils/userStartupWarnings.d.ts +1 -1
- package/dist/src/utils/userStartupWarnings.js +1 -1
- package/dist/src/utils/userStartupWarnings.js.map +1 -1
- package/dist/src/zed-integration/schema.d.ts +398 -398
- package/dist/src/zed-integration/zedIntegration.js +11 -7
- package/dist/src/zed-integration/zedIntegration.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +7 -6
@@ -361,13 +361,13 @@ export declare const authMethodSchema: z.ZodObject<{
|
|
361
361
|
id: z.ZodString;
|
362
362
|
name: z.ZodString;
|
363
363
|
}, "strip", z.ZodTypeAny, {
|
364
|
-
id: string;
|
365
364
|
name: string;
|
366
365
|
description: string | null;
|
367
|
-
}, {
|
368
366
|
id: string;
|
367
|
+
}, {
|
369
368
|
name: string;
|
370
369
|
description: string | null;
|
370
|
+
id: string;
|
371
371
|
}>;
|
372
372
|
export declare const clientResponseSchema: z.ZodUnion<[z.ZodNull, z.ZodObject<{
|
373
373
|
content: z.ZodString;
|
@@ -530,7 +530,6 @@ export declare const loadSessionRequestSchema: z.ZodObject<{
|
|
530
530
|
}>, "many">;
|
531
531
|
sessionId: z.ZodString;
|
532
532
|
}, "strip", z.ZodTypeAny, {
|
533
|
-
sessionId: string;
|
534
533
|
mcpServers: {
|
535
534
|
name: string;
|
536
535
|
args: string[];
|
@@ -540,9 +539,9 @@ export declare const loadSessionRequestSchema: z.ZodObject<{
|
|
540
539
|
value: string;
|
541
540
|
}[];
|
542
541
|
}[];
|
542
|
+
sessionId: string;
|
543
543
|
cwd: string;
|
544
544
|
}, {
|
545
|
-
sessionId: string;
|
546
545
|
mcpServers: {
|
547
546
|
name: string;
|
548
547
|
args: string[];
|
@@ -552,6 +551,7 @@ export declare const loadSessionRequestSchema: z.ZodObject<{
|
|
552
551
|
value: string;
|
553
552
|
}[];
|
554
553
|
}[];
|
554
|
+
sessionId: string;
|
555
555
|
cwd: string;
|
556
556
|
}>;
|
557
557
|
export declare const initializeResponseSchema: z.ZodObject<{
|
@@ -590,13 +590,13 @@ export declare const initializeResponseSchema: z.ZodObject<{
|
|
590
590
|
id: z.ZodString;
|
591
591
|
name: z.ZodString;
|
592
592
|
}, "strip", z.ZodTypeAny, {
|
593
|
-
id: string;
|
594
593
|
name: string;
|
595
594
|
description: string | null;
|
596
|
-
}, {
|
597
595
|
id: string;
|
596
|
+
}, {
|
598
597
|
name: string;
|
599
598
|
description: string | null;
|
599
|
+
id: string;
|
600
600
|
}>, "many">;
|
601
601
|
protocolVersion: z.ZodNumber;
|
602
602
|
}, "strip", z.ZodTypeAny, {
|
@@ -609,9 +609,9 @@ export declare const initializeResponseSchema: z.ZodObject<{
|
|
609
609
|
} | undefined;
|
610
610
|
};
|
611
611
|
authMethods: {
|
612
|
-
id: string;
|
613
612
|
name: string;
|
614
613
|
description: string | null;
|
614
|
+
id: string;
|
615
615
|
}[];
|
616
616
|
protocolVersion: number;
|
617
617
|
}, {
|
@@ -624,9 +624,9 @@ export declare const initializeResponseSchema: z.ZodObject<{
|
|
624
624
|
} | undefined;
|
625
625
|
};
|
626
626
|
authMethods: {
|
627
|
-
id: string;
|
628
627
|
name: string;
|
629
628
|
description: string | null;
|
629
|
+
id: string;
|
630
630
|
}[];
|
631
631
|
protocolVersion: number;
|
632
632
|
}>;
|
@@ -647,16 +647,16 @@ export declare const contentBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
647
647
|
text: z.ZodString;
|
648
648
|
type: z.ZodLiteral<"text">;
|
649
649
|
}, "strip", z.ZodTypeAny, {
|
650
|
-
text: string;
|
651
650
|
type: "text";
|
651
|
+
text: string;
|
652
652
|
annotations?: {
|
653
653
|
priority?: number | null | undefined;
|
654
654
|
audience?: ("user" | "assistant")[] | null | undefined;
|
655
655
|
lastModified?: string | null | undefined;
|
656
656
|
} | null | undefined;
|
657
657
|
}, {
|
658
|
-
text: string;
|
659
658
|
type: "text";
|
659
|
+
text: string;
|
660
660
|
annotations?: {
|
661
661
|
priority?: number | null | undefined;
|
662
662
|
audience?: ("user" | "assistant")[] | null | undefined;
|
@@ -680,8 +680,8 @@ export declare const contentBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
680
680
|
mimeType: z.ZodString;
|
681
681
|
type: z.ZodLiteral<"image">;
|
682
682
|
}, "strip", z.ZodTypeAny, {
|
683
|
-
data: string;
|
684
683
|
type: "image";
|
684
|
+
data: string;
|
685
685
|
mimeType: string;
|
686
686
|
annotations?: {
|
687
687
|
priority?: number | null | undefined;
|
@@ -689,8 +689,8 @@ export declare const contentBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
689
689
|
lastModified?: string | null | undefined;
|
690
690
|
} | null | undefined;
|
691
691
|
}, {
|
692
|
-
data: string;
|
693
692
|
type: "image";
|
693
|
+
data: string;
|
694
694
|
mimeType: string;
|
695
695
|
annotations?: {
|
696
696
|
priority?: number | null | undefined;
|
@@ -715,8 +715,8 @@ export declare const contentBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
715
715
|
mimeType: z.ZodString;
|
716
716
|
type: z.ZodLiteral<"audio">;
|
717
717
|
}, "strip", z.ZodTypeAny, {
|
718
|
-
data: string;
|
719
718
|
type: "audio";
|
719
|
+
data: string;
|
720
720
|
mimeType: string;
|
721
721
|
annotations?: {
|
722
722
|
priority?: number | null | undefined;
|
@@ -724,8 +724,8 @@ export declare const contentBlockSchema: z.ZodUnion<[z.ZodObject<{
|
|
724
724
|
lastModified?: string | null | undefined;
|
725
725
|
} | null | undefined;
|
726
726
|
}, {
|
727
|
-
data: string;
|
728
727
|
type: "audio";
|
728
|
+
data: string;
|
729
729
|
mimeType: string;
|
730
730
|
annotations?: {
|
731
731
|
priority?: number | null | undefined;
|
@@ -870,16 +870,16 @@ export declare const toolCallContentSchema: z.ZodUnion<[z.ZodObject<{
|
|
870
870
|
text: z.ZodString;
|
871
871
|
type: z.ZodLiteral<"text">;
|
872
872
|
}, "strip", z.ZodTypeAny, {
|
873
|
-
text: string;
|
874
873
|
type: "text";
|
874
|
+
text: string;
|
875
875
|
annotations?: {
|
876
876
|
priority?: number | null | undefined;
|
877
877
|
audience?: ("user" | "assistant")[] | null | undefined;
|
878
878
|
lastModified?: string | null | undefined;
|
879
879
|
} | null | undefined;
|
880
880
|
}, {
|
881
|
-
text: string;
|
882
881
|
type: "text";
|
882
|
+
text: string;
|
883
883
|
annotations?: {
|
884
884
|
priority?: number | null | undefined;
|
885
885
|
audience?: ("user" | "assistant")[] | null | undefined;
|
@@ -903,8 +903,8 @@ export declare const toolCallContentSchema: z.ZodUnion<[z.ZodObject<{
|
|
903
903
|
mimeType: z.ZodString;
|
904
904
|
type: z.ZodLiteral<"image">;
|
905
905
|
}, "strip", z.ZodTypeAny, {
|
906
|
-
data: string;
|
907
906
|
type: "image";
|
907
|
+
data: string;
|
908
908
|
mimeType: string;
|
909
909
|
annotations?: {
|
910
910
|
priority?: number | null | undefined;
|
@@ -912,8 +912,8 @@ export declare const toolCallContentSchema: z.ZodUnion<[z.ZodObject<{
|
|
912
912
|
lastModified?: string | null | undefined;
|
913
913
|
} | null | undefined;
|
914
914
|
}, {
|
915
|
-
data: string;
|
916
915
|
type: "image";
|
916
|
+
data: string;
|
917
917
|
mimeType: string;
|
918
918
|
annotations?: {
|
919
919
|
priority?: number | null | undefined;
|
@@ -938,8 +938,8 @@ export declare const toolCallContentSchema: z.ZodUnion<[z.ZodObject<{
|
|
938
938
|
mimeType: z.ZodString;
|
939
939
|
type: z.ZodLiteral<"audio">;
|
940
940
|
}, "strip", z.ZodTypeAny, {
|
941
|
-
data: string;
|
942
941
|
type: "audio";
|
942
|
+
data: string;
|
943
943
|
mimeType: string;
|
944
944
|
annotations?: {
|
945
945
|
priority?: number | null | undefined;
|
@@ -947,8 +947,8 @@ export declare const toolCallContentSchema: z.ZodUnion<[z.ZodObject<{
|
|
947
947
|
lastModified?: string | null | undefined;
|
948
948
|
} | null | undefined;
|
949
949
|
}, {
|
950
|
-
data: string;
|
951
950
|
type: "audio";
|
951
|
+
data: string;
|
952
952
|
mimeType: string;
|
953
953
|
annotations?: {
|
954
954
|
priority?: number | null | undefined;
|
@@ -1078,16 +1078,16 @@ export declare const toolCallContentSchema: z.ZodUnion<[z.ZodObject<{
|
|
1078
1078
|
type: z.ZodLiteral<"content">;
|
1079
1079
|
}, "strip", z.ZodTypeAny, {
|
1080
1080
|
content: {
|
1081
|
-
text: string;
|
1082
1081
|
type: "text";
|
1082
|
+
text: string;
|
1083
1083
|
annotations?: {
|
1084
1084
|
priority?: number | null | undefined;
|
1085
1085
|
audience?: ("user" | "assistant")[] | null | undefined;
|
1086
1086
|
lastModified?: string | null | undefined;
|
1087
1087
|
} | null | undefined;
|
1088
1088
|
} | {
|
1089
|
-
data: string;
|
1090
1089
|
type: "image";
|
1090
|
+
data: string;
|
1091
1091
|
mimeType: string;
|
1092
1092
|
annotations?: {
|
1093
1093
|
priority?: number | null | undefined;
|
@@ -1095,8 +1095,8 @@ export declare const toolCallContentSchema: z.ZodUnion<[z.ZodObject<{
|
|
1095
1095
|
lastModified?: string | null | undefined;
|
1096
1096
|
} | null | undefined;
|
1097
1097
|
} | {
|
1098
|
-
data: string;
|
1099
1098
|
type: "audio";
|
1099
|
+
data: string;
|
1100
1100
|
mimeType: string;
|
1101
1101
|
annotations?: {
|
1102
1102
|
priority?: number | null | undefined;
|
@@ -1136,16 +1136,16 @@ export declare const toolCallContentSchema: z.ZodUnion<[z.ZodObject<{
|
|
1136
1136
|
type: "content";
|
1137
1137
|
}, {
|
1138
1138
|
content: {
|
1139
|
-
text: string;
|
1140
1139
|
type: "text";
|
1140
|
+
text: string;
|
1141
1141
|
annotations?: {
|
1142
1142
|
priority?: number | null | undefined;
|
1143
1143
|
audience?: ("user" | "assistant")[] | null | undefined;
|
1144
1144
|
lastModified?: string | null | undefined;
|
1145
1145
|
} | null | undefined;
|
1146
1146
|
} | {
|
1147
|
-
data: string;
|
1148
1147
|
type: "image";
|
1148
|
+
data: string;
|
1149
1149
|
mimeType: string;
|
1150
1150
|
annotations?: {
|
1151
1151
|
priority?: number | null | undefined;
|
@@ -1153,8 +1153,8 @@ export declare const toolCallContentSchema: z.ZodUnion<[z.ZodObject<{
|
|
1153
1153
|
lastModified?: string | null | undefined;
|
1154
1154
|
} | null | undefined;
|
1155
1155
|
} | {
|
1156
|
-
data: string;
|
1157
1156
|
type: "audio";
|
1157
|
+
data: string;
|
1158
1158
|
mimeType: string;
|
1159
1159
|
annotations?: {
|
1160
1160
|
priority?: number | null | undefined;
|
@@ -1227,16 +1227,16 @@ export declare const toolCallSchema: z.ZodObject<{
|
|
1227
1227
|
text: z.ZodString;
|
1228
1228
|
type: z.ZodLiteral<"text">;
|
1229
1229
|
}, "strip", z.ZodTypeAny, {
|
1230
|
-
text: string;
|
1231
1230
|
type: "text";
|
1231
|
+
text: string;
|
1232
1232
|
annotations?: {
|
1233
1233
|
priority?: number | null | undefined;
|
1234
1234
|
audience?: ("user" | "assistant")[] | null | undefined;
|
1235
1235
|
lastModified?: string | null | undefined;
|
1236
1236
|
} | null | undefined;
|
1237
1237
|
}, {
|
1238
|
-
text: string;
|
1239
1238
|
type: "text";
|
1239
|
+
text: string;
|
1240
1240
|
annotations?: {
|
1241
1241
|
priority?: number | null | undefined;
|
1242
1242
|
audience?: ("user" | "assistant")[] | null | undefined;
|
@@ -1260,8 +1260,8 @@ export declare const toolCallSchema: z.ZodObject<{
|
|
1260
1260
|
mimeType: z.ZodString;
|
1261
1261
|
type: z.ZodLiteral<"image">;
|
1262
1262
|
}, "strip", z.ZodTypeAny, {
|
1263
|
-
data: string;
|
1264
1263
|
type: "image";
|
1264
|
+
data: string;
|
1265
1265
|
mimeType: string;
|
1266
1266
|
annotations?: {
|
1267
1267
|
priority?: number | null | undefined;
|
@@ -1269,8 +1269,8 @@ export declare const toolCallSchema: z.ZodObject<{
|
|
1269
1269
|
lastModified?: string | null | undefined;
|
1270
1270
|
} | null | undefined;
|
1271
1271
|
}, {
|
1272
|
-
data: string;
|
1273
1272
|
type: "image";
|
1273
|
+
data: string;
|
1274
1274
|
mimeType: string;
|
1275
1275
|
annotations?: {
|
1276
1276
|
priority?: number | null | undefined;
|
@@ -1295,8 +1295,8 @@ export declare const toolCallSchema: z.ZodObject<{
|
|
1295
1295
|
mimeType: z.ZodString;
|
1296
1296
|
type: z.ZodLiteral<"audio">;
|
1297
1297
|
}, "strip", z.ZodTypeAny, {
|
1298
|
-
data: string;
|
1299
1298
|
type: "audio";
|
1299
|
+
data: string;
|
1300
1300
|
mimeType: string;
|
1301
1301
|
annotations?: {
|
1302
1302
|
priority?: number | null | undefined;
|
@@ -1304,8 +1304,8 @@ export declare const toolCallSchema: z.ZodObject<{
|
|
1304
1304
|
lastModified?: string | null | undefined;
|
1305
1305
|
} | null | undefined;
|
1306
1306
|
}, {
|
1307
|
-
data: string;
|
1308
1307
|
type: "audio";
|
1308
|
+
data: string;
|
1309
1309
|
mimeType: string;
|
1310
1310
|
annotations?: {
|
1311
1311
|
priority?: number | null | undefined;
|
@@ -1435,16 +1435,16 @@ export declare const toolCallSchema: z.ZodObject<{
|
|
1435
1435
|
type: z.ZodLiteral<"content">;
|
1436
1436
|
}, "strip", z.ZodTypeAny, {
|
1437
1437
|
content: {
|
1438
|
-
text: string;
|
1439
1438
|
type: "text";
|
1439
|
+
text: string;
|
1440
1440
|
annotations?: {
|
1441
1441
|
priority?: number | null | undefined;
|
1442
1442
|
audience?: ("user" | "assistant")[] | null | undefined;
|
1443
1443
|
lastModified?: string | null | undefined;
|
1444
1444
|
} | null | undefined;
|
1445
1445
|
} | {
|
1446
|
-
data: string;
|
1447
1446
|
type: "image";
|
1447
|
+
data: string;
|
1448
1448
|
mimeType: string;
|
1449
1449
|
annotations?: {
|
1450
1450
|
priority?: number | null | undefined;
|
@@ -1452,8 +1452,8 @@ export declare const toolCallSchema: z.ZodObject<{
|
|
1452
1452
|
lastModified?: string | null | undefined;
|
1453
1453
|
} | null | undefined;
|
1454
1454
|
} | {
|
1455
|
-
data: string;
|
1456
1455
|
type: "audio";
|
1456
|
+
data: string;
|
1457
1457
|
mimeType: string;
|
1458
1458
|
annotations?: {
|
1459
1459
|
priority?: number | null | undefined;
|
@@ -1493,16 +1493,16 @@ export declare const toolCallSchema: z.ZodObject<{
|
|
1493
1493
|
type: "content";
|
1494
1494
|
}, {
|
1495
1495
|
content: {
|
1496
|
-
text: string;
|
1497
1496
|
type: "text";
|
1497
|
+
text: string;
|
1498
1498
|
annotations?: {
|
1499
1499
|
priority?: number | null | undefined;
|
1500
1500
|
audience?: ("user" | "assistant")[] | null | undefined;
|
1501
1501
|
lastModified?: string | null | undefined;
|
1502
1502
|
} | null | undefined;
|
1503
1503
|
} | {
|
1504
|
-
data: string;
|
1505
1504
|
type: "image";
|
1505
|
+
data: string;
|
1506
1506
|
mimeType: string;
|
1507
1507
|
annotations?: {
|
1508
1508
|
priority?: number | null | undefined;
|
@@ -1510,8 +1510,8 @@ export declare const toolCallSchema: z.ZodObject<{
|
|
1510
1510
|
lastModified?: string | null | undefined;
|
1511
1511
|
} | null | undefined;
|
1512
1512
|
} | {
|
1513
|
-
data: string;
|
1514
1513
|
type: "audio";
|
1514
|
+
data: string;
|
1515
1515
|
mimeType: string;
|
1516
1516
|
annotations?: {
|
1517
1517
|
priority?: number | null | undefined;
|
@@ -1587,16 +1587,16 @@ export declare const toolCallSchema: z.ZodObject<{
|
|
1587
1587
|
toolCallId: string;
|
1588
1588
|
content?: ({
|
1589
1589
|
content: {
|
1590
|
-
text: string;
|
1591
1590
|
type: "text";
|
1591
|
+
text: string;
|
1592
1592
|
annotations?: {
|
1593
1593
|
priority?: number | null | undefined;
|
1594
1594
|
audience?: ("user" | "assistant")[] | null | undefined;
|
1595
1595
|
lastModified?: string | null | undefined;
|
1596
1596
|
} | null | undefined;
|
1597
1597
|
} | {
|
1598
|
-
data: string;
|
1599
1598
|
type: "image";
|
1599
|
+
data: string;
|
1600
1600
|
mimeType: string;
|
1601
1601
|
annotations?: {
|
1602
1602
|
priority?: number | null | undefined;
|
@@ -1604,8 +1604,8 @@ export declare const toolCallSchema: z.ZodObject<{
|
|
1604
1604
|
lastModified?: string | null | undefined;
|
1605
1605
|
} | null | undefined;
|
1606
1606
|
} | {
|
1607
|
-
data: string;
|
1608
1607
|
type: "audio";
|
1608
|
+
data: string;
|
1609
1609
|
mimeType: string;
|
1610
1610
|
annotations?: {
|
1611
1611
|
priority?: number | null | undefined;
|
@@ -1661,16 +1661,16 @@ export declare const toolCallSchema: z.ZodObject<{
|
|
1661
1661
|
toolCallId: string;
|
1662
1662
|
content?: ({
|
1663
1663
|
content: {
|
1664
|
-
text: string;
|
1665
1664
|
type: "text";
|
1665
|
+
text: string;
|
1666
1666
|
annotations?: {
|
1667
1667
|
priority?: number | null | undefined;
|
1668
1668
|
audience?: ("user" | "assistant")[] | null | undefined;
|
1669
1669
|
lastModified?: string | null | undefined;
|
1670
1670
|
} | null | undefined;
|
1671
1671
|
} | {
|
1672
|
-
data: string;
|
1673
1672
|
type: "image";
|
1673
|
+
data: string;
|
1674
1674
|
mimeType: string;
|
1675
1675
|
annotations?: {
|
1676
1676
|
priority?: number | null | undefined;
|
@@ -1678,8 +1678,8 @@ export declare const toolCallSchema: z.ZodObject<{
|
|
1678
1678
|
lastModified?: string | null | undefined;
|
1679
1679
|
} | null | undefined;
|
1680
1680
|
} | {
|
1681
|
-
data: string;
|
1682
1681
|
type: "audio";
|
1682
|
+
data: string;
|
1683
1683
|
mimeType: string;
|
1684
1684
|
annotations?: {
|
1685
1685
|
priority?: number | null | undefined;
|
@@ -1769,16 +1769,16 @@ export declare const promptRequestSchema: z.ZodObject<{
|
|
1769
1769
|
text: z.ZodString;
|
1770
1770
|
type: z.ZodLiteral<"text">;
|
1771
1771
|
}, "strip", z.ZodTypeAny, {
|
1772
|
-
text: string;
|
1773
1772
|
type: "text";
|
1773
|
+
text: string;
|
1774
1774
|
annotations?: {
|
1775
1775
|
priority?: number | null | undefined;
|
1776
1776
|
audience?: ("user" | "assistant")[] | null | undefined;
|
1777
1777
|
lastModified?: string | null | undefined;
|
1778
1778
|
} | null | undefined;
|
1779
1779
|
}, {
|
1780
|
-
text: string;
|
1781
1780
|
type: "text";
|
1781
|
+
text: string;
|
1782
1782
|
annotations?: {
|
1783
1783
|
priority?: number | null | undefined;
|
1784
1784
|
audience?: ("user" | "assistant")[] | null | undefined;
|
@@ -1802,8 +1802,8 @@ export declare const promptRequestSchema: z.ZodObject<{
|
|
1802
1802
|
mimeType: z.ZodString;
|
1803
1803
|
type: z.ZodLiteral<"image">;
|
1804
1804
|
}, "strip", z.ZodTypeAny, {
|
1805
|
-
data: string;
|
1806
1805
|
type: "image";
|
1806
|
+
data: string;
|
1807
1807
|
mimeType: string;
|
1808
1808
|
annotations?: {
|
1809
1809
|
priority?: number | null | undefined;
|
@@ -1811,8 +1811,8 @@ export declare const promptRequestSchema: z.ZodObject<{
|
|
1811
1811
|
lastModified?: string | null | undefined;
|
1812
1812
|
} | null | undefined;
|
1813
1813
|
}, {
|
1814
|
-
data: string;
|
1815
1814
|
type: "image";
|
1815
|
+
data: string;
|
1816
1816
|
mimeType: string;
|
1817
1817
|
annotations?: {
|
1818
1818
|
priority?: number | null | undefined;
|
@@ -1837,8 +1837,8 @@ export declare const promptRequestSchema: z.ZodObject<{
|
|
1837
1837
|
mimeType: z.ZodString;
|
1838
1838
|
type: z.ZodLiteral<"audio">;
|
1839
1839
|
}, "strip", z.ZodTypeAny, {
|
1840
|
-
data: string;
|
1841
1840
|
type: "audio";
|
1841
|
+
data: string;
|
1842
1842
|
mimeType: string;
|
1843
1843
|
annotations?: {
|
1844
1844
|
priority?: number | null | undefined;
|
@@ -1846,8 +1846,8 @@ export declare const promptRequestSchema: z.ZodObject<{
|
|
1846
1846
|
lastModified?: string | null | undefined;
|
1847
1847
|
} | null | undefined;
|
1848
1848
|
}, {
|
1849
|
-
data: string;
|
1850
1849
|
type: "audio";
|
1850
|
+
data: string;
|
1851
1851
|
mimeType: string;
|
1852
1852
|
annotations?: {
|
1853
1853
|
priority?: number | null | undefined;
|
@@ -1978,16 +1978,16 @@ export declare const promptRequestSchema: z.ZodObject<{
|
|
1978
1978
|
}, "strip", z.ZodTypeAny, {
|
1979
1979
|
sessionId: string;
|
1980
1980
|
prompt: ({
|
1981
|
-
text: string;
|
1982
1981
|
type: "text";
|
1982
|
+
text: string;
|
1983
1983
|
annotations?: {
|
1984
1984
|
priority?: number | null | undefined;
|
1985
1985
|
audience?: ("user" | "assistant")[] | null | undefined;
|
1986
1986
|
lastModified?: string | null | undefined;
|
1987
1987
|
} | null | undefined;
|
1988
1988
|
} | {
|
1989
|
-
data: string;
|
1990
1989
|
type: "image";
|
1990
|
+
data: string;
|
1991
1991
|
mimeType: string;
|
1992
1992
|
annotations?: {
|
1993
1993
|
priority?: number | null | undefined;
|
@@ -1995,8 +1995,8 @@ export declare const promptRequestSchema: z.ZodObject<{
|
|
1995
1995
|
lastModified?: string | null | undefined;
|
1996
1996
|
} | null | undefined;
|
1997
1997
|
} | {
|
1998
|
-
data: string;
|
1999
1998
|
type: "audio";
|
1999
|
+
data: string;
|
2000
2000
|
mimeType: string;
|
2001
2001
|
annotations?: {
|
2002
2002
|
priority?: number | null | undefined;
|
@@ -2036,16 +2036,16 @@ export declare const promptRequestSchema: z.ZodObject<{
|
|
2036
2036
|
}, {
|
2037
2037
|
sessionId: string;
|
2038
2038
|
prompt: ({
|
2039
|
-
text: string;
|
2040
2039
|
type: "text";
|
2040
|
+
text: string;
|
2041
2041
|
annotations?: {
|
2042
2042
|
priority?: number | null | undefined;
|
2043
2043
|
audience?: ("user" | "assistant")[] | null | undefined;
|
2044
2044
|
lastModified?: string | null | undefined;
|
2045
2045
|
} | null | undefined;
|
2046
2046
|
} | {
|
2047
|
-
data: string;
|
2048
2047
|
type: "image";
|
2048
|
+
data: string;
|
2049
2049
|
mimeType: string;
|
2050
2050
|
annotations?: {
|
2051
2051
|
priority?: number | null | undefined;
|
@@ -2053,8 +2053,8 @@ export declare const promptRequestSchema: z.ZodObject<{
|
|
2053
2053
|
lastModified?: string | null | undefined;
|
2054
2054
|
} | null | undefined;
|
2055
2055
|
} | {
|
2056
|
-
data: string;
|
2057
2056
|
type: "audio";
|
2057
|
+
data: string;
|
2058
2058
|
mimeType: string;
|
2059
2059
|
annotations?: {
|
2060
2060
|
priority?: number | null | undefined;
|
@@ -2110,16 +2110,16 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
2110
2110
|
text: z.ZodString;
|
2111
2111
|
type: z.ZodLiteral<"text">;
|
2112
2112
|
}, "strip", z.ZodTypeAny, {
|
2113
|
-
text: string;
|
2114
2113
|
type: "text";
|
2114
|
+
text: string;
|
2115
2115
|
annotations?: {
|
2116
2116
|
priority?: number | null | undefined;
|
2117
2117
|
audience?: ("user" | "assistant")[] | null | undefined;
|
2118
2118
|
lastModified?: string | null | undefined;
|
2119
2119
|
} | null | undefined;
|
2120
2120
|
}, {
|
2121
|
-
text: string;
|
2122
2121
|
type: "text";
|
2122
|
+
text: string;
|
2123
2123
|
annotations?: {
|
2124
2124
|
priority?: number | null | undefined;
|
2125
2125
|
audience?: ("user" | "assistant")[] | null | undefined;
|
@@ -2143,8 +2143,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
2143
2143
|
mimeType: z.ZodString;
|
2144
2144
|
type: z.ZodLiteral<"image">;
|
2145
2145
|
}, "strip", z.ZodTypeAny, {
|
2146
|
-
data: string;
|
2147
2146
|
type: "image";
|
2147
|
+
data: string;
|
2148
2148
|
mimeType: string;
|
2149
2149
|
annotations?: {
|
2150
2150
|
priority?: number | null | undefined;
|
@@ -2152,8 +2152,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
2152
2152
|
lastModified?: string | null | undefined;
|
2153
2153
|
} | null | undefined;
|
2154
2154
|
}, {
|
2155
|
-
data: string;
|
2156
2155
|
type: "image";
|
2156
|
+
data: string;
|
2157
2157
|
mimeType: string;
|
2158
2158
|
annotations?: {
|
2159
2159
|
priority?: number | null | undefined;
|
@@ -2178,8 +2178,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
2178
2178
|
mimeType: z.ZodString;
|
2179
2179
|
type: z.ZodLiteral<"audio">;
|
2180
2180
|
}, "strip", z.ZodTypeAny, {
|
2181
|
-
data: string;
|
2182
2181
|
type: "audio";
|
2182
|
+
data: string;
|
2183
2183
|
mimeType: string;
|
2184
2184
|
annotations?: {
|
2185
2185
|
priority?: number | null | undefined;
|
@@ -2187,8 +2187,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
2187
2187
|
lastModified?: string | null | undefined;
|
2188
2188
|
} | null | undefined;
|
2189
2189
|
}, {
|
2190
|
-
data: string;
|
2191
2190
|
type: "audio";
|
2191
|
+
data: string;
|
2192
2192
|
mimeType: string;
|
2193
2193
|
annotations?: {
|
2194
2194
|
priority?: number | null | undefined;
|
@@ -2318,16 +2318,16 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
2318
2318
|
sessionUpdate: z.ZodLiteral<"user_message_chunk">;
|
2319
2319
|
}, "strip", z.ZodTypeAny, {
|
2320
2320
|
content: {
|
2321
|
-
text: string;
|
2322
2321
|
type: "text";
|
2322
|
+
text: string;
|
2323
2323
|
annotations?: {
|
2324
2324
|
priority?: number | null | undefined;
|
2325
2325
|
audience?: ("user" | "assistant")[] | null | undefined;
|
2326
2326
|
lastModified?: string | null | undefined;
|
2327
2327
|
} | null | undefined;
|
2328
2328
|
} | {
|
2329
|
-
data: string;
|
2330
2329
|
type: "image";
|
2330
|
+
data: string;
|
2331
2331
|
mimeType: string;
|
2332
2332
|
annotations?: {
|
2333
2333
|
priority?: number | null | undefined;
|
@@ -2335,8 +2335,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
2335
2335
|
lastModified?: string | null | undefined;
|
2336
2336
|
} | null | undefined;
|
2337
2337
|
} | {
|
2338
|
-
data: string;
|
2339
2338
|
type: "audio";
|
2339
|
+
data: string;
|
2340
2340
|
mimeType: string;
|
2341
2341
|
annotations?: {
|
2342
2342
|
priority?: number | null | undefined;
|
@@ -2376,16 +2376,16 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
2376
2376
|
sessionUpdate: "user_message_chunk";
|
2377
2377
|
}, {
|
2378
2378
|
content: {
|
2379
|
-
text: string;
|
2380
2379
|
type: "text";
|
2380
|
+
text: string;
|
2381
2381
|
annotations?: {
|
2382
2382
|
priority?: number | null | undefined;
|
2383
2383
|
audience?: ("user" | "assistant")[] | null | undefined;
|
2384
2384
|
lastModified?: string | null | undefined;
|
2385
2385
|
} | null | undefined;
|
2386
2386
|
} | {
|
2387
|
-
data: string;
|
2388
2387
|
type: "image";
|
2388
|
+
data: string;
|
2389
2389
|
mimeType: string;
|
2390
2390
|
annotations?: {
|
2391
2391
|
priority?: number | null | undefined;
|
@@ -2393,8 +2393,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
2393
2393
|
lastModified?: string | null | undefined;
|
2394
2394
|
} | null | undefined;
|
2395
2395
|
} | {
|
2396
|
-
data: string;
|
2397
2396
|
type: "audio";
|
2397
|
+
data: string;
|
2398
2398
|
mimeType: string;
|
2399
2399
|
annotations?: {
|
2400
2400
|
priority?: number | null | undefined;
|
@@ -2450,16 +2450,16 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
2450
2450
|
text: z.ZodString;
|
2451
2451
|
type: z.ZodLiteral<"text">;
|
2452
2452
|
}, "strip", z.ZodTypeAny, {
|
2453
|
-
text: string;
|
2454
2453
|
type: "text";
|
2454
|
+
text: string;
|
2455
2455
|
annotations?: {
|
2456
2456
|
priority?: number | null | undefined;
|
2457
2457
|
audience?: ("user" | "assistant")[] | null | undefined;
|
2458
2458
|
lastModified?: string | null | undefined;
|
2459
2459
|
} | null | undefined;
|
2460
2460
|
}, {
|
2461
|
-
text: string;
|
2462
2461
|
type: "text";
|
2462
|
+
text: string;
|
2463
2463
|
annotations?: {
|
2464
2464
|
priority?: number | null | undefined;
|
2465
2465
|
audience?: ("user" | "assistant")[] | null | undefined;
|
@@ -2483,8 +2483,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
2483
2483
|
mimeType: z.ZodString;
|
2484
2484
|
type: z.ZodLiteral<"image">;
|
2485
2485
|
}, "strip", z.ZodTypeAny, {
|
2486
|
-
data: string;
|
2487
2486
|
type: "image";
|
2487
|
+
data: string;
|
2488
2488
|
mimeType: string;
|
2489
2489
|
annotations?: {
|
2490
2490
|
priority?: number | null | undefined;
|
@@ -2492,8 +2492,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
2492
2492
|
lastModified?: string | null | undefined;
|
2493
2493
|
} | null | undefined;
|
2494
2494
|
}, {
|
2495
|
-
data: string;
|
2496
2495
|
type: "image";
|
2496
|
+
data: string;
|
2497
2497
|
mimeType: string;
|
2498
2498
|
annotations?: {
|
2499
2499
|
priority?: number | null | undefined;
|
@@ -2518,8 +2518,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
2518
2518
|
mimeType: z.ZodString;
|
2519
2519
|
type: z.ZodLiteral<"audio">;
|
2520
2520
|
}, "strip", z.ZodTypeAny, {
|
2521
|
-
data: string;
|
2522
2521
|
type: "audio";
|
2522
|
+
data: string;
|
2523
2523
|
mimeType: string;
|
2524
2524
|
annotations?: {
|
2525
2525
|
priority?: number | null | undefined;
|
@@ -2527,8 +2527,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
2527
2527
|
lastModified?: string | null | undefined;
|
2528
2528
|
} | null | undefined;
|
2529
2529
|
}, {
|
2530
|
-
data: string;
|
2531
2530
|
type: "audio";
|
2531
|
+
data: string;
|
2532
2532
|
mimeType: string;
|
2533
2533
|
annotations?: {
|
2534
2534
|
priority?: number | null | undefined;
|
@@ -2658,16 +2658,16 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
2658
2658
|
sessionUpdate: z.ZodLiteral<"agent_message_chunk">;
|
2659
2659
|
}, "strip", z.ZodTypeAny, {
|
2660
2660
|
content: {
|
2661
|
-
text: string;
|
2662
2661
|
type: "text";
|
2662
|
+
text: string;
|
2663
2663
|
annotations?: {
|
2664
2664
|
priority?: number | null | undefined;
|
2665
2665
|
audience?: ("user" | "assistant")[] | null | undefined;
|
2666
2666
|
lastModified?: string | null | undefined;
|
2667
2667
|
} | null | undefined;
|
2668
2668
|
} | {
|
2669
|
-
data: string;
|
2670
2669
|
type: "image";
|
2670
|
+
data: string;
|
2671
2671
|
mimeType: string;
|
2672
2672
|
annotations?: {
|
2673
2673
|
priority?: number | null | undefined;
|
@@ -2675,8 +2675,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
2675
2675
|
lastModified?: string | null | undefined;
|
2676
2676
|
} | null | undefined;
|
2677
2677
|
} | {
|
2678
|
-
data: string;
|
2679
2678
|
type: "audio";
|
2679
|
+
data: string;
|
2680
2680
|
mimeType: string;
|
2681
2681
|
annotations?: {
|
2682
2682
|
priority?: number | null | undefined;
|
@@ -2716,16 +2716,16 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
2716
2716
|
sessionUpdate: "agent_message_chunk";
|
2717
2717
|
}, {
|
2718
2718
|
content: {
|
2719
|
-
text: string;
|
2720
2719
|
type: "text";
|
2720
|
+
text: string;
|
2721
2721
|
annotations?: {
|
2722
2722
|
priority?: number | null | undefined;
|
2723
2723
|
audience?: ("user" | "assistant")[] | null | undefined;
|
2724
2724
|
lastModified?: string | null | undefined;
|
2725
2725
|
} | null | undefined;
|
2726
2726
|
} | {
|
2727
|
-
data: string;
|
2728
2727
|
type: "image";
|
2728
|
+
data: string;
|
2729
2729
|
mimeType: string;
|
2730
2730
|
annotations?: {
|
2731
2731
|
priority?: number | null | undefined;
|
@@ -2733,8 +2733,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
2733
2733
|
lastModified?: string | null | undefined;
|
2734
2734
|
} | null | undefined;
|
2735
2735
|
} | {
|
2736
|
-
data: string;
|
2737
2736
|
type: "audio";
|
2737
|
+
data: string;
|
2738
2738
|
mimeType: string;
|
2739
2739
|
annotations?: {
|
2740
2740
|
priority?: number | null | undefined;
|
@@ -2790,16 +2790,16 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
2790
2790
|
text: z.ZodString;
|
2791
2791
|
type: z.ZodLiteral<"text">;
|
2792
2792
|
}, "strip", z.ZodTypeAny, {
|
2793
|
-
text: string;
|
2794
2793
|
type: "text";
|
2794
|
+
text: string;
|
2795
2795
|
annotations?: {
|
2796
2796
|
priority?: number | null | undefined;
|
2797
2797
|
audience?: ("user" | "assistant")[] | null | undefined;
|
2798
2798
|
lastModified?: string | null | undefined;
|
2799
2799
|
} | null | undefined;
|
2800
2800
|
}, {
|
2801
|
-
text: string;
|
2802
2801
|
type: "text";
|
2802
|
+
text: string;
|
2803
2803
|
annotations?: {
|
2804
2804
|
priority?: number | null | undefined;
|
2805
2805
|
audience?: ("user" | "assistant")[] | null | undefined;
|
@@ -2823,8 +2823,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
2823
2823
|
mimeType: z.ZodString;
|
2824
2824
|
type: z.ZodLiteral<"image">;
|
2825
2825
|
}, "strip", z.ZodTypeAny, {
|
2826
|
-
data: string;
|
2827
2826
|
type: "image";
|
2827
|
+
data: string;
|
2828
2828
|
mimeType: string;
|
2829
2829
|
annotations?: {
|
2830
2830
|
priority?: number | null | undefined;
|
@@ -2832,8 +2832,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
2832
2832
|
lastModified?: string | null | undefined;
|
2833
2833
|
} | null | undefined;
|
2834
2834
|
}, {
|
2835
|
-
data: string;
|
2836
2835
|
type: "image";
|
2836
|
+
data: string;
|
2837
2837
|
mimeType: string;
|
2838
2838
|
annotations?: {
|
2839
2839
|
priority?: number | null | undefined;
|
@@ -2858,8 +2858,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
2858
2858
|
mimeType: z.ZodString;
|
2859
2859
|
type: z.ZodLiteral<"audio">;
|
2860
2860
|
}, "strip", z.ZodTypeAny, {
|
2861
|
-
data: string;
|
2862
2861
|
type: "audio";
|
2862
|
+
data: string;
|
2863
2863
|
mimeType: string;
|
2864
2864
|
annotations?: {
|
2865
2865
|
priority?: number | null | undefined;
|
@@ -2867,8 +2867,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
2867
2867
|
lastModified?: string | null | undefined;
|
2868
2868
|
} | null | undefined;
|
2869
2869
|
}, {
|
2870
|
-
data: string;
|
2871
2870
|
type: "audio";
|
2871
|
+
data: string;
|
2872
2872
|
mimeType: string;
|
2873
2873
|
annotations?: {
|
2874
2874
|
priority?: number | null | undefined;
|
@@ -2998,16 +2998,16 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
2998
2998
|
sessionUpdate: z.ZodLiteral<"agent_thought_chunk">;
|
2999
2999
|
}, "strip", z.ZodTypeAny, {
|
3000
3000
|
content: {
|
3001
|
-
text: string;
|
3002
3001
|
type: "text";
|
3002
|
+
text: string;
|
3003
3003
|
annotations?: {
|
3004
3004
|
priority?: number | null | undefined;
|
3005
3005
|
audience?: ("user" | "assistant")[] | null | undefined;
|
3006
3006
|
lastModified?: string | null | undefined;
|
3007
3007
|
} | null | undefined;
|
3008
3008
|
} | {
|
3009
|
-
data: string;
|
3010
3009
|
type: "image";
|
3010
|
+
data: string;
|
3011
3011
|
mimeType: string;
|
3012
3012
|
annotations?: {
|
3013
3013
|
priority?: number | null | undefined;
|
@@ -3015,8 +3015,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
3015
3015
|
lastModified?: string | null | undefined;
|
3016
3016
|
} | null | undefined;
|
3017
3017
|
} | {
|
3018
|
-
data: string;
|
3019
3018
|
type: "audio";
|
3019
|
+
data: string;
|
3020
3020
|
mimeType: string;
|
3021
3021
|
annotations?: {
|
3022
3022
|
priority?: number | null | undefined;
|
@@ -3056,16 +3056,16 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
3056
3056
|
sessionUpdate: "agent_thought_chunk";
|
3057
3057
|
}, {
|
3058
3058
|
content: {
|
3059
|
-
text: string;
|
3060
3059
|
type: "text";
|
3060
|
+
text: string;
|
3061
3061
|
annotations?: {
|
3062
3062
|
priority?: number | null | undefined;
|
3063
3063
|
audience?: ("user" | "assistant")[] | null | undefined;
|
3064
3064
|
lastModified?: string | null | undefined;
|
3065
3065
|
} | null | undefined;
|
3066
3066
|
} | {
|
3067
|
-
data: string;
|
3068
3067
|
type: "image";
|
3068
|
+
data: string;
|
3069
3069
|
mimeType: string;
|
3070
3070
|
annotations?: {
|
3071
3071
|
priority?: number | null | undefined;
|
@@ -3073,8 +3073,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
3073
3073
|
lastModified?: string | null | undefined;
|
3074
3074
|
} | null | undefined;
|
3075
3075
|
} | {
|
3076
|
-
data: string;
|
3077
3076
|
type: "audio";
|
3077
|
+
data: string;
|
3078
3078
|
mimeType: string;
|
3079
3079
|
annotations?: {
|
3080
3080
|
priority?: number | null | undefined;
|
@@ -3131,16 +3131,16 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
3131
3131
|
text: z.ZodString;
|
3132
3132
|
type: z.ZodLiteral<"text">;
|
3133
3133
|
}, "strip", z.ZodTypeAny, {
|
3134
|
-
text: string;
|
3135
3134
|
type: "text";
|
3135
|
+
text: string;
|
3136
3136
|
annotations?: {
|
3137
3137
|
priority?: number | null | undefined;
|
3138
3138
|
audience?: ("user" | "assistant")[] | null | undefined;
|
3139
3139
|
lastModified?: string | null | undefined;
|
3140
3140
|
} | null | undefined;
|
3141
3141
|
}, {
|
3142
|
-
text: string;
|
3143
3142
|
type: "text";
|
3143
|
+
text: string;
|
3144
3144
|
annotations?: {
|
3145
3145
|
priority?: number | null | undefined;
|
3146
3146
|
audience?: ("user" | "assistant")[] | null | undefined;
|
@@ -3164,8 +3164,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
3164
3164
|
mimeType: z.ZodString;
|
3165
3165
|
type: z.ZodLiteral<"image">;
|
3166
3166
|
}, "strip", z.ZodTypeAny, {
|
3167
|
-
data: string;
|
3168
3167
|
type: "image";
|
3168
|
+
data: string;
|
3169
3169
|
mimeType: string;
|
3170
3170
|
annotations?: {
|
3171
3171
|
priority?: number | null | undefined;
|
@@ -3173,8 +3173,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
3173
3173
|
lastModified?: string | null | undefined;
|
3174
3174
|
} | null | undefined;
|
3175
3175
|
}, {
|
3176
|
-
data: string;
|
3177
3176
|
type: "image";
|
3177
|
+
data: string;
|
3178
3178
|
mimeType: string;
|
3179
3179
|
annotations?: {
|
3180
3180
|
priority?: number | null | undefined;
|
@@ -3199,8 +3199,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
3199
3199
|
mimeType: z.ZodString;
|
3200
3200
|
type: z.ZodLiteral<"audio">;
|
3201
3201
|
}, "strip", z.ZodTypeAny, {
|
3202
|
-
data: string;
|
3203
3202
|
type: "audio";
|
3203
|
+
data: string;
|
3204
3204
|
mimeType: string;
|
3205
3205
|
annotations?: {
|
3206
3206
|
priority?: number | null | undefined;
|
@@ -3208,8 +3208,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
3208
3208
|
lastModified?: string | null | undefined;
|
3209
3209
|
} | null | undefined;
|
3210
3210
|
}, {
|
3211
|
-
data: string;
|
3212
3211
|
type: "audio";
|
3212
|
+
data: string;
|
3213
3213
|
mimeType: string;
|
3214
3214
|
annotations?: {
|
3215
3215
|
priority?: number | null | undefined;
|
@@ -3339,16 +3339,16 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
3339
3339
|
type: z.ZodLiteral<"content">;
|
3340
3340
|
}, "strip", z.ZodTypeAny, {
|
3341
3341
|
content: {
|
3342
|
-
text: string;
|
3343
3342
|
type: "text";
|
3343
|
+
text: string;
|
3344
3344
|
annotations?: {
|
3345
3345
|
priority?: number | null | undefined;
|
3346
3346
|
audience?: ("user" | "assistant")[] | null | undefined;
|
3347
3347
|
lastModified?: string | null | undefined;
|
3348
3348
|
} | null | undefined;
|
3349
3349
|
} | {
|
3350
|
-
data: string;
|
3351
3350
|
type: "image";
|
3351
|
+
data: string;
|
3352
3352
|
mimeType: string;
|
3353
3353
|
annotations?: {
|
3354
3354
|
priority?: number | null | undefined;
|
@@ -3356,8 +3356,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
3356
3356
|
lastModified?: string | null | undefined;
|
3357
3357
|
} | null | undefined;
|
3358
3358
|
} | {
|
3359
|
-
data: string;
|
3360
3359
|
type: "audio";
|
3360
|
+
data: string;
|
3361
3361
|
mimeType: string;
|
3362
3362
|
annotations?: {
|
3363
3363
|
priority?: number | null | undefined;
|
@@ -3397,16 +3397,16 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
3397
3397
|
type: "content";
|
3398
3398
|
}, {
|
3399
3399
|
content: {
|
3400
|
-
text: string;
|
3401
3400
|
type: "text";
|
3401
|
+
text: string;
|
3402
3402
|
annotations?: {
|
3403
3403
|
priority?: number | null | undefined;
|
3404
3404
|
audience?: ("user" | "assistant")[] | null | undefined;
|
3405
3405
|
lastModified?: string | null | undefined;
|
3406
3406
|
} | null | undefined;
|
3407
3407
|
} | {
|
3408
|
-
data: string;
|
3409
3408
|
type: "image";
|
3409
|
+
data: string;
|
3410
3410
|
mimeType: string;
|
3411
3411
|
annotations?: {
|
3412
3412
|
priority?: number | null | undefined;
|
@@ -3414,8 +3414,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
3414
3414
|
lastModified?: string | null | undefined;
|
3415
3415
|
} | null | undefined;
|
3416
3416
|
} | {
|
3417
|
-
data: string;
|
3418
3417
|
type: "audio";
|
3418
|
+
data: string;
|
3419
3419
|
mimeType: string;
|
3420
3420
|
annotations?: {
|
3421
3421
|
priority?: number | null | undefined;
|
@@ -3493,16 +3493,16 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
3493
3493
|
sessionUpdate: "tool_call";
|
3494
3494
|
content?: ({
|
3495
3495
|
content: {
|
3496
|
-
text: string;
|
3497
3496
|
type: "text";
|
3497
|
+
text: string;
|
3498
3498
|
annotations?: {
|
3499
3499
|
priority?: number | null | undefined;
|
3500
3500
|
audience?: ("user" | "assistant")[] | null | undefined;
|
3501
3501
|
lastModified?: string | null | undefined;
|
3502
3502
|
} | null | undefined;
|
3503
3503
|
} | {
|
3504
|
-
data: string;
|
3505
3504
|
type: "image";
|
3505
|
+
data: string;
|
3506
3506
|
mimeType: string;
|
3507
3507
|
annotations?: {
|
3508
3508
|
priority?: number | null | undefined;
|
@@ -3510,8 +3510,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
3510
3510
|
lastModified?: string | null | undefined;
|
3511
3511
|
} | null | undefined;
|
3512
3512
|
} | {
|
3513
|
-
data: string;
|
3514
3513
|
type: "audio";
|
3514
|
+
data: string;
|
3515
3515
|
mimeType: string;
|
3516
3516
|
annotations?: {
|
3517
3517
|
priority?: number | null | undefined;
|
@@ -3568,16 +3568,16 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
3568
3568
|
sessionUpdate: "tool_call";
|
3569
3569
|
content?: ({
|
3570
3570
|
content: {
|
3571
|
-
text: string;
|
3572
3571
|
type: "text";
|
3572
|
+
text: string;
|
3573
3573
|
annotations?: {
|
3574
3574
|
priority?: number | null | undefined;
|
3575
3575
|
audience?: ("user" | "assistant")[] | null | undefined;
|
3576
3576
|
lastModified?: string | null | undefined;
|
3577
3577
|
} | null | undefined;
|
3578
3578
|
} | {
|
3579
|
-
data: string;
|
3580
3579
|
type: "image";
|
3580
|
+
data: string;
|
3581
3581
|
mimeType: string;
|
3582
3582
|
annotations?: {
|
3583
3583
|
priority?: number | null | undefined;
|
@@ -3585,8 +3585,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
3585
3585
|
lastModified?: string | null | undefined;
|
3586
3586
|
} | null | undefined;
|
3587
3587
|
} | {
|
3588
|
-
data: string;
|
3589
3588
|
type: "audio";
|
3589
|
+
data: string;
|
3590
3590
|
mimeType: string;
|
3591
3591
|
annotations?: {
|
3592
3592
|
priority?: number | null | undefined;
|
@@ -3654,16 +3654,16 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
3654
3654
|
text: z.ZodString;
|
3655
3655
|
type: z.ZodLiteral<"text">;
|
3656
3656
|
}, "strip", z.ZodTypeAny, {
|
3657
|
-
text: string;
|
3658
3657
|
type: "text";
|
3658
|
+
text: string;
|
3659
3659
|
annotations?: {
|
3660
3660
|
priority?: number | null | undefined;
|
3661
3661
|
audience?: ("user" | "assistant")[] | null | undefined;
|
3662
3662
|
lastModified?: string | null | undefined;
|
3663
3663
|
} | null | undefined;
|
3664
3664
|
}, {
|
3665
|
-
text: string;
|
3666
3665
|
type: "text";
|
3666
|
+
text: string;
|
3667
3667
|
annotations?: {
|
3668
3668
|
priority?: number | null | undefined;
|
3669
3669
|
audience?: ("user" | "assistant")[] | null | undefined;
|
@@ -3687,8 +3687,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
3687
3687
|
mimeType: z.ZodString;
|
3688
3688
|
type: z.ZodLiteral<"image">;
|
3689
3689
|
}, "strip", z.ZodTypeAny, {
|
3690
|
-
data: string;
|
3691
3690
|
type: "image";
|
3691
|
+
data: string;
|
3692
3692
|
mimeType: string;
|
3693
3693
|
annotations?: {
|
3694
3694
|
priority?: number | null | undefined;
|
@@ -3696,8 +3696,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
3696
3696
|
lastModified?: string | null | undefined;
|
3697
3697
|
} | null | undefined;
|
3698
3698
|
}, {
|
3699
|
-
data: string;
|
3700
3699
|
type: "image";
|
3700
|
+
data: string;
|
3701
3701
|
mimeType: string;
|
3702
3702
|
annotations?: {
|
3703
3703
|
priority?: number | null | undefined;
|
@@ -3722,8 +3722,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
3722
3722
|
mimeType: z.ZodString;
|
3723
3723
|
type: z.ZodLiteral<"audio">;
|
3724
3724
|
}, "strip", z.ZodTypeAny, {
|
3725
|
-
data: string;
|
3726
3725
|
type: "audio";
|
3726
|
+
data: string;
|
3727
3727
|
mimeType: string;
|
3728
3728
|
annotations?: {
|
3729
3729
|
priority?: number | null | undefined;
|
@@ -3731,8 +3731,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
3731
3731
|
lastModified?: string | null | undefined;
|
3732
3732
|
} | null | undefined;
|
3733
3733
|
}, {
|
3734
|
-
data: string;
|
3735
3734
|
type: "audio";
|
3735
|
+
data: string;
|
3736
3736
|
mimeType: string;
|
3737
3737
|
annotations?: {
|
3738
3738
|
priority?: number | null | undefined;
|
@@ -3862,16 +3862,16 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
3862
3862
|
type: z.ZodLiteral<"content">;
|
3863
3863
|
}, "strip", z.ZodTypeAny, {
|
3864
3864
|
content: {
|
3865
|
-
text: string;
|
3866
3865
|
type: "text";
|
3866
|
+
text: string;
|
3867
3867
|
annotations?: {
|
3868
3868
|
priority?: number | null | undefined;
|
3869
3869
|
audience?: ("user" | "assistant")[] | null | undefined;
|
3870
3870
|
lastModified?: string | null | undefined;
|
3871
3871
|
} | null | undefined;
|
3872
3872
|
} | {
|
3873
|
-
data: string;
|
3874
3873
|
type: "image";
|
3874
|
+
data: string;
|
3875
3875
|
mimeType: string;
|
3876
3876
|
annotations?: {
|
3877
3877
|
priority?: number | null | undefined;
|
@@ -3879,8 +3879,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
3879
3879
|
lastModified?: string | null | undefined;
|
3880
3880
|
} | null | undefined;
|
3881
3881
|
} | {
|
3882
|
-
data: string;
|
3883
3882
|
type: "audio";
|
3883
|
+
data: string;
|
3884
3884
|
mimeType: string;
|
3885
3885
|
annotations?: {
|
3886
3886
|
priority?: number | null | undefined;
|
@@ -3920,16 +3920,16 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
3920
3920
|
type: "content";
|
3921
3921
|
}, {
|
3922
3922
|
content: {
|
3923
|
-
text: string;
|
3924
3923
|
type: "text";
|
3924
|
+
text: string;
|
3925
3925
|
annotations?: {
|
3926
3926
|
priority?: number | null | undefined;
|
3927
3927
|
audience?: ("user" | "assistant")[] | null | undefined;
|
3928
3928
|
lastModified?: string | null | undefined;
|
3929
3929
|
} | null | undefined;
|
3930
3930
|
} | {
|
3931
|
-
data: string;
|
3932
3931
|
type: "image";
|
3932
|
+
data: string;
|
3933
3933
|
mimeType: string;
|
3934
3934
|
annotations?: {
|
3935
3935
|
priority?: number | null | undefined;
|
@@ -3937,8 +3937,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
3937
3937
|
lastModified?: string | null | undefined;
|
3938
3938
|
} | null | undefined;
|
3939
3939
|
} | {
|
3940
|
-
data: string;
|
3941
3940
|
type: "audio";
|
3941
|
+
data: string;
|
3942
3942
|
mimeType: string;
|
3943
3943
|
annotations?: {
|
3944
3944
|
priority?: number | null | undefined;
|
@@ -4013,16 +4013,16 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
4013
4013
|
sessionUpdate: "tool_call_update";
|
4014
4014
|
content?: ({
|
4015
4015
|
content: {
|
4016
|
-
text: string;
|
4017
4016
|
type: "text";
|
4017
|
+
text: string;
|
4018
4018
|
annotations?: {
|
4019
4019
|
priority?: number | null | undefined;
|
4020
4020
|
audience?: ("user" | "assistant")[] | null | undefined;
|
4021
4021
|
lastModified?: string | null | undefined;
|
4022
4022
|
} | null | undefined;
|
4023
4023
|
} | {
|
4024
|
-
data: string;
|
4025
4024
|
type: "image";
|
4025
|
+
data: string;
|
4026
4026
|
mimeType: string;
|
4027
4027
|
annotations?: {
|
4028
4028
|
priority?: number | null | undefined;
|
@@ -4030,8 +4030,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
4030
4030
|
lastModified?: string | null | undefined;
|
4031
4031
|
} | null | undefined;
|
4032
4032
|
} | {
|
4033
|
-
data: string;
|
4034
4033
|
type: "audio";
|
4034
|
+
data: string;
|
4035
4035
|
mimeType: string;
|
4036
4036
|
annotations?: {
|
4037
4037
|
priority?: number | null | undefined;
|
@@ -4088,16 +4088,16 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
4088
4088
|
sessionUpdate: "tool_call_update";
|
4089
4089
|
content?: ({
|
4090
4090
|
content: {
|
4091
|
-
text: string;
|
4092
4091
|
type: "text";
|
4092
|
+
text: string;
|
4093
4093
|
annotations?: {
|
4094
4094
|
priority?: number | null | undefined;
|
4095
4095
|
audience?: ("user" | "assistant")[] | null | undefined;
|
4096
4096
|
lastModified?: string | null | undefined;
|
4097
4097
|
} | null | undefined;
|
4098
4098
|
} | {
|
4099
|
-
data: string;
|
4100
4099
|
type: "image";
|
4100
|
+
data: string;
|
4101
4101
|
mimeType: string;
|
4102
4102
|
annotations?: {
|
4103
4103
|
priority?: number | null | undefined;
|
@@ -4105,8 +4105,8 @@ export declare const sessionUpdateSchema: z.ZodUnion<[z.ZodObject<{
|
|
4105
4105
|
lastModified?: string | null | undefined;
|
4106
4106
|
} | null | undefined;
|
4107
4107
|
} | {
|
4108
|
-
data: string;
|
4109
4108
|
type: "audio";
|
4109
|
+
data: string;
|
4110
4110
|
mimeType: string;
|
4111
4111
|
annotations?: {
|
4112
4112
|
priority?: number | null | undefined;
|
@@ -4224,13 +4224,13 @@ export declare const agentResponseSchema: z.ZodUnion<[z.ZodObject<{
|
|
4224
4224
|
id: z.ZodString;
|
4225
4225
|
name: z.ZodString;
|
4226
4226
|
}, "strip", z.ZodTypeAny, {
|
4227
|
-
id: string;
|
4228
4227
|
name: string;
|
4229
4228
|
description: string | null;
|
4230
|
-
}, {
|
4231
4229
|
id: string;
|
4230
|
+
}, {
|
4232
4231
|
name: string;
|
4233
4232
|
description: string | null;
|
4233
|
+
id: string;
|
4234
4234
|
}>, "many">;
|
4235
4235
|
protocolVersion: z.ZodNumber;
|
4236
4236
|
}, "strip", z.ZodTypeAny, {
|
@@ -4243,9 +4243,9 @@ export declare const agentResponseSchema: z.ZodUnion<[z.ZodObject<{
|
|
4243
4243
|
} | undefined;
|
4244
4244
|
};
|
4245
4245
|
authMethods: {
|
4246
|
-
id: string;
|
4247
4246
|
name: string;
|
4248
4247
|
description: string | null;
|
4248
|
+
id: string;
|
4249
4249
|
}[];
|
4250
4250
|
protocolVersion: number;
|
4251
4251
|
}, {
|
@@ -4258,9 +4258,9 @@ export declare const agentResponseSchema: z.ZodUnion<[z.ZodObject<{
|
|
4258
4258
|
} | undefined;
|
4259
4259
|
};
|
4260
4260
|
authMethods: {
|
4261
|
-
id: string;
|
4262
4261
|
name: string;
|
4263
4262
|
description: string | null;
|
4263
|
+
id: string;
|
4264
4264
|
}[];
|
4265
4265
|
protocolVersion: number;
|
4266
4266
|
}>, z.ZodNull, z.ZodObject<{
|
@@ -4310,16 +4310,16 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
4310
4310
|
text: z.ZodString;
|
4311
4311
|
type: z.ZodLiteral<"text">;
|
4312
4312
|
}, "strip", z.ZodTypeAny, {
|
4313
|
-
text: string;
|
4314
4313
|
type: "text";
|
4314
|
+
text: string;
|
4315
4315
|
annotations?: {
|
4316
4316
|
priority?: number | null | undefined;
|
4317
4317
|
audience?: ("user" | "assistant")[] | null | undefined;
|
4318
4318
|
lastModified?: string | null | undefined;
|
4319
4319
|
} | null | undefined;
|
4320
4320
|
}, {
|
4321
|
-
text: string;
|
4322
4321
|
type: "text";
|
4322
|
+
text: string;
|
4323
4323
|
annotations?: {
|
4324
4324
|
priority?: number | null | undefined;
|
4325
4325
|
audience?: ("user" | "assistant")[] | null | undefined;
|
@@ -4343,8 +4343,8 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
4343
4343
|
mimeType: z.ZodString;
|
4344
4344
|
type: z.ZodLiteral<"image">;
|
4345
4345
|
}, "strip", z.ZodTypeAny, {
|
4346
|
-
data: string;
|
4347
4346
|
type: "image";
|
4347
|
+
data: string;
|
4348
4348
|
mimeType: string;
|
4349
4349
|
annotations?: {
|
4350
4350
|
priority?: number | null | undefined;
|
@@ -4352,8 +4352,8 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
4352
4352
|
lastModified?: string | null | undefined;
|
4353
4353
|
} | null | undefined;
|
4354
4354
|
}, {
|
4355
|
-
data: string;
|
4356
4355
|
type: "image";
|
4356
|
+
data: string;
|
4357
4357
|
mimeType: string;
|
4358
4358
|
annotations?: {
|
4359
4359
|
priority?: number | null | undefined;
|
@@ -4378,8 +4378,8 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
4378
4378
|
mimeType: z.ZodString;
|
4379
4379
|
type: z.ZodLiteral<"audio">;
|
4380
4380
|
}, "strip", z.ZodTypeAny, {
|
4381
|
-
data: string;
|
4382
4381
|
type: "audio";
|
4382
|
+
data: string;
|
4383
4383
|
mimeType: string;
|
4384
4384
|
annotations?: {
|
4385
4385
|
priority?: number | null | undefined;
|
@@ -4387,8 +4387,8 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
4387
4387
|
lastModified?: string | null | undefined;
|
4388
4388
|
} | null | undefined;
|
4389
4389
|
}, {
|
4390
|
-
data: string;
|
4391
4390
|
type: "audio";
|
4391
|
+
data: string;
|
4392
4392
|
mimeType: string;
|
4393
4393
|
annotations?: {
|
4394
4394
|
priority?: number | null | undefined;
|
@@ -4518,16 +4518,16 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
4518
4518
|
type: z.ZodLiteral<"content">;
|
4519
4519
|
}, "strip", z.ZodTypeAny, {
|
4520
4520
|
content: {
|
4521
|
-
text: string;
|
4522
4521
|
type: "text";
|
4522
|
+
text: string;
|
4523
4523
|
annotations?: {
|
4524
4524
|
priority?: number | null | undefined;
|
4525
4525
|
audience?: ("user" | "assistant")[] | null | undefined;
|
4526
4526
|
lastModified?: string | null | undefined;
|
4527
4527
|
} | null | undefined;
|
4528
4528
|
} | {
|
4529
|
-
data: string;
|
4530
4529
|
type: "image";
|
4530
|
+
data: string;
|
4531
4531
|
mimeType: string;
|
4532
4532
|
annotations?: {
|
4533
4533
|
priority?: number | null | undefined;
|
@@ -4535,8 +4535,8 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
4535
4535
|
lastModified?: string | null | undefined;
|
4536
4536
|
} | null | undefined;
|
4537
4537
|
} | {
|
4538
|
-
data: string;
|
4539
4538
|
type: "audio";
|
4539
|
+
data: string;
|
4540
4540
|
mimeType: string;
|
4541
4541
|
annotations?: {
|
4542
4542
|
priority?: number | null | undefined;
|
@@ -4576,16 +4576,16 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
4576
4576
|
type: "content";
|
4577
4577
|
}, {
|
4578
4578
|
content: {
|
4579
|
-
text: string;
|
4580
4579
|
type: "text";
|
4580
|
+
text: string;
|
4581
4581
|
annotations?: {
|
4582
4582
|
priority?: number | null | undefined;
|
4583
4583
|
audience?: ("user" | "assistant")[] | null | undefined;
|
4584
4584
|
lastModified?: string | null | undefined;
|
4585
4585
|
} | null | undefined;
|
4586
4586
|
} | {
|
4587
|
-
data: string;
|
4588
4587
|
type: "image";
|
4588
|
+
data: string;
|
4589
4589
|
mimeType: string;
|
4590
4590
|
annotations?: {
|
4591
4591
|
priority?: number | null | undefined;
|
@@ -4593,8 +4593,8 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
4593
4593
|
lastModified?: string | null | undefined;
|
4594
4594
|
} | null | undefined;
|
4595
4595
|
} | {
|
4596
|
-
data: string;
|
4597
4596
|
type: "audio";
|
4597
|
+
data: string;
|
4598
4598
|
mimeType: string;
|
4599
4599
|
annotations?: {
|
4600
4600
|
priority?: number | null | undefined;
|
@@ -4670,16 +4670,16 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
4670
4670
|
toolCallId: string;
|
4671
4671
|
content?: ({
|
4672
4672
|
content: {
|
4673
|
-
text: string;
|
4674
4673
|
type: "text";
|
4674
|
+
text: string;
|
4675
4675
|
annotations?: {
|
4676
4676
|
priority?: number | null | undefined;
|
4677
4677
|
audience?: ("user" | "assistant")[] | null | undefined;
|
4678
4678
|
lastModified?: string | null | undefined;
|
4679
4679
|
} | null | undefined;
|
4680
4680
|
} | {
|
4681
|
-
data: string;
|
4682
4681
|
type: "image";
|
4682
|
+
data: string;
|
4683
4683
|
mimeType: string;
|
4684
4684
|
annotations?: {
|
4685
4685
|
priority?: number | null | undefined;
|
@@ -4687,8 +4687,8 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
4687
4687
|
lastModified?: string | null | undefined;
|
4688
4688
|
} | null | undefined;
|
4689
4689
|
} | {
|
4690
|
-
data: string;
|
4691
4690
|
type: "audio";
|
4691
|
+
data: string;
|
4692
4692
|
mimeType: string;
|
4693
4693
|
annotations?: {
|
4694
4694
|
priority?: number | null | undefined;
|
@@ -4744,16 +4744,16 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
4744
4744
|
toolCallId: string;
|
4745
4745
|
content?: ({
|
4746
4746
|
content: {
|
4747
|
-
text: string;
|
4748
4747
|
type: "text";
|
4748
|
+
text: string;
|
4749
4749
|
annotations?: {
|
4750
4750
|
priority?: number | null | undefined;
|
4751
4751
|
audience?: ("user" | "assistant")[] | null | undefined;
|
4752
4752
|
lastModified?: string | null | undefined;
|
4753
4753
|
} | null | undefined;
|
4754
4754
|
} | {
|
4755
|
-
data: string;
|
4756
4755
|
type: "image";
|
4756
|
+
data: string;
|
4757
4757
|
mimeType: string;
|
4758
4758
|
annotations?: {
|
4759
4759
|
priority?: number | null | undefined;
|
@@ -4761,8 +4761,8 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
4761
4761
|
lastModified?: string | null | undefined;
|
4762
4762
|
} | null | undefined;
|
4763
4763
|
} | {
|
4764
|
-
data: string;
|
4765
4764
|
type: "audio";
|
4765
|
+
data: string;
|
4766
4766
|
mimeType: string;
|
4767
4767
|
annotations?: {
|
4768
4768
|
priority?: number | null | undefined;
|
@@ -4826,16 +4826,16 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
4826
4826
|
toolCallId: string;
|
4827
4827
|
content?: ({
|
4828
4828
|
content: {
|
4829
|
-
text: string;
|
4830
4829
|
type: "text";
|
4830
|
+
text: string;
|
4831
4831
|
annotations?: {
|
4832
4832
|
priority?: number | null | undefined;
|
4833
4833
|
audience?: ("user" | "assistant")[] | null | undefined;
|
4834
4834
|
lastModified?: string | null | undefined;
|
4835
4835
|
} | null | undefined;
|
4836
4836
|
} | {
|
4837
|
-
data: string;
|
4838
4837
|
type: "image";
|
4838
|
+
data: string;
|
4839
4839
|
mimeType: string;
|
4840
4840
|
annotations?: {
|
4841
4841
|
priority?: number | null | undefined;
|
@@ -4843,8 +4843,8 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
4843
4843
|
lastModified?: string | null | undefined;
|
4844
4844
|
} | null | undefined;
|
4845
4845
|
} | {
|
4846
|
-
data: string;
|
4847
4846
|
type: "audio";
|
4847
|
+
data: string;
|
4848
4848
|
mimeType: string;
|
4849
4849
|
annotations?: {
|
4850
4850
|
priority?: number | null | undefined;
|
@@ -4908,16 +4908,16 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
4908
4908
|
toolCallId: string;
|
4909
4909
|
content?: ({
|
4910
4910
|
content: {
|
4911
|
-
text: string;
|
4912
4911
|
type: "text";
|
4912
|
+
text: string;
|
4913
4913
|
annotations?: {
|
4914
4914
|
priority?: number | null | undefined;
|
4915
4915
|
audience?: ("user" | "assistant")[] | null | undefined;
|
4916
4916
|
lastModified?: string | null | undefined;
|
4917
4917
|
} | null | undefined;
|
4918
4918
|
} | {
|
4919
|
-
data: string;
|
4920
4919
|
type: "image";
|
4920
|
+
data: string;
|
4921
4921
|
mimeType: string;
|
4922
4922
|
annotations?: {
|
4923
4923
|
priority?: number | null | undefined;
|
@@ -4925,8 +4925,8 @@ export declare const requestPermissionRequestSchema: z.ZodObject<{
|
|
4925
4925
|
lastModified?: string | null | undefined;
|
4926
4926
|
} | null | undefined;
|
4927
4927
|
} | {
|
4928
|
-
data: string;
|
4929
4928
|
type: "audio";
|
4929
|
+
data: string;
|
4930
4930
|
mimeType: string;
|
4931
4931
|
annotations?: {
|
4932
4932
|
priority?: number | null | undefined;
|
@@ -5038,16 +5038,16 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
5038
5038
|
text: z.ZodString;
|
5039
5039
|
type: z.ZodLiteral<"text">;
|
5040
5040
|
}, "strip", z.ZodTypeAny, {
|
5041
|
-
text: string;
|
5042
5041
|
type: "text";
|
5042
|
+
text: string;
|
5043
5043
|
annotations?: {
|
5044
5044
|
priority?: number | null | undefined;
|
5045
5045
|
audience?: ("user" | "assistant")[] | null | undefined;
|
5046
5046
|
lastModified?: string | null | undefined;
|
5047
5047
|
} | null | undefined;
|
5048
5048
|
}, {
|
5049
|
-
text: string;
|
5050
5049
|
type: "text";
|
5050
|
+
text: string;
|
5051
5051
|
annotations?: {
|
5052
5052
|
priority?: number | null | undefined;
|
5053
5053
|
audience?: ("user" | "assistant")[] | null | undefined;
|
@@ -5071,8 +5071,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
5071
5071
|
mimeType: z.ZodString;
|
5072
5072
|
type: z.ZodLiteral<"image">;
|
5073
5073
|
}, "strip", z.ZodTypeAny, {
|
5074
|
-
data: string;
|
5075
5074
|
type: "image";
|
5075
|
+
data: string;
|
5076
5076
|
mimeType: string;
|
5077
5077
|
annotations?: {
|
5078
5078
|
priority?: number | null | undefined;
|
@@ -5080,8 +5080,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
5080
5080
|
lastModified?: string | null | undefined;
|
5081
5081
|
} | null | undefined;
|
5082
5082
|
}, {
|
5083
|
-
data: string;
|
5084
5083
|
type: "image";
|
5084
|
+
data: string;
|
5085
5085
|
mimeType: string;
|
5086
5086
|
annotations?: {
|
5087
5087
|
priority?: number | null | undefined;
|
@@ -5106,8 +5106,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
5106
5106
|
mimeType: z.ZodString;
|
5107
5107
|
type: z.ZodLiteral<"audio">;
|
5108
5108
|
}, "strip", z.ZodTypeAny, {
|
5109
|
-
data: string;
|
5110
5109
|
type: "audio";
|
5110
|
+
data: string;
|
5111
5111
|
mimeType: string;
|
5112
5112
|
annotations?: {
|
5113
5113
|
priority?: number | null | undefined;
|
@@ -5115,8 +5115,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
5115
5115
|
lastModified?: string | null | undefined;
|
5116
5116
|
} | null | undefined;
|
5117
5117
|
}, {
|
5118
|
-
data: string;
|
5119
5118
|
type: "audio";
|
5119
|
+
data: string;
|
5120
5120
|
mimeType: string;
|
5121
5121
|
annotations?: {
|
5122
5122
|
priority?: number | null | undefined;
|
@@ -5246,16 +5246,16 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
5246
5246
|
sessionUpdate: z.ZodLiteral<"user_message_chunk">;
|
5247
5247
|
}, "strip", z.ZodTypeAny, {
|
5248
5248
|
content: {
|
5249
|
-
text: string;
|
5250
5249
|
type: "text";
|
5250
|
+
text: string;
|
5251
5251
|
annotations?: {
|
5252
5252
|
priority?: number | null | undefined;
|
5253
5253
|
audience?: ("user" | "assistant")[] | null | undefined;
|
5254
5254
|
lastModified?: string | null | undefined;
|
5255
5255
|
} | null | undefined;
|
5256
5256
|
} | {
|
5257
|
-
data: string;
|
5258
5257
|
type: "image";
|
5258
|
+
data: string;
|
5259
5259
|
mimeType: string;
|
5260
5260
|
annotations?: {
|
5261
5261
|
priority?: number | null | undefined;
|
@@ -5263,8 +5263,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
5263
5263
|
lastModified?: string | null | undefined;
|
5264
5264
|
} | null | undefined;
|
5265
5265
|
} | {
|
5266
|
-
data: string;
|
5267
5266
|
type: "audio";
|
5267
|
+
data: string;
|
5268
5268
|
mimeType: string;
|
5269
5269
|
annotations?: {
|
5270
5270
|
priority?: number | null | undefined;
|
@@ -5304,16 +5304,16 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
5304
5304
|
sessionUpdate: "user_message_chunk";
|
5305
5305
|
}, {
|
5306
5306
|
content: {
|
5307
|
-
text: string;
|
5308
5307
|
type: "text";
|
5308
|
+
text: string;
|
5309
5309
|
annotations?: {
|
5310
5310
|
priority?: number | null | undefined;
|
5311
5311
|
audience?: ("user" | "assistant")[] | null | undefined;
|
5312
5312
|
lastModified?: string | null | undefined;
|
5313
5313
|
} | null | undefined;
|
5314
5314
|
} | {
|
5315
|
-
data: string;
|
5316
5315
|
type: "image";
|
5316
|
+
data: string;
|
5317
5317
|
mimeType: string;
|
5318
5318
|
annotations?: {
|
5319
5319
|
priority?: number | null | undefined;
|
@@ -5321,8 +5321,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
5321
5321
|
lastModified?: string | null | undefined;
|
5322
5322
|
} | null | undefined;
|
5323
5323
|
} | {
|
5324
|
-
data: string;
|
5325
5324
|
type: "audio";
|
5325
|
+
data: string;
|
5326
5326
|
mimeType: string;
|
5327
5327
|
annotations?: {
|
5328
5328
|
priority?: number | null | undefined;
|
@@ -5378,16 +5378,16 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
5378
5378
|
text: z.ZodString;
|
5379
5379
|
type: z.ZodLiteral<"text">;
|
5380
5380
|
}, "strip", z.ZodTypeAny, {
|
5381
|
-
text: string;
|
5382
5381
|
type: "text";
|
5382
|
+
text: string;
|
5383
5383
|
annotations?: {
|
5384
5384
|
priority?: number | null | undefined;
|
5385
5385
|
audience?: ("user" | "assistant")[] | null | undefined;
|
5386
5386
|
lastModified?: string | null | undefined;
|
5387
5387
|
} | null | undefined;
|
5388
5388
|
}, {
|
5389
|
-
text: string;
|
5390
5389
|
type: "text";
|
5390
|
+
text: string;
|
5391
5391
|
annotations?: {
|
5392
5392
|
priority?: number | null | undefined;
|
5393
5393
|
audience?: ("user" | "assistant")[] | null | undefined;
|
@@ -5411,8 +5411,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
5411
5411
|
mimeType: z.ZodString;
|
5412
5412
|
type: z.ZodLiteral<"image">;
|
5413
5413
|
}, "strip", z.ZodTypeAny, {
|
5414
|
-
data: string;
|
5415
5414
|
type: "image";
|
5415
|
+
data: string;
|
5416
5416
|
mimeType: string;
|
5417
5417
|
annotations?: {
|
5418
5418
|
priority?: number | null | undefined;
|
@@ -5420,8 +5420,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
5420
5420
|
lastModified?: string | null | undefined;
|
5421
5421
|
} | null | undefined;
|
5422
5422
|
}, {
|
5423
|
-
data: string;
|
5424
5423
|
type: "image";
|
5424
|
+
data: string;
|
5425
5425
|
mimeType: string;
|
5426
5426
|
annotations?: {
|
5427
5427
|
priority?: number | null | undefined;
|
@@ -5446,8 +5446,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
5446
5446
|
mimeType: z.ZodString;
|
5447
5447
|
type: z.ZodLiteral<"audio">;
|
5448
5448
|
}, "strip", z.ZodTypeAny, {
|
5449
|
-
data: string;
|
5450
5449
|
type: "audio";
|
5450
|
+
data: string;
|
5451
5451
|
mimeType: string;
|
5452
5452
|
annotations?: {
|
5453
5453
|
priority?: number | null | undefined;
|
@@ -5455,8 +5455,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
5455
5455
|
lastModified?: string | null | undefined;
|
5456
5456
|
} | null | undefined;
|
5457
5457
|
}, {
|
5458
|
-
data: string;
|
5459
5458
|
type: "audio";
|
5459
|
+
data: string;
|
5460
5460
|
mimeType: string;
|
5461
5461
|
annotations?: {
|
5462
5462
|
priority?: number | null | undefined;
|
@@ -5586,16 +5586,16 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
5586
5586
|
sessionUpdate: z.ZodLiteral<"agent_message_chunk">;
|
5587
5587
|
}, "strip", z.ZodTypeAny, {
|
5588
5588
|
content: {
|
5589
|
-
text: string;
|
5590
5589
|
type: "text";
|
5590
|
+
text: string;
|
5591
5591
|
annotations?: {
|
5592
5592
|
priority?: number | null | undefined;
|
5593
5593
|
audience?: ("user" | "assistant")[] | null | undefined;
|
5594
5594
|
lastModified?: string | null | undefined;
|
5595
5595
|
} | null | undefined;
|
5596
5596
|
} | {
|
5597
|
-
data: string;
|
5598
5597
|
type: "image";
|
5598
|
+
data: string;
|
5599
5599
|
mimeType: string;
|
5600
5600
|
annotations?: {
|
5601
5601
|
priority?: number | null | undefined;
|
@@ -5603,8 +5603,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
5603
5603
|
lastModified?: string | null | undefined;
|
5604
5604
|
} | null | undefined;
|
5605
5605
|
} | {
|
5606
|
-
data: string;
|
5607
5606
|
type: "audio";
|
5607
|
+
data: string;
|
5608
5608
|
mimeType: string;
|
5609
5609
|
annotations?: {
|
5610
5610
|
priority?: number | null | undefined;
|
@@ -5644,16 +5644,16 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
5644
5644
|
sessionUpdate: "agent_message_chunk";
|
5645
5645
|
}, {
|
5646
5646
|
content: {
|
5647
|
-
text: string;
|
5648
5647
|
type: "text";
|
5648
|
+
text: string;
|
5649
5649
|
annotations?: {
|
5650
5650
|
priority?: number | null | undefined;
|
5651
5651
|
audience?: ("user" | "assistant")[] | null | undefined;
|
5652
5652
|
lastModified?: string | null | undefined;
|
5653
5653
|
} | null | undefined;
|
5654
5654
|
} | {
|
5655
|
-
data: string;
|
5656
5655
|
type: "image";
|
5656
|
+
data: string;
|
5657
5657
|
mimeType: string;
|
5658
5658
|
annotations?: {
|
5659
5659
|
priority?: number | null | undefined;
|
@@ -5661,8 +5661,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
5661
5661
|
lastModified?: string | null | undefined;
|
5662
5662
|
} | null | undefined;
|
5663
5663
|
} | {
|
5664
|
-
data: string;
|
5665
5664
|
type: "audio";
|
5665
|
+
data: string;
|
5666
5666
|
mimeType: string;
|
5667
5667
|
annotations?: {
|
5668
5668
|
priority?: number | null | undefined;
|
@@ -5718,16 +5718,16 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
5718
5718
|
text: z.ZodString;
|
5719
5719
|
type: z.ZodLiteral<"text">;
|
5720
5720
|
}, "strip", z.ZodTypeAny, {
|
5721
|
-
text: string;
|
5722
5721
|
type: "text";
|
5722
|
+
text: string;
|
5723
5723
|
annotations?: {
|
5724
5724
|
priority?: number | null | undefined;
|
5725
5725
|
audience?: ("user" | "assistant")[] | null | undefined;
|
5726
5726
|
lastModified?: string | null | undefined;
|
5727
5727
|
} | null | undefined;
|
5728
5728
|
}, {
|
5729
|
-
text: string;
|
5730
5729
|
type: "text";
|
5730
|
+
text: string;
|
5731
5731
|
annotations?: {
|
5732
5732
|
priority?: number | null | undefined;
|
5733
5733
|
audience?: ("user" | "assistant")[] | null | undefined;
|
@@ -5751,8 +5751,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
5751
5751
|
mimeType: z.ZodString;
|
5752
5752
|
type: z.ZodLiteral<"image">;
|
5753
5753
|
}, "strip", z.ZodTypeAny, {
|
5754
|
-
data: string;
|
5755
5754
|
type: "image";
|
5755
|
+
data: string;
|
5756
5756
|
mimeType: string;
|
5757
5757
|
annotations?: {
|
5758
5758
|
priority?: number | null | undefined;
|
@@ -5760,8 +5760,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
5760
5760
|
lastModified?: string | null | undefined;
|
5761
5761
|
} | null | undefined;
|
5762
5762
|
}, {
|
5763
|
-
data: string;
|
5764
5763
|
type: "image";
|
5764
|
+
data: string;
|
5765
5765
|
mimeType: string;
|
5766
5766
|
annotations?: {
|
5767
5767
|
priority?: number | null | undefined;
|
@@ -5786,8 +5786,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
5786
5786
|
mimeType: z.ZodString;
|
5787
5787
|
type: z.ZodLiteral<"audio">;
|
5788
5788
|
}, "strip", z.ZodTypeAny, {
|
5789
|
-
data: string;
|
5790
5789
|
type: "audio";
|
5790
|
+
data: string;
|
5791
5791
|
mimeType: string;
|
5792
5792
|
annotations?: {
|
5793
5793
|
priority?: number | null | undefined;
|
@@ -5795,8 +5795,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
5795
5795
|
lastModified?: string | null | undefined;
|
5796
5796
|
} | null | undefined;
|
5797
5797
|
}, {
|
5798
|
-
data: string;
|
5799
5798
|
type: "audio";
|
5799
|
+
data: string;
|
5800
5800
|
mimeType: string;
|
5801
5801
|
annotations?: {
|
5802
5802
|
priority?: number | null | undefined;
|
@@ -5926,16 +5926,16 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
5926
5926
|
sessionUpdate: z.ZodLiteral<"agent_thought_chunk">;
|
5927
5927
|
}, "strip", z.ZodTypeAny, {
|
5928
5928
|
content: {
|
5929
|
-
text: string;
|
5930
5929
|
type: "text";
|
5930
|
+
text: string;
|
5931
5931
|
annotations?: {
|
5932
5932
|
priority?: number | null | undefined;
|
5933
5933
|
audience?: ("user" | "assistant")[] | null | undefined;
|
5934
5934
|
lastModified?: string | null | undefined;
|
5935
5935
|
} | null | undefined;
|
5936
5936
|
} | {
|
5937
|
-
data: string;
|
5938
5937
|
type: "image";
|
5938
|
+
data: string;
|
5939
5939
|
mimeType: string;
|
5940
5940
|
annotations?: {
|
5941
5941
|
priority?: number | null | undefined;
|
@@ -5943,8 +5943,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
5943
5943
|
lastModified?: string | null | undefined;
|
5944
5944
|
} | null | undefined;
|
5945
5945
|
} | {
|
5946
|
-
data: string;
|
5947
5946
|
type: "audio";
|
5947
|
+
data: string;
|
5948
5948
|
mimeType: string;
|
5949
5949
|
annotations?: {
|
5950
5950
|
priority?: number | null | undefined;
|
@@ -5984,16 +5984,16 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
5984
5984
|
sessionUpdate: "agent_thought_chunk";
|
5985
5985
|
}, {
|
5986
5986
|
content: {
|
5987
|
-
text: string;
|
5988
5987
|
type: "text";
|
5988
|
+
text: string;
|
5989
5989
|
annotations?: {
|
5990
5990
|
priority?: number | null | undefined;
|
5991
5991
|
audience?: ("user" | "assistant")[] | null | undefined;
|
5992
5992
|
lastModified?: string | null | undefined;
|
5993
5993
|
} | null | undefined;
|
5994
5994
|
} | {
|
5995
|
-
data: string;
|
5996
5995
|
type: "image";
|
5996
|
+
data: string;
|
5997
5997
|
mimeType: string;
|
5998
5998
|
annotations?: {
|
5999
5999
|
priority?: number | null | undefined;
|
@@ -6001,8 +6001,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
6001
6001
|
lastModified?: string | null | undefined;
|
6002
6002
|
} | null | undefined;
|
6003
6003
|
} | {
|
6004
|
-
data: string;
|
6005
6004
|
type: "audio";
|
6005
|
+
data: string;
|
6006
6006
|
mimeType: string;
|
6007
6007
|
annotations?: {
|
6008
6008
|
priority?: number | null | undefined;
|
@@ -6059,16 +6059,16 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
6059
6059
|
text: z.ZodString;
|
6060
6060
|
type: z.ZodLiteral<"text">;
|
6061
6061
|
}, "strip", z.ZodTypeAny, {
|
6062
|
-
text: string;
|
6063
6062
|
type: "text";
|
6063
|
+
text: string;
|
6064
6064
|
annotations?: {
|
6065
6065
|
priority?: number | null | undefined;
|
6066
6066
|
audience?: ("user" | "assistant")[] | null | undefined;
|
6067
6067
|
lastModified?: string | null | undefined;
|
6068
6068
|
} | null | undefined;
|
6069
6069
|
}, {
|
6070
|
-
text: string;
|
6071
6070
|
type: "text";
|
6071
|
+
text: string;
|
6072
6072
|
annotations?: {
|
6073
6073
|
priority?: number | null | undefined;
|
6074
6074
|
audience?: ("user" | "assistant")[] | null | undefined;
|
@@ -6092,8 +6092,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
6092
6092
|
mimeType: z.ZodString;
|
6093
6093
|
type: z.ZodLiteral<"image">;
|
6094
6094
|
}, "strip", z.ZodTypeAny, {
|
6095
|
-
data: string;
|
6096
6095
|
type: "image";
|
6096
|
+
data: string;
|
6097
6097
|
mimeType: string;
|
6098
6098
|
annotations?: {
|
6099
6099
|
priority?: number | null | undefined;
|
@@ -6101,8 +6101,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
6101
6101
|
lastModified?: string | null | undefined;
|
6102
6102
|
} | null | undefined;
|
6103
6103
|
}, {
|
6104
|
-
data: string;
|
6105
6104
|
type: "image";
|
6105
|
+
data: string;
|
6106
6106
|
mimeType: string;
|
6107
6107
|
annotations?: {
|
6108
6108
|
priority?: number | null | undefined;
|
@@ -6127,8 +6127,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
6127
6127
|
mimeType: z.ZodString;
|
6128
6128
|
type: z.ZodLiteral<"audio">;
|
6129
6129
|
}, "strip", z.ZodTypeAny, {
|
6130
|
-
data: string;
|
6131
6130
|
type: "audio";
|
6131
|
+
data: string;
|
6132
6132
|
mimeType: string;
|
6133
6133
|
annotations?: {
|
6134
6134
|
priority?: number | null | undefined;
|
@@ -6136,8 +6136,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
6136
6136
|
lastModified?: string | null | undefined;
|
6137
6137
|
} | null | undefined;
|
6138
6138
|
}, {
|
6139
|
-
data: string;
|
6140
6139
|
type: "audio";
|
6140
|
+
data: string;
|
6141
6141
|
mimeType: string;
|
6142
6142
|
annotations?: {
|
6143
6143
|
priority?: number | null | undefined;
|
@@ -6267,16 +6267,16 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
6267
6267
|
type: z.ZodLiteral<"content">;
|
6268
6268
|
}, "strip", z.ZodTypeAny, {
|
6269
6269
|
content: {
|
6270
|
-
text: string;
|
6271
6270
|
type: "text";
|
6271
|
+
text: string;
|
6272
6272
|
annotations?: {
|
6273
6273
|
priority?: number | null | undefined;
|
6274
6274
|
audience?: ("user" | "assistant")[] | null | undefined;
|
6275
6275
|
lastModified?: string | null | undefined;
|
6276
6276
|
} | null | undefined;
|
6277
6277
|
} | {
|
6278
|
-
data: string;
|
6279
6278
|
type: "image";
|
6279
|
+
data: string;
|
6280
6280
|
mimeType: string;
|
6281
6281
|
annotations?: {
|
6282
6282
|
priority?: number | null | undefined;
|
@@ -6284,8 +6284,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
6284
6284
|
lastModified?: string | null | undefined;
|
6285
6285
|
} | null | undefined;
|
6286
6286
|
} | {
|
6287
|
-
data: string;
|
6288
6287
|
type: "audio";
|
6288
|
+
data: string;
|
6289
6289
|
mimeType: string;
|
6290
6290
|
annotations?: {
|
6291
6291
|
priority?: number | null | undefined;
|
@@ -6325,16 +6325,16 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
6325
6325
|
type: "content";
|
6326
6326
|
}, {
|
6327
6327
|
content: {
|
6328
|
-
text: string;
|
6329
6328
|
type: "text";
|
6329
|
+
text: string;
|
6330
6330
|
annotations?: {
|
6331
6331
|
priority?: number | null | undefined;
|
6332
6332
|
audience?: ("user" | "assistant")[] | null | undefined;
|
6333
6333
|
lastModified?: string | null | undefined;
|
6334
6334
|
} | null | undefined;
|
6335
6335
|
} | {
|
6336
|
-
data: string;
|
6337
6336
|
type: "image";
|
6337
|
+
data: string;
|
6338
6338
|
mimeType: string;
|
6339
6339
|
annotations?: {
|
6340
6340
|
priority?: number | null | undefined;
|
@@ -6342,8 +6342,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
6342
6342
|
lastModified?: string | null | undefined;
|
6343
6343
|
} | null | undefined;
|
6344
6344
|
} | {
|
6345
|
-
data: string;
|
6346
6345
|
type: "audio";
|
6346
|
+
data: string;
|
6347
6347
|
mimeType: string;
|
6348
6348
|
annotations?: {
|
6349
6349
|
priority?: number | null | undefined;
|
@@ -6421,16 +6421,16 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
6421
6421
|
sessionUpdate: "tool_call";
|
6422
6422
|
content?: ({
|
6423
6423
|
content: {
|
6424
|
-
text: string;
|
6425
6424
|
type: "text";
|
6425
|
+
text: string;
|
6426
6426
|
annotations?: {
|
6427
6427
|
priority?: number | null | undefined;
|
6428
6428
|
audience?: ("user" | "assistant")[] | null | undefined;
|
6429
6429
|
lastModified?: string | null | undefined;
|
6430
6430
|
} | null | undefined;
|
6431
6431
|
} | {
|
6432
|
-
data: string;
|
6433
6432
|
type: "image";
|
6433
|
+
data: string;
|
6434
6434
|
mimeType: string;
|
6435
6435
|
annotations?: {
|
6436
6436
|
priority?: number | null | undefined;
|
@@ -6438,8 +6438,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
6438
6438
|
lastModified?: string | null | undefined;
|
6439
6439
|
} | null | undefined;
|
6440
6440
|
} | {
|
6441
|
-
data: string;
|
6442
6441
|
type: "audio";
|
6442
|
+
data: string;
|
6443
6443
|
mimeType: string;
|
6444
6444
|
annotations?: {
|
6445
6445
|
priority?: number | null | undefined;
|
@@ -6496,16 +6496,16 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
6496
6496
|
sessionUpdate: "tool_call";
|
6497
6497
|
content?: ({
|
6498
6498
|
content: {
|
6499
|
-
text: string;
|
6500
6499
|
type: "text";
|
6500
|
+
text: string;
|
6501
6501
|
annotations?: {
|
6502
6502
|
priority?: number | null | undefined;
|
6503
6503
|
audience?: ("user" | "assistant")[] | null | undefined;
|
6504
6504
|
lastModified?: string | null | undefined;
|
6505
6505
|
} | null | undefined;
|
6506
6506
|
} | {
|
6507
|
-
data: string;
|
6508
6507
|
type: "image";
|
6508
|
+
data: string;
|
6509
6509
|
mimeType: string;
|
6510
6510
|
annotations?: {
|
6511
6511
|
priority?: number | null | undefined;
|
@@ -6513,8 +6513,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
6513
6513
|
lastModified?: string | null | undefined;
|
6514
6514
|
} | null | undefined;
|
6515
6515
|
} | {
|
6516
|
-
data: string;
|
6517
6516
|
type: "audio";
|
6517
|
+
data: string;
|
6518
6518
|
mimeType: string;
|
6519
6519
|
annotations?: {
|
6520
6520
|
priority?: number | null | undefined;
|
@@ -6582,16 +6582,16 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
6582
6582
|
text: z.ZodString;
|
6583
6583
|
type: z.ZodLiteral<"text">;
|
6584
6584
|
}, "strip", z.ZodTypeAny, {
|
6585
|
-
text: string;
|
6586
6585
|
type: "text";
|
6586
|
+
text: string;
|
6587
6587
|
annotations?: {
|
6588
6588
|
priority?: number | null | undefined;
|
6589
6589
|
audience?: ("user" | "assistant")[] | null | undefined;
|
6590
6590
|
lastModified?: string | null | undefined;
|
6591
6591
|
} | null | undefined;
|
6592
6592
|
}, {
|
6593
|
-
text: string;
|
6594
6593
|
type: "text";
|
6594
|
+
text: string;
|
6595
6595
|
annotations?: {
|
6596
6596
|
priority?: number | null | undefined;
|
6597
6597
|
audience?: ("user" | "assistant")[] | null | undefined;
|
@@ -6615,8 +6615,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
6615
6615
|
mimeType: z.ZodString;
|
6616
6616
|
type: z.ZodLiteral<"image">;
|
6617
6617
|
}, "strip", z.ZodTypeAny, {
|
6618
|
-
data: string;
|
6619
6618
|
type: "image";
|
6619
|
+
data: string;
|
6620
6620
|
mimeType: string;
|
6621
6621
|
annotations?: {
|
6622
6622
|
priority?: number | null | undefined;
|
@@ -6624,8 +6624,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
6624
6624
|
lastModified?: string | null | undefined;
|
6625
6625
|
} | null | undefined;
|
6626
6626
|
}, {
|
6627
|
-
data: string;
|
6628
6627
|
type: "image";
|
6628
|
+
data: string;
|
6629
6629
|
mimeType: string;
|
6630
6630
|
annotations?: {
|
6631
6631
|
priority?: number | null | undefined;
|
@@ -6650,8 +6650,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
6650
6650
|
mimeType: z.ZodString;
|
6651
6651
|
type: z.ZodLiteral<"audio">;
|
6652
6652
|
}, "strip", z.ZodTypeAny, {
|
6653
|
-
data: string;
|
6654
6653
|
type: "audio";
|
6654
|
+
data: string;
|
6655
6655
|
mimeType: string;
|
6656
6656
|
annotations?: {
|
6657
6657
|
priority?: number | null | undefined;
|
@@ -6659,8 +6659,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
6659
6659
|
lastModified?: string | null | undefined;
|
6660
6660
|
} | null | undefined;
|
6661
6661
|
}, {
|
6662
|
-
data: string;
|
6663
6662
|
type: "audio";
|
6663
|
+
data: string;
|
6664
6664
|
mimeType: string;
|
6665
6665
|
annotations?: {
|
6666
6666
|
priority?: number | null | undefined;
|
@@ -6790,16 +6790,16 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
6790
6790
|
type: z.ZodLiteral<"content">;
|
6791
6791
|
}, "strip", z.ZodTypeAny, {
|
6792
6792
|
content: {
|
6793
|
-
text: string;
|
6794
6793
|
type: "text";
|
6794
|
+
text: string;
|
6795
6795
|
annotations?: {
|
6796
6796
|
priority?: number | null | undefined;
|
6797
6797
|
audience?: ("user" | "assistant")[] | null | undefined;
|
6798
6798
|
lastModified?: string | null | undefined;
|
6799
6799
|
} | null | undefined;
|
6800
6800
|
} | {
|
6801
|
-
data: string;
|
6802
6801
|
type: "image";
|
6802
|
+
data: string;
|
6803
6803
|
mimeType: string;
|
6804
6804
|
annotations?: {
|
6805
6805
|
priority?: number | null | undefined;
|
@@ -6807,8 +6807,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
6807
6807
|
lastModified?: string | null | undefined;
|
6808
6808
|
} | null | undefined;
|
6809
6809
|
} | {
|
6810
|
-
data: string;
|
6811
6810
|
type: "audio";
|
6811
|
+
data: string;
|
6812
6812
|
mimeType: string;
|
6813
6813
|
annotations?: {
|
6814
6814
|
priority?: number | null | undefined;
|
@@ -6848,16 +6848,16 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
6848
6848
|
type: "content";
|
6849
6849
|
}, {
|
6850
6850
|
content: {
|
6851
|
-
text: string;
|
6852
6851
|
type: "text";
|
6852
|
+
text: string;
|
6853
6853
|
annotations?: {
|
6854
6854
|
priority?: number | null | undefined;
|
6855
6855
|
audience?: ("user" | "assistant")[] | null | undefined;
|
6856
6856
|
lastModified?: string | null | undefined;
|
6857
6857
|
} | null | undefined;
|
6858
6858
|
} | {
|
6859
|
-
data: string;
|
6860
6859
|
type: "image";
|
6860
|
+
data: string;
|
6861
6861
|
mimeType: string;
|
6862
6862
|
annotations?: {
|
6863
6863
|
priority?: number | null | undefined;
|
@@ -6865,8 +6865,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
6865
6865
|
lastModified?: string | null | undefined;
|
6866
6866
|
} | null | undefined;
|
6867
6867
|
} | {
|
6868
|
-
data: string;
|
6869
6868
|
type: "audio";
|
6869
|
+
data: string;
|
6870
6870
|
mimeType: string;
|
6871
6871
|
annotations?: {
|
6872
6872
|
priority?: number | null | undefined;
|
@@ -6941,16 +6941,16 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
6941
6941
|
sessionUpdate: "tool_call_update";
|
6942
6942
|
content?: ({
|
6943
6943
|
content: {
|
6944
|
-
text: string;
|
6945
6944
|
type: "text";
|
6945
|
+
text: string;
|
6946
6946
|
annotations?: {
|
6947
6947
|
priority?: number | null | undefined;
|
6948
6948
|
audience?: ("user" | "assistant")[] | null | undefined;
|
6949
6949
|
lastModified?: string | null | undefined;
|
6950
6950
|
} | null | undefined;
|
6951
6951
|
} | {
|
6952
|
-
data: string;
|
6953
6952
|
type: "image";
|
6953
|
+
data: string;
|
6954
6954
|
mimeType: string;
|
6955
6955
|
annotations?: {
|
6956
6956
|
priority?: number | null | undefined;
|
@@ -6958,8 +6958,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
6958
6958
|
lastModified?: string | null | undefined;
|
6959
6959
|
} | null | undefined;
|
6960
6960
|
} | {
|
6961
|
-
data: string;
|
6962
6961
|
type: "audio";
|
6962
|
+
data: string;
|
6963
6963
|
mimeType: string;
|
6964
6964
|
annotations?: {
|
6965
6965
|
priority?: number | null | undefined;
|
@@ -7016,16 +7016,16 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
7016
7016
|
sessionUpdate: "tool_call_update";
|
7017
7017
|
content?: ({
|
7018
7018
|
content: {
|
7019
|
-
text: string;
|
7020
7019
|
type: "text";
|
7020
|
+
text: string;
|
7021
7021
|
annotations?: {
|
7022
7022
|
priority?: number | null | undefined;
|
7023
7023
|
audience?: ("user" | "assistant")[] | null | undefined;
|
7024
7024
|
lastModified?: string | null | undefined;
|
7025
7025
|
} | null | undefined;
|
7026
7026
|
} | {
|
7027
|
-
data: string;
|
7028
7027
|
type: "image";
|
7028
|
+
data: string;
|
7029
7029
|
mimeType: string;
|
7030
7030
|
annotations?: {
|
7031
7031
|
priority?: number | null | undefined;
|
@@ -7033,8 +7033,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
7033
7033
|
lastModified?: string | null | undefined;
|
7034
7034
|
} | null | undefined;
|
7035
7035
|
} | {
|
7036
|
-
data: string;
|
7037
7036
|
type: "audio";
|
7037
|
+
data: string;
|
7038
7038
|
mimeType: string;
|
7039
7039
|
annotations?: {
|
7040
7040
|
priority?: number | null | undefined;
|
@@ -7120,16 +7120,16 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
7120
7120
|
sessionId: string;
|
7121
7121
|
update: {
|
7122
7122
|
content: {
|
7123
|
-
text: string;
|
7124
7123
|
type: "text";
|
7124
|
+
text: string;
|
7125
7125
|
annotations?: {
|
7126
7126
|
priority?: number | null | undefined;
|
7127
7127
|
audience?: ("user" | "assistant")[] | null | undefined;
|
7128
7128
|
lastModified?: string | null | undefined;
|
7129
7129
|
} | null | undefined;
|
7130
7130
|
} | {
|
7131
|
-
data: string;
|
7132
7131
|
type: "image";
|
7132
|
+
data: string;
|
7133
7133
|
mimeType: string;
|
7134
7134
|
annotations?: {
|
7135
7135
|
priority?: number | null | undefined;
|
@@ -7137,8 +7137,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
7137
7137
|
lastModified?: string | null | undefined;
|
7138
7138
|
} | null | undefined;
|
7139
7139
|
} | {
|
7140
|
-
data: string;
|
7141
7140
|
type: "audio";
|
7141
|
+
data: string;
|
7142
7142
|
mimeType: string;
|
7143
7143
|
annotations?: {
|
7144
7144
|
priority?: number | null | undefined;
|
@@ -7178,16 +7178,16 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
7178
7178
|
sessionUpdate: "user_message_chunk";
|
7179
7179
|
} | {
|
7180
7180
|
content: {
|
7181
|
-
text: string;
|
7182
7181
|
type: "text";
|
7182
|
+
text: string;
|
7183
7183
|
annotations?: {
|
7184
7184
|
priority?: number | null | undefined;
|
7185
7185
|
audience?: ("user" | "assistant")[] | null | undefined;
|
7186
7186
|
lastModified?: string | null | undefined;
|
7187
7187
|
} | null | undefined;
|
7188
7188
|
} | {
|
7189
|
-
data: string;
|
7190
7189
|
type: "image";
|
7190
|
+
data: string;
|
7191
7191
|
mimeType: string;
|
7192
7192
|
annotations?: {
|
7193
7193
|
priority?: number | null | undefined;
|
@@ -7195,8 +7195,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
7195
7195
|
lastModified?: string | null | undefined;
|
7196
7196
|
} | null | undefined;
|
7197
7197
|
} | {
|
7198
|
-
data: string;
|
7199
7198
|
type: "audio";
|
7199
|
+
data: string;
|
7200
7200
|
mimeType: string;
|
7201
7201
|
annotations?: {
|
7202
7202
|
priority?: number | null | undefined;
|
@@ -7236,16 +7236,16 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
7236
7236
|
sessionUpdate: "agent_message_chunk";
|
7237
7237
|
} | {
|
7238
7238
|
content: {
|
7239
|
-
text: string;
|
7240
7239
|
type: "text";
|
7240
|
+
text: string;
|
7241
7241
|
annotations?: {
|
7242
7242
|
priority?: number | null | undefined;
|
7243
7243
|
audience?: ("user" | "assistant")[] | null | undefined;
|
7244
7244
|
lastModified?: string | null | undefined;
|
7245
7245
|
} | null | undefined;
|
7246
7246
|
} | {
|
7247
|
-
data: string;
|
7248
7247
|
type: "image";
|
7248
|
+
data: string;
|
7249
7249
|
mimeType: string;
|
7250
7250
|
annotations?: {
|
7251
7251
|
priority?: number | null | undefined;
|
@@ -7253,8 +7253,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
7253
7253
|
lastModified?: string | null | undefined;
|
7254
7254
|
} | null | undefined;
|
7255
7255
|
} | {
|
7256
|
-
data: string;
|
7257
7256
|
type: "audio";
|
7257
|
+
data: string;
|
7258
7258
|
mimeType: string;
|
7259
7259
|
annotations?: {
|
7260
7260
|
priority?: number | null | undefined;
|
@@ -7300,16 +7300,16 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
7300
7300
|
sessionUpdate: "tool_call";
|
7301
7301
|
content?: ({
|
7302
7302
|
content: {
|
7303
|
-
text: string;
|
7304
7303
|
type: "text";
|
7304
|
+
text: string;
|
7305
7305
|
annotations?: {
|
7306
7306
|
priority?: number | null | undefined;
|
7307
7307
|
audience?: ("user" | "assistant")[] | null | undefined;
|
7308
7308
|
lastModified?: string | null | undefined;
|
7309
7309
|
} | null | undefined;
|
7310
7310
|
} | {
|
7311
|
-
data: string;
|
7312
7311
|
type: "image";
|
7312
|
+
data: string;
|
7313
7313
|
mimeType: string;
|
7314
7314
|
annotations?: {
|
7315
7315
|
priority?: number | null | undefined;
|
@@ -7317,8 +7317,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
7317
7317
|
lastModified?: string | null | undefined;
|
7318
7318
|
} | null | undefined;
|
7319
7319
|
} | {
|
7320
|
-
data: string;
|
7321
7320
|
type: "audio";
|
7321
|
+
data: string;
|
7322
7322
|
mimeType: string;
|
7323
7323
|
annotations?: {
|
7324
7324
|
priority?: number | null | undefined;
|
@@ -7372,16 +7372,16 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
7372
7372
|
sessionUpdate: "tool_call_update";
|
7373
7373
|
content?: ({
|
7374
7374
|
content: {
|
7375
|
-
text: string;
|
7376
7375
|
type: "text";
|
7376
|
+
text: string;
|
7377
7377
|
annotations?: {
|
7378
7378
|
priority?: number | null | undefined;
|
7379
7379
|
audience?: ("user" | "assistant")[] | null | undefined;
|
7380
7380
|
lastModified?: string | null | undefined;
|
7381
7381
|
} | null | undefined;
|
7382
7382
|
} | {
|
7383
|
-
data: string;
|
7384
7383
|
type: "image";
|
7384
|
+
data: string;
|
7385
7385
|
mimeType: string;
|
7386
7386
|
annotations?: {
|
7387
7387
|
priority?: number | null | undefined;
|
@@ -7389,8 +7389,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
7389
7389
|
lastModified?: string | null | undefined;
|
7390
7390
|
} | null | undefined;
|
7391
7391
|
} | {
|
7392
|
-
data: string;
|
7393
7392
|
type: "audio";
|
7393
|
+
data: string;
|
7394
7394
|
mimeType: string;
|
7395
7395
|
annotations?: {
|
7396
7396
|
priority?: number | null | undefined;
|
@@ -7454,16 +7454,16 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
7454
7454
|
sessionId: string;
|
7455
7455
|
update: {
|
7456
7456
|
content: {
|
7457
|
-
text: string;
|
7458
7457
|
type: "text";
|
7458
|
+
text: string;
|
7459
7459
|
annotations?: {
|
7460
7460
|
priority?: number | null | undefined;
|
7461
7461
|
audience?: ("user" | "assistant")[] | null | undefined;
|
7462
7462
|
lastModified?: string | null | undefined;
|
7463
7463
|
} | null | undefined;
|
7464
7464
|
} | {
|
7465
|
-
data: string;
|
7466
7465
|
type: "image";
|
7466
|
+
data: string;
|
7467
7467
|
mimeType: string;
|
7468
7468
|
annotations?: {
|
7469
7469
|
priority?: number | null | undefined;
|
@@ -7471,8 +7471,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
7471
7471
|
lastModified?: string | null | undefined;
|
7472
7472
|
} | null | undefined;
|
7473
7473
|
} | {
|
7474
|
-
data: string;
|
7475
7474
|
type: "audio";
|
7475
|
+
data: string;
|
7476
7476
|
mimeType: string;
|
7477
7477
|
annotations?: {
|
7478
7478
|
priority?: number | null | undefined;
|
@@ -7512,16 +7512,16 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
7512
7512
|
sessionUpdate: "user_message_chunk";
|
7513
7513
|
} | {
|
7514
7514
|
content: {
|
7515
|
-
text: string;
|
7516
7515
|
type: "text";
|
7516
|
+
text: string;
|
7517
7517
|
annotations?: {
|
7518
7518
|
priority?: number | null | undefined;
|
7519
7519
|
audience?: ("user" | "assistant")[] | null | undefined;
|
7520
7520
|
lastModified?: string | null | undefined;
|
7521
7521
|
} | null | undefined;
|
7522
7522
|
} | {
|
7523
|
-
data: string;
|
7524
7523
|
type: "image";
|
7524
|
+
data: string;
|
7525
7525
|
mimeType: string;
|
7526
7526
|
annotations?: {
|
7527
7527
|
priority?: number | null | undefined;
|
@@ -7529,8 +7529,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
7529
7529
|
lastModified?: string | null | undefined;
|
7530
7530
|
} | null | undefined;
|
7531
7531
|
} | {
|
7532
|
-
data: string;
|
7533
7532
|
type: "audio";
|
7533
|
+
data: string;
|
7534
7534
|
mimeType: string;
|
7535
7535
|
annotations?: {
|
7536
7536
|
priority?: number | null | undefined;
|
@@ -7570,16 +7570,16 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
7570
7570
|
sessionUpdate: "agent_message_chunk";
|
7571
7571
|
} | {
|
7572
7572
|
content: {
|
7573
|
-
text: string;
|
7574
7573
|
type: "text";
|
7574
|
+
text: string;
|
7575
7575
|
annotations?: {
|
7576
7576
|
priority?: number | null | undefined;
|
7577
7577
|
audience?: ("user" | "assistant")[] | null | undefined;
|
7578
7578
|
lastModified?: string | null | undefined;
|
7579
7579
|
} | null | undefined;
|
7580
7580
|
} | {
|
7581
|
-
data: string;
|
7582
7581
|
type: "image";
|
7582
|
+
data: string;
|
7583
7583
|
mimeType: string;
|
7584
7584
|
annotations?: {
|
7585
7585
|
priority?: number | null | undefined;
|
@@ -7587,8 +7587,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
7587
7587
|
lastModified?: string | null | undefined;
|
7588
7588
|
} | null | undefined;
|
7589
7589
|
} | {
|
7590
|
-
data: string;
|
7591
7590
|
type: "audio";
|
7591
|
+
data: string;
|
7592
7592
|
mimeType: string;
|
7593
7593
|
annotations?: {
|
7594
7594
|
priority?: number | null | undefined;
|
@@ -7634,16 +7634,16 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
7634
7634
|
sessionUpdate: "tool_call";
|
7635
7635
|
content?: ({
|
7636
7636
|
content: {
|
7637
|
-
text: string;
|
7638
7637
|
type: "text";
|
7638
|
+
text: string;
|
7639
7639
|
annotations?: {
|
7640
7640
|
priority?: number | null | undefined;
|
7641
7641
|
audience?: ("user" | "assistant")[] | null | undefined;
|
7642
7642
|
lastModified?: string | null | undefined;
|
7643
7643
|
} | null | undefined;
|
7644
7644
|
} | {
|
7645
|
-
data: string;
|
7646
7645
|
type: "image";
|
7646
|
+
data: string;
|
7647
7647
|
mimeType: string;
|
7648
7648
|
annotations?: {
|
7649
7649
|
priority?: number | null | undefined;
|
@@ -7651,8 +7651,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
7651
7651
|
lastModified?: string | null | undefined;
|
7652
7652
|
} | null | undefined;
|
7653
7653
|
} | {
|
7654
|
-
data: string;
|
7655
7654
|
type: "audio";
|
7655
|
+
data: string;
|
7656
7656
|
mimeType: string;
|
7657
7657
|
annotations?: {
|
7658
7658
|
priority?: number | null | undefined;
|
@@ -7706,16 +7706,16 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
7706
7706
|
sessionUpdate: "tool_call_update";
|
7707
7707
|
content?: ({
|
7708
7708
|
content: {
|
7709
|
-
text: string;
|
7710
7709
|
type: "text";
|
7710
|
+
text: string;
|
7711
7711
|
annotations?: {
|
7712
7712
|
priority?: number | null | undefined;
|
7713
7713
|
audience?: ("user" | "assistant")[] | null | undefined;
|
7714
7714
|
lastModified?: string | null | undefined;
|
7715
7715
|
} | null | undefined;
|
7716
7716
|
} | {
|
7717
|
-
data: string;
|
7718
7717
|
type: "image";
|
7718
|
+
data: string;
|
7719
7719
|
mimeType: string;
|
7720
7720
|
annotations?: {
|
7721
7721
|
priority?: number | null | undefined;
|
@@ -7723,8 +7723,8 @@ export declare const sessionNotificationSchema: z.ZodObject<{
|
|
7723
7723
|
lastModified?: string | null | undefined;
|
7724
7724
|
} | null | undefined;
|
7725
7725
|
} | {
|
7726
|
-
data: string;
|
7727
7726
|
type: "audio";
|
7727
|
+
data: string;
|
7728
7728
|
mimeType: string;
|
7729
7729
|
annotations?: {
|
7730
7730
|
priority?: number | null | undefined;
|
@@ -7846,16 +7846,16 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
7846
7846
|
text: z.ZodString;
|
7847
7847
|
type: z.ZodLiteral<"text">;
|
7848
7848
|
}, "strip", z.ZodTypeAny, {
|
7849
|
-
text: string;
|
7850
7849
|
type: "text";
|
7850
|
+
text: string;
|
7851
7851
|
annotations?: {
|
7852
7852
|
priority?: number | null | undefined;
|
7853
7853
|
audience?: ("user" | "assistant")[] | null | undefined;
|
7854
7854
|
lastModified?: string | null | undefined;
|
7855
7855
|
} | null | undefined;
|
7856
7856
|
}, {
|
7857
|
-
text: string;
|
7858
7857
|
type: "text";
|
7858
|
+
text: string;
|
7859
7859
|
annotations?: {
|
7860
7860
|
priority?: number | null | undefined;
|
7861
7861
|
audience?: ("user" | "assistant")[] | null | undefined;
|
@@ -7879,8 +7879,8 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
7879
7879
|
mimeType: z.ZodString;
|
7880
7880
|
type: z.ZodLiteral<"image">;
|
7881
7881
|
}, "strip", z.ZodTypeAny, {
|
7882
|
-
data: string;
|
7883
7882
|
type: "image";
|
7883
|
+
data: string;
|
7884
7884
|
mimeType: string;
|
7885
7885
|
annotations?: {
|
7886
7886
|
priority?: number | null | undefined;
|
@@ -7888,8 +7888,8 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
7888
7888
|
lastModified?: string | null | undefined;
|
7889
7889
|
} | null | undefined;
|
7890
7890
|
}, {
|
7891
|
-
data: string;
|
7892
7891
|
type: "image";
|
7892
|
+
data: string;
|
7893
7893
|
mimeType: string;
|
7894
7894
|
annotations?: {
|
7895
7895
|
priority?: number | null | undefined;
|
@@ -7914,8 +7914,8 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
7914
7914
|
mimeType: z.ZodString;
|
7915
7915
|
type: z.ZodLiteral<"audio">;
|
7916
7916
|
}, "strip", z.ZodTypeAny, {
|
7917
|
-
data: string;
|
7918
7917
|
type: "audio";
|
7918
|
+
data: string;
|
7919
7919
|
mimeType: string;
|
7920
7920
|
annotations?: {
|
7921
7921
|
priority?: number | null | undefined;
|
@@ -7923,8 +7923,8 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
7923
7923
|
lastModified?: string | null | undefined;
|
7924
7924
|
} | null | undefined;
|
7925
7925
|
}, {
|
7926
|
-
data: string;
|
7927
7926
|
type: "audio";
|
7927
|
+
data: string;
|
7928
7928
|
mimeType: string;
|
7929
7929
|
annotations?: {
|
7930
7930
|
priority?: number | null | undefined;
|
@@ -8054,16 +8054,16 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
8054
8054
|
type: z.ZodLiteral<"content">;
|
8055
8055
|
}, "strip", z.ZodTypeAny, {
|
8056
8056
|
content: {
|
8057
|
-
text: string;
|
8058
8057
|
type: "text";
|
8058
|
+
text: string;
|
8059
8059
|
annotations?: {
|
8060
8060
|
priority?: number | null | undefined;
|
8061
8061
|
audience?: ("user" | "assistant")[] | null | undefined;
|
8062
8062
|
lastModified?: string | null | undefined;
|
8063
8063
|
} | null | undefined;
|
8064
8064
|
} | {
|
8065
|
-
data: string;
|
8066
8065
|
type: "image";
|
8066
|
+
data: string;
|
8067
8067
|
mimeType: string;
|
8068
8068
|
annotations?: {
|
8069
8069
|
priority?: number | null | undefined;
|
@@ -8071,8 +8071,8 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
8071
8071
|
lastModified?: string | null | undefined;
|
8072
8072
|
} | null | undefined;
|
8073
8073
|
} | {
|
8074
|
-
data: string;
|
8075
8074
|
type: "audio";
|
8075
|
+
data: string;
|
8076
8076
|
mimeType: string;
|
8077
8077
|
annotations?: {
|
8078
8078
|
priority?: number | null | undefined;
|
@@ -8112,16 +8112,16 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
8112
8112
|
type: "content";
|
8113
8113
|
}, {
|
8114
8114
|
content: {
|
8115
|
-
text: string;
|
8116
8115
|
type: "text";
|
8116
|
+
text: string;
|
8117
8117
|
annotations?: {
|
8118
8118
|
priority?: number | null | undefined;
|
8119
8119
|
audience?: ("user" | "assistant")[] | null | undefined;
|
8120
8120
|
lastModified?: string | null | undefined;
|
8121
8121
|
} | null | undefined;
|
8122
8122
|
} | {
|
8123
|
-
data: string;
|
8124
8123
|
type: "image";
|
8124
|
+
data: string;
|
8125
8125
|
mimeType: string;
|
8126
8126
|
annotations?: {
|
8127
8127
|
priority?: number | null | undefined;
|
@@ -8129,8 +8129,8 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
8129
8129
|
lastModified?: string | null | undefined;
|
8130
8130
|
} | null | undefined;
|
8131
8131
|
} | {
|
8132
|
-
data: string;
|
8133
8132
|
type: "audio";
|
8133
|
+
data: string;
|
8134
8134
|
mimeType: string;
|
8135
8135
|
annotations?: {
|
8136
8136
|
priority?: number | null | undefined;
|
@@ -8206,16 +8206,16 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
8206
8206
|
toolCallId: string;
|
8207
8207
|
content?: ({
|
8208
8208
|
content: {
|
8209
|
-
text: string;
|
8210
8209
|
type: "text";
|
8210
|
+
text: string;
|
8211
8211
|
annotations?: {
|
8212
8212
|
priority?: number | null | undefined;
|
8213
8213
|
audience?: ("user" | "assistant")[] | null | undefined;
|
8214
8214
|
lastModified?: string | null | undefined;
|
8215
8215
|
} | null | undefined;
|
8216
8216
|
} | {
|
8217
|
-
data: string;
|
8218
8217
|
type: "image";
|
8218
|
+
data: string;
|
8219
8219
|
mimeType: string;
|
8220
8220
|
annotations?: {
|
8221
8221
|
priority?: number | null | undefined;
|
@@ -8223,8 +8223,8 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
8223
8223
|
lastModified?: string | null | undefined;
|
8224
8224
|
} | null | undefined;
|
8225
8225
|
} | {
|
8226
|
-
data: string;
|
8227
8226
|
type: "audio";
|
8227
|
+
data: string;
|
8228
8228
|
mimeType: string;
|
8229
8229
|
annotations?: {
|
8230
8230
|
priority?: number | null | undefined;
|
@@ -8280,16 +8280,16 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
8280
8280
|
toolCallId: string;
|
8281
8281
|
content?: ({
|
8282
8282
|
content: {
|
8283
|
-
text: string;
|
8284
8283
|
type: "text";
|
8284
|
+
text: string;
|
8285
8285
|
annotations?: {
|
8286
8286
|
priority?: number | null | undefined;
|
8287
8287
|
audience?: ("user" | "assistant")[] | null | undefined;
|
8288
8288
|
lastModified?: string | null | undefined;
|
8289
8289
|
} | null | undefined;
|
8290
8290
|
} | {
|
8291
|
-
data: string;
|
8292
8291
|
type: "image";
|
8292
|
+
data: string;
|
8293
8293
|
mimeType: string;
|
8294
8294
|
annotations?: {
|
8295
8295
|
priority?: number | null | undefined;
|
@@ -8297,8 +8297,8 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
8297
8297
|
lastModified?: string | null | undefined;
|
8298
8298
|
} | null | undefined;
|
8299
8299
|
} | {
|
8300
|
-
data: string;
|
8301
8300
|
type: "audio";
|
8301
|
+
data: string;
|
8302
8302
|
mimeType: string;
|
8303
8303
|
annotations?: {
|
8304
8304
|
priority?: number | null | undefined;
|
@@ -8362,16 +8362,16 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
8362
8362
|
toolCallId: string;
|
8363
8363
|
content?: ({
|
8364
8364
|
content: {
|
8365
|
-
text: string;
|
8366
8365
|
type: "text";
|
8366
|
+
text: string;
|
8367
8367
|
annotations?: {
|
8368
8368
|
priority?: number | null | undefined;
|
8369
8369
|
audience?: ("user" | "assistant")[] | null | undefined;
|
8370
8370
|
lastModified?: string | null | undefined;
|
8371
8371
|
} | null | undefined;
|
8372
8372
|
} | {
|
8373
|
-
data: string;
|
8374
8373
|
type: "image";
|
8374
|
+
data: string;
|
8375
8375
|
mimeType: string;
|
8376
8376
|
annotations?: {
|
8377
8377
|
priority?: number | null | undefined;
|
@@ -8379,8 +8379,8 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
8379
8379
|
lastModified?: string | null | undefined;
|
8380
8380
|
} | null | undefined;
|
8381
8381
|
} | {
|
8382
|
-
data: string;
|
8383
8382
|
type: "audio";
|
8383
|
+
data: string;
|
8384
8384
|
mimeType: string;
|
8385
8385
|
annotations?: {
|
8386
8386
|
priority?: number | null | undefined;
|
@@ -8444,16 +8444,16 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
8444
8444
|
toolCallId: string;
|
8445
8445
|
content?: ({
|
8446
8446
|
content: {
|
8447
|
-
text: string;
|
8448
8447
|
type: "text";
|
8448
|
+
text: string;
|
8449
8449
|
annotations?: {
|
8450
8450
|
priority?: number | null | undefined;
|
8451
8451
|
audience?: ("user" | "assistant")[] | null | undefined;
|
8452
8452
|
lastModified?: string | null | undefined;
|
8453
8453
|
} | null | undefined;
|
8454
8454
|
} | {
|
8455
|
-
data: string;
|
8456
8455
|
type: "image";
|
8456
|
+
data: string;
|
8457
8457
|
mimeType: string;
|
8458
8458
|
annotations?: {
|
8459
8459
|
priority?: number | null | undefined;
|
@@ -8461,8 +8461,8 @@ export declare const clientRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
8461
8461
|
lastModified?: string | null | undefined;
|
8462
8462
|
} | null | undefined;
|
8463
8463
|
} | {
|
8464
|
-
data: string;
|
8465
8464
|
type: "audio";
|
8465
|
+
data: string;
|
8466
8466
|
mimeType: string;
|
8467
8467
|
annotations?: {
|
8468
8468
|
priority?: number | null | undefined;
|
@@ -8649,7 +8649,6 @@ export declare const agentRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
8649
8649
|
}>, "many">;
|
8650
8650
|
sessionId: z.ZodString;
|
8651
8651
|
}, "strip", z.ZodTypeAny, {
|
8652
|
-
sessionId: string;
|
8653
8652
|
mcpServers: {
|
8654
8653
|
name: string;
|
8655
8654
|
args: string[];
|
@@ -8659,9 +8658,9 @@ export declare const agentRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
8659
8658
|
value: string;
|
8660
8659
|
}[];
|
8661
8660
|
}[];
|
8661
|
+
sessionId: string;
|
8662
8662
|
cwd: string;
|
8663
8663
|
}, {
|
8664
|
-
sessionId: string;
|
8665
8664
|
mcpServers: {
|
8666
8665
|
name: string;
|
8667
8666
|
args: string[];
|
@@ -8671,6 +8670,7 @@ export declare const agentRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
8671
8670
|
value: string;
|
8672
8671
|
}[];
|
8673
8672
|
}[];
|
8673
|
+
sessionId: string;
|
8674
8674
|
cwd: string;
|
8675
8675
|
}>, z.ZodObject<{
|
8676
8676
|
prompt: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
@@ -8690,16 +8690,16 @@ export declare const agentRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
8690
8690
|
text: z.ZodString;
|
8691
8691
|
type: z.ZodLiteral<"text">;
|
8692
8692
|
}, "strip", z.ZodTypeAny, {
|
8693
|
-
text: string;
|
8694
8693
|
type: "text";
|
8694
|
+
text: string;
|
8695
8695
|
annotations?: {
|
8696
8696
|
priority?: number | null | undefined;
|
8697
8697
|
audience?: ("user" | "assistant")[] | null | undefined;
|
8698
8698
|
lastModified?: string | null | undefined;
|
8699
8699
|
} | null | undefined;
|
8700
8700
|
}, {
|
8701
|
-
text: string;
|
8702
8701
|
type: "text";
|
8702
|
+
text: string;
|
8703
8703
|
annotations?: {
|
8704
8704
|
priority?: number | null | undefined;
|
8705
8705
|
audience?: ("user" | "assistant")[] | null | undefined;
|
@@ -8723,8 +8723,8 @@ export declare const agentRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
8723
8723
|
mimeType: z.ZodString;
|
8724
8724
|
type: z.ZodLiteral<"image">;
|
8725
8725
|
}, "strip", z.ZodTypeAny, {
|
8726
|
-
data: string;
|
8727
8726
|
type: "image";
|
8727
|
+
data: string;
|
8728
8728
|
mimeType: string;
|
8729
8729
|
annotations?: {
|
8730
8730
|
priority?: number | null | undefined;
|
@@ -8732,8 +8732,8 @@ export declare const agentRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
8732
8732
|
lastModified?: string | null | undefined;
|
8733
8733
|
} | null | undefined;
|
8734
8734
|
}, {
|
8735
|
-
data: string;
|
8736
8735
|
type: "image";
|
8736
|
+
data: string;
|
8737
8737
|
mimeType: string;
|
8738
8738
|
annotations?: {
|
8739
8739
|
priority?: number | null | undefined;
|
@@ -8758,8 +8758,8 @@ export declare const agentRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
8758
8758
|
mimeType: z.ZodString;
|
8759
8759
|
type: z.ZodLiteral<"audio">;
|
8760
8760
|
}, "strip", z.ZodTypeAny, {
|
8761
|
-
data: string;
|
8762
8761
|
type: "audio";
|
8762
|
+
data: string;
|
8763
8763
|
mimeType: string;
|
8764
8764
|
annotations?: {
|
8765
8765
|
priority?: number | null | undefined;
|
@@ -8767,8 +8767,8 @@ export declare const agentRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
8767
8767
|
lastModified?: string | null | undefined;
|
8768
8768
|
} | null | undefined;
|
8769
8769
|
}, {
|
8770
|
-
data: string;
|
8771
8770
|
type: "audio";
|
8771
|
+
data: string;
|
8772
8772
|
mimeType: string;
|
8773
8773
|
annotations?: {
|
8774
8774
|
priority?: number | null | undefined;
|
@@ -8899,16 +8899,16 @@ export declare const agentRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
8899
8899
|
}, "strip", z.ZodTypeAny, {
|
8900
8900
|
sessionId: string;
|
8901
8901
|
prompt: ({
|
8902
|
-
text: string;
|
8903
8902
|
type: "text";
|
8903
|
+
text: string;
|
8904
8904
|
annotations?: {
|
8905
8905
|
priority?: number | null | undefined;
|
8906
8906
|
audience?: ("user" | "assistant")[] | null | undefined;
|
8907
8907
|
lastModified?: string | null | undefined;
|
8908
8908
|
} | null | undefined;
|
8909
8909
|
} | {
|
8910
|
-
data: string;
|
8911
8910
|
type: "image";
|
8911
|
+
data: string;
|
8912
8912
|
mimeType: string;
|
8913
8913
|
annotations?: {
|
8914
8914
|
priority?: number | null | undefined;
|
@@ -8916,8 +8916,8 @@ export declare const agentRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
8916
8916
|
lastModified?: string | null | undefined;
|
8917
8917
|
} | null | undefined;
|
8918
8918
|
} | {
|
8919
|
-
data: string;
|
8920
8919
|
type: "audio";
|
8920
|
+
data: string;
|
8921
8921
|
mimeType: string;
|
8922
8922
|
annotations?: {
|
8923
8923
|
priority?: number | null | undefined;
|
@@ -8957,16 +8957,16 @@ export declare const agentRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
8957
8957
|
}, {
|
8958
8958
|
sessionId: string;
|
8959
8959
|
prompt: ({
|
8960
|
-
text: string;
|
8961
8960
|
type: "text";
|
8961
|
+
text: string;
|
8962
8962
|
annotations?: {
|
8963
8963
|
priority?: number | null | undefined;
|
8964
8964
|
audience?: ("user" | "assistant")[] | null | undefined;
|
8965
8965
|
lastModified?: string | null | undefined;
|
8966
8966
|
} | null | undefined;
|
8967
8967
|
} | {
|
8968
|
-
data: string;
|
8969
8968
|
type: "image";
|
8969
|
+
data: string;
|
8970
8970
|
mimeType: string;
|
8971
8971
|
annotations?: {
|
8972
8972
|
priority?: number | null | undefined;
|
@@ -8974,8 +8974,8 @@ export declare const agentRequestSchema: z.ZodUnion<[z.ZodObject<{
|
|
8974
8974
|
lastModified?: string | null | undefined;
|
8975
8975
|
} | null | undefined;
|
8976
8976
|
} | {
|
8977
|
-
data: string;
|
8978
8977
|
type: "audio";
|
8978
|
+
data: string;
|
8979
8979
|
mimeType: string;
|
8980
8980
|
annotations?: {
|
8981
8981
|
priority?: number | null | undefined;
|
@@ -9033,16 +9033,16 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
9033
9033
|
text: z.ZodString;
|
9034
9034
|
type: z.ZodLiteral<"text">;
|
9035
9035
|
}, "strip", z.ZodTypeAny, {
|
9036
|
-
text: string;
|
9037
9036
|
type: "text";
|
9037
|
+
text: string;
|
9038
9038
|
annotations?: {
|
9039
9039
|
priority?: number | null | undefined;
|
9040
9040
|
audience?: ("user" | "assistant")[] | null | undefined;
|
9041
9041
|
lastModified?: string | null | undefined;
|
9042
9042
|
} | null | undefined;
|
9043
9043
|
}, {
|
9044
|
-
text: string;
|
9045
9044
|
type: "text";
|
9045
|
+
text: string;
|
9046
9046
|
annotations?: {
|
9047
9047
|
priority?: number | null | undefined;
|
9048
9048
|
audience?: ("user" | "assistant")[] | null | undefined;
|
@@ -9066,8 +9066,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
9066
9066
|
mimeType: z.ZodString;
|
9067
9067
|
type: z.ZodLiteral<"image">;
|
9068
9068
|
}, "strip", z.ZodTypeAny, {
|
9069
|
-
data: string;
|
9070
9069
|
type: "image";
|
9070
|
+
data: string;
|
9071
9071
|
mimeType: string;
|
9072
9072
|
annotations?: {
|
9073
9073
|
priority?: number | null | undefined;
|
@@ -9075,8 +9075,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
9075
9075
|
lastModified?: string | null | undefined;
|
9076
9076
|
} | null | undefined;
|
9077
9077
|
}, {
|
9078
|
-
data: string;
|
9079
9078
|
type: "image";
|
9079
|
+
data: string;
|
9080
9080
|
mimeType: string;
|
9081
9081
|
annotations?: {
|
9082
9082
|
priority?: number | null | undefined;
|
@@ -9101,8 +9101,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
9101
9101
|
mimeType: z.ZodString;
|
9102
9102
|
type: z.ZodLiteral<"audio">;
|
9103
9103
|
}, "strip", z.ZodTypeAny, {
|
9104
|
-
data: string;
|
9105
9104
|
type: "audio";
|
9105
|
+
data: string;
|
9106
9106
|
mimeType: string;
|
9107
9107
|
annotations?: {
|
9108
9108
|
priority?: number | null | undefined;
|
@@ -9110,8 +9110,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
9110
9110
|
lastModified?: string | null | undefined;
|
9111
9111
|
} | null | undefined;
|
9112
9112
|
}, {
|
9113
|
-
data: string;
|
9114
9113
|
type: "audio";
|
9114
|
+
data: string;
|
9115
9115
|
mimeType: string;
|
9116
9116
|
annotations?: {
|
9117
9117
|
priority?: number | null | undefined;
|
@@ -9241,16 +9241,16 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
9241
9241
|
sessionUpdate: z.ZodLiteral<"user_message_chunk">;
|
9242
9242
|
}, "strip", z.ZodTypeAny, {
|
9243
9243
|
content: {
|
9244
|
-
text: string;
|
9245
9244
|
type: "text";
|
9245
|
+
text: string;
|
9246
9246
|
annotations?: {
|
9247
9247
|
priority?: number | null | undefined;
|
9248
9248
|
audience?: ("user" | "assistant")[] | null | undefined;
|
9249
9249
|
lastModified?: string | null | undefined;
|
9250
9250
|
} | null | undefined;
|
9251
9251
|
} | {
|
9252
|
-
data: string;
|
9253
9252
|
type: "image";
|
9253
|
+
data: string;
|
9254
9254
|
mimeType: string;
|
9255
9255
|
annotations?: {
|
9256
9256
|
priority?: number | null | undefined;
|
@@ -9258,8 +9258,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
9258
9258
|
lastModified?: string | null | undefined;
|
9259
9259
|
} | null | undefined;
|
9260
9260
|
} | {
|
9261
|
-
data: string;
|
9262
9261
|
type: "audio";
|
9262
|
+
data: string;
|
9263
9263
|
mimeType: string;
|
9264
9264
|
annotations?: {
|
9265
9265
|
priority?: number | null | undefined;
|
@@ -9299,16 +9299,16 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
9299
9299
|
sessionUpdate: "user_message_chunk";
|
9300
9300
|
}, {
|
9301
9301
|
content: {
|
9302
|
-
text: string;
|
9303
9302
|
type: "text";
|
9303
|
+
text: string;
|
9304
9304
|
annotations?: {
|
9305
9305
|
priority?: number | null | undefined;
|
9306
9306
|
audience?: ("user" | "assistant")[] | null | undefined;
|
9307
9307
|
lastModified?: string | null | undefined;
|
9308
9308
|
} | null | undefined;
|
9309
9309
|
} | {
|
9310
|
-
data: string;
|
9311
9310
|
type: "image";
|
9311
|
+
data: string;
|
9312
9312
|
mimeType: string;
|
9313
9313
|
annotations?: {
|
9314
9314
|
priority?: number | null | undefined;
|
@@ -9316,8 +9316,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
9316
9316
|
lastModified?: string | null | undefined;
|
9317
9317
|
} | null | undefined;
|
9318
9318
|
} | {
|
9319
|
-
data: string;
|
9320
9319
|
type: "audio";
|
9320
|
+
data: string;
|
9321
9321
|
mimeType: string;
|
9322
9322
|
annotations?: {
|
9323
9323
|
priority?: number | null | undefined;
|
@@ -9373,16 +9373,16 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
9373
9373
|
text: z.ZodString;
|
9374
9374
|
type: z.ZodLiteral<"text">;
|
9375
9375
|
}, "strip", z.ZodTypeAny, {
|
9376
|
-
text: string;
|
9377
9376
|
type: "text";
|
9377
|
+
text: string;
|
9378
9378
|
annotations?: {
|
9379
9379
|
priority?: number | null | undefined;
|
9380
9380
|
audience?: ("user" | "assistant")[] | null | undefined;
|
9381
9381
|
lastModified?: string | null | undefined;
|
9382
9382
|
} | null | undefined;
|
9383
9383
|
}, {
|
9384
|
-
text: string;
|
9385
9384
|
type: "text";
|
9385
|
+
text: string;
|
9386
9386
|
annotations?: {
|
9387
9387
|
priority?: number | null | undefined;
|
9388
9388
|
audience?: ("user" | "assistant")[] | null | undefined;
|
@@ -9406,8 +9406,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
9406
9406
|
mimeType: z.ZodString;
|
9407
9407
|
type: z.ZodLiteral<"image">;
|
9408
9408
|
}, "strip", z.ZodTypeAny, {
|
9409
|
-
data: string;
|
9410
9409
|
type: "image";
|
9410
|
+
data: string;
|
9411
9411
|
mimeType: string;
|
9412
9412
|
annotations?: {
|
9413
9413
|
priority?: number | null | undefined;
|
@@ -9415,8 +9415,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
9415
9415
|
lastModified?: string | null | undefined;
|
9416
9416
|
} | null | undefined;
|
9417
9417
|
}, {
|
9418
|
-
data: string;
|
9419
9418
|
type: "image";
|
9419
|
+
data: string;
|
9420
9420
|
mimeType: string;
|
9421
9421
|
annotations?: {
|
9422
9422
|
priority?: number | null | undefined;
|
@@ -9441,8 +9441,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
9441
9441
|
mimeType: z.ZodString;
|
9442
9442
|
type: z.ZodLiteral<"audio">;
|
9443
9443
|
}, "strip", z.ZodTypeAny, {
|
9444
|
-
data: string;
|
9445
9444
|
type: "audio";
|
9445
|
+
data: string;
|
9446
9446
|
mimeType: string;
|
9447
9447
|
annotations?: {
|
9448
9448
|
priority?: number | null | undefined;
|
@@ -9450,8 +9450,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
9450
9450
|
lastModified?: string | null | undefined;
|
9451
9451
|
} | null | undefined;
|
9452
9452
|
}, {
|
9453
|
-
data: string;
|
9454
9453
|
type: "audio";
|
9454
|
+
data: string;
|
9455
9455
|
mimeType: string;
|
9456
9456
|
annotations?: {
|
9457
9457
|
priority?: number | null | undefined;
|
@@ -9581,16 +9581,16 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
9581
9581
|
sessionUpdate: z.ZodLiteral<"agent_message_chunk">;
|
9582
9582
|
}, "strip", z.ZodTypeAny, {
|
9583
9583
|
content: {
|
9584
|
-
text: string;
|
9585
9584
|
type: "text";
|
9585
|
+
text: string;
|
9586
9586
|
annotations?: {
|
9587
9587
|
priority?: number | null | undefined;
|
9588
9588
|
audience?: ("user" | "assistant")[] | null | undefined;
|
9589
9589
|
lastModified?: string | null | undefined;
|
9590
9590
|
} | null | undefined;
|
9591
9591
|
} | {
|
9592
|
-
data: string;
|
9593
9592
|
type: "image";
|
9593
|
+
data: string;
|
9594
9594
|
mimeType: string;
|
9595
9595
|
annotations?: {
|
9596
9596
|
priority?: number | null | undefined;
|
@@ -9598,8 +9598,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
9598
9598
|
lastModified?: string | null | undefined;
|
9599
9599
|
} | null | undefined;
|
9600
9600
|
} | {
|
9601
|
-
data: string;
|
9602
9601
|
type: "audio";
|
9602
|
+
data: string;
|
9603
9603
|
mimeType: string;
|
9604
9604
|
annotations?: {
|
9605
9605
|
priority?: number | null | undefined;
|
@@ -9639,16 +9639,16 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
9639
9639
|
sessionUpdate: "agent_message_chunk";
|
9640
9640
|
}, {
|
9641
9641
|
content: {
|
9642
|
-
text: string;
|
9643
9642
|
type: "text";
|
9643
|
+
text: string;
|
9644
9644
|
annotations?: {
|
9645
9645
|
priority?: number | null | undefined;
|
9646
9646
|
audience?: ("user" | "assistant")[] | null | undefined;
|
9647
9647
|
lastModified?: string | null | undefined;
|
9648
9648
|
} | null | undefined;
|
9649
9649
|
} | {
|
9650
|
-
data: string;
|
9651
9650
|
type: "image";
|
9651
|
+
data: string;
|
9652
9652
|
mimeType: string;
|
9653
9653
|
annotations?: {
|
9654
9654
|
priority?: number | null | undefined;
|
@@ -9656,8 +9656,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
9656
9656
|
lastModified?: string | null | undefined;
|
9657
9657
|
} | null | undefined;
|
9658
9658
|
} | {
|
9659
|
-
data: string;
|
9660
9659
|
type: "audio";
|
9660
|
+
data: string;
|
9661
9661
|
mimeType: string;
|
9662
9662
|
annotations?: {
|
9663
9663
|
priority?: number | null | undefined;
|
@@ -9713,16 +9713,16 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
9713
9713
|
text: z.ZodString;
|
9714
9714
|
type: z.ZodLiteral<"text">;
|
9715
9715
|
}, "strip", z.ZodTypeAny, {
|
9716
|
-
text: string;
|
9717
9716
|
type: "text";
|
9717
|
+
text: string;
|
9718
9718
|
annotations?: {
|
9719
9719
|
priority?: number | null | undefined;
|
9720
9720
|
audience?: ("user" | "assistant")[] | null | undefined;
|
9721
9721
|
lastModified?: string | null | undefined;
|
9722
9722
|
} | null | undefined;
|
9723
9723
|
}, {
|
9724
|
-
text: string;
|
9725
9724
|
type: "text";
|
9725
|
+
text: string;
|
9726
9726
|
annotations?: {
|
9727
9727
|
priority?: number | null | undefined;
|
9728
9728
|
audience?: ("user" | "assistant")[] | null | undefined;
|
@@ -9746,8 +9746,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
9746
9746
|
mimeType: z.ZodString;
|
9747
9747
|
type: z.ZodLiteral<"image">;
|
9748
9748
|
}, "strip", z.ZodTypeAny, {
|
9749
|
-
data: string;
|
9750
9749
|
type: "image";
|
9750
|
+
data: string;
|
9751
9751
|
mimeType: string;
|
9752
9752
|
annotations?: {
|
9753
9753
|
priority?: number | null | undefined;
|
@@ -9755,8 +9755,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
9755
9755
|
lastModified?: string | null | undefined;
|
9756
9756
|
} | null | undefined;
|
9757
9757
|
}, {
|
9758
|
-
data: string;
|
9759
9758
|
type: "image";
|
9759
|
+
data: string;
|
9760
9760
|
mimeType: string;
|
9761
9761
|
annotations?: {
|
9762
9762
|
priority?: number | null | undefined;
|
@@ -9781,8 +9781,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
9781
9781
|
mimeType: z.ZodString;
|
9782
9782
|
type: z.ZodLiteral<"audio">;
|
9783
9783
|
}, "strip", z.ZodTypeAny, {
|
9784
|
-
data: string;
|
9785
9784
|
type: "audio";
|
9785
|
+
data: string;
|
9786
9786
|
mimeType: string;
|
9787
9787
|
annotations?: {
|
9788
9788
|
priority?: number | null | undefined;
|
@@ -9790,8 +9790,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
9790
9790
|
lastModified?: string | null | undefined;
|
9791
9791
|
} | null | undefined;
|
9792
9792
|
}, {
|
9793
|
-
data: string;
|
9794
9793
|
type: "audio";
|
9794
|
+
data: string;
|
9795
9795
|
mimeType: string;
|
9796
9796
|
annotations?: {
|
9797
9797
|
priority?: number | null | undefined;
|
@@ -9921,16 +9921,16 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
9921
9921
|
sessionUpdate: z.ZodLiteral<"agent_thought_chunk">;
|
9922
9922
|
}, "strip", z.ZodTypeAny, {
|
9923
9923
|
content: {
|
9924
|
-
text: string;
|
9925
9924
|
type: "text";
|
9925
|
+
text: string;
|
9926
9926
|
annotations?: {
|
9927
9927
|
priority?: number | null | undefined;
|
9928
9928
|
audience?: ("user" | "assistant")[] | null | undefined;
|
9929
9929
|
lastModified?: string | null | undefined;
|
9930
9930
|
} | null | undefined;
|
9931
9931
|
} | {
|
9932
|
-
data: string;
|
9933
9932
|
type: "image";
|
9933
|
+
data: string;
|
9934
9934
|
mimeType: string;
|
9935
9935
|
annotations?: {
|
9936
9936
|
priority?: number | null | undefined;
|
@@ -9938,8 +9938,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
9938
9938
|
lastModified?: string | null | undefined;
|
9939
9939
|
} | null | undefined;
|
9940
9940
|
} | {
|
9941
|
-
data: string;
|
9942
9941
|
type: "audio";
|
9942
|
+
data: string;
|
9943
9943
|
mimeType: string;
|
9944
9944
|
annotations?: {
|
9945
9945
|
priority?: number | null | undefined;
|
@@ -9979,16 +9979,16 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
9979
9979
|
sessionUpdate: "agent_thought_chunk";
|
9980
9980
|
}, {
|
9981
9981
|
content: {
|
9982
|
-
text: string;
|
9983
9982
|
type: "text";
|
9983
|
+
text: string;
|
9984
9984
|
annotations?: {
|
9985
9985
|
priority?: number | null | undefined;
|
9986
9986
|
audience?: ("user" | "assistant")[] | null | undefined;
|
9987
9987
|
lastModified?: string | null | undefined;
|
9988
9988
|
} | null | undefined;
|
9989
9989
|
} | {
|
9990
|
-
data: string;
|
9991
9990
|
type: "image";
|
9991
|
+
data: string;
|
9992
9992
|
mimeType: string;
|
9993
9993
|
annotations?: {
|
9994
9994
|
priority?: number | null | undefined;
|
@@ -9996,8 +9996,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
9996
9996
|
lastModified?: string | null | undefined;
|
9997
9997
|
} | null | undefined;
|
9998
9998
|
} | {
|
9999
|
-
data: string;
|
10000
9999
|
type: "audio";
|
10000
|
+
data: string;
|
10001
10001
|
mimeType: string;
|
10002
10002
|
annotations?: {
|
10003
10003
|
priority?: number | null | undefined;
|
@@ -10054,16 +10054,16 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
10054
10054
|
text: z.ZodString;
|
10055
10055
|
type: z.ZodLiteral<"text">;
|
10056
10056
|
}, "strip", z.ZodTypeAny, {
|
10057
|
-
text: string;
|
10058
10057
|
type: "text";
|
10058
|
+
text: string;
|
10059
10059
|
annotations?: {
|
10060
10060
|
priority?: number | null | undefined;
|
10061
10061
|
audience?: ("user" | "assistant")[] | null | undefined;
|
10062
10062
|
lastModified?: string | null | undefined;
|
10063
10063
|
} | null | undefined;
|
10064
10064
|
}, {
|
10065
|
-
text: string;
|
10066
10065
|
type: "text";
|
10066
|
+
text: string;
|
10067
10067
|
annotations?: {
|
10068
10068
|
priority?: number | null | undefined;
|
10069
10069
|
audience?: ("user" | "assistant")[] | null | undefined;
|
@@ -10087,8 +10087,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
10087
10087
|
mimeType: z.ZodString;
|
10088
10088
|
type: z.ZodLiteral<"image">;
|
10089
10089
|
}, "strip", z.ZodTypeAny, {
|
10090
|
-
data: string;
|
10091
10090
|
type: "image";
|
10091
|
+
data: string;
|
10092
10092
|
mimeType: string;
|
10093
10093
|
annotations?: {
|
10094
10094
|
priority?: number | null | undefined;
|
@@ -10096,8 +10096,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
10096
10096
|
lastModified?: string | null | undefined;
|
10097
10097
|
} | null | undefined;
|
10098
10098
|
}, {
|
10099
|
-
data: string;
|
10100
10099
|
type: "image";
|
10100
|
+
data: string;
|
10101
10101
|
mimeType: string;
|
10102
10102
|
annotations?: {
|
10103
10103
|
priority?: number | null | undefined;
|
@@ -10122,8 +10122,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
10122
10122
|
mimeType: z.ZodString;
|
10123
10123
|
type: z.ZodLiteral<"audio">;
|
10124
10124
|
}, "strip", z.ZodTypeAny, {
|
10125
|
-
data: string;
|
10126
10125
|
type: "audio";
|
10126
|
+
data: string;
|
10127
10127
|
mimeType: string;
|
10128
10128
|
annotations?: {
|
10129
10129
|
priority?: number | null | undefined;
|
@@ -10131,8 +10131,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
10131
10131
|
lastModified?: string | null | undefined;
|
10132
10132
|
} | null | undefined;
|
10133
10133
|
}, {
|
10134
|
-
data: string;
|
10135
10134
|
type: "audio";
|
10135
|
+
data: string;
|
10136
10136
|
mimeType: string;
|
10137
10137
|
annotations?: {
|
10138
10138
|
priority?: number | null | undefined;
|
@@ -10262,16 +10262,16 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
10262
10262
|
type: z.ZodLiteral<"content">;
|
10263
10263
|
}, "strip", z.ZodTypeAny, {
|
10264
10264
|
content: {
|
10265
|
-
text: string;
|
10266
10265
|
type: "text";
|
10266
|
+
text: string;
|
10267
10267
|
annotations?: {
|
10268
10268
|
priority?: number | null | undefined;
|
10269
10269
|
audience?: ("user" | "assistant")[] | null | undefined;
|
10270
10270
|
lastModified?: string | null | undefined;
|
10271
10271
|
} | null | undefined;
|
10272
10272
|
} | {
|
10273
|
-
data: string;
|
10274
10273
|
type: "image";
|
10274
|
+
data: string;
|
10275
10275
|
mimeType: string;
|
10276
10276
|
annotations?: {
|
10277
10277
|
priority?: number | null | undefined;
|
@@ -10279,8 +10279,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
10279
10279
|
lastModified?: string | null | undefined;
|
10280
10280
|
} | null | undefined;
|
10281
10281
|
} | {
|
10282
|
-
data: string;
|
10283
10282
|
type: "audio";
|
10283
|
+
data: string;
|
10284
10284
|
mimeType: string;
|
10285
10285
|
annotations?: {
|
10286
10286
|
priority?: number | null | undefined;
|
@@ -10320,16 +10320,16 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
10320
10320
|
type: "content";
|
10321
10321
|
}, {
|
10322
10322
|
content: {
|
10323
|
-
text: string;
|
10324
10323
|
type: "text";
|
10324
|
+
text: string;
|
10325
10325
|
annotations?: {
|
10326
10326
|
priority?: number | null | undefined;
|
10327
10327
|
audience?: ("user" | "assistant")[] | null | undefined;
|
10328
10328
|
lastModified?: string | null | undefined;
|
10329
10329
|
} | null | undefined;
|
10330
10330
|
} | {
|
10331
|
-
data: string;
|
10332
10331
|
type: "image";
|
10332
|
+
data: string;
|
10333
10333
|
mimeType: string;
|
10334
10334
|
annotations?: {
|
10335
10335
|
priority?: number | null | undefined;
|
@@ -10337,8 +10337,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
10337
10337
|
lastModified?: string | null | undefined;
|
10338
10338
|
} | null | undefined;
|
10339
10339
|
} | {
|
10340
|
-
data: string;
|
10341
10340
|
type: "audio";
|
10341
|
+
data: string;
|
10342
10342
|
mimeType: string;
|
10343
10343
|
annotations?: {
|
10344
10344
|
priority?: number | null | undefined;
|
@@ -10416,16 +10416,16 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
10416
10416
|
sessionUpdate: "tool_call";
|
10417
10417
|
content?: ({
|
10418
10418
|
content: {
|
10419
|
-
text: string;
|
10420
10419
|
type: "text";
|
10420
|
+
text: string;
|
10421
10421
|
annotations?: {
|
10422
10422
|
priority?: number | null | undefined;
|
10423
10423
|
audience?: ("user" | "assistant")[] | null | undefined;
|
10424
10424
|
lastModified?: string | null | undefined;
|
10425
10425
|
} | null | undefined;
|
10426
10426
|
} | {
|
10427
|
-
data: string;
|
10428
10427
|
type: "image";
|
10428
|
+
data: string;
|
10429
10429
|
mimeType: string;
|
10430
10430
|
annotations?: {
|
10431
10431
|
priority?: number | null | undefined;
|
@@ -10433,8 +10433,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
10433
10433
|
lastModified?: string | null | undefined;
|
10434
10434
|
} | null | undefined;
|
10435
10435
|
} | {
|
10436
|
-
data: string;
|
10437
10436
|
type: "audio";
|
10437
|
+
data: string;
|
10438
10438
|
mimeType: string;
|
10439
10439
|
annotations?: {
|
10440
10440
|
priority?: number | null | undefined;
|
@@ -10491,16 +10491,16 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
10491
10491
|
sessionUpdate: "tool_call";
|
10492
10492
|
content?: ({
|
10493
10493
|
content: {
|
10494
|
-
text: string;
|
10495
10494
|
type: "text";
|
10495
|
+
text: string;
|
10496
10496
|
annotations?: {
|
10497
10497
|
priority?: number | null | undefined;
|
10498
10498
|
audience?: ("user" | "assistant")[] | null | undefined;
|
10499
10499
|
lastModified?: string | null | undefined;
|
10500
10500
|
} | null | undefined;
|
10501
10501
|
} | {
|
10502
|
-
data: string;
|
10503
10502
|
type: "image";
|
10503
|
+
data: string;
|
10504
10504
|
mimeType: string;
|
10505
10505
|
annotations?: {
|
10506
10506
|
priority?: number | null | undefined;
|
@@ -10508,8 +10508,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
10508
10508
|
lastModified?: string | null | undefined;
|
10509
10509
|
} | null | undefined;
|
10510
10510
|
} | {
|
10511
|
-
data: string;
|
10512
10511
|
type: "audio";
|
10512
|
+
data: string;
|
10513
10513
|
mimeType: string;
|
10514
10514
|
annotations?: {
|
10515
10515
|
priority?: number | null | undefined;
|
@@ -10577,16 +10577,16 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
10577
10577
|
text: z.ZodString;
|
10578
10578
|
type: z.ZodLiteral<"text">;
|
10579
10579
|
}, "strip", z.ZodTypeAny, {
|
10580
|
-
text: string;
|
10581
10580
|
type: "text";
|
10581
|
+
text: string;
|
10582
10582
|
annotations?: {
|
10583
10583
|
priority?: number | null | undefined;
|
10584
10584
|
audience?: ("user" | "assistant")[] | null | undefined;
|
10585
10585
|
lastModified?: string | null | undefined;
|
10586
10586
|
} | null | undefined;
|
10587
10587
|
}, {
|
10588
|
-
text: string;
|
10589
10588
|
type: "text";
|
10589
|
+
text: string;
|
10590
10590
|
annotations?: {
|
10591
10591
|
priority?: number | null | undefined;
|
10592
10592
|
audience?: ("user" | "assistant")[] | null | undefined;
|
@@ -10610,8 +10610,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
10610
10610
|
mimeType: z.ZodString;
|
10611
10611
|
type: z.ZodLiteral<"image">;
|
10612
10612
|
}, "strip", z.ZodTypeAny, {
|
10613
|
-
data: string;
|
10614
10613
|
type: "image";
|
10614
|
+
data: string;
|
10615
10615
|
mimeType: string;
|
10616
10616
|
annotations?: {
|
10617
10617
|
priority?: number | null | undefined;
|
@@ -10619,8 +10619,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
10619
10619
|
lastModified?: string | null | undefined;
|
10620
10620
|
} | null | undefined;
|
10621
10621
|
}, {
|
10622
|
-
data: string;
|
10623
10622
|
type: "image";
|
10623
|
+
data: string;
|
10624
10624
|
mimeType: string;
|
10625
10625
|
annotations?: {
|
10626
10626
|
priority?: number | null | undefined;
|
@@ -10645,8 +10645,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
10645
10645
|
mimeType: z.ZodString;
|
10646
10646
|
type: z.ZodLiteral<"audio">;
|
10647
10647
|
}, "strip", z.ZodTypeAny, {
|
10648
|
-
data: string;
|
10649
10648
|
type: "audio";
|
10649
|
+
data: string;
|
10650
10650
|
mimeType: string;
|
10651
10651
|
annotations?: {
|
10652
10652
|
priority?: number | null | undefined;
|
@@ -10654,8 +10654,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
10654
10654
|
lastModified?: string | null | undefined;
|
10655
10655
|
} | null | undefined;
|
10656
10656
|
}, {
|
10657
|
-
data: string;
|
10658
10657
|
type: "audio";
|
10658
|
+
data: string;
|
10659
10659
|
mimeType: string;
|
10660
10660
|
annotations?: {
|
10661
10661
|
priority?: number | null | undefined;
|
@@ -10785,16 +10785,16 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
10785
10785
|
type: z.ZodLiteral<"content">;
|
10786
10786
|
}, "strip", z.ZodTypeAny, {
|
10787
10787
|
content: {
|
10788
|
-
text: string;
|
10789
10788
|
type: "text";
|
10789
|
+
text: string;
|
10790
10790
|
annotations?: {
|
10791
10791
|
priority?: number | null | undefined;
|
10792
10792
|
audience?: ("user" | "assistant")[] | null | undefined;
|
10793
10793
|
lastModified?: string | null | undefined;
|
10794
10794
|
} | null | undefined;
|
10795
10795
|
} | {
|
10796
|
-
data: string;
|
10797
10796
|
type: "image";
|
10797
|
+
data: string;
|
10798
10798
|
mimeType: string;
|
10799
10799
|
annotations?: {
|
10800
10800
|
priority?: number | null | undefined;
|
@@ -10802,8 +10802,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
10802
10802
|
lastModified?: string | null | undefined;
|
10803
10803
|
} | null | undefined;
|
10804
10804
|
} | {
|
10805
|
-
data: string;
|
10806
10805
|
type: "audio";
|
10806
|
+
data: string;
|
10807
10807
|
mimeType: string;
|
10808
10808
|
annotations?: {
|
10809
10809
|
priority?: number | null | undefined;
|
@@ -10843,16 +10843,16 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
10843
10843
|
type: "content";
|
10844
10844
|
}, {
|
10845
10845
|
content: {
|
10846
|
-
text: string;
|
10847
10846
|
type: "text";
|
10847
|
+
text: string;
|
10848
10848
|
annotations?: {
|
10849
10849
|
priority?: number | null | undefined;
|
10850
10850
|
audience?: ("user" | "assistant")[] | null | undefined;
|
10851
10851
|
lastModified?: string | null | undefined;
|
10852
10852
|
} | null | undefined;
|
10853
10853
|
} | {
|
10854
|
-
data: string;
|
10855
10854
|
type: "image";
|
10855
|
+
data: string;
|
10856
10856
|
mimeType: string;
|
10857
10857
|
annotations?: {
|
10858
10858
|
priority?: number | null | undefined;
|
@@ -10860,8 +10860,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
10860
10860
|
lastModified?: string | null | undefined;
|
10861
10861
|
} | null | undefined;
|
10862
10862
|
} | {
|
10863
|
-
data: string;
|
10864
10863
|
type: "audio";
|
10864
|
+
data: string;
|
10865
10865
|
mimeType: string;
|
10866
10866
|
annotations?: {
|
10867
10867
|
priority?: number | null | undefined;
|
@@ -10936,16 +10936,16 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
10936
10936
|
sessionUpdate: "tool_call_update";
|
10937
10937
|
content?: ({
|
10938
10938
|
content: {
|
10939
|
-
text: string;
|
10940
10939
|
type: "text";
|
10940
|
+
text: string;
|
10941
10941
|
annotations?: {
|
10942
10942
|
priority?: number | null | undefined;
|
10943
10943
|
audience?: ("user" | "assistant")[] | null | undefined;
|
10944
10944
|
lastModified?: string | null | undefined;
|
10945
10945
|
} | null | undefined;
|
10946
10946
|
} | {
|
10947
|
-
data: string;
|
10948
10947
|
type: "image";
|
10948
|
+
data: string;
|
10949
10949
|
mimeType: string;
|
10950
10950
|
annotations?: {
|
10951
10951
|
priority?: number | null | undefined;
|
@@ -10953,8 +10953,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
10953
10953
|
lastModified?: string | null | undefined;
|
10954
10954
|
} | null | undefined;
|
10955
10955
|
} | {
|
10956
|
-
data: string;
|
10957
10956
|
type: "audio";
|
10957
|
+
data: string;
|
10958
10958
|
mimeType: string;
|
10959
10959
|
annotations?: {
|
10960
10960
|
priority?: number | null | undefined;
|
@@ -11011,16 +11011,16 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
11011
11011
|
sessionUpdate: "tool_call_update";
|
11012
11012
|
content?: ({
|
11013
11013
|
content: {
|
11014
|
-
text: string;
|
11015
11014
|
type: "text";
|
11015
|
+
text: string;
|
11016
11016
|
annotations?: {
|
11017
11017
|
priority?: number | null | undefined;
|
11018
11018
|
audience?: ("user" | "assistant")[] | null | undefined;
|
11019
11019
|
lastModified?: string | null | undefined;
|
11020
11020
|
} | null | undefined;
|
11021
11021
|
} | {
|
11022
|
-
data: string;
|
11023
11022
|
type: "image";
|
11023
|
+
data: string;
|
11024
11024
|
mimeType: string;
|
11025
11025
|
annotations?: {
|
11026
11026
|
priority?: number | null | undefined;
|
@@ -11028,8 +11028,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
11028
11028
|
lastModified?: string | null | undefined;
|
11029
11029
|
} | null | undefined;
|
11030
11030
|
} | {
|
11031
|
-
data: string;
|
11032
11031
|
type: "audio";
|
11032
|
+
data: string;
|
11033
11033
|
mimeType: string;
|
11034
11034
|
annotations?: {
|
11035
11035
|
priority?: number | null | undefined;
|
@@ -11115,16 +11115,16 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
11115
11115
|
sessionId: string;
|
11116
11116
|
update: {
|
11117
11117
|
content: {
|
11118
|
-
text: string;
|
11119
11118
|
type: "text";
|
11119
|
+
text: string;
|
11120
11120
|
annotations?: {
|
11121
11121
|
priority?: number | null | undefined;
|
11122
11122
|
audience?: ("user" | "assistant")[] | null | undefined;
|
11123
11123
|
lastModified?: string | null | undefined;
|
11124
11124
|
} | null | undefined;
|
11125
11125
|
} | {
|
11126
|
-
data: string;
|
11127
11126
|
type: "image";
|
11127
|
+
data: string;
|
11128
11128
|
mimeType: string;
|
11129
11129
|
annotations?: {
|
11130
11130
|
priority?: number | null | undefined;
|
@@ -11132,8 +11132,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
11132
11132
|
lastModified?: string | null | undefined;
|
11133
11133
|
} | null | undefined;
|
11134
11134
|
} | {
|
11135
|
-
data: string;
|
11136
11135
|
type: "audio";
|
11136
|
+
data: string;
|
11137
11137
|
mimeType: string;
|
11138
11138
|
annotations?: {
|
11139
11139
|
priority?: number | null | undefined;
|
@@ -11173,16 +11173,16 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
11173
11173
|
sessionUpdate: "user_message_chunk";
|
11174
11174
|
} | {
|
11175
11175
|
content: {
|
11176
|
-
text: string;
|
11177
11176
|
type: "text";
|
11177
|
+
text: string;
|
11178
11178
|
annotations?: {
|
11179
11179
|
priority?: number | null | undefined;
|
11180
11180
|
audience?: ("user" | "assistant")[] | null | undefined;
|
11181
11181
|
lastModified?: string | null | undefined;
|
11182
11182
|
} | null | undefined;
|
11183
11183
|
} | {
|
11184
|
-
data: string;
|
11185
11184
|
type: "image";
|
11185
|
+
data: string;
|
11186
11186
|
mimeType: string;
|
11187
11187
|
annotations?: {
|
11188
11188
|
priority?: number | null | undefined;
|
@@ -11190,8 +11190,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
11190
11190
|
lastModified?: string | null | undefined;
|
11191
11191
|
} | null | undefined;
|
11192
11192
|
} | {
|
11193
|
-
data: string;
|
11194
11193
|
type: "audio";
|
11194
|
+
data: string;
|
11195
11195
|
mimeType: string;
|
11196
11196
|
annotations?: {
|
11197
11197
|
priority?: number | null | undefined;
|
@@ -11231,16 +11231,16 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
11231
11231
|
sessionUpdate: "agent_message_chunk";
|
11232
11232
|
} | {
|
11233
11233
|
content: {
|
11234
|
-
text: string;
|
11235
11234
|
type: "text";
|
11235
|
+
text: string;
|
11236
11236
|
annotations?: {
|
11237
11237
|
priority?: number | null | undefined;
|
11238
11238
|
audience?: ("user" | "assistant")[] | null | undefined;
|
11239
11239
|
lastModified?: string | null | undefined;
|
11240
11240
|
} | null | undefined;
|
11241
11241
|
} | {
|
11242
|
-
data: string;
|
11243
11242
|
type: "image";
|
11243
|
+
data: string;
|
11244
11244
|
mimeType: string;
|
11245
11245
|
annotations?: {
|
11246
11246
|
priority?: number | null | undefined;
|
@@ -11248,8 +11248,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
11248
11248
|
lastModified?: string | null | undefined;
|
11249
11249
|
} | null | undefined;
|
11250
11250
|
} | {
|
11251
|
-
data: string;
|
11252
11251
|
type: "audio";
|
11252
|
+
data: string;
|
11253
11253
|
mimeType: string;
|
11254
11254
|
annotations?: {
|
11255
11255
|
priority?: number | null | undefined;
|
@@ -11295,16 +11295,16 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
11295
11295
|
sessionUpdate: "tool_call";
|
11296
11296
|
content?: ({
|
11297
11297
|
content: {
|
11298
|
-
text: string;
|
11299
11298
|
type: "text";
|
11299
|
+
text: string;
|
11300
11300
|
annotations?: {
|
11301
11301
|
priority?: number | null | undefined;
|
11302
11302
|
audience?: ("user" | "assistant")[] | null | undefined;
|
11303
11303
|
lastModified?: string | null | undefined;
|
11304
11304
|
} | null | undefined;
|
11305
11305
|
} | {
|
11306
|
-
data: string;
|
11307
11306
|
type: "image";
|
11307
|
+
data: string;
|
11308
11308
|
mimeType: string;
|
11309
11309
|
annotations?: {
|
11310
11310
|
priority?: number | null | undefined;
|
@@ -11312,8 +11312,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
11312
11312
|
lastModified?: string | null | undefined;
|
11313
11313
|
} | null | undefined;
|
11314
11314
|
} | {
|
11315
|
-
data: string;
|
11316
11315
|
type: "audio";
|
11316
|
+
data: string;
|
11317
11317
|
mimeType: string;
|
11318
11318
|
annotations?: {
|
11319
11319
|
priority?: number | null | undefined;
|
@@ -11367,16 +11367,16 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
11367
11367
|
sessionUpdate: "tool_call_update";
|
11368
11368
|
content?: ({
|
11369
11369
|
content: {
|
11370
|
-
text: string;
|
11371
11370
|
type: "text";
|
11371
|
+
text: string;
|
11372
11372
|
annotations?: {
|
11373
11373
|
priority?: number | null | undefined;
|
11374
11374
|
audience?: ("user" | "assistant")[] | null | undefined;
|
11375
11375
|
lastModified?: string | null | undefined;
|
11376
11376
|
} | null | undefined;
|
11377
11377
|
} | {
|
11378
|
-
data: string;
|
11379
11378
|
type: "image";
|
11379
|
+
data: string;
|
11380
11380
|
mimeType: string;
|
11381
11381
|
annotations?: {
|
11382
11382
|
priority?: number | null | undefined;
|
@@ -11384,8 +11384,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
11384
11384
|
lastModified?: string | null | undefined;
|
11385
11385
|
} | null | undefined;
|
11386
11386
|
} | {
|
11387
|
-
data: string;
|
11388
11387
|
type: "audio";
|
11388
|
+
data: string;
|
11389
11389
|
mimeType: string;
|
11390
11390
|
annotations?: {
|
11391
11391
|
priority?: number | null | undefined;
|
@@ -11449,16 +11449,16 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
11449
11449
|
sessionId: string;
|
11450
11450
|
update: {
|
11451
11451
|
content: {
|
11452
|
-
text: string;
|
11453
11452
|
type: "text";
|
11453
|
+
text: string;
|
11454
11454
|
annotations?: {
|
11455
11455
|
priority?: number | null | undefined;
|
11456
11456
|
audience?: ("user" | "assistant")[] | null | undefined;
|
11457
11457
|
lastModified?: string | null | undefined;
|
11458
11458
|
} | null | undefined;
|
11459
11459
|
} | {
|
11460
|
-
data: string;
|
11461
11460
|
type: "image";
|
11461
|
+
data: string;
|
11462
11462
|
mimeType: string;
|
11463
11463
|
annotations?: {
|
11464
11464
|
priority?: number | null | undefined;
|
@@ -11466,8 +11466,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
11466
11466
|
lastModified?: string | null | undefined;
|
11467
11467
|
} | null | undefined;
|
11468
11468
|
} | {
|
11469
|
-
data: string;
|
11470
11469
|
type: "audio";
|
11470
|
+
data: string;
|
11471
11471
|
mimeType: string;
|
11472
11472
|
annotations?: {
|
11473
11473
|
priority?: number | null | undefined;
|
@@ -11507,16 +11507,16 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
11507
11507
|
sessionUpdate: "user_message_chunk";
|
11508
11508
|
} | {
|
11509
11509
|
content: {
|
11510
|
-
text: string;
|
11511
11510
|
type: "text";
|
11511
|
+
text: string;
|
11512
11512
|
annotations?: {
|
11513
11513
|
priority?: number | null | undefined;
|
11514
11514
|
audience?: ("user" | "assistant")[] | null | undefined;
|
11515
11515
|
lastModified?: string | null | undefined;
|
11516
11516
|
} | null | undefined;
|
11517
11517
|
} | {
|
11518
|
-
data: string;
|
11519
11518
|
type: "image";
|
11519
|
+
data: string;
|
11520
11520
|
mimeType: string;
|
11521
11521
|
annotations?: {
|
11522
11522
|
priority?: number | null | undefined;
|
@@ -11524,8 +11524,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
11524
11524
|
lastModified?: string | null | undefined;
|
11525
11525
|
} | null | undefined;
|
11526
11526
|
} | {
|
11527
|
-
data: string;
|
11528
11527
|
type: "audio";
|
11528
|
+
data: string;
|
11529
11529
|
mimeType: string;
|
11530
11530
|
annotations?: {
|
11531
11531
|
priority?: number | null | undefined;
|
@@ -11565,16 +11565,16 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
11565
11565
|
sessionUpdate: "agent_message_chunk";
|
11566
11566
|
} | {
|
11567
11567
|
content: {
|
11568
|
-
text: string;
|
11569
11568
|
type: "text";
|
11569
|
+
text: string;
|
11570
11570
|
annotations?: {
|
11571
11571
|
priority?: number | null | undefined;
|
11572
11572
|
audience?: ("user" | "assistant")[] | null | undefined;
|
11573
11573
|
lastModified?: string | null | undefined;
|
11574
11574
|
} | null | undefined;
|
11575
11575
|
} | {
|
11576
|
-
data: string;
|
11577
11576
|
type: "image";
|
11577
|
+
data: string;
|
11578
11578
|
mimeType: string;
|
11579
11579
|
annotations?: {
|
11580
11580
|
priority?: number | null | undefined;
|
@@ -11582,8 +11582,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
11582
11582
|
lastModified?: string | null | undefined;
|
11583
11583
|
} | null | undefined;
|
11584
11584
|
} | {
|
11585
|
-
data: string;
|
11586
11585
|
type: "audio";
|
11586
|
+
data: string;
|
11587
11587
|
mimeType: string;
|
11588
11588
|
annotations?: {
|
11589
11589
|
priority?: number | null | undefined;
|
@@ -11629,16 +11629,16 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
11629
11629
|
sessionUpdate: "tool_call";
|
11630
11630
|
content?: ({
|
11631
11631
|
content: {
|
11632
|
-
text: string;
|
11633
11632
|
type: "text";
|
11633
|
+
text: string;
|
11634
11634
|
annotations?: {
|
11635
11635
|
priority?: number | null | undefined;
|
11636
11636
|
audience?: ("user" | "assistant")[] | null | undefined;
|
11637
11637
|
lastModified?: string | null | undefined;
|
11638
11638
|
} | null | undefined;
|
11639
11639
|
} | {
|
11640
|
-
data: string;
|
11641
11640
|
type: "image";
|
11641
|
+
data: string;
|
11642
11642
|
mimeType: string;
|
11643
11643
|
annotations?: {
|
11644
11644
|
priority?: number | null | undefined;
|
@@ -11646,8 +11646,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
11646
11646
|
lastModified?: string | null | undefined;
|
11647
11647
|
} | null | undefined;
|
11648
11648
|
} | {
|
11649
|
-
data: string;
|
11650
11649
|
type: "audio";
|
11650
|
+
data: string;
|
11651
11651
|
mimeType: string;
|
11652
11652
|
annotations?: {
|
11653
11653
|
priority?: number | null | undefined;
|
@@ -11701,16 +11701,16 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
11701
11701
|
sessionUpdate: "tool_call_update";
|
11702
11702
|
content?: ({
|
11703
11703
|
content: {
|
11704
|
-
text: string;
|
11705
11704
|
type: "text";
|
11705
|
+
text: string;
|
11706
11706
|
annotations?: {
|
11707
11707
|
priority?: number | null | undefined;
|
11708
11708
|
audience?: ("user" | "assistant")[] | null | undefined;
|
11709
11709
|
lastModified?: string | null | undefined;
|
11710
11710
|
} | null | undefined;
|
11711
11711
|
} | {
|
11712
|
-
data: string;
|
11713
11712
|
type: "image";
|
11713
|
+
data: string;
|
11714
11714
|
mimeType: string;
|
11715
11715
|
annotations?: {
|
11716
11716
|
priority?: number | null | undefined;
|
@@ -11718,8 +11718,8 @@ export declare const agentNotificationSchema: z.ZodObject<{
|
|
11718
11718
|
lastModified?: string | null | undefined;
|
11719
11719
|
} | null | undefined;
|
11720
11720
|
} | {
|
11721
|
-
data: string;
|
11722
11721
|
type: "audio";
|
11722
|
+
data: string;
|
11723
11723
|
mimeType: string;
|
11724
11724
|
annotations?: {
|
11725
11725
|
priority?: number | null | undefined;
|