likec4 1.37.0 → 1.38.0
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 +25 -1
- package/__app__/src/main.js +161 -197
- package/__app__/src/style.css +1 -1
- package/dist/cli/index.mjs +709 -690
- package/dist/index.d.mts +26 -10
- package/dist/index.mjs +2 -2
- package/dist/shared/{likec4.cqC6tNHO.d.mts → likec4.CRYZWScz.d.mts} +674 -530
- package/dist/shared/likec4.D6zjV21i.mjs +257 -0
- package/dist/shared/likec4.enfOs0BB.mjs +4204 -0
- package/dist/vite-plugin/index.d.mts +2 -2
- package/dist/vite-plugin/index.mjs +2 -2
- package/package.json +17 -17
- package/react/index.d.mts +2 -1
- package/react/index.mjs +39 -35
- package/dist/shared/likec4.B6V1NOky.mjs +0 -258
- package/dist/shared/likec4.BKp9_9LQ.mjs +0 -2268
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { Tagged, ValueOf, ConditionalPick, Writable, Simplify, MergeExclusive } from 'type-fest';
|
|
2
1
|
import * as c4 from '@likec4/core';
|
|
3
2
|
import { Fqn, EdgeId, AnyAux, aux, ComputedView, Specification, DiagramView, MultiMap as MultiMap$1, ProjectId, NonEmptyArray, NonEmptyReadonlyArray, ViewId, RelationId, DeploymentFqn, ViewChange } from '@likec4/core';
|
|
3
|
+
import { Tagged, ValueOf, ConditionalPick, Writable, Simplify, MergeExclusive } from 'type-fest';
|
|
4
4
|
import { LikeC4Model } from '@likec4/core/model';
|
|
5
5
|
import picomatch from '/home/runner/work/likec4/likec4/node_modules/.pnpm/@types+picomatch@4.0.2/node_modules/@types/picomatch/index.d.ts';
|
|
6
6
|
import { ProjectId as ProjectId$1, Fqn as Fqn$1 } from '@likec4/core/types';
|
|
@@ -5155,7 +5155,7 @@ interface FileSystemNode {
|
|
|
5155
5155
|
/**
|
|
5156
5156
|
* Provides methods to interact with an abstract file system. The default implementation is based on the node.js `fs` API.
|
|
5157
5157
|
*/
|
|
5158
|
-
interface FileSystemProvider {
|
|
5158
|
+
interface FileSystemProvider$1 {
|
|
5159
5159
|
/**
|
|
5160
5160
|
* Reads a document asynchronously from a given URI.
|
|
5161
5161
|
* @returns The string content of the file with the specified URI.
|
|
@@ -11771,7 +11771,7 @@ declare class DefaultWorkspaceManager implements WorkspaceManager {
|
|
|
11771
11771
|
protected readonly serviceRegistry: ServiceRegistry;
|
|
11772
11772
|
protected readonly langiumDocuments: LangiumDocuments$1;
|
|
11773
11773
|
protected readonly documentBuilder: DocumentBuilder;
|
|
11774
|
-
protected readonly fileSystemProvider: FileSystemProvider;
|
|
11774
|
+
protected readonly fileSystemProvider: FileSystemProvider$1;
|
|
11775
11775
|
protected readonly mutex: WorkspaceLock;
|
|
11776
11776
|
protected readonly _ready: Deferred<void>;
|
|
11777
11777
|
protected folders?: WorkspaceFolder[];
|
|
@@ -11887,7 +11887,7 @@ type LangiumDefaultSharedCoreServices = {
|
|
|
11887
11887
|
readonly workspace: {
|
|
11888
11888
|
readonly ConfigurationProvider: ConfigurationProvider;
|
|
11889
11889
|
readonly DocumentBuilder: DocumentBuilder;
|
|
11890
|
-
readonly FileSystemProvider: FileSystemProvider;
|
|
11890
|
+
readonly FileSystemProvider: FileSystemProvider$1;
|
|
11891
11891
|
readonly IndexManager: IndexManager$1;
|
|
11892
11892
|
readonly LangiumDocuments: LangiumDocuments$1;
|
|
11893
11893
|
readonly LangiumDocumentFactory: LangiumDocumentFactory;
|
|
@@ -17175,8 +17175,14 @@ declare class ProjectsManager {
|
|
|
17175
17175
|
|
|
17176
17176
|
declare class LikeC4WorkspaceManager extends DefaultWorkspaceManager {
|
|
17177
17177
|
private services;
|
|
17178
|
-
|
|
17178
|
+
protected readonly documentFactory: LangiumDocumentFactory;
|
|
17179
|
+
protected readonly fileSystemProvider: FileSystemProvider;
|
|
17180
|
+
initialBuildOptions: BuildOptions;
|
|
17179
17181
|
constructor(services: LikeC4SharedServices);
|
|
17182
|
+
/**
|
|
17183
|
+
* First load all project config files, then load all documents in the workspace.
|
|
17184
|
+
*/
|
|
17185
|
+
protected performStartup(folders: WorkspaceFolder[]): Promise<LangiumDocument[]>;
|
|
17180
17186
|
/**
|
|
17181
17187
|
* Load all additional documents that shall be visible in the context of the given workspace
|
|
17182
17188
|
* folders and add them to the collector. This can be used to include built-in libraries of
|
|
@@ -18103,15 +18109,17 @@ interface LikeC4LanguageServices {
|
|
|
18103
18109
|
id: ProjectId;
|
|
18104
18110
|
folder: URI;
|
|
18105
18111
|
title: string;
|
|
18106
|
-
documents:
|
|
18112
|
+
documents: ReadonlyArray<URI>;
|
|
18107
18113
|
}>;
|
|
18108
18114
|
/**
|
|
18109
18115
|
* Returns project by ID
|
|
18116
|
+
* If no project ID is specified, returns default project
|
|
18110
18117
|
*/
|
|
18111
|
-
project(projectId
|
|
18118
|
+
project(projectId?: ProjectId): {
|
|
18112
18119
|
id: ProjectId;
|
|
18113
18120
|
folder: URI;
|
|
18114
18121
|
title: string;
|
|
18122
|
+
documents: ReadonlyArray<URI>;
|
|
18115
18123
|
};
|
|
18116
18124
|
/**
|
|
18117
18125
|
* Returns diagrams (i.e. views with layout computed) for the specified project
|
|
@@ -19572,6 +19580,111 @@ declare const ResultSchema: ZodObject<{
|
|
|
19572
19580
|
* A uniquely identifying ID for a request in JSON-RPC.
|
|
19573
19581
|
*/
|
|
19574
19582
|
declare const RequestIdSchema: ZodUnion<[ZodString, ZodNumber]>;
|
|
19583
|
+
/**
|
|
19584
|
+
* A request that expects a response.
|
|
19585
|
+
*/
|
|
19586
|
+
declare const JSONRPCRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
19587
|
+
jsonrpc: ZodLiteral<"2.0">;
|
|
19588
|
+
id: ZodUnion<[ZodString, ZodNumber]>;
|
|
19589
|
+
}, {
|
|
19590
|
+
method: ZodString;
|
|
19591
|
+
params: ZodOptional<ZodObject<{
|
|
19592
|
+
_meta: ZodOptional<ZodObject<{
|
|
19593
|
+
/**
|
|
19594
|
+
* If specified, the caller is requesting out-of-band progress notifications for this request (as represented by notifications/progress). The value of this parameter is an opaque token that will be attached to any subsequent notifications. The receiver is not obligated to provide these notifications.
|
|
19595
|
+
*/
|
|
19596
|
+
progressToken: ZodOptional<ZodUnion<[ZodString, ZodNumber]>>;
|
|
19597
|
+
}, "passthrough", ZodTypeAny, objectOutputType<{
|
|
19598
|
+
/**
|
|
19599
|
+
* If specified, the caller is requesting out-of-band progress notifications for this request (as represented by notifications/progress). The value of this parameter is an opaque token that will be attached to any subsequent notifications. The receiver is not obligated to provide these notifications.
|
|
19600
|
+
*/
|
|
19601
|
+
progressToken: ZodOptional<ZodUnion<[ZodString, ZodNumber]>>;
|
|
19602
|
+
}, ZodTypeAny, "passthrough">, objectInputType<{
|
|
19603
|
+
/**
|
|
19604
|
+
* If specified, the caller is requesting out-of-band progress notifications for this request (as represented by notifications/progress). The value of this parameter is an opaque token that will be attached to any subsequent notifications. The receiver is not obligated to provide these notifications.
|
|
19605
|
+
*/
|
|
19606
|
+
progressToken: ZodOptional<ZodUnion<[ZodString, ZodNumber]>>;
|
|
19607
|
+
}, ZodTypeAny, "passthrough">>>;
|
|
19608
|
+
}, "passthrough", ZodTypeAny, objectOutputType<{
|
|
19609
|
+
_meta: ZodOptional<ZodObject<{
|
|
19610
|
+
/**
|
|
19611
|
+
* If specified, the caller is requesting out-of-band progress notifications for this request (as represented by notifications/progress). The value of this parameter is an opaque token that will be attached to any subsequent notifications. The receiver is not obligated to provide these notifications.
|
|
19612
|
+
*/
|
|
19613
|
+
progressToken: ZodOptional<ZodUnion<[ZodString, ZodNumber]>>;
|
|
19614
|
+
}, "passthrough", ZodTypeAny, objectOutputType<{
|
|
19615
|
+
/**
|
|
19616
|
+
* If specified, the caller is requesting out-of-band progress notifications for this request (as represented by notifications/progress). The value of this parameter is an opaque token that will be attached to any subsequent notifications. The receiver is not obligated to provide these notifications.
|
|
19617
|
+
*/
|
|
19618
|
+
progressToken: ZodOptional<ZodUnion<[ZodString, ZodNumber]>>;
|
|
19619
|
+
}, ZodTypeAny, "passthrough">, objectInputType<{
|
|
19620
|
+
/**
|
|
19621
|
+
* If specified, the caller is requesting out-of-band progress notifications for this request (as represented by notifications/progress). The value of this parameter is an opaque token that will be attached to any subsequent notifications. The receiver is not obligated to provide these notifications.
|
|
19622
|
+
*/
|
|
19623
|
+
progressToken: ZodOptional<ZodUnion<[ZodString, ZodNumber]>>;
|
|
19624
|
+
}, ZodTypeAny, "passthrough">>>;
|
|
19625
|
+
}, ZodTypeAny, "passthrough">, objectInputType<{
|
|
19626
|
+
_meta: ZodOptional<ZodObject<{
|
|
19627
|
+
/**
|
|
19628
|
+
* If specified, the caller is requesting out-of-band progress notifications for this request (as represented by notifications/progress). The value of this parameter is an opaque token that will be attached to any subsequent notifications. The receiver is not obligated to provide these notifications.
|
|
19629
|
+
*/
|
|
19630
|
+
progressToken: ZodOptional<ZodUnion<[ZodString, ZodNumber]>>;
|
|
19631
|
+
}, "passthrough", ZodTypeAny, objectOutputType<{
|
|
19632
|
+
/**
|
|
19633
|
+
* If specified, the caller is requesting out-of-band progress notifications for this request (as represented by notifications/progress). The value of this parameter is an opaque token that will be attached to any subsequent notifications. The receiver is not obligated to provide these notifications.
|
|
19634
|
+
*/
|
|
19635
|
+
progressToken: ZodOptional<ZodUnion<[ZodString, ZodNumber]>>;
|
|
19636
|
+
}, ZodTypeAny, "passthrough">, objectInputType<{
|
|
19637
|
+
/**
|
|
19638
|
+
* If specified, the caller is requesting out-of-band progress notifications for this request (as represented by notifications/progress). The value of this parameter is an opaque token that will be attached to any subsequent notifications. The receiver is not obligated to provide these notifications.
|
|
19639
|
+
*/
|
|
19640
|
+
progressToken: ZodOptional<ZodUnion<[ZodString, ZodNumber]>>;
|
|
19641
|
+
}, ZodTypeAny, "passthrough">>>;
|
|
19642
|
+
}, ZodTypeAny, "passthrough">>>;
|
|
19643
|
+
}>, "strict", ZodTypeAny, {
|
|
19644
|
+
method: string;
|
|
19645
|
+
jsonrpc: "2.0";
|
|
19646
|
+
id: string | number;
|
|
19647
|
+
params?: objectOutputType<{
|
|
19648
|
+
_meta: ZodOptional<ZodObject<{
|
|
19649
|
+
/**
|
|
19650
|
+
* If specified, the caller is requesting out-of-band progress notifications for this request (as represented by notifications/progress). The value of this parameter is an opaque token that will be attached to any subsequent notifications. The receiver is not obligated to provide these notifications.
|
|
19651
|
+
*/
|
|
19652
|
+
progressToken: ZodOptional<ZodUnion<[ZodString, ZodNumber]>>;
|
|
19653
|
+
}, "passthrough", ZodTypeAny, objectOutputType<{
|
|
19654
|
+
/**
|
|
19655
|
+
* If specified, the caller is requesting out-of-band progress notifications for this request (as represented by notifications/progress). The value of this parameter is an opaque token that will be attached to any subsequent notifications. The receiver is not obligated to provide these notifications.
|
|
19656
|
+
*/
|
|
19657
|
+
progressToken: ZodOptional<ZodUnion<[ZodString, ZodNumber]>>;
|
|
19658
|
+
}, ZodTypeAny, "passthrough">, objectInputType<{
|
|
19659
|
+
/**
|
|
19660
|
+
* If specified, the caller is requesting out-of-band progress notifications for this request (as represented by notifications/progress). The value of this parameter is an opaque token that will be attached to any subsequent notifications. The receiver is not obligated to provide these notifications.
|
|
19661
|
+
*/
|
|
19662
|
+
progressToken: ZodOptional<ZodUnion<[ZodString, ZodNumber]>>;
|
|
19663
|
+
}, ZodTypeAny, "passthrough">>>;
|
|
19664
|
+
}, ZodTypeAny, "passthrough"> | undefined;
|
|
19665
|
+
}, {
|
|
19666
|
+
method: string;
|
|
19667
|
+
jsonrpc: "2.0";
|
|
19668
|
+
id: string | number;
|
|
19669
|
+
params?: objectInputType<{
|
|
19670
|
+
_meta: ZodOptional<ZodObject<{
|
|
19671
|
+
/**
|
|
19672
|
+
* If specified, the caller is requesting out-of-band progress notifications for this request (as represented by notifications/progress). The value of this parameter is an opaque token that will be attached to any subsequent notifications. The receiver is not obligated to provide these notifications.
|
|
19673
|
+
*/
|
|
19674
|
+
progressToken: ZodOptional<ZodUnion<[ZodString, ZodNumber]>>;
|
|
19675
|
+
}, "passthrough", ZodTypeAny, objectOutputType<{
|
|
19676
|
+
/**
|
|
19677
|
+
* If specified, the caller is requesting out-of-band progress notifications for this request (as represented by notifications/progress). The value of this parameter is an opaque token that will be attached to any subsequent notifications. The receiver is not obligated to provide these notifications.
|
|
19678
|
+
*/
|
|
19679
|
+
progressToken: ZodOptional<ZodUnion<[ZodString, ZodNumber]>>;
|
|
19680
|
+
}, ZodTypeAny, "passthrough">, objectInputType<{
|
|
19681
|
+
/**
|
|
19682
|
+
* If specified, the caller is requesting out-of-band progress notifications for this request (as represented by notifications/progress). The value of this parameter is an opaque token that will be attached to any subsequent notifications. The receiver is not obligated to provide these notifications.
|
|
19683
|
+
*/
|
|
19684
|
+
progressToken: ZodOptional<ZodUnion<[ZodString, ZodNumber]>>;
|
|
19685
|
+
}, ZodTypeAny, "passthrough">>>;
|
|
19686
|
+
}, ZodTypeAny, "passthrough"> | undefined;
|
|
19687
|
+
}>;
|
|
19575
19688
|
declare const JSONRPCMessageSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
19576
19689
|
jsonrpc: ZodLiteral<"2.0">;
|
|
19577
19690
|
id: ZodUnion<[ZodString, ZodNumber]>;
|
|
@@ -20751,7 +20864,7 @@ declare const ReadResourceResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
20751
20864
|
/**
|
|
20752
20865
|
* A base64-encoded string representing the binary data of the item.
|
|
20753
20866
|
*/
|
|
20754
|
-
blob: ZodString
|
|
20867
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
20755
20868
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
20756
20869
|
/**
|
|
20757
20870
|
* The URI of this resource.
|
|
@@ -20770,7 +20883,7 @@ declare const ReadResourceResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
20770
20883
|
/**
|
|
20771
20884
|
* A base64-encoded string representing the binary data of the item.
|
|
20772
20885
|
*/
|
|
20773
|
-
blob: ZodString
|
|
20886
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
20774
20887
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
20775
20888
|
/**
|
|
20776
20889
|
* The URI of this resource.
|
|
@@ -20789,7 +20902,7 @@ declare const ReadResourceResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
20789
20902
|
/**
|
|
20790
20903
|
* A base64-encoded string representing the binary data of the item.
|
|
20791
20904
|
*/
|
|
20792
|
-
blob: ZodString
|
|
20905
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
20793
20906
|
}>, ZodTypeAny, "passthrough">>]>, "many">;
|
|
20794
20907
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
20795
20908
|
/**
|
|
@@ -20873,7 +20986,7 @@ declare const ReadResourceResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
20873
20986
|
/**
|
|
20874
20987
|
* A base64-encoded string representing the binary data of the item.
|
|
20875
20988
|
*/
|
|
20876
|
-
blob: ZodString
|
|
20989
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
20877
20990
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
20878
20991
|
/**
|
|
20879
20992
|
* The URI of this resource.
|
|
@@ -20892,7 +21005,7 @@ declare const ReadResourceResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
20892
21005
|
/**
|
|
20893
21006
|
* A base64-encoded string representing the binary data of the item.
|
|
20894
21007
|
*/
|
|
20895
|
-
blob: ZodString
|
|
21008
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
20896
21009
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
20897
21010
|
/**
|
|
20898
21011
|
* The URI of this resource.
|
|
@@ -20911,7 +21024,7 @@ declare const ReadResourceResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
20911
21024
|
/**
|
|
20912
21025
|
* A base64-encoded string representing the binary data of the item.
|
|
20913
21026
|
*/
|
|
20914
|
-
blob: ZodString
|
|
21027
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
20915
21028
|
}>, ZodTypeAny, "passthrough">>]>, "many">;
|
|
20916
21029
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
20917
21030
|
/**
|
|
@@ -20995,7 +21108,7 @@ declare const ReadResourceResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
20995
21108
|
/**
|
|
20996
21109
|
* A base64-encoded string representing the binary data of the item.
|
|
20997
21110
|
*/
|
|
20998
|
-
blob: ZodString
|
|
21111
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
20999
21112
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
21000
21113
|
/**
|
|
21001
21114
|
* The URI of this resource.
|
|
@@ -21014,7 +21127,7 @@ declare const ReadResourceResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
21014
21127
|
/**
|
|
21015
21128
|
* A base64-encoded string representing the binary data of the item.
|
|
21016
21129
|
*/
|
|
21017
|
-
blob: ZodString
|
|
21130
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
21018
21131
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
21019
21132
|
/**
|
|
21020
21133
|
* The URI of this resource.
|
|
@@ -21033,7 +21146,7 @@ declare const ReadResourceResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
21033
21146
|
/**
|
|
21034
21147
|
* A base64-encoded string representing the binary data of the item.
|
|
21035
21148
|
*/
|
|
21036
|
-
blob: ZodString
|
|
21149
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
21037
21150
|
}>, ZodTypeAny, "passthrough">>]>, "many">;
|
|
21038
21151
|
}>, ZodTypeAny, "passthrough">>;
|
|
21039
21152
|
/**
|
|
@@ -21167,7 +21280,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
21167
21280
|
/**
|
|
21168
21281
|
* The base64-encoded image data.
|
|
21169
21282
|
*/
|
|
21170
|
-
data: ZodString
|
|
21283
|
+
data: ZodEffects<ZodString, string, string>;
|
|
21171
21284
|
/**
|
|
21172
21285
|
* The MIME type of the image. Different providers may support different image types.
|
|
21173
21286
|
*/
|
|
@@ -21182,7 +21295,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
21182
21295
|
/**
|
|
21183
21296
|
* The base64-encoded image data.
|
|
21184
21297
|
*/
|
|
21185
|
-
data: ZodString
|
|
21298
|
+
data: ZodEffects<ZodString, string, string>;
|
|
21186
21299
|
/**
|
|
21187
21300
|
* The MIME type of the image. Different providers may support different image types.
|
|
21188
21301
|
*/
|
|
@@ -21197,7 +21310,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
21197
21310
|
/**
|
|
21198
21311
|
* The base64-encoded image data.
|
|
21199
21312
|
*/
|
|
21200
|
-
data: ZodString
|
|
21313
|
+
data: ZodEffects<ZodString, string, string>;
|
|
21201
21314
|
/**
|
|
21202
21315
|
* The MIME type of the image. Different providers may support different image types.
|
|
21203
21316
|
*/
|
|
@@ -21212,7 +21325,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
21212
21325
|
/**
|
|
21213
21326
|
* The base64-encoded audio data.
|
|
21214
21327
|
*/
|
|
21215
|
-
data: ZodString
|
|
21328
|
+
data: ZodEffects<ZodString, string, string>;
|
|
21216
21329
|
/**
|
|
21217
21330
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
21218
21331
|
*/
|
|
@@ -21227,7 +21340,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
21227
21340
|
/**
|
|
21228
21341
|
* The base64-encoded audio data.
|
|
21229
21342
|
*/
|
|
21230
|
-
data: ZodString
|
|
21343
|
+
data: ZodEffects<ZodString, string, string>;
|
|
21231
21344
|
/**
|
|
21232
21345
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
21233
21346
|
*/
|
|
@@ -21242,7 +21355,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
21242
21355
|
/**
|
|
21243
21356
|
* The base64-encoded audio data.
|
|
21244
21357
|
*/
|
|
21245
|
-
data: ZodString
|
|
21358
|
+
data: ZodEffects<ZodString, string, string>;
|
|
21246
21359
|
/**
|
|
21247
21360
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
21248
21361
|
*/
|
|
@@ -21431,7 +21544,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
21431
21544
|
/**
|
|
21432
21545
|
* A base64-encoded string representing the binary data of the item.
|
|
21433
21546
|
*/
|
|
21434
|
-
blob: ZodString
|
|
21547
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
21435
21548
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
21436
21549
|
/**
|
|
21437
21550
|
* The URI of this resource.
|
|
@@ -21450,7 +21563,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
21450
21563
|
/**
|
|
21451
21564
|
* A base64-encoded string representing the binary data of the item.
|
|
21452
21565
|
*/
|
|
21453
|
-
blob: ZodString
|
|
21566
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
21454
21567
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
21455
21568
|
/**
|
|
21456
21569
|
* The URI of this resource.
|
|
@@ -21469,7 +21582,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
21469
21582
|
/**
|
|
21470
21583
|
* A base64-encoded string representing the binary data of the item.
|
|
21471
21584
|
*/
|
|
21472
|
-
blob: ZodString
|
|
21585
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
21473
21586
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
21474
21587
|
/**
|
|
21475
21588
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -21553,7 +21666,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
21553
21666
|
/**
|
|
21554
21667
|
* A base64-encoded string representing the binary data of the item.
|
|
21555
21668
|
*/
|
|
21556
|
-
blob: ZodString
|
|
21669
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
21557
21670
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
21558
21671
|
/**
|
|
21559
21672
|
* The URI of this resource.
|
|
@@ -21572,7 +21685,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
21572
21685
|
/**
|
|
21573
21686
|
* A base64-encoded string representing the binary data of the item.
|
|
21574
21687
|
*/
|
|
21575
|
-
blob: ZodString
|
|
21688
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
21576
21689
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
21577
21690
|
/**
|
|
21578
21691
|
* The URI of this resource.
|
|
@@ -21591,7 +21704,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
21591
21704
|
/**
|
|
21592
21705
|
* A base64-encoded string representing the binary data of the item.
|
|
21593
21706
|
*/
|
|
21594
|
-
blob: ZodString
|
|
21707
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
21595
21708
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
21596
21709
|
/**
|
|
21597
21710
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -21675,7 +21788,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
21675
21788
|
/**
|
|
21676
21789
|
* A base64-encoded string representing the binary data of the item.
|
|
21677
21790
|
*/
|
|
21678
|
-
blob: ZodString
|
|
21791
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
21679
21792
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
21680
21793
|
/**
|
|
21681
21794
|
* The URI of this resource.
|
|
@@ -21694,7 +21807,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
21694
21807
|
/**
|
|
21695
21808
|
* A base64-encoded string representing the binary data of the item.
|
|
21696
21809
|
*/
|
|
21697
|
-
blob: ZodString
|
|
21810
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
21698
21811
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
21699
21812
|
/**
|
|
21700
21813
|
* The URI of this resource.
|
|
@@ -21713,7 +21826,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
21713
21826
|
/**
|
|
21714
21827
|
* A base64-encoded string representing the binary data of the item.
|
|
21715
21828
|
*/
|
|
21716
|
-
blob: ZodString
|
|
21829
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
21717
21830
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
21718
21831
|
/**
|
|
21719
21832
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -21761,7 +21874,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
21761
21874
|
/**
|
|
21762
21875
|
* The base64-encoded image data.
|
|
21763
21876
|
*/
|
|
21764
|
-
data: ZodString
|
|
21877
|
+
data: ZodEffects<ZodString, string, string>;
|
|
21765
21878
|
/**
|
|
21766
21879
|
* The MIME type of the image. Different providers may support different image types.
|
|
21767
21880
|
*/
|
|
@@ -21776,7 +21889,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
21776
21889
|
/**
|
|
21777
21890
|
* The base64-encoded image data.
|
|
21778
21891
|
*/
|
|
21779
|
-
data: ZodString
|
|
21892
|
+
data: ZodEffects<ZodString, string, string>;
|
|
21780
21893
|
/**
|
|
21781
21894
|
* The MIME type of the image. Different providers may support different image types.
|
|
21782
21895
|
*/
|
|
@@ -21791,7 +21904,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
21791
21904
|
/**
|
|
21792
21905
|
* The base64-encoded image data.
|
|
21793
21906
|
*/
|
|
21794
|
-
data: ZodString
|
|
21907
|
+
data: ZodEffects<ZodString, string, string>;
|
|
21795
21908
|
/**
|
|
21796
21909
|
* The MIME type of the image. Different providers may support different image types.
|
|
21797
21910
|
*/
|
|
@@ -21806,7 +21919,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
21806
21919
|
/**
|
|
21807
21920
|
* The base64-encoded audio data.
|
|
21808
21921
|
*/
|
|
21809
|
-
data: ZodString
|
|
21922
|
+
data: ZodEffects<ZodString, string, string>;
|
|
21810
21923
|
/**
|
|
21811
21924
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
21812
21925
|
*/
|
|
@@ -21821,7 +21934,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
21821
21934
|
/**
|
|
21822
21935
|
* The base64-encoded audio data.
|
|
21823
21936
|
*/
|
|
21824
|
-
data: ZodString
|
|
21937
|
+
data: ZodEffects<ZodString, string, string>;
|
|
21825
21938
|
/**
|
|
21826
21939
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
21827
21940
|
*/
|
|
@@ -21836,7 +21949,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
21836
21949
|
/**
|
|
21837
21950
|
* The base64-encoded audio data.
|
|
21838
21951
|
*/
|
|
21839
|
-
data: ZodString
|
|
21952
|
+
data: ZodEffects<ZodString, string, string>;
|
|
21840
21953
|
/**
|
|
21841
21954
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
21842
21955
|
*/
|
|
@@ -22025,7 +22138,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
22025
22138
|
/**
|
|
22026
22139
|
* A base64-encoded string representing the binary data of the item.
|
|
22027
22140
|
*/
|
|
22028
|
-
blob: ZodString
|
|
22141
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
22029
22142
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
22030
22143
|
/**
|
|
22031
22144
|
* The URI of this resource.
|
|
@@ -22044,7 +22157,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
22044
22157
|
/**
|
|
22045
22158
|
* A base64-encoded string representing the binary data of the item.
|
|
22046
22159
|
*/
|
|
22047
|
-
blob: ZodString
|
|
22160
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
22048
22161
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
22049
22162
|
/**
|
|
22050
22163
|
* The URI of this resource.
|
|
@@ -22063,7 +22176,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
22063
22176
|
/**
|
|
22064
22177
|
* A base64-encoded string representing the binary data of the item.
|
|
22065
22178
|
*/
|
|
22066
|
-
blob: ZodString
|
|
22179
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
22067
22180
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
22068
22181
|
/**
|
|
22069
22182
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -22147,7 +22260,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
22147
22260
|
/**
|
|
22148
22261
|
* A base64-encoded string representing the binary data of the item.
|
|
22149
22262
|
*/
|
|
22150
|
-
blob: ZodString
|
|
22263
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
22151
22264
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
22152
22265
|
/**
|
|
22153
22266
|
* The URI of this resource.
|
|
@@ -22166,7 +22279,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
22166
22279
|
/**
|
|
22167
22280
|
* A base64-encoded string representing the binary data of the item.
|
|
22168
22281
|
*/
|
|
22169
|
-
blob: ZodString
|
|
22282
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
22170
22283
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
22171
22284
|
/**
|
|
22172
22285
|
* The URI of this resource.
|
|
@@ -22185,7 +22298,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
22185
22298
|
/**
|
|
22186
22299
|
* A base64-encoded string representing the binary data of the item.
|
|
22187
22300
|
*/
|
|
22188
|
-
blob: ZodString
|
|
22301
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
22189
22302
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
22190
22303
|
/**
|
|
22191
22304
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -22269,7 +22382,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
22269
22382
|
/**
|
|
22270
22383
|
* A base64-encoded string representing the binary data of the item.
|
|
22271
22384
|
*/
|
|
22272
|
-
blob: ZodString
|
|
22385
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
22273
22386
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
22274
22387
|
/**
|
|
22275
22388
|
* The URI of this resource.
|
|
@@ -22288,7 +22401,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
22288
22401
|
/**
|
|
22289
22402
|
* A base64-encoded string representing the binary data of the item.
|
|
22290
22403
|
*/
|
|
22291
|
-
blob: ZodString
|
|
22404
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
22292
22405
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
22293
22406
|
/**
|
|
22294
22407
|
* The URI of this resource.
|
|
@@ -22307,7 +22420,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
22307
22420
|
/**
|
|
22308
22421
|
* A base64-encoded string representing the binary data of the item.
|
|
22309
22422
|
*/
|
|
22310
|
-
blob: ZodString
|
|
22423
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
22311
22424
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
22312
22425
|
/**
|
|
22313
22426
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -22355,7 +22468,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
22355
22468
|
/**
|
|
22356
22469
|
* The base64-encoded image data.
|
|
22357
22470
|
*/
|
|
22358
|
-
data: ZodString
|
|
22471
|
+
data: ZodEffects<ZodString, string, string>;
|
|
22359
22472
|
/**
|
|
22360
22473
|
* The MIME type of the image. Different providers may support different image types.
|
|
22361
22474
|
*/
|
|
@@ -22370,7 +22483,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
22370
22483
|
/**
|
|
22371
22484
|
* The base64-encoded image data.
|
|
22372
22485
|
*/
|
|
22373
|
-
data: ZodString
|
|
22486
|
+
data: ZodEffects<ZodString, string, string>;
|
|
22374
22487
|
/**
|
|
22375
22488
|
* The MIME type of the image. Different providers may support different image types.
|
|
22376
22489
|
*/
|
|
@@ -22385,7 +22498,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
22385
22498
|
/**
|
|
22386
22499
|
* The base64-encoded image data.
|
|
22387
22500
|
*/
|
|
22388
|
-
data: ZodString
|
|
22501
|
+
data: ZodEffects<ZodString, string, string>;
|
|
22389
22502
|
/**
|
|
22390
22503
|
* The MIME type of the image. Different providers may support different image types.
|
|
22391
22504
|
*/
|
|
@@ -22400,7 +22513,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
22400
22513
|
/**
|
|
22401
22514
|
* The base64-encoded audio data.
|
|
22402
22515
|
*/
|
|
22403
|
-
data: ZodString
|
|
22516
|
+
data: ZodEffects<ZodString, string, string>;
|
|
22404
22517
|
/**
|
|
22405
22518
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
22406
22519
|
*/
|
|
@@ -22415,7 +22528,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
22415
22528
|
/**
|
|
22416
22529
|
* The base64-encoded audio data.
|
|
22417
22530
|
*/
|
|
22418
|
-
data: ZodString
|
|
22531
|
+
data: ZodEffects<ZodString, string, string>;
|
|
22419
22532
|
/**
|
|
22420
22533
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
22421
22534
|
*/
|
|
@@ -22430,7 +22543,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
22430
22543
|
/**
|
|
22431
22544
|
* The base64-encoded audio data.
|
|
22432
22545
|
*/
|
|
22433
|
-
data: ZodString
|
|
22546
|
+
data: ZodEffects<ZodString, string, string>;
|
|
22434
22547
|
/**
|
|
22435
22548
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
22436
22549
|
*/
|
|
@@ -22619,7 +22732,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
22619
22732
|
/**
|
|
22620
22733
|
* A base64-encoded string representing the binary data of the item.
|
|
22621
22734
|
*/
|
|
22622
|
-
blob: ZodString
|
|
22735
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
22623
22736
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
22624
22737
|
/**
|
|
22625
22738
|
* The URI of this resource.
|
|
@@ -22638,7 +22751,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
22638
22751
|
/**
|
|
22639
22752
|
* A base64-encoded string representing the binary data of the item.
|
|
22640
22753
|
*/
|
|
22641
|
-
blob: ZodString
|
|
22754
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
22642
22755
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
22643
22756
|
/**
|
|
22644
22757
|
* The URI of this resource.
|
|
@@ -22657,7 +22770,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
22657
22770
|
/**
|
|
22658
22771
|
* A base64-encoded string representing the binary data of the item.
|
|
22659
22772
|
*/
|
|
22660
|
-
blob: ZodString
|
|
22773
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
22661
22774
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
22662
22775
|
/**
|
|
22663
22776
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -22741,7 +22854,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
22741
22854
|
/**
|
|
22742
22855
|
* A base64-encoded string representing the binary data of the item.
|
|
22743
22856
|
*/
|
|
22744
|
-
blob: ZodString
|
|
22857
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
22745
22858
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
22746
22859
|
/**
|
|
22747
22860
|
* The URI of this resource.
|
|
@@ -22760,7 +22873,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
22760
22873
|
/**
|
|
22761
22874
|
* A base64-encoded string representing the binary data of the item.
|
|
22762
22875
|
*/
|
|
22763
|
-
blob: ZodString
|
|
22876
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
22764
22877
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
22765
22878
|
/**
|
|
22766
22879
|
* The URI of this resource.
|
|
@@ -22779,7 +22892,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
22779
22892
|
/**
|
|
22780
22893
|
* A base64-encoded string representing the binary data of the item.
|
|
22781
22894
|
*/
|
|
22782
|
-
blob: ZodString
|
|
22895
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
22783
22896
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
22784
22897
|
/**
|
|
22785
22898
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -22863,7 +22976,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
22863
22976
|
/**
|
|
22864
22977
|
* A base64-encoded string representing the binary data of the item.
|
|
22865
22978
|
*/
|
|
22866
|
-
blob: ZodString
|
|
22979
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
22867
22980
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
22868
22981
|
/**
|
|
22869
22982
|
* The URI of this resource.
|
|
@@ -22882,7 +22995,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
22882
22995
|
/**
|
|
22883
22996
|
* A base64-encoded string representing the binary data of the item.
|
|
22884
22997
|
*/
|
|
22885
|
-
blob: ZodString
|
|
22998
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
22886
22999
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
22887
23000
|
/**
|
|
22888
23001
|
* The URI of this resource.
|
|
@@ -22901,7 +23014,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
22901
23014
|
/**
|
|
22902
23015
|
* A base64-encoded string representing the binary data of the item.
|
|
22903
23016
|
*/
|
|
22904
|
-
blob: ZodString
|
|
23017
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
22905
23018
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
22906
23019
|
/**
|
|
22907
23020
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -22961,7 +23074,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
22961
23074
|
/**
|
|
22962
23075
|
* The base64-encoded image data.
|
|
22963
23076
|
*/
|
|
22964
|
-
data: ZodString
|
|
23077
|
+
data: ZodEffects<ZodString, string, string>;
|
|
22965
23078
|
/**
|
|
22966
23079
|
* The MIME type of the image. Different providers may support different image types.
|
|
22967
23080
|
*/
|
|
@@ -22976,7 +23089,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
22976
23089
|
/**
|
|
22977
23090
|
* The base64-encoded image data.
|
|
22978
23091
|
*/
|
|
22979
|
-
data: ZodString
|
|
23092
|
+
data: ZodEffects<ZodString, string, string>;
|
|
22980
23093
|
/**
|
|
22981
23094
|
* The MIME type of the image. Different providers may support different image types.
|
|
22982
23095
|
*/
|
|
@@ -22991,7 +23104,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
22991
23104
|
/**
|
|
22992
23105
|
* The base64-encoded image data.
|
|
22993
23106
|
*/
|
|
22994
|
-
data: ZodString
|
|
23107
|
+
data: ZodEffects<ZodString, string, string>;
|
|
22995
23108
|
/**
|
|
22996
23109
|
* The MIME type of the image. Different providers may support different image types.
|
|
22997
23110
|
*/
|
|
@@ -23006,7 +23119,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
23006
23119
|
/**
|
|
23007
23120
|
* The base64-encoded audio data.
|
|
23008
23121
|
*/
|
|
23009
|
-
data: ZodString
|
|
23122
|
+
data: ZodEffects<ZodString, string, string>;
|
|
23010
23123
|
/**
|
|
23011
23124
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
23012
23125
|
*/
|
|
@@ -23021,7 +23134,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
23021
23134
|
/**
|
|
23022
23135
|
* The base64-encoded audio data.
|
|
23023
23136
|
*/
|
|
23024
|
-
data: ZodString
|
|
23137
|
+
data: ZodEffects<ZodString, string, string>;
|
|
23025
23138
|
/**
|
|
23026
23139
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
23027
23140
|
*/
|
|
@@ -23036,7 +23149,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
23036
23149
|
/**
|
|
23037
23150
|
* The base64-encoded audio data.
|
|
23038
23151
|
*/
|
|
23039
|
-
data: ZodString
|
|
23152
|
+
data: ZodEffects<ZodString, string, string>;
|
|
23040
23153
|
/**
|
|
23041
23154
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
23042
23155
|
*/
|
|
@@ -23225,7 +23338,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
23225
23338
|
/**
|
|
23226
23339
|
* A base64-encoded string representing the binary data of the item.
|
|
23227
23340
|
*/
|
|
23228
|
-
blob: ZodString
|
|
23341
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
23229
23342
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
23230
23343
|
/**
|
|
23231
23344
|
* The URI of this resource.
|
|
@@ -23244,7 +23357,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
23244
23357
|
/**
|
|
23245
23358
|
* A base64-encoded string representing the binary data of the item.
|
|
23246
23359
|
*/
|
|
23247
|
-
blob: ZodString
|
|
23360
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
23248
23361
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
23249
23362
|
/**
|
|
23250
23363
|
* The URI of this resource.
|
|
@@ -23263,7 +23376,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
23263
23376
|
/**
|
|
23264
23377
|
* A base64-encoded string representing the binary data of the item.
|
|
23265
23378
|
*/
|
|
23266
|
-
blob: ZodString
|
|
23379
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
23267
23380
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
23268
23381
|
/**
|
|
23269
23382
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -23347,7 +23460,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
23347
23460
|
/**
|
|
23348
23461
|
* A base64-encoded string representing the binary data of the item.
|
|
23349
23462
|
*/
|
|
23350
|
-
blob: ZodString
|
|
23463
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
23351
23464
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
23352
23465
|
/**
|
|
23353
23466
|
* The URI of this resource.
|
|
@@ -23366,7 +23479,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
23366
23479
|
/**
|
|
23367
23480
|
* A base64-encoded string representing the binary data of the item.
|
|
23368
23481
|
*/
|
|
23369
|
-
blob: ZodString
|
|
23482
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
23370
23483
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
23371
23484
|
/**
|
|
23372
23485
|
* The URI of this resource.
|
|
@@ -23385,7 +23498,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
23385
23498
|
/**
|
|
23386
23499
|
* A base64-encoded string representing the binary data of the item.
|
|
23387
23500
|
*/
|
|
23388
|
-
blob: ZodString
|
|
23501
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
23389
23502
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
23390
23503
|
/**
|
|
23391
23504
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -23469,7 +23582,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
23469
23582
|
/**
|
|
23470
23583
|
* A base64-encoded string representing the binary data of the item.
|
|
23471
23584
|
*/
|
|
23472
|
-
blob: ZodString
|
|
23585
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
23473
23586
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
23474
23587
|
/**
|
|
23475
23588
|
* The URI of this resource.
|
|
@@ -23488,7 +23601,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
23488
23601
|
/**
|
|
23489
23602
|
* A base64-encoded string representing the binary data of the item.
|
|
23490
23603
|
*/
|
|
23491
|
-
blob: ZodString
|
|
23604
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
23492
23605
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
23493
23606
|
/**
|
|
23494
23607
|
* The URI of this resource.
|
|
@@ -23507,7 +23620,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
23507
23620
|
/**
|
|
23508
23621
|
* A base64-encoded string representing the binary data of the item.
|
|
23509
23622
|
*/
|
|
23510
|
-
blob: ZodString
|
|
23623
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
23511
23624
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
23512
23625
|
/**
|
|
23513
23626
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -23555,7 +23668,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
23555
23668
|
/**
|
|
23556
23669
|
* The base64-encoded image data.
|
|
23557
23670
|
*/
|
|
23558
|
-
data: ZodString
|
|
23671
|
+
data: ZodEffects<ZodString, string, string>;
|
|
23559
23672
|
/**
|
|
23560
23673
|
* The MIME type of the image. Different providers may support different image types.
|
|
23561
23674
|
*/
|
|
@@ -23570,7 +23683,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
23570
23683
|
/**
|
|
23571
23684
|
* The base64-encoded image data.
|
|
23572
23685
|
*/
|
|
23573
|
-
data: ZodString
|
|
23686
|
+
data: ZodEffects<ZodString, string, string>;
|
|
23574
23687
|
/**
|
|
23575
23688
|
* The MIME type of the image. Different providers may support different image types.
|
|
23576
23689
|
*/
|
|
@@ -23585,7 +23698,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
23585
23698
|
/**
|
|
23586
23699
|
* The base64-encoded image data.
|
|
23587
23700
|
*/
|
|
23588
|
-
data: ZodString
|
|
23701
|
+
data: ZodEffects<ZodString, string, string>;
|
|
23589
23702
|
/**
|
|
23590
23703
|
* The MIME type of the image. Different providers may support different image types.
|
|
23591
23704
|
*/
|
|
@@ -23600,7 +23713,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
23600
23713
|
/**
|
|
23601
23714
|
* The base64-encoded audio data.
|
|
23602
23715
|
*/
|
|
23603
|
-
data: ZodString
|
|
23716
|
+
data: ZodEffects<ZodString, string, string>;
|
|
23604
23717
|
/**
|
|
23605
23718
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
23606
23719
|
*/
|
|
@@ -23615,7 +23728,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
23615
23728
|
/**
|
|
23616
23729
|
* The base64-encoded audio data.
|
|
23617
23730
|
*/
|
|
23618
|
-
data: ZodString
|
|
23731
|
+
data: ZodEffects<ZodString, string, string>;
|
|
23619
23732
|
/**
|
|
23620
23733
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
23621
23734
|
*/
|
|
@@ -23630,7 +23743,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
23630
23743
|
/**
|
|
23631
23744
|
* The base64-encoded audio data.
|
|
23632
23745
|
*/
|
|
23633
|
-
data: ZodString
|
|
23746
|
+
data: ZodEffects<ZodString, string, string>;
|
|
23634
23747
|
/**
|
|
23635
23748
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
23636
23749
|
*/
|
|
@@ -23819,7 +23932,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
23819
23932
|
/**
|
|
23820
23933
|
* A base64-encoded string representing the binary data of the item.
|
|
23821
23934
|
*/
|
|
23822
|
-
blob: ZodString
|
|
23935
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
23823
23936
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
23824
23937
|
/**
|
|
23825
23938
|
* The URI of this resource.
|
|
@@ -23838,7 +23951,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
23838
23951
|
/**
|
|
23839
23952
|
* A base64-encoded string representing the binary data of the item.
|
|
23840
23953
|
*/
|
|
23841
|
-
blob: ZodString
|
|
23954
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
23842
23955
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
23843
23956
|
/**
|
|
23844
23957
|
* The URI of this resource.
|
|
@@ -23857,7 +23970,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
23857
23970
|
/**
|
|
23858
23971
|
* A base64-encoded string representing the binary data of the item.
|
|
23859
23972
|
*/
|
|
23860
|
-
blob: ZodString
|
|
23973
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
23861
23974
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
23862
23975
|
/**
|
|
23863
23976
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -23941,7 +24054,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
23941
24054
|
/**
|
|
23942
24055
|
* A base64-encoded string representing the binary data of the item.
|
|
23943
24056
|
*/
|
|
23944
|
-
blob: ZodString
|
|
24057
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
23945
24058
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
23946
24059
|
/**
|
|
23947
24060
|
* The URI of this resource.
|
|
@@ -23960,7 +24073,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
23960
24073
|
/**
|
|
23961
24074
|
* A base64-encoded string representing the binary data of the item.
|
|
23962
24075
|
*/
|
|
23963
|
-
blob: ZodString
|
|
24076
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
23964
24077
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
23965
24078
|
/**
|
|
23966
24079
|
* The URI of this resource.
|
|
@@ -23979,7 +24092,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
23979
24092
|
/**
|
|
23980
24093
|
* A base64-encoded string representing the binary data of the item.
|
|
23981
24094
|
*/
|
|
23982
|
-
blob: ZodString
|
|
24095
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
23983
24096
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
23984
24097
|
/**
|
|
23985
24098
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -24063,7 +24176,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
24063
24176
|
/**
|
|
24064
24177
|
* A base64-encoded string representing the binary data of the item.
|
|
24065
24178
|
*/
|
|
24066
|
-
blob: ZodString
|
|
24179
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
24067
24180
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
24068
24181
|
/**
|
|
24069
24182
|
* The URI of this resource.
|
|
@@ -24082,7 +24195,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
24082
24195
|
/**
|
|
24083
24196
|
* A base64-encoded string representing the binary data of the item.
|
|
24084
24197
|
*/
|
|
24085
|
-
blob: ZodString
|
|
24198
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
24086
24199
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
24087
24200
|
/**
|
|
24088
24201
|
* The URI of this resource.
|
|
@@ -24101,7 +24214,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
24101
24214
|
/**
|
|
24102
24215
|
* A base64-encoded string representing the binary data of the item.
|
|
24103
24216
|
*/
|
|
24104
|
-
blob: ZodString
|
|
24217
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
24105
24218
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
24106
24219
|
/**
|
|
24107
24220
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -24149,7 +24262,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
24149
24262
|
/**
|
|
24150
24263
|
* The base64-encoded image data.
|
|
24151
24264
|
*/
|
|
24152
|
-
data: ZodString
|
|
24265
|
+
data: ZodEffects<ZodString, string, string>;
|
|
24153
24266
|
/**
|
|
24154
24267
|
* The MIME type of the image. Different providers may support different image types.
|
|
24155
24268
|
*/
|
|
@@ -24164,7 +24277,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
24164
24277
|
/**
|
|
24165
24278
|
* The base64-encoded image data.
|
|
24166
24279
|
*/
|
|
24167
|
-
data: ZodString
|
|
24280
|
+
data: ZodEffects<ZodString, string, string>;
|
|
24168
24281
|
/**
|
|
24169
24282
|
* The MIME type of the image. Different providers may support different image types.
|
|
24170
24283
|
*/
|
|
@@ -24179,7 +24292,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
24179
24292
|
/**
|
|
24180
24293
|
* The base64-encoded image data.
|
|
24181
24294
|
*/
|
|
24182
|
-
data: ZodString
|
|
24295
|
+
data: ZodEffects<ZodString, string, string>;
|
|
24183
24296
|
/**
|
|
24184
24297
|
* The MIME type of the image. Different providers may support different image types.
|
|
24185
24298
|
*/
|
|
@@ -24194,7 +24307,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
24194
24307
|
/**
|
|
24195
24308
|
* The base64-encoded audio data.
|
|
24196
24309
|
*/
|
|
24197
|
-
data: ZodString
|
|
24310
|
+
data: ZodEffects<ZodString, string, string>;
|
|
24198
24311
|
/**
|
|
24199
24312
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
24200
24313
|
*/
|
|
@@ -24209,7 +24322,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
24209
24322
|
/**
|
|
24210
24323
|
* The base64-encoded audio data.
|
|
24211
24324
|
*/
|
|
24212
|
-
data: ZodString
|
|
24325
|
+
data: ZodEffects<ZodString, string, string>;
|
|
24213
24326
|
/**
|
|
24214
24327
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
24215
24328
|
*/
|
|
@@ -24224,7 +24337,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
24224
24337
|
/**
|
|
24225
24338
|
* The base64-encoded audio data.
|
|
24226
24339
|
*/
|
|
24227
|
-
data: ZodString
|
|
24340
|
+
data: ZodEffects<ZodString, string, string>;
|
|
24228
24341
|
/**
|
|
24229
24342
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
24230
24343
|
*/
|
|
@@ -24413,7 +24526,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
24413
24526
|
/**
|
|
24414
24527
|
* A base64-encoded string representing the binary data of the item.
|
|
24415
24528
|
*/
|
|
24416
|
-
blob: ZodString
|
|
24529
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
24417
24530
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
24418
24531
|
/**
|
|
24419
24532
|
* The URI of this resource.
|
|
@@ -24432,7 +24545,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
24432
24545
|
/**
|
|
24433
24546
|
* A base64-encoded string representing the binary data of the item.
|
|
24434
24547
|
*/
|
|
24435
|
-
blob: ZodString
|
|
24548
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
24436
24549
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
24437
24550
|
/**
|
|
24438
24551
|
* The URI of this resource.
|
|
@@ -24451,7 +24564,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
24451
24564
|
/**
|
|
24452
24565
|
* A base64-encoded string representing the binary data of the item.
|
|
24453
24566
|
*/
|
|
24454
|
-
blob: ZodString
|
|
24567
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
24455
24568
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
24456
24569
|
/**
|
|
24457
24570
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -24535,7 +24648,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
24535
24648
|
/**
|
|
24536
24649
|
* A base64-encoded string representing the binary data of the item.
|
|
24537
24650
|
*/
|
|
24538
|
-
blob: ZodString
|
|
24651
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
24539
24652
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
24540
24653
|
/**
|
|
24541
24654
|
* The URI of this resource.
|
|
@@ -24554,7 +24667,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
24554
24667
|
/**
|
|
24555
24668
|
* A base64-encoded string representing the binary data of the item.
|
|
24556
24669
|
*/
|
|
24557
|
-
blob: ZodString
|
|
24670
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
24558
24671
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
24559
24672
|
/**
|
|
24560
24673
|
* The URI of this resource.
|
|
@@ -24573,7 +24686,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
24573
24686
|
/**
|
|
24574
24687
|
* A base64-encoded string representing the binary data of the item.
|
|
24575
24688
|
*/
|
|
24576
|
-
blob: ZodString
|
|
24689
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
24577
24690
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
24578
24691
|
/**
|
|
24579
24692
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -24657,7 +24770,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
24657
24770
|
/**
|
|
24658
24771
|
* A base64-encoded string representing the binary data of the item.
|
|
24659
24772
|
*/
|
|
24660
|
-
blob: ZodString
|
|
24773
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
24661
24774
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
24662
24775
|
/**
|
|
24663
24776
|
* The URI of this resource.
|
|
@@ -24676,7 +24789,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
24676
24789
|
/**
|
|
24677
24790
|
* A base64-encoded string representing the binary data of the item.
|
|
24678
24791
|
*/
|
|
24679
|
-
blob: ZodString
|
|
24792
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
24680
24793
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
24681
24794
|
/**
|
|
24682
24795
|
* The URI of this resource.
|
|
@@ -24695,7 +24808,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
24695
24808
|
/**
|
|
24696
24809
|
* A base64-encoded string representing the binary data of the item.
|
|
24697
24810
|
*/
|
|
24698
|
-
blob: ZodString
|
|
24811
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
24699
24812
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
24700
24813
|
/**
|
|
24701
24814
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -24755,7 +24868,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
24755
24868
|
/**
|
|
24756
24869
|
* The base64-encoded image data.
|
|
24757
24870
|
*/
|
|
24758
|
-
data: ZodString
|
|
24871
|
+
data: ZodEffects<ZodString, string, string>;
|
|
24759
24872
|
/**
|
|
24760
24873
|
* The MIME type of the image. Different providers may support different image types.
|
|
24761
24874
|
*/
|
|
@@ -24770,7 +24883,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
24770
24883
|
/**
|
|
24771
24884
|
* The base64-encoded image data.
|
|
24772
24885
|
*/
|
|
24773
|
-
data: ZodString
|
|
24886
|
+
data: ZodEffects<ZodString, string, string>;
|
|
24774
24887
|
/**
|
|
24775
24888
|
* The MIME type of the image. Different providers may support different image types.
|
|
24776
24889
|
*/
|
|
@@ -24785,7 +24898,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
24785
24898
|
/**
|
|
24786
24899
|
* The base64-encoded image data.
|
|
24787
24900
|
*/
|
|
24788
|
-
data: ZodString
|
|
24901
|
+
data: ZodEffects<ZodString, string, string>;
|
|
24789
24902
|
/**
|
|
24790
24903
|
* The MIME type of the image. Different providers may support different image types.
|
|
24791
24904
|
*/
|
|
@@ -24800,7 +24913,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
24800
24913
|
/**
|
|
24801
24914
|
* The base64-encoded audio data.
|
|
24802
24915
|
*/
|
|
24803
|
-
data: ZodString
|
|
24916
|
+
data: ZodEffects<ZodString, string, string>;
|
|
24804
24917
|
/**
|
|
24805
24918
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
24806
24919
|
*/
|
|
@@ -24815,7 +24928,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
24815
24928
|
/**
|
|
24816
24929
|
* The base64-encoded audio data.
|
|
24817
24930
|
*/
|
|
24818
|
-
data: ZodString
|
|
24931
|
+
data: ZodEffects<ZodString, string, string>;
|
|
24819
24932
|
/**
|
|
24820
24933
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
24821
24934
|
*/
|
|
@@ -24830,7 +24943,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
24830
24943
|
/**
|
|
24831
24944
|
* The base64-encoded audio data.
|
|
24832
24945
|
*/
|
|
24833
|
-
data: ZodString
|
|
24946
|
+
data: ZodEffects<ZodString, string, string>;
|
|
24834
24947
|
/**
|
|
24835
24948
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
24836
24949
|
*/
|
|
@@ -25019,7 +25132,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
25019
25132
|
/**
|
|
25020
25133
|
* A base64-encoded string representing the binary data of the item.
|
|
25021
25134
|
*/
|
|
25022
|
-
blob: ZodString
|
|
25135
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
25023
25136
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
25024
25137
|
/**
|
|
25025
25138
|
* The URI of this resource.
|
|
@@ -25038,7 +25151,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
25038
25151
|
/**
|
|
25039
25152
|
* A base64-encoded string representing the binary data of the item.
|
|
25040
25153
|
*/
|
|
25041
|
-
blob: ZodString
|
|
25154
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
25042
25155
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
25043
25156
|
/**
|
|
25044
25157
|
* The URI of this resource.
|
|
@@ -25057,7 +25170,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
25057
25170
|
/**
|
|
25058
25171
|
* A base64-encoded string representing the binary data of the item.
|
|
25059
25172
|
*/
|
|
25060
|
-
blob: ZodString
|
|
25173
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
25061
25174
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
25062
25175
|
/**
|
|
25063
25176
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -25141,7 +25254,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
25141
25254
|
/**
|
|
25142
25255
|
* A base64-encoded string representing the binary data of the item.
|
|
25143
25256
|
*/
|
|
25144
|
-
blob: ZodString
|
|
25257
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
25145
25258
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
25146
25259
|
/**
|
|
25147
25260
|
* The URI of this resource.
|
|
@@ -25160,7 +25273,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
25160
25273
|
/**
|
|
25161
25274
|
* A base64-encoded string representing the binary data of the item.
|
|
25162
25275
|
*/
|
|
25163
|
-
blob: ZodString
|
|
25276
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
25164
25277
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
25165
25278
|
/**
|
|
25166
25279
|
* The URI of this resource.
|
|
@@ -25179,7 +25292,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
25179
25292
|
/**
|
|
25180
25293
|
* A base64-encoded string representing the binary data of the item.
|
|
25181
25294
|
*/
|
|
25182
|
-
blob: ZodString
|
|
25295
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
25183
25296
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
25184
25297
|
/**
|
|
25185
25298
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -25263,7 +25376,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
25263
25376
|
/**
|
|
25264
25377
|
* A base64-encoded string representing the binary data of the item.
|
|
25265
25378
|
*/
|
|
25266
|
-
blob: ZodString
|
|
25379
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
25267
25380
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
25268
25381
|
/**
|
|
25269
25382
|
* The URI of this resource.
|
|
@@ -25282,7 +25395,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
25282
25395
|
/**
|
|
25283
25396
|
* A base64-encoded string representing the binary data of the item.
|
|
25284
25397
|
*/
|
|
25285
|
-
blob: ZodString
|
|
25398
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
25286
25399
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
25287
25400
|
/**
|
|
25288
25401
|
* The URI of this resource.
|
|
@@ -25301,7 +25414,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
25301
25414
|
/**
|
|
25302
25415
|
* A base64-encoded string representing the binary data of the item.
|
|
25303
25416
|
*/
|
|
25304
|
-
blob: ZodString
|
|
25417
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
25305
25418
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
25306
25419
|
/**
|
|
25307
25420
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -25349,7 +25462,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
25349
25462
|
/**
|
|
25350
25463
|
* The base64-encoded image data.
|
|
25351
25464
|
*/
|
|
25352
|
-
data: ZodString
|
|
25465
|
+
data: ZodEffects<ZodString, string, string>;
|
|
25353
25466
|
/**
|
|
25354
25467
|
* The MIME type of the image. Different providers may support different image types.
|
|
25355
25468
|
*/
|
|
@@ -25364,7 +25477,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
25364
25477
|
/**
|
|
25365
25478
|
* The base64-encoded image data.
|
|
25366
25479
|
*/
|
|
25367
|
-
data: ZodString
|
|
25480
|
+
data: ZodEffects<ZodString, string, string>;
|
|
25368
25481
|
/**
|
|
25369
25482
|
* The MIME type of the image. Different providers may support different image types.
|
|
25370
25483
|
*/
|
|
@@ -25379,7 +25492,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
25379
25492
|
/**
|
|
25380
25493
|
* The base64-encoded image data.
|
|
25381
25494
|
*/
|
|
25382
|
-
data: ZodString
|
|
25495
|
+
data: ZodEffects<ZodString, string, string>;
|
|
25383
25496
|
/**
|
|
25384
25497
|
* The MIME type of the image. Different providers may support different image types.
|
|
25385
25498
|
*/
|
|
@@ -25394,7 +25507,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
25394
25507
|
/**
|
|
25395
25508
|
* The base64-encoded audio data.
|
|
25396
25509
|
*/
|
|
25397
|
-
data: ZodString
|
|
25510
|
+
data: ZodEffects<ZodString, string, string>;
|
|
25398
25511
|
/**
|
|
25399
25512
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
25400
25513
|
*/
|
|
@@ -25409,7 +25522,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
25409
25522
|
/**
|
|
25410
25523
|
* The base64-encoded audio data.
|
|
25411
25524
|
*/
|
|
25412
|
-
data: ZodString
|
|
25525
|
+
data: ZodEffects<ZodString, string, string>;
|
|
25413
25526
|
/**
|
|
25414
25527
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
25415
25528
|
*/
|
|
@@ -25424,7 +25537,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
25424
25537
|
/**
|
|
25425
25538
|
* The base64-encoded audio data.
|
|
25426
25539
|
*/
|
|
25427
|
-
data: ZodString
|
|
25540
|
+
data: ZodEffects<ZodString, string, string>;
|
|
25428
25541
|
/**
|
|
25429
25542
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
25430
25543
|
*/
|
|
@@ -25613,7 +25726,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
25613
25726
|
/**
|
|
25614
25727
|
* A base64-encoded string representing the binary data of the item.
|
|
25615
25728
|
*/
|
|
25616
|
-
blob: ZodString
|
|
25729
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
25617
25730
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
25618
25731
|
/**
|
|
25619
25732
|
* The URI of this resource.
|
|
@@ -25632,7 +25745,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
25632
25745
|
/**
|
|
25633
25746
|
* A base64-encoded string representing the binary data of the item.
|
|
25634
25747
|
*/
|
|
25635
|
-
blob: ZodString
|
|
25748
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
25636
25749
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
25637
25750
|
/**
|
|
25638
25751
|
* The URI of this resource.
|
|
@@ -25651,7 +25764,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
25651
25764
|
/**
|
|
25652
25765
|
* A base64-encoded string representing the binary data of the item.
|
|
25653
25766
|
*/
|
|
25654
|
-
blob: ZodString
|
|
25767
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
25655
25768
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
25656
25769
|
/**
|
|
25657
25770
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -25735,7 +25848,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
25735
25848
|
/**
|
|
25736
25849
|
* A base64-encoded string representing the binary data of the item.
|
|
25737
25850
|
*/
|
|
25738
|
-
blob: ZodString
|
|
25851
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
25739
25852
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
25740
25853
|
/**
|
|
25741
25854
|
* The URI of this resource.
|
|
@@ -25754,7 +25867,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
25754
25867
|
/**
|
|
25755
25868
|
* A base64-encoded string representing the binary data of the item.
|
|
25756
25869
|
*/
|
|
25757
|
-
blob: ZodString
|
|
25870
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
25758
25871
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
25759
25872
|
/**
|
|
25760
25873
|
* The URI of this resource.
|
|
@@ -25773,7 +25886,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
25773
25886
|
/**
|
|
25774
25887
|
* A base64-encoded string representing the binary data of the item.
|
|
25775
25888
|
*/
|
|
25776
|
-
blob: ZodString
|
|
25889
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
25777
25890
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
25778
25891
|
/**
|
|
25779
25892
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -25857,7 +25970,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
25857
25970
|
/**
|
|
25858
25971
|
* A base64-encoded string representing the binary data of the item.
|
|
25859
25972
|
*/
|
|
25860
|
-
blob: ZodString
|
|
25973
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
25861
25974
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
25862
25975
|
/**
|
|
25863
25976
|
* The URI of this resource.
|
|
@@ -25876,7 +25989,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
25876
25989
|
/**
|
|
25877
25990
|
* A base64-encoded string representing the binary data of the item.
|
|
25878
25991
|
*/
|
|
25879
|
-
blob: ZodString
|
|
25992
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
25880
25993
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
25881
25994
|
/**
|
|
25882
25995
|
* The URI of this resource.
|
|
@@ -25895,7 +26008,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
25895
26008
|
/**
|
|
25896
26009
|
* A base64-encoded string representing the binary data of the item.
|
|
25897
26010
|
*/
|
|
25898
|
-
blob: ZodString
|
|
26011
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
25899
26012
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
25900
26013
|
/**
|
|
25901
26014
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -25943,7 +26056,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
25943
26056
|
/**
|
|
25944
26057
|
* The base64-encoded image data.
|
|
25945
26058
|
*/
|
|
25946
|
-
data: ZodString
|
|
26059
|
+
data: ZodEffects<ZodString, string, string>;
|
|
25947
26060
|
/**
|
|
25948
26061
|
* The MIME type of the image. Different providers may support different image types.
|
|
25949
26062
|
*/
|
|
@@ -25958,7 +26071,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
25958
26071
|
/**
|
|
25959
26072
|
* The base64-encoded image data.
|
|
25960
26073
|
*/
|
|
25961
|
-
data: ZodString
|
|
26074
|
+
data: ZodEffects<ZodString, string, string>;
|
|
25962
26075
|
/**
|
|
25963
26076
|
* The MIME type of the image. Different providers may support different image types.
|
|
25964
26077
|
*/
|
|
@@ -25973,7 +26086,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
25973
26086
|
/**
|
|
25974
26087
|
* The base64-encoded image data.
|
|
25975
26088
|
*/
|
|
25976
|
-
data: ZodString
|
|
26089
|
+
data: ZodEffects<ZodString, string, string>;
|
|
25977
26090
|
/**
|
|
25978
26091
|
* The MIME type of the image. Different providers may support different image types.
|
|
25979
26092
|
*/
|
|
@@ -25988,7 +26101,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
25988
26101
|
/**
|
|
25989
26102
|
* The base64-encoded audio data.
|
|
25990
26103
|
*/
|
|
25991
|
-
data: ZodString
|
|
26104
|
+
data: ZodEffects<ZodString, string, string>;
|
|
25992
26105
|
/**
|
|
25993
26106
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
25994
26107
|
*/
|
|
@@ -26003,7 +26116,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
26003
26116
|
/**
|
|
26004
26117
|
* The base64-encoded audio data.
|
|
26005
26118
|
*/
|
|
26006
|
-
data: ZodString
|
|
26119
|
+
data: ZodEffects<ZodString, string, string>;
|
|
26007
26120
|
/**
|
|
26008
26121
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
26009
26122
|
*/
|
|
@@ -26018,7 +26131,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
26018
26131
|
/**
|
|
26019
26132
|
* The base64-encoded audio data.
|
|
26020
26133
|
*/
|
|
26021
|
-
data: ZodString
|
|
26134
|
+
data: ZodEffects<ZodString, string, string>;
|
|
26022
26135
|
/**
|
|
26023
26136
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
26024
26137
|
*/
|
|
@@ -26207,7 +26320,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
26207
26320
|
/**
|
|
26208
26321
|
* A base64-encoded string representing the binary data of the item.
|
|
26209
26322
|
*/
|
|
26210
|
-
blob: ZodString
|
|
26323
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
26211
26324
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
26212
26325
|
/**
|
|
26213
26326
|
* The URI of this resource.
|
|
@@ -26226,7 +26339,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
26226
26339
|
/**
|
|
26227
26340
|
* A base64-encoded string representing the binary data of the item.
|
|
26228
26341
|
*/
|
|
26229
|
-
blob: ZodString
|
|
26342
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
26230
26343
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
26231
26344
|
/**
|
|
26232
26345
|
* The URI of this resource.
|
|
@@ -26245,7 +26358,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
26245
26358
|
/**
|
|
26246
26359
|
* A base64-encoded string representing the binary data of the item.
|
|
26247
26360
|
*/
|
|
26248
|
-
blob: ZodString
|
|
26361
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
26249
26362
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
26250
26363
|
/**
|
|
26251
26364
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -26329,7 +26442,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
26329
26442
|
/**
|
|
26330
26443
|
* A base64-encoded string representing the binary data of the item.
|
|
26331
26444
|
*/
|
|
26332
|
-
blob: ZodString
|
|
26445
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
26333
26446
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
26334
26447
|
/**
|
|
26335
26448
|
* The URI of this resource.
|
|
@@ -26348,7 +26461,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
26348
26461
|
/**
|
|
26349
26462
|
* A base64-encoded string representing the binary data of the item.
|
|
26350
26463
|
*/
|
|
26351
|
-
blob: ZodString
|
|
26464
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
26352
26465
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
26353
26466
|
/**
|
|
26354
26467
|
* The URI of this resource.
|
|
@@ -26367,7 +26480,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
26367
26480
|
/**
|
|
26368
26481
|
* A base64-encoded string representing the binary data of the item.
|
|
26369
26482
|
*/
|
|
26370
|
-
blob: ZodString
|
|
26483
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
26371
26484
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
26372
26485
|
/**
|
|
26373
26486
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -26451,7 +26564,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
26451
26564
|
/**
|
|
26452
26565
|
* A base64-encoded string representing the binary data of the item.
|
|
26453
26566
|
*/
|
|
26454
|
-
blob: ZodString
|
|
26567
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
26455
26568
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
26456
26569
|
/**
|
|
26457
26570
|
* The URI of this resource.
|
|
@@ -26470,7 +26583,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
26470
26583
|
/**
|
|
26471
26584
|
* A base64-encoded string representing the binary data of the item.
|
|
26472
26585
|
*/
|
|
26473
|
-
blob: ZodString
|
|
26586
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
26474
26587
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
26475
26588
|
/**
|
|
26476
26589
|
* The URI of this resource.
|
|
@@ -26489,7 +26602,7 @@ declare const GetPromptResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
26489
26602
|
/**
|
|
26490
26603
|
* A base64-encoded string representing the binary data of the item.
|
|
26491
26604
|
*/
|
|
26492
|
-
blob: ZodString
|
|
26605
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
26493
26606
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
26494
26607
|
/**
|
|
26495
26608
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -26678,7 +26791,7 @@ declare const CallToolResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
26678
26791
|
/**
|
|
26679
26792
|
* The base64-encoded image data.
|
|
26680
26793
|
*/
|
|
26681
|
-
data: ZodString
|
|
26794
|
+
data: ZodEffects<ZodString, string, string>;
|
|
26682
26795
|
/**
|
|
26683
26796
|
* The MIME type of the image. Different providers may support different image types.
|
|
26684
26797
|
*/
|
|
@@ -26693,7 +26806,7 @@ declare const CallToolResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
26693
26806
|
/**
|
|
26694
26807
|
* The base64-encoded image data.
|
|
26695
26808
|
*/
|
|
26696
|
-
data: ZodString
|
|
26809
|
+
data: ZodEffects<ZodString, string, string>;
|
|
26697
26810
|
/**
|
|
26698
26811
|
* The MIME type of the image. Different providers may support different image types.
|
|
26699
26812
|
*/
|
|
@@ -26708,7 +26821,7 @@ declare const CallToolResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
26708
26821
|
/**
|
|
26709
26822
|
* The base64-encoded image data.
|
|
26710
26823
|
*/
|
|
26711
|
-
data: ZodString
|
|
26824
|
+
data: ZodEffects<ZodString, string, string>;
|
|
26712
26825
|
/**
|
|
26713
26826
|
* The MIME type of the image. Different providers may support different image types.
|
|
26714
26827
|
*/
|
|
@@ -26723,7 +26836,7 @@ declare const CallToolResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
26723
26836
|
/**
|
|
26724
26837
|
* The base64-encoded audio data.
|
|
26725
26838
|
*/
|
|
26726
|
-
data: ZodString
|
|
26839
|
+
data: ZodEffects<ZodString, string, string>;
|
|
26727
26840
|
/**
|
|
26728
26841
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
26729
26842
|
*/
|
|
@@ -26738,7 +26851,7 @@ declare const CallToolResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
26738
26851
|
/**
|
|
26739
26852
|
* The base64-encoded audio data.
|
|
26740
26853
|
*/
|
|
26741
|
-
data: ZodString
|
|
26854
|
+
data: ZodEffects<ZodString, string, string>;
|
|
26742
26855
|
/**
|
|
26743
26856
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
26744
26857
|
*/
|
|
@@ -26753,7 +26866,7 @@ declare const CallToolResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
26753
26866
|
/**
|
|
26754
26867
|
* The base64-encoded audio data.
|
|
26755
26868
|
*/
|
|
26756
|
-
data: ZodString
|
|
26869
|
+
data: ZodEffects<ZodString, string, string>;
|
|
26757
26870
|
/**
|
|
26758
26871
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
26759
26872
|
*/
|
|
@@ -26942,7 +27055,7 @@ declare const CallToolResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
26942
27055
|
/**
|
|
26943
27056
|
* A base64-encoded string representing the binary data of the item.
|
|
26944
27057
|
*/
|
|
26945
|
-
blob: ZodString
|
|
27058
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
26946
27059
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
26947
27060
|
/**
|
|
26948
27061
|
* The URI of this resource.
|
|
@@ -26961,7 +27074,7 @@ declare const CallToolResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
26961
27074
|
/**
|
|
26962
27075
|
* A base64-encoded string representing the binary data of the item.
|
|
26963
27076
|
*/
|
|
26964
|
-
blob: ZodString
|
|
27077
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
26965
27078
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
26966
27079
|
/**
|
|
26967
27080
|
* The URI of this resource.
|
|
@@ -26980,7 +27093,7 @@ declare const CallToolResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
26980
27093
|
/**
|
|
26981
27094
|
* A base64-encoded string representing the binary data of the item.
|
|
26982
27095
|
*/
|
|
26983
|
-
blob: ZodString
|
|
27096
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
26984
27097
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
26985
27098
|
/**
|
|
26986
27099
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -27064,7 +27177,7 @@ declare const CallToolResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
27064
27177
|
/**
|
|
27065
27178
|
* A base64-encoded string representing the binary data of the item.
|
|
27066
27179
|
*/
|
|
27067
|
-
blob: ZodString
|
|
27180
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
27068
27181
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
27069
27182
|
/**
|
|
27070
27183
|
* The URI of this resource.
|
|
@@ -27083,7 +27196,7 @@ declare const CallToolResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
27083
27196
|
/**
|
|
27084
27197
|
* A base64-encoded string representing the binary data of the item.
|
|
27085
27198
|
*/
|
|
27086
|
-
blob: ZodString
|
|
27199
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
27087
27200
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
27088
27201
|
/**
|
|
27089
27202
|
* The URI of this resource.
|
|
@@ -27102,7 +27215,7 @@ declare const CallToolResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
27102
27215
|
/**
|
|
27103
27216
|
* A base64-encoded string representing the binary data of the item.
|
|
27104
27217
|
*/
|
|
27105
|
-
blob: ZodString
|
|
27218
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
27106
27219
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
27107
27220
|
/**
|
|
27108
27221
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -27186,7 +27299,7 @@ declare const CallToolResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
27186
27299
|
/**
|
|
27187
27300
|
* A base64-encoded string representing the binary data of the item.
|
|
27188
27301
|
*/
|
|
27189
|
-
blob: ZodString
|
|
27302
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
27190
27303
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
27191
27304
|
/**
|
|
27192
27305
|
* The URI of this resource.
|
|
@@ -27205,7 +27318,7 @@ declare const CallToolResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
27205
27318
|
/**
|
|
27206
27319
|
* A base64-encoded string representing the binary data of the item.
|
|
27207
27320
|
*/
|
|
27208
|
-
blob: ZodString
|
|
27321
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
27209
27322
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
27210
27323
|
/**
|
|
27211
27324
|
* The URI of this resource.
|
|
@@ -27224,7 +27337,7 @@ declare const CallToolResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
27224
27337
|
/**
|
|
27225
27338
|
* A base64-encoded string representing the binary data of the item.
|
|
27226
27339
|
*/
|
|
27227
|
-
blob: ZodString
|
|
27340
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
27228
27341
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
27229
27342
|
/**
|
|
27230
27343
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -27304,7 +27417,7 @@ declare const CallToolResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
27304
27417
|
/**
|
|
27305
27418
|
* The base64-encoded image data.
|
|
27306
27419
|
*/
|
|
27307
|
-
data: ZodString
|
|
27420
|
+
data: ZodEffects<ZodString, string, string>;
|
|
27308
27421
|
/**
|
|
27309
27422
|
* The MIME type of the image. Different providers may support different image types.
|
|
27310
27423
|
*/
|
|
@@ -27319,7 +27432,7 @@ declare const CallToolResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
27319
27432
|
/**
|
|
27320
27433
|
* The base64-encoded image data.
|
|
27321
27434
|
*/
|
|
27322
|
-
data: ZodString
|
|
27435
|
+
data: ZodEffects<ZodString, string, string>;
|
|
27323
27436
|
/**
|
|
27324
27437
|
* The MIME type of the image. Different providers may support different image types.
|
|
27325
27438
|
*/
|
|
@@ -27334,7 +27447,7 @@ declare const CallToolResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
27334
27447
|
/**
|
|
27335
27448
|
* The base64-encoded image data.
|
|
27336
27449
|
*/
|
|
27337
|
-
data: ZodString
|
|
27450
|
+
data: ZodEffects<ZodString, string, string>;
|
|
27338
27451
|
/**
|
|
27339
27452
|
* The MIME type of the image. Different providers may support different image types.
|
|
27340
27453
|
*/
|
|
@@ -27349,7 +27462,7 @@ declare const CallToolResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
27349
27462
|
/**
|
|
27350
27463
|
* The base64-encoded audio data.
|
|
27351
27464
|
*/
|
|
27352
|
-
data: ZodString
|
|
27465
|
+
data: ZodEffects<ZodString, string, string>;
|
|
27353
27466
|
/**
|
|
27354
27467
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
27355
27468
|
*/
|
|
@@ -27364,7 +27477,7 @@ declare const CallToolResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
27364
27477
|
/**
|
|
27365
27478
|
* The base64-encoded audio data.
|
|
27366
27479
|
*/
|
|
27367
|
-
data: ZodString
|
|
27480
|
+
data: ZodEffects<ZodString, string, string>;
|
|
27368
27481
|
/**
|
|
27369
27482
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
27370
27483
|
*/
|
|
@@ -27379,7 +27492,7 @@ declare const CallToolResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
27379
27492
|
/**
|
|
27380
27493
|
* The base64-encoded audio data.
|
|
27381
27494
|
*/
|
|
27382
|
-
data: ZodString
|
|
27495
|
+
data: ZodEffects<ZodString, string, string>;
|
|
27383
27496
|
/**
|
|
27384
27497
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
27385
27498
|
*/
|
|
@@ -27568,7 +27681,7 @@ declare const CallToolResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
27568
27681
|
/**
|
|
27569
27682
|
* A base64-encoded string representing the binary data of the item.
|
|
27570
27683
|
*/
|
|
27571
|
-
blob: ZodString
|
|
27684
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
27572
27685
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
27573
27686
|
/**
|
|
27574
27687
|
* The URI of this resource.
|
|
@@ -27587,7 +27700,7 @@ declare const CallToolResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
27587
27700
|
/**
|
|
27588
27701
|
* A base64-encoded string representing the binary data of the item.
|
|
27589
27702
|
*/
|
|
27590
|
-
blob: ZodString
|
|
27703
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
27591
27704
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
27592
27705
|
/**
|
|
27593
27706
|
* The URI of this resource.
|
|
@@ -27606,7 +27719,7 @@ declare const CallToolResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
27606
27719
|
/**
|
|
27607
27720
|
* A base64-encoded string representing the binary data of the item.
|
|
27608
27721
|
*/
|
|
27609
|
-
blob: ZodString
|
|
27722
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
27610
27723
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
27611
27724
|
/**
|
|
27612
27725
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -27690,7 +27803,7 @@ declare const CallToolResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
27690
27803
|
/**
|
|
27691
27804
|
* A base64-encoded string representing the binary data of the item.
|
|
27692
27805
|
*/
|
|
27693
|
-
blob: ZodString
|
|
27806
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
27694
27807
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
27695
27808
|
/**
|
|
27696
27809
|
* The URI of this resource.
|
|
@@ -27709,7 +27822,7 @@ declare const CallToolResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
27709
27822
|
/**
|
|
27710
27823
|
* A base64-encoded string representing the binary data of the item.
|
|
27711
27824
|
*/
|
|
27712
|
-
blob: ZodString
|
|
27825
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
27713
27826
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
27714
27827
|
/**
|
|
27715
27828
|
* The URI of this resource.
|
|
@@ -27728,7 +27841,7 @@ declare const CallToolResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
27728
27841
|
/**
|
|
27729
27842
|
* A base64-encoded string representing the binary data of the item.
|
|
27730
27843
|
*/
|
|
27731
|
-
blob: ZodString
|
|
27844
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
27732
27845
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
27733
27846
|
/**
|
|
27734
27847
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -27812,7 +27925,7 @@ declare const CallToolResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
27812
27925
|
/**
|
|
27813
27926
|
* A base64-encoded string representing the binary data of the item.
|
|
27814
27927
|
*/
|
|
27815
|
-
blob: ZodString
|
|
27928
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
27816
27929
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
27817
27930
|
/**
|
|
27818
27931
|
* The URI of this resource.
|
|
@@ -27831,7 +27944,7 @@ declare const CallToolResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
27831
27944
|
/**
|
|
27832
27945
|
* A base64-encoded string representing the binary data of the item.
|
|
27833
27946
|
*/
|
|
27834
|
-
blob: ZodString
|
|
27947
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
27835
27948
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
27836
27949
|
/**
|
|
27837
27950
|
* The URI of this resource.
|
|
@@ -27850,7 +27963,7 @@ declare const CallToolResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
27850
27963
|
/**
|
|
27851
27964
|
* A base64-encoded string representing the binary data of the item.
|
|
27852
27965
|
*/
|
|
27853
|
-
blob: ZodString
|
|
27966
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
27854
27967
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
27855
27968
|
/**
|
|
27856
27969
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -27930,7 +28043,7 @@ declare const CallToolResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
27930
28043
|
/**
|
|
27931
28044
|
* The base64-encoded image data.
|
|
27932
28045
|
*/
|
|
27933
|
-
data: ZodString
|
|
28046
|
+
data: ZodEffects<ZodString, string, string>;
|
|
27934
28047
|
/**
|
|
27935
28048
|
* The MIME type of the image. Different providers may support different image types.
|
|
27936
28049
|
*/
|
|
@@ -27945,7 +28058,7 @@ declare const CallToolResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
27945
28058
|
/**
|
|
27946
28059
|
* The base64-encoded image data.
|
|
27947
28060
|
*/
|
|
27948
|
-
data: ZodString
|
|
28061
|
+
data: ZodEffects<ZodString, string, string>;
|
|
27949
28062
|
/**
|
|
27950
28063
|
* The MIME type of the image. Different providers may support different image types.
|
|
27951
28064
|
*/
|
|
@@ -27960,7 +28073,7 @@ declare const CallToolResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
27960
28073
|
/**
|
|
27961
28074
|
* The base64-encoded image data.
|
|
27962
28075
|
*/
|
|
27963
|
-
data: ZodString
|
|
28076
|
+
data: ZodEffects<ZodString, string, string>;
|
|
27964
28077
|
/**
|
|
27965
28078
|
* The MIME type of the image. Different providers may support different image types.
|
|
27966
28079
|
*/
|
|
@@ -27975,7 +28088,7 @@ declare const CallToolResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
27975
28088
|
/**
|
|
27976
28089
|
* The base64-encoded audio data.
|
|
27977
28090
|
*/
|
|
27978
|
-
data: ZodString
|
|
28091
|
+
data: ZodEffects<ZodString, string, string>;
|
|
27979
28092
|
/**
|
|
27980
28093
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
27981
28094
|
*/
|
|
@@ -27990,7 +28103,7 @@ declare const CallToolResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
27990
28103
|
/**
|
|
27991
28104
|
* The base64-encoded audio data.
|
|
27992
28105
|
*/
|
|
27993
|
-
data: ZodString
|
|
28106
|
+
data: ZodEffects<ZodString, string, string>;
|
|
27994
28107
|
/**
|
|
27995
28108
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
27996
28109
|
*/
|
|
@@ -28005,7 +28118,7 @@ declare const CallToolResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
28005
28118
|
/**
|
|
28006
28119
|
* The base64-encoded audio data.
|
|
28007
28120
|
*/
|
|
28008
|
-
data: ZodString
|
|
28121
|
+
data: ZodEffects<ZodString, string, string>;
|
|
28009
28122
|
/**
|
|
28010
28123
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
28011
28124
|
*/
|
|
@@ -28194,7 +28307,7 @@ declare const CallToolResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
28194
28307
|
/**
|
|
28195
28308
|
* A base64-encoded string representing the binary data of the item.
|
|
28196
28309
|
*/
|
|
28197
|
-
blob: ZodString
|
|
28310
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
28198
28311
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
28199
28312
|
/**
|
|
28200
28313
|
* The URI of this resource.
|
|
@@ -28213,7 +28326,7 @@ declare const CallToolResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
28213
28326
|
/**
|
|
28214
28327
|
* A base64-encoded string representing the binary data of the item.
|
|
28215
28328
|
*/
|
|
28216
|
-
blob: ZodString
|
|
28329
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
28217
28330
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
28218
28331
|
/**
|
|
28219
28332
|
* The URI of this resource.
|
|
@@ -28232,7 +28345,7 @@ declare const CallToolResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
28232
28345
|
/**
|
|
28233
28346
|
* A base64-encoded string representing the binary data of the item.
|
|
28234
28347
|
*/
|
|
28235
|
-
blob: ZodString
|
|
28348
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
28236
28349
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
28237
28350
|
/**
|
|
28238
28351
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -28316,7 +28429,7 @@ declare const CallToolResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
28316
28429
|
/**
|
|
28317
28430
|
* A base64-encoded string representing the binary data of the item.
|
|
28318
28431
|
*/
|
|
28319
|
-
blob: ZodString
|
|
28432
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
28320
28433
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
28321
28434
|
/**
|
|
28322
28435
|
* The URI of this resource.
|
|
@@ -28335,7 +28448,7 @@ declare const CallToolResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
28335
28448
|
/**
|
|
28336
28449
|
* A base64-encoded string representing the binary data of the item.
|
|
28337
28450
|
*/
|
|
28338
|
-
blob: ZodString
|
|
28451
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
28339
28452
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
28340
28453
|
/**
|
|
28341
28454
|
* The URI of this resource.
|
|
@@ -28354,7 +28467,7 @@ declare const CallToolResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
28354
28467
|
/**
|
|
28355
28468
|
* A base64-encoded string representing the binary data of the item.
|
|
28356
28469
|
*/
|
|
28357
|
-
blob: ZodString
|
|
28470
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
28358
28471
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
28359
28472
|
/**
|
|
28360
28473
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -28438,7 +28551,7 @@ declare const CallToolResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
28438
28551
|
/**
|
|
28439
28552
|
* A base64-encoded string representing the binary data of the item.
|
|
28440
28553
|
*/
|
|
28441
|
-
blob: ZodString
|
|
28554
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
28442
28555
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
28443
28556
|
/**
|
|
28444
28557
|
* The URI of this resource.
|
|
@@ -28457,7 +28570,7 @@ declare const CallToolResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
28457
28570
|
/**
|
|
28458
28571
|
* A base64-encoded string representing the binary data of the item.
|
|
28459
28572
|
*/
|
|
28460
|
-
blob: ZodString
|
|
28573
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
28461
28574
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
28462
28575
|
/**
|
|
28463
28576
|
* The URI of this resource.
|
|
@@ -28476,7 +28589,7 @@ declare const CallToolResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
28476
28589
|
/**
|
|
28477
28590
|
* A base64-encoded string representing the binary data of the item.
|
|
28478
28591
|
*/
|
|
28479
|
-
blob: ZodString
|
|
28592
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
28480
28593
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
28481
28594
|
/**
|
|
28482
28595
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -28728,7 +28841,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
28728
28841
|
/**
|
|
28729
28842
|
* The base64-encoded image data.
|
|
28730
28843
|
*/
|
|
28731
|
-
data: ZodString
|
|
28844
|
+
data: ZodEffects<ZodString, string, string>;
|
|
28732
28845
|
/**
|
|
28733
28846
|
* The MIME type of the image. Different providers may support different image types.
|
|
28734
28847
|
*/
|
|
@@ -28743,7 +28856,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
28743
28856
|
/**
|
|
28744
28857
|
* The base64-encoded image data.
|
|
28745
28858
|
*/
|
|
28746
|
-
data: ZodString
|
|
28859
|
+
data: ZodEffects<ZodString, string, string>;
|
|
28747
28860
|
/**
|
|
28748
28861
|
* The MIME type of the image. Different providers may support different image types.
|
|
28749
28862
|
*/
|
|
@@ -28758,7 +28871,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
28758
28871
|
/**
|
|
28759
28872
|
* The base64-encoded image data.
|
|
28760
28873
|
*/
|
|
28761
|
-
data: ZodString
|
|
28874
|
+
data: ZodEffects<ZodString, string, string>;
|
|
28762
28875
|
/**
|
|
28763
28876
|
* The MIME type of the image. Different providers may support different image types.
|
|
28764
28877
|
*/
|
|
@@ -28773,7 +28886,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
28773
28886
|
/**
|
|
28774
28887
|
* The base64-encoded audio data.
|
|
28775
28888
|
*/
|
|
28776
|
-
data: ZodString
|
|
28889
|
+
data: ZodEffects<ZodString, string, string>;
|
|
28777
28890
|
/**
|
|
28778
28891
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
28779
28892
|
*/
|
|
@@ -28788,7 +28901,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
28788
28901
|
/**
|
|
28789
28902
|
* The base64-encoded audio data.
|
|
28790
28903
|
*/
|
|
28791
|
-
data: ZodString
|
|
28904
|
+
data: ZodEffects<ZodString, string, string>;
|
|
28792
28905
|
/**
|
|
28793
28906
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
28794
28907
|
*/
|
|
@@ -28803,7 +28916,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
28803
28916
|
/**
|
|
28804
28917
|
* The base64-encoded audio data.
|
|
28805
28918
|
*/
|
|
28806
|
-
data: ZodString
|
|
28919
|
+
data: ZodEffects<ZodString, string, string>;
|
|
28807
28920
|
/**
|
|
28808
28921
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
28809
28922
|
*/
|
|
@@ -28854,7 +28967,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
28854
28967
|
/**
|
|
28855
28968
|
* The base64-encoded image data.
|
|
28856
28969
|
*/
|
|
28857
|
-
data: ZodString
|
|
28970
|
+
data: ZodEffects<ZodString, string, string>;
|
|
28858
28971
|
/**
|
|
28859
28972
|
* The MIME type of the image. Different providers may support different image types.
|
|
28860
28973
|
*/
|
|
@@ -28869,7 +28982,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
28869
28982
|
/**
|
|
28870
28983
|
* The base64-encoded image data.
|
|
28871
28984
|
*/
|
|
28872
|
-
data: ZodString
|
|
28985
|
+
data: ZodEffects<ZodString, string, string>;
|
|
28873
28986
|
/**
|
|
28874
28987
|
* The MIME type of the image. Different providers may support different image types.
|
|
28875
28988
|
*/
|
|
@@ -28884,7 +28997,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
28884
28997
|
/**
|
|
28885
28998
|
* The base64-encoded image data.
|
|
28886
28999
|
*/
|
|
28887
|
-
data: ZodString
|
|
29000
|
+
data: ZodEffects<ZodString, string, string>;
|
|
28888
29001
|
/**
|
|
28889
29002
|
* The MIME type of the image. Different providers may support different image types.
|
|
28890
29003
|
*/
|
|
@@ -28899,7 +29012,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
28899
29012
|
/**
|
|
28900
29013
|
* The base64-encoded audio data.
|
|
28901
29014
|
*/
|
|
28902
|
-
data: ZodString
|
|
29015
|
+
data: ZodEffects<ZodString, string, string>;
|
|
28903
29016
|
/**
|
|
28904
29017
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
28905
29018
|
*/
|
|
@@ -28914,7 +29027,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
28914
29027
|
/**
|
|
28915
29028
|
* The base64-encoded audio data.
|
|
28916
29029
|
*/
|
|
28917
|
-
data: ZodString
|
|
29030
|
+
data: ZodEffects<ZodString, string, string>;
|
|
28918
29031
|
/**
|
|
28919
29032
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
28920
29033
|
*/
|
|
@@ -28929,7 +29042,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
28929
29042
|
/**
|
|
28930
29043
|
* The base64-encoded audio data.
|
|
28931
29044
|
*/
|
|
28932
|
-
data: ZodString
|
|
29045
|
+
data: ZodEffects<ZodString, string, string>;
|
|
28933
29046
|
/**
|
|
28934
29047
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
28935
29048
|
*/
|
|
@@ -28980,7 +29093,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
28980
29093
|
/**
|
|
28981
29094
|
* The base64-encoded image data.
|
|
28982
29095
|
*/
|
|
28983
|
-
data: ZodString
|
|
29096
|
+
data: ZodEffects<ZodString, string, string>;
|
|
28984
29097
|
/**
|
|
28985
29098
|
* The MIME type of the image. Different providers may support different image types.
|
|
28986
29099
|
*/
|
|
@@ -28995,7 +29108,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
28995
29108
|
/**
|
|
28996
29109
|
* The base64-encoded image data.
|
|
28997
29110
|
*/
|
|
28998
|
-
data: ZodString
|
|
29111
|
+
data: ZodEffects<ZodString, string, string>;
|
|
28999
29112
|
/**
|
|
29000
29113
|
* The MIME type of the image. Different providers may support different image types.
|
|
29001
29114
|
*/
|
|
@@ -29010,7 +29123,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
29010
29123
|
/**
|
|
29011
29124
|
* The base64-encoded image data.
|
|
29012
29125
|
*/
|
|
29013
|
-
data: ZodString
|
|
29126
|
+
data: ZodEffects<ZodString, string, string>;
|
|
29014
29127
|
/**
|
|
29015
29128
|
* The MIME type of the image. Different providers may support different image types.
|
|
29016
29129
|
*/
|
|
@@ -29025,7 +29138,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
29025
29138
|
/**
|
|
29026
29139
|
* The base64-encoded audio data.
|
|
29027
29140
|
*/
|
|
29028
|
-
data: ZodString
|
|
29141
|
+
data: ZodEffects<ZodString, string, string>;
|
|
29029
29142
|
/**
|
|
29030
29143
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
29031
29144
|
*/
|
|
@@ -29040,7 +29153,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
29040
29153
|
/**
|
|
29041
29154
|
* The base64-encoded audio data.
|
|
29042
29155
|
*/
|
|
29043
|
-
data: ZodString
|
|
29156
|
+
data: ZodEffects<ZodString, string, string>;
|
|
29044
29157
|
/**
|
|
29045
29158
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
29046
29159
|
*/
|
|
@@ -29055,7 +29168,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
29055
29168
|
/**
|
|
29056
29169
|
* The base64-encoded audio data.
|
|
29057
29170
|
*/
|
|
29058
|
-
data: ZodString
|
|
29171
|
+
data: ZodEffects<ZodString, string, string>;
|
|
29059
29172
|
/**
|
|
29060
29173
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
29061
29174
|
*/
|
|
@@ -29243,7 +29356,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
29243
29356
|
/**
|
|
29244
29357
|
* The base64-encoded image data.
|
|
29245
29358
|
*/
|
|
29246
|
-
data: ZodString
|
|
29359
|
+
data: ZodEffects<ZodString, string, string>;
|
|
29247
29360
|
/**
|
|
29248
29361
|
* The MIME type of the image. Different providers may support different image types.
|
|
29249
29362
|
*/
|
|
@@ -29258,7 +29371,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
29258
29371
|
/**
|
|
29259
29372
|
* The base64-encoded image data.
|
|
29260
29373
|
*/
|
|
29261
|
-
data: ZodString
|
|
29374
|
+
data: ZodEffects<ZodString, string, string>;
|
|
29262
29375
|
/**
|
|
29263
29376
|
* The MIME type of the image. Different providers may support different image types.
|
|
29264
29377
|
*/
|
|
@@ -29273,7 +29386,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
29273
29386
|
/**
|
|
29274
29387
|
* The base64-encoded image data.
|
|
29275
29388
|
*/
|
|
29276
|
-
data: ZodString
|
|
29389
|
+
data: ZodEffects<ZodString, string, string>;
|
|
29277
29390
|
/**
|
|
29278
29391
|
* The MIME type of the image. Different providers may support different image types.
|
|
29279
29392
|
*/
|
|
@@ -29288,7 +29401,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
29288
29401
|
/**
|
|
29289
29402
|
* The base64-encoded audio data.
|
|
29290
29403
|
*/
|
|
29291
|
-
data: ZodString
|
|
29404
|
+
data: ZodEffects<ZodString, string, string>;
|
|
29292
29405
|
/**
|
|
29293
29406
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
29294
29407
|
*/
|
|
@@ -29303,7 +29416,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
29303
29416
|
/**
|
|
29304
29417
|
* The base64-encoded audio data.
|
|
29305
29418
|
*/
|
|
29306
|
-
data: ZodString
|
|
29419
|
+
data: ZodEffects<ZodString, string, string>;
|
|
29307
29420
|
/**
|
|
29308
29421
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
29309
29422
|
*/
|
|
@@ -29318,7 +29431,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
29318
29431
|
/**
|
|
29319
29432
|
* The base64-encoded audio data.
|
|
29320
29433
|
*/
|
|
29321
|
-
data: ZodString
|
|
29434
|
+
data: ZodEffects<ZodString, string, string>;
|
|
29322
29435
|
/**
|
|
29323
29436
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
29324
29437
|
*/
|
|
@@ -29369,7 +29482,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
29369
29482
|
/**
|
|
29370
29483
|
* The base64-encoded image data.
|
|
29371
29484
|
*/
|
|
29372
|
-
data: ZodString
|
|
29485
|
+
data: ZodEffects<ZodString, string, string>;
|
|
29373
29486
|
/**
|
|
29374
29487
|
* The MIME type of the image. Different providers may support different image types.
|
|
29375
29488
|
*/
|
|
@@ -29384,7 +29497,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
29384
29497
|
/**
|
|
29385
29498
|
* The base64-encoded image data.
|
|
29386
29499
|
*/
|
|
29387
|
-
data: ZodString
|
|
29500
|
+
data: ZodEffects<ZodString, string, string>;
|
|
29388
29501
|
/**
|
|
29389
29502
|
* The MIME type of the image. Different providers may support different image types.
|
|
29390
29503
|
*/
|
|
@@ -29399,7 +29512,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
29399
29512
|
/**
|
|
29400
29513
|
* The base64-encoded image data.
|
|
29401
29514
|
*/
|
|
29402
|
-
data: ZodString
|
|
29515
|
+
data: ZodEffects<ZodString, string, string>;
|
|
29403
29516
|
/**
|
|
29404
29517
|
* The MIME type of the image. Different providers may support different image types.
|
|
29405
29518
|
*/
|
|
@@ -29414,7 +29527,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
29414
29527
|
/**
|
|
29415
29528
|
* The base64-encoded audio data.
|
|
29416
29529
|
*/
|
|
29417
|
-
data: ZodString
|
|
29530
|
+
data: ZodEffects<ZodString, string, string>;
|
|
29418
29531
|
/**
|
|
29419
29532
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
29420
29533
|
*/
|
|
@@ -29429,7 +29542,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
29429
29542
|
/**
|
|
29430
29543
|
* The base64-encoded audio data.
|
|
29431
29544
|
*/
|
|
29432
|
-
data: ZodString
|
|
29545
|
+
data: ZodEffects<ZodString, string, string>;
|
|
29433
29546
|
/**
|
|
29434
29547
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
29435
29548
|
*/
|
|
@@ -29444,7 +29557,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
29444
29557
|
/**
|
|
29445
29558
|
* The base64-encoded audio data.
|
|
29446
29559
|
*/
|
|
29447
|
-
data: ZodString
|
|
29560
|
+
data: ZodEffects<ZodString, string, string>;
|
|
29448
29561
|
/**
|
|
29449
29562
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
29450
29563
|
*/
|
|
@@ -29495,7 +29608,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
29495
29608
|
/**
|
|
29496
29609
|
* The base64-encoded image data.
|
|
29497
29610
|
*/
|
|
29498
|
-
data: ZodString
|
|
29611
|
+
data: ZodEffects<ZodString, string, string>;
|
|
29499
29612
|
/**
|
|
29500
29613
|
* The MIME type of the image. Different providers may support different image types.
|
|
29501
29614
|
*/
|
|
@@ -29510,7 +29623,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
29510
29623
|
/**
|
|
29511
29624
|
* The base64-encoded image data.
|
|
29512
29625
|
*/
|
|
29513
|
-
data: ZodString
|
|
29626
|
+
data: ZodEffects<ZodString, string, string>;
|
|
29514
29627
|
/**
|
|
29515
29628
|
* The MIME type of the image. Different providers may support different image types.
|
|
29516
29629
|
*/
|
|
@@ -29525,7 +29638,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
29525
29638
|
/**
|
|
29526
29639
|
* The base64-encoded image data.
|
|
29527
29640
|
*/
|
|
29528
|
-
data: ZodString
|
|
29641
|
+
data: ZodEffects<ZodString, string, string>;
|
|
29529
29642
|
/**
|
|
29530
29643
|
* The MIME type of the image. Different providers may support different image types.
|
|
29531
29644
|
*/
|
|
@@ -29540,7 +29653,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
29540
29653
|
/**
|
|
29541
29654
|
* The base64-encoded audio data.
|
|
29542
29655
|
*/
|
|
29543
|
-
data: ZodString
|
|
29656
|
+
data: ZodEffects<ZodString, string, string>;
|
|
29544
29657
|
/**
|
|
29545
29658
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
29546
29659
|
*/
|
|
@@ -29555,7 +29668,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
29555
29668
|
/**
|
|
29556
29669
|
* The base64-encoded audio data.
|
|
29557
29670
|
*/
|
|
29558
|
-
data: ZodString
|
|
29671
|
+
data: ZodEffects<ZodString, string, string>;
|
|
29559
29672
|
/**
|
|
29560
29673
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
29561
29674
|
*/
|
|
@@ -29570,7 +29683,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
29570
29683
|
/**
|
|
29571
29684
|
* The base64-encoded audio data.
|
|
29572
29685
|
*/
|
|
29573
|
-
data: ZodString
|
|
29686
|
+
data: ZodEffects<ZodString, string, string>;
|
|
29574
29687
|
/**
|
|
29575
29688
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
29576
29689
|
*/
|
|
@@ -29758,7 +29871,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
29758
29871
|
/**
|
|
29759
29872
|
* The base64-encoded image data.
|
|
29760
29873
|
*/
|
|
29761
|
-
data: ZodString
|
|
29874
|
+
data: ZodEffects<ZodString, string, string>;
|
|
29762
29875
|
/**
|
|
29763
29876
|
* The MIME type of the image. Different providers may support different image types.
|
|
29764
29877
|
*/
|
|
@@ -29773,7 +29886,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
29773
29886
|
/**
|
|
29774
29887
|
* The base64-encoded image data.
|
|
29775
29888
|
*/
|
|
29776
|
-
data: ZodString
|
|
29889
|
+
data: ZodEffects<ZodString, string, string>;
|
|
29777
29890
|
/**
|
|
29778
29891
|
* The MIME type of the image. Different providers may support different image types.
|
|
29779
29892
|
*/
|
|
@@ -29788,7 +29901,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
29788
29901
|
/**
|
|
29789
29902
|
* The base64-encoded image data.
|
|
29790
29903
|
*/
|
|
29791
|
-
data: ZodString
|
|
29904
|
+
data: ZodEffects<ZodString, string, string>;
|
|
29792
29905
|
/**
|
|
29793
29906
|
* The MIME type of the image. Different providers may support different image types.
|
|
29794
29907
|
*/
|
|
@@ -29803,7 +29916,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
29803
29916
|
/**
|
|
29804
29917
|
* The base64-encoded audio data.
|
|
29805
29918
|
*/
|
|
29806
|
-
data: ZodString
|
|
29919
|
+
data: ZodEffects<ZodString, string, string>;
|
|
29807
29920
|
/**
|
|
29808
29921
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
29809
29922
|
*/
|
|
@@ -29818,7 +29931,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
29818
29931
|
/**
|
|
29819
29932
|
* The base64-encoded audio data.
|
|
29820
29933
|
*/
|
|
29821
|
-
data: ZodString
|
|
29934
|
+
data: ZodEffects<ZodString, string, string>;
|
|
29822
29935
|
/**
|
|
29823
29936
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
29824
29937
|
*/
|
|
@@ -29833,7 +29946,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
29833
29946
|
/**
|
|
29834
29947
|
* The base64-encoded audio data.
|
|
29835
29948
|
*/
|
|
29836
|
-
data: ZodString
|
|
29949
|
+
data: ZodEffects<ZodString, string, string>;
|
|
29837
29950
|
/**
|
|
29838
29951
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
29839
29952
|
*/
|
|
@@ -29884,7 +29997,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
29884
29997
|
/**
|
|
29885
29998
|
* The base64-encoded image data.
|
|
29886
29999
|
*/
|
|
29887
|
-
data: ZodString
|
|
30000
|
+
data: ZodEffects<ZodString, string, string>;
|
|
29888
30001
|
/**
|
|
29889
30002
|
* The MIME type of the image. Different providers may support different image types.
|
|
29890
30003
|
*/
|
|
@@ -29899,7 +30012,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
29899
30012
|
/**
|
|
29900
30013
|
* The base64-encoded image data.
|
|
29901
30014
|
*/
|
|
29902
|
-
data: ZodString
|
|
30015
|
+
data: ZodEffects<ZodString, string, string>;
|
|
29903
30016
|
/**
|
|
29904
30017
|
* The MIME type of the image. Different providers may support different image types.
|
|
29905
30018
|
*/
|
|
@@ -29914,7 +30027,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
29914
30027
|
/**
|
|
29915
30028
|
* The base64-encoded image data.
|
|
29916
30029
|
*/
|
|
29917
|
-
data: ZodString
|
|
30030
|
+
data: ZodEffects<ZodString, string, string>;
|
|
29918
30031
|
/**
|
|
29919
30032
|
* The MIME type of the image. Different providers may support different image types.
|
|
29920
30033
|
*/
|
|
@@ -29929,7 +30042,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
29929
30042
|
/**
|
|
29930
30043
|
* The base64-encoded audio data.
|
|
29931
30044
|
*/
|
|
29932
|
-
data: ZodString
|
|
30045
|
+
data: ZodEffects<ZodString, string, string>;
|
|
29933
30046
|
/**
|
|
29934
30047
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
29935
30048
|
*/
|
|
@@ -29944,7 +30057,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
29944
30057
|
/**
|
|
29945
30058
|
* The base64-encoded audio data.
|
|
29946
30059
|
*/
|
|
29947
|
-
data: ZodString
|
|
30060
|
+
data: ZodEffects<ZodString, string, string>;
|
|
29948
30061
|
/**
|
|
29949
30062
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
29950
30063
|
*/
|
|
@@ -29959,7 +30072,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
29959
30072
|
/**
|
|
29960
30073
|
* The base64-encoded audio data.
|
|
29961
30074
|
*/
|
|
29962
|
-
data: ZodString
|
|
30075
|
+
data: ZodEffects<ZodString, string, string>;
|
|
29963
30076
|
/**
|
|
29964
30077
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
29965
30078
|
*/
|
|
@@ -30010,7 +30123,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
30010
30123
|
/**
|
|
30011
30124
|
* The base64-encoded image data.
|
|
30012
30125
|
*/
|
|
30013
|
-
data: ZodString
|
|
30126
|
+
data: ZodEffects<ZodString, string, string>;
|
|
30014
30127
|
/**
|
|
30015
30128
|
* The MIME type of the image. Different providers may support different image types.
|
|
30016
30129
|
*/
|
|
@@ -30025,7 +30138,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
30025
30138
|
/**
|
|
30026
30139
|
* The base64-encoded image data.
|
|
30027
30140
|
*/
|
|
30028
|
-
data: ZodString
|
|
30141
|
+
data: ZodEffects<ZodString, string, string>;
|
|
30029
30142
|
/**
|
|
30030
30143
|
* The MIME type of the image. Different providers may support different image types.
|
|
30031
30144
|
*/
|
|
@@ -30040,7 +30153,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
30040
30153
|
/**
|
|
30041
30154
|
* The base64-encoded image data.
|
|
30042
30155
|
*/
|
|
30043
|
-
data: ZodString
|
|
30156
|
+
data: ZodEffects<ZodString, string, string>;
|
|
30044
30157
|
/**
|
|
30045
30158
|
* The MIME type of the image. Different providers may support different image types.
|
|
30046
30159
|
*/
|
|
@@ -30055,7 +30168,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
30055
30168
|
/**
|
|
30056
30169
|
* The base64-encoded audio data.
|
|
30057
30170
|
*/
|
|
30058
|
-
data: ZodString
|
|
30171
|
+
data: ZodEffects<ZodString, string, string>;
|
|
30059
30172
|
/**
|
|
30060
30173
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
30061
30174
|
*/
|
|
@@ -30070,7 +30183,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
30070
30183
|
/**
|
|
30071
30184
|
* The base64-encoded audio data.
|
|
30072
30185
|
*/
|
|
30073
|
-
data: ZodString
|
|
30186
|
+
data: ZodEffects<ZodString, string, string>;
|
|
30074
30187
|
/**
|
|
30075
30188
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
30076
30189
|
*/
|
|
@@ -30085,7 +30198,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
30085
30198
|
/**
|
|
30086
30199
|
* The base64-encoded audio data.
|
|
30087
30200
|
*/
|
|
30088
|
-
data: ZodString
|
|
30201
|
+
data: ZodEffects<ZodString, string, string>;
|
|
30089
30202
|
/**
|
|
30090
30203
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
30091
30204
|
*/
|
|
@@ -30258,7 +30371,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
30258
30371
|
/**
|
|
30259
30372
|
* The base64-encoded image data.
|
|
30260
30373
|
*/
|
|
30261
|
-
data: ZodString
|
|
30374
|
+
data: ZodEffects<ZodString, string, string>;
|
|
30262
30375
|
/**
|
|
30263
30376
|
* The MIME type of the image. Different providers may support different image types.
|
|
30264
30377
|
*/
|
|
@@ -30273,7 +30386,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
30273
30386
|
/**
|
|
30274
30387
|
* The base64-encoded image data.
|
|
30275
30388
|
*/
|
|
30276
|
-
data: ZodString
|
|
30389
|
+
data: ZodEffects<ZodString, string, string>;
|
|
30277
30390
|
/**
|
|
30278
30391
|
* The MIME type of the image. Different providers may support different image types.
|
|
30279
30392
|
*/
|
|
@@ -30288,7 +30401,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
30288
30401
|
/**
|
|
30289
30402
|
* The base64-encoded image data.
|
|
30290
30403
|
*/
|
|
30291
|
-
data: ZodString
|
|
30404
|
+
data: ZodEffects<ZodString, string, string>;
|
|
30292
30405
|
/**
|
|
30293
30406
|
* The MIME type of the image. Different providers may support different image types.
|
|
30294
30407
|
*/
|
|
@@ -30303,7 +30416,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
30303
30416
|
/**
|
|
30304
30417
|
* The base64-encoded audio data.
|
|
30305
30418
|
*/
|
|
30306
|
-
data: ZodString
|
|
30419
|
+
data: ZodEffects<ZodString, string, string>;
|
|
30307
30420
|
/**
|
|
30308
30421
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
30309
30422
|
*/
|
|
@@ -30318,7 +30431,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
30318
30431
|
/**
|
|
30319
30432
|
* The base64-encoded audio data.
|
|
30320
30433
|
*/
|
|
30321
|
-
data: ZodString
|
|
30434
|
+
data: ZodEffects<ZodString, string, string>;
|
|
30322
30435
|
/**
|
|
30323
30436
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
30324
30437
|
*/
|
|
@@ -30333,7 +30446,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
30333
30446
|
/**
|
|
30334
30447
|
* The base64-encoded audio data.
|
|
30335
30448
|
*/
|
|
30336
|
-
data: ZodString
|
|
30449
|
+
data: ZodEffects<ZodString, string, string>;
|
|
30337
30450
|
/**
|
|
30338
30451
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
30339
30452
|
*/
|
|
@@ -30436,7 +30549,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
30436
30549
|
/**
|
|
30437
30550
|
* The base64-encoded image data.
|
|
30438
30551
|
*/
|
|
30439
|
-
data: ZodString
|
|
30552
|
+
data: ZodEffects<ZodString, string, string>;
|
|
30440
30553
|
/**
|
|
30441
30554
|
* The MIME type of the image. Different providers may support different image types.
|
|
30442
30555
|
*/
|
|
@@ -30451,7 +30564,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
30451
30564
|
/**
|
|
30452
30565
|
* The base64-encoded image data.
|
|
30453
30566
|
*/
|
|
30454
|
-
data: ZodString
|
|
30567
|
+
data: ZodEffects<ZodString, string, string>;
|
|
30455
30568
|
/**
|
|
30456
30569
|
* The MIME type of the image. Different providers may support different image types.
|
|
30457
30570
|
*/
|
|
@@ -30466,7 +30579,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
30466
30579
|
/**
|
|
30467
30580
|
* The base64-encoded image data.
|
|
30468
30581
|
*/
|
|
30469
|
-
data: ZodString
|
|
30582
|
+
data: ZodEffects<ZodString, string, string>;
|
|
30470
30583
|
/**
|
|
30471
30584
|
* The MIME type of the image. Different providers may support different image types.
|
|
30472
30585
|
*/
|
|
@@ -30481,7 +30594,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
30481
30594
|
/**
|
|
30482
30595
|
* The base64-encoded audio data.
|
|
30483
30596
|
*/
|
|
30484
|
-
data: ZodString
|
|
30597
|
+
data: ZodEffects<ZodString, string, string>;
|
|
30485
30598
|
/**
|
|
30486
30599
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
30487
30600
|
*/
|
|
@@ -30496,7 +30609,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
30496
30609
|
/**
|
|
30497
30610
|
* The base64-encoded audio data.
|
|
30498
30611
|
*/
|
|
30499
|
-
data: ZodString
|
|
30612
|
+
data: ZodEffects<ZodString, string, string>;
|
|
30500
30613
|
/**
|
|
30501
30614
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
30502
30615
|
*/
|
|
@@ -30511,7 +30624,7 @@ declare const CreateMessageRequestSchema: ZodObject<objectUtil.extendShape<{
|
|
|
30511
30624
|
/**
|
|
30512
30625
|
* The base64-encoded audio data.
|
|
30513
30626
|
*/
|
|
30514
|
-
data: ZodString
|
|
30627
|
+
data: ZodEffects<ZodString, string, string>;
|
|
30515
30628
|
/**
|
|
30516
30629
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
30517
30630
|
*/
|
|
@@ -31498,7 +31611,7 @@ declare const ElicitResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
31498
31611
|
/**
|
|
31499
31612
|
* The user's response action.
|
|
31500
31613
|
*/
|
|
31501
|
-
action: ZodEnum<["accept", "
|
|
31614
|
+
action: ZodEnum<["accept", "decline", "cancel"]>;
|
|
31502
31615
|
/**
|
|
31503
31616
|
* The collected user input content (only present if action is "accept").
|
|
31504
31617
|
*/
|
|
@@ -31513,7 +31626,7 @@ declare const ElicitResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
31513
31626
|
/**
|
|
31514
31627
|
* The user's response action.
|
|
31515
31628
|
*/
|
|
31516
|
-
action: ZodEnum<["accept", "
|
|
31629
|
+
action: ZodEnum<["accept", "decline", "cancel"]>;
|
|
31517
31630
|
/**
|
|
31518
31631
|
* The collected user input content (only present if action is "accept").
|
|
31519
31632
|
*/
|
|
@@ -31528,7 +31641,7 @@ declare const ElicitResultSchema: ZodObject<objectUtil.extendShape<{
|
|
|
31528
31641
|
/**
|
|
31529
31642
|
* The user's response action.
|
|
31530
31643
|
*/
|
|
31531
|
-
action: ZodEnum<["accept", "
|
|
31644
|
+
action: ZodEnum<["accept", "decline", "cancel"]>;
|
|
31532
31645
|
/**
|
|
31533
31646
|
* The collected user input content (only present if action is "accept").
|
|
31534
31647
|
*/
|
|
@@ -31844,7 +31957,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
31844
31957
|
/**
|
|
31845
31958
|
* The base64-encoded image data.
|
|
31846
31959
|
*/
|
|
31847
|
-
data: ZodString
|
|
31960
|
+
data: ZodEffects<ZodString, string, string>;
|
|
31848
31961
|
/**
|
|
31849
31962
|
* The MIME type of the image. Different providers may support different image types.
|
|
31850
31963
|
*/
|
|
@@ -31859,7 +31972,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
31859
31972
|
/**
|
|
31860
31973
|
* The base64-encoded image data.
|
|
31861
31974
|
*/
|
|
31862
|
-
data: ZodString
|
|
31975
|
+
data: ZodEffects<ZodString, string, string>;
|
|
31863
31976
|
/**
|
|
31864
31977
|
* The MIME type of the image. Different providers may support different image types.
|
|
31865
31978
|
*/
|
|
@@ -31874,7 +31987,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
31874
31987
|
/**
|
|
31875
31988
|
* The base64-encoded image data.
|
|
31876
31989
|
*/
|
|
31877
|
-
data: ZodString
|
|
31990
|
+
data: ZodEffects<ZodString, string, string>;
|
|
31878
31991
|
/**
|
|
31879
31992
|
* The MIME type of the image. Different providers may support different image types.
|
|
31880
31993
|
*/
|
|
@@ -31889,7 +32002,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
31889
32002
|
/**
|
|
31890
32003
|
* The base64-encoded audio data.
|
|
31891
32004
|
*/
|
|
31892
|
-
data: ZodString
|
|
32005
|
+
data: ZodEffects<ZodString, string, string>;
|
|
31893
32006
|
/**
|
|
31894
32007
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
31895
32008
|
*/
|
|
@@ -31904,7 +32017,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
31904
32017
|
/**
|
|
31905
32018
|
* The base64-encoded audio data.
|
|
31906
32019
|
*/
|
|
31907
|
-
data: ZodString
|
|
32020
|
+
data: ZodEffects<ZodString, string, string>;
|
|
31908
32021
|
/**
|
|
31909
32022
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
31910
32023
|
*/
|
|
@@ -31919,7 +32032,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
31919
32032
|
/**
|
|
31920
32033
|
* The base64-encoded audio data.
|
|
31921
32034
|
*/
|
|
31922
|
-
data: ZodString
|
|
32035
|
+
data: ZodEffects<ZodString, string, string>;
|
|
31923
32036
|
/**
|
|
31924
32037
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
31925
32038
|
*/
|
|
@@ -31970,7 +32083,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
31970
32083
|
/**
|
|
31971
32084
|
* The base64-encoded image data.
|
|
31972
32085
|
*/
|
|
31973
|
-
data: ZodString
|
|
32086
|
+
data: ZodEffects<ZodString, string, string>;
|
|
31974
32087
|
/**
|
|
31975
32088
|
* The MIME type of the image. Different providers may support different image types.
|
|
31976
32089
|
*/
|
|
@@ -31985,7 +32098,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
31985
32098
|
/**
|
|
31986
32099
|
* The base64-encoded image data.
|
|
31987
32100
|
*/
|
|
31988
|
-
data: ZodString
|
|
32101
|
+
data: ZodEffects<ZodString, string, string>;
|
|
31989
32102
|
/**
|
|
31990
32103
|
* The MIME type of the image. Different providers may support different image types.
|
|
31991
32104
|
*/
|
|
@@ -32000,7 +32113,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
32000
32113
|
/**
|
|
32001
32114
|
* The base64-encoded image data.
|
|
32002
32115
|
*/
|
|
32003
|
-
data: ZodString
|
|
32116
|
+
data: ZodEffects<ZodString, string, string>;
|
|
32004
32117
|
/**
|
|
32005
32118
|
* The MIME type of the image. Different providers may support different image types.
|
|
32006
32119
|
*/
|
|
@@ -32015,7 +32128,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
32015
32128
|
/**
|
|
32016
32129
|
* The base64-encoded audio data.
|
|
32017
32130
|
*/
|
|
32018
|
-
data: ZodString
|
|
32131
|
+
data: ZodEffects<ZodString, string, string>;
|
|
32019
32132
|
/**
|
|
32020
32133
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
32021
32134
|
*/
|
|
@@ -32030,7 +32143,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
32030
32143
|
/**
|
|
32031
32144
|
* The base64-encoded audio data.
|
|
32032
32145
|
*/
|
|
32033
|
-
data: ZodString
|
|
32146
|
+
data: ZodEffects<ZodString, string, string>;
|
|
32034
32147
|
/**
|
|
32035
32148
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
32036
32149
|
*/
|
|
@@ -32045,7 +32158,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
32045
32158
|
/**
|
|
32046
32159
|
* The base64-encoded audio data.
|
|
32047
32160
|
*/
|
|
32048
|
-
data: ZodString
|
|
32161
|
+
data: ZodEffects<ZodString, string, string>;
|
|
32049
32162
|
/**
|
|
32050
32163
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
32051
32164
|
*/
|
|
@@ -32096,7 +32209,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
32096
32209
|
/**
|
|
32097
32210
|
* The base64-encoded image data.
|
|
32098
32211
|
*/
|
|
32099
|
-
data: ZodString
|
|
32212
|
+
data: ZodEffects<ZodString, string, string>;
|
|
32100
32213
|
/**
|
|
32101
32214
|
* The MIME type of the image. Different providers may support different image types.
|
|
32102
32215
|
*/
|
|
@@ -32111,7 +32224,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
32111
32224
|
/**
|
|
32112
32225
|
* The base64-encoded image data.
|
|
32113
32226
|
*/
|
|
32114
|
-
data: ZodString
|
|
32227
|
+
data: ZodEffects<ZodString, string, string>;
|
|
32115
32228
|
/**
|
|
32116
32229
|
* The MIME type of the image. Different providers may support different image types.
|
|
32117
32230
|
*/
|
|
@@ -32126,7 +32239,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
32126
32239
|
/**
|
|
32127
32240
|
* The base64-encoded image data.
|
|
32128
32241
|
*/
|
|
32129
|
-
data: ZodString
|
|
32242
|
+
data: ZodEffects<ZodString, string, string>;
|
|
32130
32243
|
/**
|
|
32131
32244
|
* The MIME type of the image. Different providers may support different image types.
|
|
32132
32245
|
*/
|
|
@@ -32141,7 +32254,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
32141
32254
|
/**
|
|
32142
32255
|
* The base64-encoded audio data.
|
|
32143
32256
|
*/
|
|
32144
|
-
data: ZodString
|
|
32257
|
+
data: ZodEffects<ZodString, string, string>;
|
|
32145
32258
|
/**
|
|
32146
32259
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
32147
32260
|
*/
|
|
@@ -32156,7 +32269,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
32156
32269
|
/**
|
|
32157
32270
|
* The base64-encoded audio data.
|
|
32158
32271
|
*/
|
|
32159
|
-
data: ZodString
|
|
32272
|
+
data: ZodEffects<ZodString, string, string>;
|
|
32160
32273
|
/**
|
|
32161
32274
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
32162
32275
|
*/
|
|
@@ -32171,7 +32284,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
32171
32284
|
/**
|
|
32172
32285
|
* The base64-encoded audio data.
|
|
32173
32286
|
*/
|
|
32174
|
-
data: ZodString
|
|
32287
|
+
data: ZodEffects<ZodString, string, string>;
|
|
32175
32288
|
/**
|
|
32176
32289
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
32177
32290
|
*/
|
|
@@ -32359,7 +32472,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
32359
32472
|
/**
|
|
32360
32473
|
* The base64-encoded image data.
|
|
32361
32474
|
*/
|
|
32362
|
-
data: ZodString
|
|
32475
|
+
data: ZodEffects<ZodString, string, string>;
|
|
32363
32476
|
/**
|
|
32364
32477
|
* The MIME type of the image. Different providers may support different image types.
|
|
32365
32478
|
*/
|
|
@@ -32374,7 +32487,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
32374
32487
|
/**
|
|
32375
32488
|
* The base64-encoded image data.
|
|
32376
32489
|
*/
|
|
32377
|
-
data: ZodString
|
|
32490
|
+
data: ZodEffects<ZodString, string, string>;
|
|
32378
32491
|
/**
|
|
32379
32492
|
* The MIME type of the image. Different providers may support different image types.
|
|
32380
32493
|
*/
|
|
@@ -32389,7 +32502,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
32389
32502
|
/**
|
|
32390
32503
|
* The base64-encoded image data.
|
|
32391
32504
|
*/
|
|
32392
|
-
data: ZodString
|
|
32505
|
+
data: ZodEffects<ZodString, string, string>;
|
|
32393
32506
|
/**
|
|
32394
32507
|
* The MIME type of the image. Different providers may support different image types.
|
|
32395
32508
|
*/
|
|
@@ -32404,7 +32517,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
32404
32517
|
/**
|
|
32405
32518
|
* The base64-encoded audio data.
|
|
32406
32519
|
*/
|
|
32407
|
-
data: ZodString
|
|
32520
|
+
data: ZodEffects<ZodString, string, string>;
|
|
32408
32521
|
/**
|
|
32409
32522
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
32410
32523
|
*/
|
|
@@ -32419,7 +32532,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
32419
32532
|
/**
|
|
32420
32533
|
* The base64-encoded audio data.
|
|
32421
32534
|
*/
|
|
32422
|
-
data: ZodString
|
|
32535
|
+
data: ZodEffects<ZodString, string, string>;
|
|
32423
32536
|
/**
|
|
32424
32537
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
32425
32538
|
*/
|
|
@@ -32434,7 +32547,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
32434
32547
|
/**
|
|
32435
32548
|
* The base64-encoded audio data.
|
|
32436
32549
|
*/
|
|
32437
|
-
data: ZodString
|
|
32550
|
+
data: ZodEffects<ZodString, string, string>;
|
|
32438
32551
|
/**
|
|
32439
32552
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
32440
32553
|
*/
|
|
@@ -32485,7 +32598,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
32485
32598
|
/**
|
|
32486
32599
|
* The base64-encoded image data.
|
|
32487
32600
|
*/
|
|
32488
|
-
data: ZodString
|
|
32601
|
+
data: ZodEffects<ZodString, string, string>;
|
|
32489
32602
|
/**
|
|
32490
32603
|
* The MIME type of the image. Different providers may support different image types.
|
|
32491
32604
|
*/
|
|
@@ -32500,7 +32613,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
32500
32613
|
/**
|
|
32501
32614
|
* The base64-encoded image data.
|
|
32502
32615
|
*/
|
|
32503
|
-
data: ZodString
|
|
32616
|
+
data: ZodEffects<ZodString, string, string>;
|
|
32504
32617
|
/**
|
|
32505
32618
|
* The MIME type of the image. Different providers may support different image types.
|
|
32506
32619
|
*/
|
|
@@ -32515,7 +32628,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
32515
32628
|
/**
|
|
32516
32629
|
* The base64-encoded image data.
|
|
32517
32630
|
*/
|
|
32518
|
-
data: ZodString
|
|
32631
|
+
data: ZodEffects<ZodString, string, string>;
|
|
32519
32632
|
/**
|
|
32520
32633
|
* The MIME type of the image. Different providers may support different image types.
|
|
32521
32634
|
*/
|
|
@@ -32530,7 +32643,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
32530
32643
|
/**
|
|
32531
32644
|
* The base64-encoded audio data.
|
|
32532
32645
|
*/
|
|
32533
|
-
data: ZodString
|
|
32646
|
+
data: ZodEffects<ZodString, string, string>;
|
|
32534
32647
|
/**
|
|
32535
32648
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
32536
32649
|
*/
|
|
@@ -32545,7 +32658,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
32545
32658
|
/**
|
|
32546
32659
|
* The base64-encoded audio data.
|
|
32547
32660
|
*/
|
|
32548
|
-
data: ZodString
|
|
32661
|
+
data: ZodEffects<ZodString, string, string>;
|
|
32549
32662
|
/**
|
|
32550
32663
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
32551
32664
|
*/
|
|
@@ -32560,7 +32673,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
32560
32673
|
/**
|
|
32561
32674
|
* The base64-encoded audio data.
|
|
32562
32675
|
*/
|
|
32563
|
-
data: ZodString
|
|
32676
|
+
data: ZodEffects<ZodString, string, string>;
|
|
32564
32677
|
/**
|
|
32565
32678
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
32566
32679
|
*/
|
|
@@ -32611,7 +32724,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
32611
32724
|
/**
|
|
32612
32725
|
* The base64-encoded image data.
|
|
32613
32726
|
*/
|
|
32614
|
-
data: ZodString
|
|
32727
|
+
data: ZodEffects<ZodString, string, string>;
|
|
32615
32728
|
/**
|
|
32616
32729
|
* The MIME type of the image. Different providers may support different image types.
|
|
32617
32730
|
*/
|
|
@@ -32626,7 +32739,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
32626
32739
|
/**
|
|
32627
32740
|
* The base64-encoded image data.
|
|
32628
32741
|
*/
|
|
32629
|
-
data: ZodString
|
|
32742
|
+
data: ZodEffects<ZodString, string, string>;
|
|
32630
32743
|
/**
|
|
32631
32744
|
* The MIME type of the image. Different providers may support different image types.
|
|
32632
32745
|
*/
|
|
@@ -32641,7 +32754,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
32641
32754
|
/**
|
|
32642
32755
|
* The base64-encoded image data.
|
|
32643
32756
|
*/
|
|
32644
|
-
data: ZodString
|
|
32757
|
+
data: ZodEffects<ZodString, string, string>;
|
|
32645
32758
|
/**
|
|
32646
32759
|
* The MIME type of the image. Different providers may support different image types.
|
|
32647
32760
|
*/
|
|
@@ -32656,7 +32769,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
32656
32769
|
/**
|
|
32657
32770
|
* The base64-encoded audio data.
|
|
32658
32771
|
*/
|
|
32659
|
-
data: ZodString
|
|
32772
|
+
data: ZodEffects<ZodString, string, string>;
|
|
32660
32773
|
/**
|
|
32661
32774
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
32662
32775
|
*/
|
|
@@ -32671,7 +32784,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
32671
32784
|
/**
|
|
32672
32785
|
* The base64-encoded audio data.
|
|
32673
32786
|
*/
|
|
32674
|
-
data: ZodString
|
|
32787
|
+
data: ZodEffects<ZodString, string, string>;
|
|
32675
32788
|
/**
|
|
32676
32789
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
32677
32790
|
*/
|
|
@@ -32686,7 +32799,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
32686
32799
|
/**
|
|
32687
32800
|
* The base64-encoded audio data.
|
|
32688
32801
|
*/
|
|
32689
|
-
data: ZodString
|
|
32802
|
+
data: ZodEffects<ZodString, string, string>;
|
|
32690
32803
|
/**
|
|
32691
32804
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
32692
32805
|
*/
|
|
@@ -32874,7 +32987,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
32874
32987
|
/**
|
|
32875
32988
|
* The base64-encoded image data.
|
|
32876
32989
|
*/
|
|
32877
|
-
data: ZodString
|
|
32990
|
+
data: ZodEffects<ZodString, string, string>;
|
|
32878
32991
|
/**
|
|
32879
32992
|
* The MIME type of the image. Different providers may support different image types.
|
|
32880
32993
|
*/
|
|
@@ -32889,7 +33002,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
32889
33002
|
/**
|
|
32890
33003
|
* The base64-encoded image data.
|
|
32891
33004
|
*/
|
|
32892
|
-
data: ZodString
|
|
33005
|
+
data: ZodEffects<ZodString, string, string>;
|
|
32893
33006
|
/**
|
|
32894
33007
|
* The MIME type of the image. Different providers may support different image types.
|
|
32895
33008
|
*/
|
|
@@ -32904,7 +33017,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
32904
33017
|
/**
|
|
32905
33018
|
* The base64-encoded image data.
|
|
32906
33019
|
*/
|
|
32907
|
-
data: ZodString
|
|
33020
|
+
data: ZodEffects<ZodString, string, string>;
|
|
32908
33021
|
/**
|
|
32909
33022
|
* The MIME type of the image. Different providers may support different image types.
|
|
32910
33023
|
*/
|
|
@@ -32919,7 +33032,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
32919
33032
|
/**
|
|
32920
33033
|
* The base64-encoded audio data.
|
|
32921
33034
|
*/
|
|
32922
|
-
data: ZodString
|
|
33035
|
+
data: ZodEffects<ZodString, string, string>;
|
|
32923
33036
|
/**
|
|
32924
33037
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
32925
33038
|
*/
|
|
@@ -32934,7 +33047,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
32934
33047
|
/**
|
|
32935
33048
|
* The base64-encoded audio data.
|
|
32936
33049
|
*/
|
|
32937
|
-
data: ZodString
|
|
33050
|
+
data: ZodEffects<ZodString, string, string>;
|
|
32938
33051
|
/**
|
|
32939
33052
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
32940
33053
|
*/
|
|
@@ -32949,7 +33062,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
32949
33062
|
/**
|
|
32950
33063
|
* The base64-encoded audio data.
|
|
32951
33064
|
*/
|
|
32952
|
-
data: ZodString
|
|
33065
|
+
data: ZodEffects<ZodString, string, string>;
|
|
32953
33066
|
/**
|
|
32954
33067
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
32955
33068
|
*/
|
|
@@ -33000,7 +33113,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
33000
33113
|
/**
|
|
33001
33114
|
* The base64-encoded image data.
|
|
33002
33115
|
*/
|
|
33003
|
-
data: ZodString
|
|
33116
|
+
data: ZodEffects<ZodString, string, string>;
|
|
33004
33117
|
/**
|
|
33005
33118
|
* The MIME type of the image. Different providers may support different image types.
|
|
33006
33119
|
*/
|
|
@@ -33015,7 +33128,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
33015
33128
|
/**
|
|
33016
33129
|
* The base64-encoded image data.
|
|
33017
33130
|
*/
|
|
33018
|
-
data: ZodString
|
|
33131
|
+
data: ZodEffects<ZodString, string, string>;
|
|
33019
33132
|
/**
|
|
33020
33133
|
* The MIME type of the image. Different providers may support different image types.
|
|
33021
33134
|
*/
|
|
@@ -33030,7 +33143,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
33030
33143
|
/**
|
|
33031
33144
|
* The base64-encoded image data.
|
|
33032
33145
|
*/
|
|
33033
|
-
data: ZodString
|
|
33146
|
+
data: ZodEffects<ZodString, string, string>;
|
|
33034
33147
|
/**
|
|
33035
33148
|
* The MIME type of the image. Different providers may support different image types.
|
|
33036
33149
|
*/
|
|
@@ -33045,7 +33158,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
33045
33158
|
/**
|
|
33046
33159
|
* The base64-encoded audio data.
|
|
33047
33160
|
*/
|
|
33048
|
-
data: ZodString
|
|
33161
|
+
data: ZodEffects<ZodString, string, string>;
|
|
33049
33162
|
/**
|
|
33050
33163
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
33051
33164
|
*/
|
|
@@ -33060,7 +33173,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
33060
33173
|
/**
|
|
33061
33174
|
* The base64-encoded audio data.
|
|
33062
33175
|
*/
|
|
33063
|
-
data: ZodString
|
|
33176
|
+
data: ZodEffects<ZodString, string, string>;
|
|
33064
33177
|
/**
|
|
33065
33178
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
33066
33179
|
*/
|
|
@@ -33075,7 +33188,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
33075
33188
|
/**
|
|
33076
33189
|
* The base64-encoded audio data.
|
|
33077
33190
|
*/
|
|
33078
|
-
data: ZodString
|
|
33191
|
+
data: ZodEffects<ZodString, string, string>;
|
|
33079
33192
|
/**
|
|
33080
33193
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
33081
33194
|
*/
|
|
@@ -33126,7 +33239,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
33126
33239
|
/**
|
|
33127
33240
|
* The base64-encoded image data.
|
|
33128
33241
|
*/
|
|
33129
|
-
data: ZodString
|
|
33242
|
+
data: ZodEffects<ZodString, string, string>;
|
|
33130
33243
|
/**
|
|
33131
33244
|
* The MIME type of the image. Different providers may support different image types.
|
|
33132
33245
|
*/
|
|
@@ -33141,7 +33254,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
33141
33254
|
/**
|
|
33142
33255
|
* The base64-encoded image data.
|
|
33143
33256
|
*/
|
|
33144
|
-
data: ZodString
|
|
33257
|
+
data: ZodEffects<ZodString, string, string>;
|
|
33145
33258
|
/**
|
|
33146
33259
|
* The MIME type of the image. Different providers may support different image types.
|
|
33147
33260
|
*/
|
|
@@ -33156,7 +33269,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
33156
33269
|
/**
|
|
33157
33270
|
* The base64-encoded image data.
|
|
33158
33271
|
*/
|
|
33159
|
-
data: ZodString
|
|
33272
|
+
data: ZodEffects<ZodString, string, string>;
|
|
33160
33273
|
/**
|
|
33161
33274
|
* The MIME type of the image. Different providers may support different image types.
|
|
33162
33275
|
*/
|
|
@@ -33171,7 +33284,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
33171
33284
|
/**
|
|
33172
33285
|
* The base64-encoded audio data.
|
|
33173
33286
|
*/
|
|
33174
|
-
data: ZodString
|
|
33287
|
+
data: ZodEffects<ZodString, string, string>;
|
|
33175
33288
|
/**
|
|
33176
33289
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
33177
33290
|
*/
|
|
@@ -33186,7 +33299,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
33186
33299
|
/**
|
|
33187
33300
|
* The base64-encoded audio data.
|
|
33188
33301
|
*/
|
|
33189
|
-
data: ZodString
|
|
33302
|
+
data: ZodEffects<ZodString, string, string>;
|
|
33190
33303
|
/**
|
|
33191
33304
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
33192
33305
|
*/
|
|
@@ -33201,7 +33314,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
33201
33314
|
/**
|
|
33202
33315
|
* The base64-encoded audio data.
|
|
33203
33316
|
*/
|
|
33204
|
-
data: ZodString
|
|
33317
|
+
data: ZodEffects<ZodString, string, string>;
|
|
33205
33318
|
/**
|
|
33206
33319
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
33207
33320
|
*/
|
|
@@ -33374,7 +33487,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
33374
33487
|
/**
|
|
33375
33488
|
* The base64-encoded image data.
|
|
33376
33489
|
*/
|
|
33377
|
-
data: ZodString
|
|
33490
|
+
data: ZodEffects<ZodString, string, string>;
|
|
33378
33491
|
/**
|
|
33379
33492
|
* The MIME type of the image. Different providers may support different image types.
|
|
33380
33493
|
*/
|
|
@@ -33389,7 +33502,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
33389
33502
|
/**
|
|
33390
33503
|
* The base64-encoded image data.
|
|
33391
33504
|
*/
|
|
33392
|
-
data: ZodString
|
|
33505
|
+
data: ZodEffects<ZodString, string, string>;
|
|
33393
33506
|
/**
|
|
33394
33507
|
* The MIME type of the image. Different providers may support different image types.
|
|
33395
33508
|
*/
|
|
@@ -33404,7 +33517,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
33404
33517
|
/**
|
|
33405
33518
|
* The base64-encoded image data.
|
|
33406
33519
|
*/
|
|
33407
|
-
data: ZodString
|
|
33520
|
+
data: ZodEffects<ZodString, string, string>;
|
|
33408
33521
|
/**
|
|
33409
33522
|
* The MIME type of the image. Different providers may support different image types.
|
|
33410
33523
|
*/
|
|
@@ -33419,7 +33532,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
33419
33532
|
/**
|
|
33420
33533
|
* The base64-encoded audio data.
|
|
33421
33534
|
*/
|
|
33422
|
-
data: ZodString
|
|
33535
|
+
data: ZodEffects<ZodString, string, string>;
|
|
33423
33536
|
/**
|
|
33424
33537
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
33425
33538
|
*/
|
|
@@ -33434,7 +33547,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
33434
33547
|
/**
|
|
33435
33548
|
* The base64-encoded audio data.
|
|
33436
33549
|
*/
|
|
33437
|
-
data: ZodString
|
|
33550
|
+
data: ZodEffects<ZodString, string, string>;
|
|
33438
33551
|
/**
|
|
33439
33552
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
33440
33553
|
*/
|
|
@@ -33449,7 +33562,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
33449
33562
|
/**
|
|
33450
33563
|
* The base64-encoded audio data.
|
|
33451
33564
|
*/
|
|
33452
|
-
data: ZodString
|
|
33565
|
+
data: ZodEffects<ZodString, string, string>;
|
|
33453
33566
|
/**
|
|
33454
33567
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
33455
33568
|
*/
|
|
@@ -33552,7 +33665,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
33552
33665
|
/**
|
|
33553
33666
|
* The base64-encoded image data.
|
|
33554
33667
|
*/
|
|
33555
|
-
data: ZodString
|
|
33668
|
+
data: ZodEffects<ZodString, string, string>;
|
|
33556
33669
|
/**
|
|
33557
33670
|
* The MIME type of the image. Different providers may support different image types.
|
|
33558
33671
|
*/
|
|
@@ -33567,7 +33680,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
33567
33680
|
/**
|
|
33568
33681
|
* The base64-encoded image data.
|
|
33569
33682
|
*/
|
|
33570
|
-
data: ZodString
|
|
33683
|
+
data: ZodEffects<ZodString, string, string>;
|
|
33571
33684
|
/**
|
|
33572
33685
|
* The MIME type of the image. Different providers may support different image types.
|
|
33573
33686
|
*/
|
|
@@ -33582,7 +33695,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
33582
33695
|
/**
|
|
33583
33696
|
* The base64-encoded image data.
|
|
33584
33697
|
*/
|
|
33585
|
-
data: ZodString
|
|
33698
|
+
data: ZodEffects<ZodString, string, string>;
|
|
33586
33699
|
/**
|
|
33587
33700
|
* The MIME type of the image. Different providers may support different image types.
|
|
33588
33701
|
*/
|
|
@@ -33597,7 +33710,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
33597
33710
|
/**
|
|
33598
33711
|
* The base64-encoded audio data.
|
|
33599
33712
|
*/
|
|
33600
|
-
data: ZodString
|
|
33713
|
+
data: ZodEffects<ZodString, string, string>;
|
|
33601
33714
|
/**
|
|
33602
33715
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
33603
33716
|
*/
|
|
@@ -33612,7 +33725,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
33612
33725
|
/**
|
|
33613
33726
|
* The base64-encoded audio data.
|
|
33614
33727
|
*/
|
|
33615
|
-
data: ZodString
|
|
33728
|
+
data: ZodEffects<ZodString, string, string>;
|
|
33616
33729
|
/**
|
|
33617
33730
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
33618
33731
|
*/
|
|
@@ -33627,7 +33740,7 @@ declare const ServerRequestSchema: ZodUnion<[ZodObject<objectUtil.extendShape<{
|
|
|
33627
33740
|
/**
|
|
33628
33741
|
* The base64-encoded audio data.
|
|
33629
33742
|
*/
|
|
33630
|
-
data: ZodString
|
|
33743
|
+
data: ZodEffects<ZodString, string, string>;
|
|
33631
33744
|
/**
|
|
33632
33745
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
33633
33746
|
*/
|
|
@@ -36324,7 +36437,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
36324
36437
|
/**
|
|
36325
36438
|
* The base64-encoded image data.
|
|
36326
36439
|
*/
|
|
36327
|
-
data: ZodString
|
|
36440
|
+
data: ZodEffects<ZodString, string, string>;
|
|
36328
36441
|
/**
|
|
36329
36442
|
* The MIME type of the image. Different providers may support different image types.
|
|
36330
36443
|
*/
|
|
@@ -36339,7 +36452,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
36339
36452
|
/**
|
|
36340
36453
|
* The base64-encoded image data.
|
|
36341
36454
|
*/
|
|
36342
|
-
data: ZodString
|
|
36455
|
+
data: ZodEffects<ZodString, string, string>;
|
|
36343
36456
|
/**
|
|
36344
36457
|
* The MIME type of the image. Different providers may support different image types.
|
|
36345
36458
|
*/
|
|
@@ -36354,7 +36467,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
36354
36467
|
/**
|
|
36355
36468
|
* The base64-encoded image data.
|
|
36356
36469
|
*/
|
|
36357
|
-
data: ZodString
|
|
36470
|
+
data: ZodEffects<ZodString, string, string>;
|
|
36358
36471
|
/**
|
|
36359
36472
|
* The MIME type of the image. Different providers may support different image types.
|
|
36360
36473
|
*/
|
|
@@ -36369,7 +36482,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
36369
36482
|
/**
|
|
36370
36483
|
* The base64-encoded audio data.
|
|
36371
36484
|
*/
|
|
36372
|
-
data: ZodString
|
|
36485
|
+
data: ZodEffects<ZodString, string, string>;
|
|
36373
36486
|
/**
|
|
36374
36487
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
36375
36488
|
*/
|
|
@@ -36384,7 +36497,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
36384
36497
|
/**
|
|
36385
36498
|
* The base64-encoded audio data.
|
|
36386
36499
|
*/
|
|
36387
|
-
data: ZodString
|
|
36500
|
+
data: ZodEffects<ZodString, string, string>;
|
|
36388
36501
|
/**
|
|
36389
36502
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
36390
36503
|
*/
|
|
@@ -36399,7 +36512,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
36399
36512
|
/**
|
|
36400
36513
|
* The base64-encoded audio data.
|
|
36401
36514
|
*/
|
|
36402
|
-
data: ZodString
|
|
36515
|
+
data: ZodEffects<ZodString, string, string>;
|
|
36403
36516
|
/**
|
|
36404
36517
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
36405
36518
|
*/
|
|
@@ -36588,7 +36701,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
36588
36701
|
/**
|
|
36589
36702
|
* A base64-encoded string representing the binary data of the item.
|
|
36590
36703
|
*/
|
|
36591
|
-
blob: ZodString
|
|
36704
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
36592
36705
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
36593
36706
|
/**
|
|
36594
36707
|
* The URI of this resource.
|
|
@@ -36607,7 +36720,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
36607
36720
|
/**
|
|
36608
36721
|
* A base64-encoded string representing the binary data of the item.
|
|
36609
36722
|
*/
|
|
36610
|
-
blob: ZodString
|
|
36723
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
36611
36724
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
36612
36725
|
/**
|
|
36613
36726
|
* The URI of this resource.
|
|
@@ -36626,7 +36739,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
36626
36739
|
/**
|
|
36627
36740
|
* A base64-encoded string representing the binary data of the item.
|
|
36628
36741
|
*/
|
|
36629
|
-
blob: ZodString
|
|
36742
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
36630
36743
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
36631
36744
|
/**
|
|
36632
36745
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -36710,7 +36823,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
36710
36823
|
/**
|
|
36711
36824
|
* A base64-encoded string representing the binary data of the item.
|
|
36712
36825
|
*/
|
|
36713
|
-
blob: ZodString
|
|
36826
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
36714
36827
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
36715
36828
|
/**
|
|
36716
36829
|
* The URI of this resource.
|
|
@@ -36729,7 +36842,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
36729
36842
|
/**
|
|
36730
36843
|
* A base64-encoded string representing the binary data of the item.
|
|
36731
36844
|
*/
|
|
36732
|
-
blob: ZodString
|
|
36845
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
36733
36846
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
36734
36847
|
/**
|
|
36735
36848
|
* The URI of this resource.
|
|
@@ -36748,7 +36861,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
36748
36861
|
/**
|
|
36749
36862
|
* A base64-encoded string representing the binary data of the item.
|
|
36750
36863
|
*/
|
|
36751
|
-
blob: ZodString
|
|
36864
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
36752
36865
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
36753
36866
|
/**
|
|
36754
36867
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -36832,7 +36945,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
36832
36945
|
/**
|
|
36833
36946
|
* A base64-encoded string representing the binary data of the item.
|
|
36834
36947
|
*/
|
|
36835
|
-
blob: ZodString
|
|
36948
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
36836
36949
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
36837
36950
|
/**
|
|
36838
36951
|
* The URI of this resource.
|
|
@@ -36851,7 +36964,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
36851
36964
|
/**
|
|
36852
36965
|
* A base64-encoded string representing the binary data of the item.
|
|
36853
36966
|
*/
|
|
36854
|
-
blob: ZodString
|
|
36967
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
36855
36968
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
36856
36969
|
/**
|
|
36857
36970
|
* The URI of this resource.
|
|
@@ -36870,7 +36983,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
36870
36983
|
/**
|
|
36871
36984
|
* A base64-encoded string representing the binary data of the item.
|
|
36872
36985
|
*/
|
|
36873
|
-
blob: ZodString
|
|
36986
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
36874
36987
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
36875
36988
|
/**
|
|
36876
36989
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -36918,7 +37031,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
36918
37031
|
/**
|
|
36919
37032
|
* The base64-encoded image data.
|
|
36920
37033
|
*/
|
|
36921
|
-
data: ZodString
|
|
37034
|
+
data: ZodEffects<ZodString, string, string>;
|
|
36922
37035
|
/**
|
|
36923
37036
|
* The MIME type of the image. Different providers may support different image types.
|
|
36924
37037
|
*/
|
|
@@ -36933,7 +37046,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
36933
37046
|
/**
|
|
36934
37047
|
* The base64-encoded image data.
|
|
36935
37048
|
*/
|
|
36936
|
-
data: ZodString
|
|
37049
|
+
data: ZodEffects<ZodString, string, string>;
|
|
36937
37050
|
/**
|
|
36938
37051
|
* The MIME type of the image. Different providers may support different image types.
|
|
36939
37052
|
*/
|
|
@@ -36948,7 +37061,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
36948
37061
|
/**
|
|
36949
37062
|
* The base64-encoded image data.
|
|
36950
37063
|
*/
|
|
36951
|
-
data: ZodString
|
|
37064
|
+
data: ZodEffects<ZodString, string, string>;
|
|
36952
37065
|
/**
|
|
36953
37066
|
* The MIME type of the image. Different providers may support different image types.
|
|
36954
37067
|
*/
|
|
@@ -36963,7 +37076,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
36963
37076
|
/**
|
|
36964
37077
|
* The base64-encoded audio data.
|
|
36965
37078
|
*/
|
|
36966
|
-
data: ZodString
|
|
37079
|
+
data: ZodEffects<ZodString, string, string>;
|
|
36967
37080
|
/**
|
|
36968
37081
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
36969
37082
|
*/
|
|
@@ -36978,7 +37091,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
36978
37091
|
/**
|
|
36979
37092
|
* The base64-encoded audio data.
|
|
36980
37093
|
*/
|
|
36981
|
-
data: ZodString
|
|
37094
|
+
data: ZodEffects<ZodString, string, string>;
|
|
36982
37095
|
/**
|
|
36983
37096
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
36984
37097
|
*/
|
|
@@ -36993,7 +37106,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
36993
37106
|
/**
|
|
36994
37107
|
* The base64-encoded audio data.
|
|
36995
37108
|
*/
|
|
36996
|
-
data: ZodString
|
|
37109
|
+
data: ZodEffects<ZodString, string, string>;
|
|
36997
37110
|
/**
|
|
36998
37111
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
36999
37112
|
*/
|
|
@@ -37182,7 +37295,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
37182
37295
|
/**
|
|
37183
37296
|
* A base64-encoded string representing the binary data of the item.
|
|
37184
37297
|
*/
|
|
37185
|
-
blob: ZodString
|
|
37298
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
37186
37299
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
37187
37300
|
/**
|
|
37188
37301
|
* The URI of this resource.
|
|
@@ -37201,7 +37314,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
37201
37314
|
/**
|
|
37202
37315
|
* A base64-encoded string representing the binary data of the item.
|
|
37203
37316
|
*/
|
|
37204
|
-
blob: ZodString
|
|
37317
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
37205
37318
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
37206
37319
|
/**
|
|
37207
37320
|
* The URI of this resource.
|
|
@@ -37220,7 +37333,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
37220
37333
|
/**
|
|
37221
37334
|
* A base64-encoded string representing the binary data of the item.
|
|
37222
37335
|
*/
|
|
37223
|
-
blob: ZodString
|
|
37336
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
37224
37337
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
37225
37338
|
/**
|
|
37226
37339
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -37304,7 +37417,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
37304
37417
|
/**
|
|
37305
37418
|
* A base64-encoded string representing the binary data of the item.
|
|
37306
37419
|
*/
|
|
37307
|
-
blob: ZodString
|
|
37420
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
37308
37421
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
37309
37422
|
/**
|
|
37310
37423
|
* The URI of this resource.
|
|
@@ -37323,7 +37436,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
37323
37436
|
/**
|
|
37324
37437
|
* A base64-encoded string representing the binary data of the item.
|
|
37325
37438
|
*/
|
|
37326
|
-
blob: ZodString
|
|
37439
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
37327
37440
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
37328
37441
|
/**
|
|
37329
37442
|
* The URI of this resource.
|
|
@@ -37342,7 +37455,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
37342
37455
|
/**
|
|
37343
37456
|
* A base64-encoded string representing the binary data of the item.
|
|
37344
37457
|
*/
|
|
37345
|
-
blob: ZodString
|
|
37458
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
37346
37459
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
37347
37460
|
/**
|
|
37348
37461
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -37426,7 +37539,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
37426
37539
|
/**
|
|
37427
37540
|
* A base64-encoded string representing the binary data of the item.
|
|
37428
37541
|
*/
|
|
37429
|
-
blob: ZodString
|
|
37542
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
37430
37543
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
37431
37544
|
/**
|
|
37432
37545
|
* The URI of this resource.
|
|
@@ -37445,7 +37558,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
37445
37558
|
/**
|
|
37446
37559
|
* A base64-encoded string representing the binary data of the item.
|
|
37447
37560
|
*/
|
|
37448
|
-
blob: ZodString
|
|
37561
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
37449
37562
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
37450
37563
|
/**
|
|
37451
37564
|
* The URI of this resource.
|
|
@@ -37464,7 +37577,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
37464
37577
|
/**
|
|
37465
37578
|
* A base64-encoded string representing the binary data of the item.
|
|
37466
37579
|
*/
|
|
37467
|
-
blob: ZodString
|
|
37580
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
37468
37581
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
37469
37582
|
/**
|
|
37470
37583
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -37512,7 +37625,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
37512
37625
|
/**
|
|
37513
37626
|
* The base64-encoded image data.
|
|
37514
37627
|
*/
|
|
37515
|
-
data: ZodString
|
|
37628
|
+
data: ZodEffects<ZodString, string, string>;
|
|
37516
37629
|
/**
|
|
37517
37630
|
* The MIME type of the image. Different providers may support different image types.
|
|
37518
37631
|
*/
|
|
@@ -37527,7 +37640,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
37527
37640
|
/**
|
|
37528
37641
|
* The base64-encoded image data.
|
|
37529
37642
|
*/
|
|
37530
|
-
data: ZodString
|
|
37643
|
+
data: ZodEffects<ZodString, string, string>;
|
|
37531
37644
|
/**
|
|
37532
37645
|
* The MIME type of the image. Different providers may support different image types.
|
|
37533
37646
|
*/
|
|
@@ -37542,7 +37655,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
37542
37655
|
/**
|
|
37543
37656
|
* The base64-encoded image data.
|
|
37544
37657
|
*/
|
|
37545
|
-
data: ZodString
|
|
37658
|
+
data: ZodEffects<ZodString, string, string>;
|
|
37546
37659
|
/**
|
|
37547
37660
|
* The MIME type of the image. Different providers may support different image types.
|
|
37548
37661
|
*/
|
|
@@ -37557,7 +37670,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
37557
37670
|
/**
|
|
37558
37671
|
* The base64-encoded audio data.
|
|
37559
37672
|
*/
|
|
37560
|
-
data: ZodString
|
|
37673
|
+
data: ZodEffects<ZodString, string, string>;
|
|
37561
37674
|
/**
|
|
37562
37675
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
37563
37676
|
*/
|
|
@@ -37572,7 +37685,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
37572
37685
|
/**
|
|
37573
37686
|
* The base64-encoded audio data.
|
|
37574
37687
|
*/
|
|
37575
|
-
data: ZodString
|
|
37688
|
+
data: ZodEffects<ZodString, string, string>;
|
|
37576
37689
|
/**
|
|
37577
37690
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
37578
37691
|
*/
|
|
@@ -37587,7 +37700,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
37587
37700
|
/**
|
|
37588
37701
|
* The base64-encoded audio data.
|
|
37589
37702
|
*/
|
|
37590
|
-
data: ZodString
|
|
37703
|
+
data: ZodEffects<ZodString, string, string>;
|
|
37591
37704
|
/**
|
|
37592
37705
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
37593
37706
|
*/
|
|
@@ -37776,7 +37889,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
37776
37889
|
/**
|
|
37777
37890
|
* A base64-encoded string representing the binary data of the item.
|
|
37778
37891
|
*/
|
|
37779
|
-
blob: ZodString
|
|
37892
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
37780
37893
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
37781
37894
|
/**
|
|
37782
37895
|
* The URI of this resource.
|
|
@@ -37795,7 +37908,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
37795
37908
|
/**
|
|
37796
37909
|
* A base64-encoded string representing the binary data of the item.
|
|
37797
37910
|
*/
|
|
37798
|
-
blob: ZodString
|
|
37911
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
37799
37912
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
37800
37913
|
/**
|
|
37801
37914
|
* The URI of this resource.
|
|
@@ -37814,7 +37927,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
37814
37927
|
/**
|
|
37815
37928
|
* A base64-encoded string representing the binary data of the item.
|
|
37816
37929
|
*/
|
|
37817
|
-
blob: ZodString
|
|
37930
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
37818
37931
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
37819
37932
|
/**
|
|
37820
37933
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -37898,7 +38011,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
37898
38011
|
/**
|
|
37899
38012
|
* A base64-encoded string representing the binary data of the item.
|
|
37900
38013
|
*/
|
|
37901
|
-
blob: ZodString
|
|
38014
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
37902
38015
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
37903
38016
|
/**
|
|
37904
38017
|
* The URI of this resource.
|
|
@@ -37917,7 +38030,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
37917
38030
|
/**
|
|
37918
38031
|
* A base64-encoded string representing the binary data of the item.
|
|
37919
38032
|
*/
|
|
37920
|
-
blob: ZodString
|
|
38033
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
37921
38034
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
37922
38035
|
/**
|
|
37923
38036
|
* The URI of this resource.
|
|
@@ -37936,7 +38049,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
37936
38049
|
/**
|
|
37937
38050
|
* A base64-encoded string representing the binary data of the item.
|
|
37938
38051
|
*/
|
|
37939
|
-
blob: ZodString
|
|
38052
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
37940
38053
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
37941
38054
|
/**
|
|
37942
38055
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -38020,7 +38133,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
38020
38133
|
/**
|
|
38021
38134
|
* A base64-encoded string representing the binary data of the item.
|
|
38022
38135
|
*/
|
|
38023
|
-
blob: ZodString
|
|
38136
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
38024
38137
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
38025
38138
|
/**
|
|
38026
38139
|
* The URI of this resource.
|
|
@@ -38039,7 +38152,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
38039
38152
|
/**
|
|
38040
38153
|
* A base64-encoded string representing the binary data of the item.
|
|
38041
38154
|
*/
|
|
38042
|
-
blob: ZodString
|
|
38155
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
38043
38156
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
38044
38157
|
/**
|
|
38045
38158
|
* The URI of this resource.
|
|
@@ -38058,7 +38171,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
38058
38171
|
/**
|
|
38059
38172
|
* A base64-encoded string representing the binary data of the item.
|
|
38060
38173
|
*/
|
|
38061
|
-
blob: ZodString
|
|
38174
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
38062
38175
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
38063
38176
|
/**
|
|
38064
38177
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -38118,7 +38231,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
38118
38231
|
/**
|
|
38119
38232
|
* The base64-encoded image data.
|
|
38120
38233
|
*/
|
|
38121
|
-
data: ZodString
|
|
38234
|
+
data: ZodEffects<ZodString, string, string>;
|
|
38122
38235
|
/**
|
|
38123
38236
|
* The MIME type of the image. Different providers may support different image types.
|
|
38124
38237
|
*/
|
|
@@ -38133,7 +38246,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
38133
38246
|
/**
|
|
38134
38247
|
* The base64-encoded image data.
|
|
38135
38248
|
*/
|
|
38136
|
-
data: ZodString
|
|
38249
|
+
data: ZodEffects<ZodString, string, string>;
|
|
38137
38250
|
/**
|
|
38138
38251
|
* The MIME type of the image. Different providers may support different image types.
|
|
38139
38252
|
*/
|
|
@@ -38148,7 +38261,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
38148
38261
|
/**
|
|
38149
38262
|
* The base64-encoded image data.
|
|
38150
38263
|
*/
|
|
38151
|
-
data: ZodString
|
|
38264
|
+
data: ZodEffects<ZodString, string, string>;
|
|
38152
38265
|
/**
|
|
38153
38266
|
* The MIME type of the image. Different providers may support different image types.
|
|
38154
38267
|
*/
|
|
@@ -38163,7 +38276,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
38163
38276
|
/**
|
|
38164
38277
|
* The base64-encoded audio data.
|
|
38165
38278
|
*/
|
|
38166
|
-
data: ZodString
|
|
38279
|
+
data: ZodEffects<ZodString, string, string>;
|
|
38167
38280
|
/**
|
|
38168
38281
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
38169
38282
|
*/
|
|
@@ -38178,7 +38291,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
38178
38291
|
/**
|
|
38179
38292
|
* The base64-encoded audio data.
|
|
38180
38293
|
*/
|
|
38181
|
-
data: ZodString
|
|
38294
|
+
data: ZodEffects<ZodString, string, string>;
|
|
38182
38295
|
/**
|
|
38183
38296
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
38184
38297
|
*/
|
|
@@ -38193,7 +38306,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
38193
38306
|
/**
|
|
38194
38307
|
* The base64-encoded audio data.
|
|
38195
38308
|
*/
|
|
38196
|
-
data: ZodString
|
|
38309
|
+
data: ZodEffects<ZodString, string, string>;
|
|
38197
38310
|
/**
|
|
38198
38311
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
38199
38312
|
*/
|
|
@@ -38382,7 +38495,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
38382
38495
|
/**
|
|
38383
38496
|
* A base64-encoded string representing the binary data of the item.
|
|
38384
38497
|
*/
|
|
38385
|
-
blob: ZodString
|
|
38498
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
38386
38499
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
38387
38500
|
/**
|
|
38388
38501
|
* The URI of this resource.
|
|
@@ -38401,7 +38514,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
38401
38514
|
/**
|
|
38402
38515
|
* A base64-encoded string representing the binary data of the item.
|
|
38403
38516
|
*/
|
|
38404
|
-
blob: ZodString
|
|
38517
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
38405
38518
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
38406
38519
|
/**
|
|
38407
38520
|
* The URI of this resource.
|
|
@@ -38420,7 +38533,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
38420
38533
|
/**
|
|
38421
38534
|
* A base64-encoded string representing the binary data of the item.
|
|
38422
38535
|
*/
|
|
38423
|
-
blob: ZodString
|
|
38536
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
38424
38537
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
38425
38538
|
/**
|
|
38426
38539
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -38504,7 +38617,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
38504
38617
|
/**
|
|
38505
38618
|
* A base64-encoded string representing the binary data of the item.
|
|
38506
38619
|
*/
|
|
38507
|
-
blob: ZodString
|
|
38620
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
38508
38621
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
38509
38622
|
/**
|
|
38510
38623
|
* The URI of this resource.
|
|
@@ -38523,7 +38636,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
38523
38636
|
/**
|
|
38524
38637
|
* A base64-encoded string representing the binary data of the item.
|
|
38525
38638
|
*/
|
|
38526
|
-
blob: ZodString
|
|
38639
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
38527
38640
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
38528
38641
|
/**
|
|
38529
38642
|
* The URI of this resource.
|
|
@@ -38542,7 +38655,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
38542
38655
|
/**
|
|
38543
38656
|
* A base64-encoded string representing the binary data of the item.
|
|
38544
38657
|
*/
|
|
38545
|
-
blob: ZodString
|
|
38658
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
38546
38659
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
38547
38660
|
/**
|
|
38548
38661
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -38626,7 +38739,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
38626
38739
|
/**
|
|
38627
38740
|
* A base64-encoded string representing the binary data of the item.
|
|
38628
38741
|
*/
|
|
38629
|
-
blob: ZodString
|
|
38742
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
38630
38743
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
38631
38744
|
/**
|
|
38632
38745
|
* The URI of this resource.
|
|
@@ -38645,7 +38758,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
38645
38758
|
/**
|
|
38646
38759
|
* A base64-encoded string representing the binary data of the item.
|
|
38647
38760
|
*/
|
|
38648
|
-
blob: ZodString
|
|
38761
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
38649
38762
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
38650
38763
|
/**
|
|
38651
38764
|
* The URI of this resource.
|
|
@@ -38664,7 +38777,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
38664
38777
|
/**
|
|
38665
38778
|
* A base64-encoded string representing the binary data of the item.
|
|
38666
38779
|
*/
|
|
38667
|
-
blob: ZodString
|
|
38780
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
38668
38781
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
38669
38782
|
/**
|
|
38670
38783
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -38712,7 +38825,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
38712
38825
|
/**
|
|
38713
38826
|
* The base64-encoded image data.
|
|
38714
38827
|
*/
|
|
38715
|
-
data: ZodString
|
|
38828
|
+
data: ZodEffects<ZodString, string, string>;
|
|
38716
38829
|
/**
|
|
38717
38830
|
* The MIME type of the image. Different providers may support different image types.
|
|
38718
38831
|
*/
|
|
@@ -38727,7 +38840,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
38727
38840
|
/**
|
|
38728
38841
|
* The base64-encoded image data.
|
|
38729
38842
|
*/
|
|
38730
|
-
data: ZodString
|
|
38843
|
+
data: ZodEffects<ZodString, string, string>;
|
|
38731
38844
|
/**
|
|
38732
38845
|
* The MIME type of the image. Different providers may support different image types.
|
|
38733
38846
|
*/
|
|
@@ -38742,7 +38855,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
38742
38855
|
/**
|
|
38743
38856
|
* The base64-encoded image data.
|
|
38744
38857
|
*/
|
|
38745
|
-
data: ZodString
|
|
38858
|
+
data: ZodEffects<ZodString, string, string>;
|
|
38746
38859
|
/**
|
|
38747
38860
|
* The MIME type of the image. Different providers may support different image types.
|
|
38748
38861
|
*/
|
|
@@ -38757,7 +38870,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
38757
38870
|
/**
|
|
38758
38871
|
* The base64-encoded audio data.
|
|
38759
38872
|
*/
|
|
38760
|
-
data: ZodString
|
|
38873
|
+
data: ZodEffects<ZodString, string, string>;
|
|
38761
38874
|
/**
|
|
38762
38875
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
38763
38876
|
*/
|
|
@@ -38772,7 +38885,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
38772
38885
|
/**
|
|
38773
38886
|
* The base64-encoded audio data.
|
|
38774
38887
|
*/
|
|
38775
|
-
data: ZodString
|
|
38888
|
+
data: ZodEffects<ZodString, string, string>;
|
|
38776
38889
|
/**
|
|
38777
38890
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
38778
38891
|
*/
|
|
@@ -38787,7 +38900,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
38787
38900
|
/**
|
|
38788
38901
|
* The base64-encoded audio data.
|
|
38789
38902
|
*/
|
|
38790
|
-
data: ZodString
|
|
38903
|
+
data: ZodEffects<ZodString, string, string>;
|
|
38791
38904
|
/**
|
|
38792
38905
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
38793
38906
|
*/
|
|
@@ -38976,7 +39089,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
38976
39089
|
/**
|
|
38977
39090
|
* A base64-encoded string representing the binary data of the item.
|
|
38978
39091
|
*/
|
|
38979
|
-
blob: ZodString
|
|
39092
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
38980
39093
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
38981
39094
|
/**
|
|
38982
39095
|
* The URI of this resource.
|
|
@@ -38995,7 +39108,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
38995
39108
|
/**
|
|
38996
39109
|
* A base64-encoded string representing the binary data of the item.
|
|
38997
39110
|
*/
|
|
38998
|
-
blob: ZodString
|
|
39111
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
38999
39112
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
39000
39113
|
/**
|
|
39001
39114
|
* The URI of this resource.
|
|
@@ -39014,7 +39127,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
39014
39127
|
/**
|
|
39015
39128
|
* A base64-encoded string representing the binary data of the item.
|
|
39016
39129
|
*/
|
|
39017
|
-
blob: ZodString
|
|
39130
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
39018
39131
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
39019
39132
|
/**
|
|
39020
39133
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -39098,7 +39211,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
39098
39211
|
/**
|
|
39099
39212
|
* A base64-encoded string representing the binary data of the item.
|
|
39100
39213
|
*/
|
|
39101
|
-
blob: ZodString
|
|
39214
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
39102
39215
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
39103
39216
|
/**
|
|
39104
39217
|
* The URI of this resource.
|
|
@@ -39117,7 +39230,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
39117
39230
|
/**
|
|
39118
39231
|
* A base64-encoded string representing the binary data of the item.
|
|
39119
39232
|
*/
|
|
39120
|
-
blob: ZodString
|
|
39233
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
39121
39234
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
39122
39235
|
/**
|
|
39123
39236
|
* The URI of this resource.
|
|
@@ -39136,7 +39249,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
39136
39249
|
/**
|
|
39137
39250
|
* A base64-encoded string representing the binary data of the item.
|
|
39138
39251
|
*/
|
|
39139
|
-
blob: ZodString
|
|
39252
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
39140
39253
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
39141
39254
|
/**
|
|
39142
39255
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -39220,7 +39333,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
39220
39333
|
/**
|
|
39221
39334
|
* A base64-encoded string representing the binary data of the item.
|
|
39222
39335
|
*/
|
|
39223
|
-
blob: ZodString
|
|
39336
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
39224
39337
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
39225
39338
|
/**
|
|
39226
39339
|
* The URI of this resource.
|
|
@@ -39239,7 +39352,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
39239
39352
|
/**
|
|
39240
39353
|
* A base64-encoded string representing the binary data of the item.
|
|
39241
39354
|
*/
|
|
39242
|
-
blob: ZodString
|
|
39355
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
39243
39356
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
39244
39357
|
/**
|
|
39245
39358
|
* The URI of this resource.
|
|
@@ -39258,7 +39371,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
39258
39371
|
/**
|
|
39259
39372
|
* A base64-encoded string representing the binary data of the item.
|
|
39260
39373
|
*/
|
|
39261
|
-
blob: ZodString
|
|
39374
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
39262
39375
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
39263
39376
|
/**
|
|
39264
39377
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -39306,7 +39419,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
39306
39419
|
/**
|
|
39307
39420
|
* The base64-encoded image data.
|
|
39308
39421
|
*/
|
|
39309
|
-
data: ZodString
|
|
39422
|
+
data: ZodEffects<ZodString, string, string>;
|
|
39310
39423
|
/**
|
|
39311
39424
|
* The MIME type of the image. Different providers may support different image types.
|
|
39312
39425
|
*/
|
|
@@ -39321,7 +39434,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
39321
39434
|
/**
|
|
39322
39435
|
* The base64-encoded image data.
|
|
39323
39436
|
*/
|
|
39324
|
-
data: ZodString
|
|
39437
|
+
data: ZodEffects<ZodString, string, string>;
|
|
39325
39438
|
/**
|
|
39326
39439
|
* The MIME type of the image. Different providers may support different image types.
|
|
39327
39440
|
*/
|
|
@@ -39336,7 +39449,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
39336
39449
|
/**
|
|
39337
39450
|
* The base64-encoded image data.
|
|
39338
39451
|
*/
|
|
39339
|
-
data: ZodString
|
|
39452
|
+
data: ZodEffects<ZodString, string, string>;
|
|
39340
39453
|
/**
|
|
39341
39454
|
* The MIME type of the image. Different providers may support different image types.
|
|
39342
39455
|
*/
|
|
@@ -39351,7 +39464,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
39351
39464
|
/**
|
|
39352
39465
|
* The base64-encoded audio data.
|
|
39353
39466
|
*/
|
|
39354
|
-
data: ZodString
|
|
39467
|
+
data: ZodEffects<ZodString, string, string>;
|
|
39355
39468
|
/**
|
|
39356
39469
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
39357
39470
|
*/
|
|
@@ -39366,7 +39479,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
39366
39479
|
/**
|
|
39367
39480
|
* The base64-encoded audio data.
|
|
39368
39481
|
*/
|
|
39369
|
-
data: ZodString
|
|
39482
|
+
data: ZodEffects<ZodString, string, string>;
|
|
39370
39483
|
/**
|
|
39371
39484
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
39372
39485
|
*/
|
|
@@ -39381,7 +39494,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
39381
39494
|
/**
|
|
39382
39495
|
* The base64-encoded audio data.
|
|
39383
39496
|
*/
|
|
39384
|
-
data: ZodString
|
|
39497
|
+
data: ZodEffects<ZodString, string, string>;
|
|
39385
39498
|
/**
|
|
39386
39499
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
39387
39500
|
*/
|
|
@@ -39570,7 +39683,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
39570
39683
|
/**
|
|
39571
39684
|
* A base64-encoded string representing the binary data of the item.
|
|
39572
39685
|
*/
|
|
39573
|
-
blob: ZodString
|
|
39686
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
39574
39687
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
39575
39688
|
/**
|
|
39576
39689
|
* The URI of this resource.
|
|
@@ -39589,7 +39702,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
39589
39702
|
/**
|
|
39590
39703
|
* A base64-encoded string representing the binary data of the item.
|
|
39591
39704
|
*/
|
|
39592
|
-
blob: ZodString
|
|
39705
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
39593
39706
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
39594
39707
|
/**
|
|
39595
39708
|
* The URI of this resource.
|
|
@@ -39608,7 +39721,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
39608
39721
|
/**
|
|
39609
39722
|
* A base64-encoded string representing the binary data of the item.
|
|
39610
39723
|
*/
|
|
39611
|
-
blob: ZodString
|
|
39724
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
39612
39725
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
39613
39726
|
/**
|
|
39614
39727
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -39692,7 +39805,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
39692
39805
|
/**
|
|
39693
39806
|
* A base64-encoded string representing the binary data of the item.
|
|
39694
39807
|
*/
|
|
39695
|
-
blob: ZodString
|
|
39808
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
39696
39809
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
39697
39810
|
/**
|
|
39698
39811
|
* The URI of this resource.
|
|
@@ -39711,7 +39824,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
39711
39824
|
/**
|
|
39712
39825
|
* A base64-encoded string representing the binary data of the item.
|
|
39713
39826
|
*/
|
|
39714
|
-
blob: ZodString
|
|
39827
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
39715
39828
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
39716
39829
|
/**
|
|
39717
39830
|
* The URI of this resource.
|
|
@@ -39730,7 +39843,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
39730
39843
|
/**
|
|
39731
39844
|
* A base64-encoded string representing the binary data of the item.
|
|
39732
39845
|
*/
|
|
39733
|
-
blob: ZodString
|
|
39846
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
39734
39847
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
39735
39848
|
/**
|
|
39736
39849
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -39814,7 +39927,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
39814
39927
|
/**
|
|
39815
39928
|
* A base64-encoded string representing the binary data of the item.
|
|
39816
39929
|
*/
|
|
39817
|
-
blob: ZodString
|
|
39930
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
39818
39931
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
39819
39932
|
/**
|
|
39820
39933
|
* The URI of this resource.
|
|
@@ -39833,7 +39946,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
39833
39946
|
/**
|
|
39834
39947
|
* A base64-encoded string representing the binary data of the item.
|
|
39835
39948
|
*/
|
|
39836
|
-
blob: ZodString
|
|
39949
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
39837
39950
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
39838
39951
|
/**
|
|
39839
39952
|
* The URI of this resource.
|
|
@@ -39852,7 +39965,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
39852
39965
|
/**
|
|
39853
39966
|
* A base64-encoded string representing the binary data of the item.
|
|
39854
39967
|
*/
|
|
39855
|
-
blob: ZodString
|
|
39968
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
39856
39969
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
39857
39970
|
/**
|
|
39858
39971
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -39912,7 +40025,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
39912
40025
|
/**
|
|
39913
40026
|
* The base64-encoded image data.
|
|
39914
40027
|
*/
|
|
39915
|
-
data: ZodString
|
|
40028
|
+
data: ZodEffects<ZodString, string, string>;
|
|
39916
40029
|
/**
|
|
39917
40030
|
* The MIME type of the image. Different providers may support different image types.
|
|
39918
40031
|
*/
|
|
@@ -39927,7 +40040,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
39927
40040
|
/**
|
|
39928
40041
|
* The base64-encoded image data.
|
|
39929
40042
|
*/
|
|
39930
|
-
data: ZodString
|
|
40043
|
+
data: ZodEffects<ZodString, string, string>;
|
|
39931
40044
|
/**
|
|
39932
40045
|
* The MIME type of the image. Different providers may support different image types.
|
|
39933
40046
|
*/
|
|
@@ -39942,7 +40055,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
39942
40055
|
/**
|
|
39943
40056
|
* The base64-encoded image data.
|
|
39944
40057
|
*/
|
|
39945
|
-
data: ZodString
|
|
40058
|
+
data: ZodEffects<ZodString, string, string>;
|
|
39946
40059
|
/**
|
|
39947
40060
|
* The MIME type of the image. Different providers may support different image types.
|
|
39948
40061
|
*/
|
|
@@ -39957,7 +40070,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
39957
40070
|
/**
|
|
39958
40071
|
* The base64-encoded audio data.
|
|
39959
40072
|
*/
|
|
39960
|
-
data: ZodString
|
|
40073
|
+
data: ZodEffects<ZodString, string, string>;
|
|
39961
40074
|
/**
|
|
39962
40075
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
39963
40076
|
*/
|
|
@@ -39972,7 +40085,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
39972
40085
|
/**
|
|
39973
40086
|
* The base64-encoded audio data.
|
|
39974
40087
|
*/
|
|
39975
|
-
data: ZodString
|
|
40088
|
+
data: ZodEffects<ZodString, string, string>;
|
|
39976
40089
|
/**
|
|
39977
40090
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
39978
40091
|
*/
|
|
@@ -39987,7 +40100,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
39987
40100
|
/**
|
|
39988
40101
|
* The base64-encoded audio data.
|
|
39989
40102
|
*/
|
|
39990
|
-
data: ZodString
|
|
40103
|
+
data: ZodEffects<ZodString, string, string>;
|
|
39991
40104
|
/**
|
|
39992
40105
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
39993
40106
|
*/
|
|
@@ -40176,7 +40289,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
40176
40289
|
/**
|
|
40177
40290
|
* A base64-encoded string representing the binary data of the item.
|
|
40178
40291
|
*/
|
|
40179
|
-
blob: ZodString
|
|
40292
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
40180
40293
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
40181
40294
|
/**
|
|
40182
40295
|
* The URI of this resource.
|
|
@@ -40195,7 +40308,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
40195
40308
|
/**
|
|
40196
40309
|
* A base64-encoded string representing the binary data of the item.
|
|
40197
40310
|
*/
|
|
40198
|
-
blob: ZodString
|
|
40311
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
40199
40312
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
40200
40313
|
/**
|
|
40201
40314
|
* The URI of this resource.
|
|
@@ -40214,7 +40327,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
40214
40327
|
/**
|
|
40215
40328
|
* A base64-encoded string representing the binary data of the item.
|
|
40216
40329
|
*/
|
|
40217
|
-
blob: ZodString
|
|
40330
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
40218
40331
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
40219
40332
|
/**
|
|
40220
40333
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -40298,7 +40411,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
40298
40411
|
/**
|
|
40299
40412
|
* A base64-encoded string representing the binary data of the item.
|
|
40300
40413
|
*/
|
|
40301
|
-
blob: ZodString
|
|
40414
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
40302
40415
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
40303
40416
|
/**
|
|
40304
40417
|
* The URI of this resource.
|
|
@@ -40317,7 +40430,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
40317
40430
|
/**
|
|
40318
40431
|
* A base64-encoded string representing the binary data of the item.
|
|
40319
40432
|
*/
|
|
40320
|
-
blob: ZodString
|
|
40433
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
40321
40434
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
40322
40435
|
/**
|
|
40323
40436
|
* The URI of this resource.
|
|
@@ -40336,7 +40449,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
40336
40449
|
/**
|
|
40337
40450
|
* A base64-encoded string representing the binary data of the item.
|
|
40338
40451
|
*/
|
|
40339
|
-
blob: ZodString
|
|
40452
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
40340
40453
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
40341
40454
|
/**
|
|
40342
40455
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -40420,7 +40533,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
40420
40533
|
/**
|
|
40421
40534
|
* A base64-encoded string representing the binary data of the item.
|
|
40422
40535
|
*/
|
|
40423
|
-
blob: ZodString
|
|
40536
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
40424
40537
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
40425
40538
|
/**
|
|
40426
40539
|
* The URI of this resource.
|
|
@@ -40439,7 +40552,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
40439
40552
|
/**
|
|
40440
40553
|
* A base64-encoded string representing the binary data of the item.
|
|
40441
40554
|
*/
|
|
40442
|
-
blob: ZodString
|
|
40555
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
40443
40556
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
40444
40557
|
/**
|
|
40445
40558
|
* The URI of this resource.
|
|
@@ -40458,7 +40571,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
40458
40571
|
/**
|
|
40459
40572
|
* A base64-encoded string representing the binary data of the item.
|
|
40460
40573
|
*/
|
|
40461
|
-
blob: ZodString
|
|
40574
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
40462
40575
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
40463
40576
|
/**
|
|
40464
40577
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -40506,7 +40619,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
40506
40619
|
/**
|
|
40507
40620
|
* The base64-encoded image data.
|
|
40508
40621
|
*/
|
|
40509
|
-
data: ZodString
|
|
40622
|
+
data: ZodEffects<ZodString, string, string>;
|
|
40510
40623
|
/**
|
|
40511
40624
|
* The MIME type of the image. Different providers may support different image types.
|
|
40512
40625
|
*/
|
|
@@ -40521,7 +40634,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
40521
40634
|
/**
|
|
40522
40635
|
* The base64-encoded image data.
|
|
40523
40636
|
*/
|
|
40524
|
-
data: ZodString
|
|
40637
|
+
data: ZodEffects<ZodString, string, string>;
|
|
40525
40638
|
/**
|
|
40526
40639
|
* The MIME type of the image. Different providers may support different image types.
|
|
40527
40640
|
*/
|
|
@@ -40536,7 +40649,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
40536
40649
|
/**
|
|
40537
40650
|
* The base64-encoded image data.
|
|
40538
40651
|
*/
|
|
40539
|
-
data: ZodString
|
|
40652
|
+
data: ZodEffects<ZodString, string, string>;
|
|
40540
40653
|
/**
|
|
40541
40654
|
* The MIME type of the image. Different providers may support different image types.
|
|
40542
40655
|
*/
|
|
@@ -40551,7 +40664,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
40551
40664
|
/**
|
|
40552
40665
|
* The base64-encoded audio data.
|
|
40553
40666
|
*/
|
|
40554
|
-
data: ZodString
|
|
40667
|
+
data: ZodEffects<ZodString, string, string>;
|
|
40555
40668
|
/**
|
|
40556
40669
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
40557
40670
|
*/
|
|
@@ -40566,7 +40679,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
40566
40679
|
/**
|
|
40567
40680
|
* The base64-encoded audio data.
|
|
40568
40681
|
*/
|
|
40569
|
-
data: ZodString
|
|
40682
|
+
data: ZodEffects<ZodString, string, string>;
|
|
40570
40683
|
/**
|
|
40571
40684
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
40572
40685
|
*/
|
|
@@ -40581,7 +40694,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
40581
40694
|
/**
|
|
40582
40695
|
* The base64-encoded audio data.
|
|
40583
40696
|
*/
|
|
40584
|
-
data: ZodString
|
|
40697
|
+
data: ZodEffects<ZodString, string, string>;
|
|
40585
40698
|
/**
|
|
40586
40699
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
40587
40700
|
*/
|
|
@@ -40770,7 +40883,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
40770
40883
|
/**
|
|
40771
40884
|
* A base64-encoded string representing the binary data of the item.
|
|
40772
40885
|
*/
|
|
40773
|
-
blob: ZodString
|
|
40886
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
40774
40887
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
40775
40888
|
/**
|
|
40776
40889
|
* The URI of this resource.
|
|
@@ -40789,7 +40902,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
40789
40902
|
/**
|
|
40790
40903
|
* A base64-encoded string representing the binary data of the item.
|
|
40791
40904
|
*/
|
|
40792
|
-
blob: ZodString
|
|
40905
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
40793
40906
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
40794
40907
|
/**
|
|
40795
40908
|
* The URI of this resource.
|
|
@@ -40808,7 +40921,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
40808
40921
|
/**
|
|
40809
40922
|
* A base64-encoded string representing the binary data of the item.
|
|
40810
40923
|
*/
|
|
40811
|
-
blob: ZodString
|
|
40924
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
40812
40925
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
40813
40926
|
/**
|
|
40814
40927
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -40892,7 +41005,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
40892
41005
|
/**
|
|
40893
41006
|
* A base64-encoded string representing the binary data of the item.
|
|
40894
41007
|
*/
|
|
40895
|
-
blob: ZodString
|
|
41008
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
40896
41009
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
40897
41010
|
/**
|
|
40898
41011
|
* The URI of this resource.
|
|
@@ -40911,7 +41024,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
40911
41024
|
/**
|
|
40912
41025
|
* A base64-encoded string representing the binary data of the item.
|
|
40913
41026
|
*/
|
|
40914
|
-
blob: ZodString
|
|
41027
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
40915
41028
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
40916
41029
|
/**
|
|
40917
41030
|
* The URI of this resource.
|
|
@@ -40930,7 +41043,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
40930
41043
|
/**
|
|
40931
41044
|
* A base64-encoded string representing the binary data of the item.
|
|
40932
41045
|
*/
|
|
40933
|
-
blob: ZodString
|
|
41046
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
40934
41047
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
40935
41048
|
/**
|
|
40936
41049
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -41014,7 +41127,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
41014
41127
|
/**
|
|
41015
41128
|
* A base64-encoded string representing the binary data of the item.
|
|
41016
41129
|
*/
|
|
41017
|
-
blob: ZodString
|
|
41130
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
41018
41131
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
41019
41132
|
/**
|
|
41020
41133
|
* The URI of this resource.
|
|
@@ -41033,7 +41146,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
41033
41146
|
/**
|
|
41034
41147
|
* A base64-encoded string representing the binary data of the item.
|
|
41035
41148
|
*/
|
|
41036
|
-
blob: ZodString
|
|
41149
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
41037
41150
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
41038
41151
|
/**
|
|
41039
41152
|
* The URI of this resource.
|
|
@@ -41052,7 +41165,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
41052
41165
|
/**
|
|
41053
41166
|
* A base64-encoded string representing the binary data of the item.
|
|
41054
41167
|
*/
|
|
41055
|
-
blob: ZodString
|
|
41168
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
41056
41169
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
41057
41170
|
/**
|
|
41058
41171
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -41100,7 +41213,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
41100
41213
|
/**
|
|
41101
41214
|
* The base64-encoded image data.
|
|
41102
41215
|
*/
|
|
41103
|
-
data: ZodString
|
|
41216
|
+
data: ZodEffects<ZodString, string, string>;
|
|
41104
41217
|
/**
|
|
41105
41218
|
* The MIME type of the image. Different providers may support different image types.
|
|
41106
41219
|
*/
|
|
@@ -41115,7 +41228,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
41115
41228
|
/**
|
|
41116
41229
|
* The base64-encoded image data.
|
|
41117
41230
|
*/
|
|
41118
|
-
data: ZodString
|
|
41231
|
+
data: ZodEffects<ZodString, string, string>;
|
|
41119
41232
|
/**
|
|
41120
41233
|
* The MIME type of the image. Different providers may support different image types.
|
|
41121
41234
|
*/
|
|
@@ -41130,7 +41243,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
41130
41243
|
/**
|
|
41131
41244
|
* The base64-encoded image data.
|
|
41132
41245
|
*/
|
|
41133
|
-
data: ZodString
|
|
41246
|
+
data: ZodEffects<ZodString, string, string>;
|
|
41134
41247
|
/**
|
|
41135
41248
|
* The MIME type of the image. Different providers may support different image types.
|
|
41136
41249
|
*/
|
|
@@ -41145,7 +41258,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
41145
41258
|
/**
|
|
41146
41259
|
* The base64-encoded audio data.
|
|
41147
41260
|
*/
|
|
41148
|
-
data: ZodString
|
|
41261
|
+
data: ZodEffects<ZodString, string, string>;
|
|
41149
41262
|
/**
|
|
41150
41263
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
41151
41264
|
*/
|
|
@@ -41160,7 +41273,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
41160
41273
|
/**
|
|
41161
41274
|
* The base64-encoded audio data.
|
|
41162
41275
|
*/
|
|
41163
|
-
data: ZodString
|
|
41276
|
+
data: ZodEffects<ZodString, string, string>;
|
|
41164
41277
|
/**
|
|
41165
41278
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
41166
41279
|
*/
|
|
@@ -41175,7 +41288,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
41175
41288
|
/**
|
|
41176
41289
|
* The base64-encoded audio data.
|
|
41177
41290
|
*/
|
|
41178
|
-
data: ZodString
|
|
41291
|
+
data: ZodEffects<ZodString, string, string>;
|
|
41179
41292
|
/**
|
|
41180
41293
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
41181
41294
|
*/
|
|
@@ -41364,7 +41477,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
41364
41477
|
/**
|
|
41365
41478
|
* A base64-encoded string representing the binary data of the item.
|
|
41366
41479
|
*/
|
|
41367
|
-
blob: ZodString
|
|
41480
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
41368
41481
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
41369
41482
|
/**
|
|
41370
41483
|
* The URI of this resource.
|
|
@@ -41383,7 +41496,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
41383
41496
|
/**
|
|
41384
41497
|
* A base64-encoded string representing the binary data of the item.
|
|
41385
41498
|
*/
|
|
41386
|
-
blob: ZodString
|
|
41499
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
41387
41500
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
41388
41501
|
/**
|
|
41389
41502
|
* The URI of this resource.
|
|
@@ -41402,7 +41515,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
41402
41515
|
/**
|
|
41403
41516
|
* A base64-encoded string representing the binary data of the item.
|
|
41404
41517
|
*/
|
|
41405
|
-
blob: ZodString
|
|
41518
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
41406
41519
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
41407
41520
|
/**
|
|
41408
41521
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -41486,7 +41599,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
41486
41599
|
/**
|
|
41487
41600
|
* A base64-encoded string representing the binary data of the item.
|
|
41488
41601
|
*/
|
|
41489
|
-
blob: ZodString
|
|
41602
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
41490
41603
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
41491
41604
|
/**
|
|
41492
41605
|
* The URI of this resource.
|
|
@@ -41505,7 +41618,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
41505
41618
|
/**
|
|
41506
41619
|
* A base64-encoded string representing the binary data of the item.
|
|
41507
41620
|
*/
|
|
41508
|
-
blob: ZodString
|
|
41621
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
41509
41622
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
41510
41623
|
/**
|
|
41511
41624
|
* The URI of this resource.
|
|
@@ -41524,7 +41637,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
41524
41637
|
/**
|
|
41525
41638
|
* A base64-encoded string representing the binary data of the item.
|
|
41526
41639
|
*/
|
|
41527
|
-
blob: ZodString
|
|
41640
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
41528
41641
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
41529
41642
|
/**
|
|
41530
41643
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -41608,7 +41721,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
41608
41721
|
/**
|
|
41609
41722
|
* A base64-encoded string representing the binary data of the item.
|
|
41610
41723
|
*/
|
|
41611
|
-
blob: ZodString
|
|
41724
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
41612
41725
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
41613
41726
|
/**
|
|
41614
41727
|
* The URI of this resource.
|
|
@@ -41627,7 +41740,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
41627
41740
|
/**
|
|
41628
41741
|
* A base64-encoded string representing the binary data of the item.
|
|
41629
41742
|
*/
|
|
41630
|
-
blob: ZodString
|
|
41743
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
41631
41744
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
41632
41745
|
/**
|
|
41633
41746
|
* The URI of this resource.
|
|
@@ -41646,7 +41759,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
41646
41759
|
/**
|
|
41647
41760
|
* A base64-encoded string representing the binary data of the item.
|
|
41648
41761
|
*/
|
|
41649
|
-
blob: ZodString
|
|
41762
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
41650
41763
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
41651
41764
|
/**
|
|
41652
41765
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -43024,7 +43137,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
43024
43137
|
/**
|
|
43025
43138
|
* A base64-encoded string representing the binary data of the item.
|
|
43026
43139
|
*/
|
|
43027
|
-
blob: ZodString
|
|
43140
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
43028
43141
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
43029
43142
|
/**
|
|
43030
43143
|
* The URI of this resource.
|
|
@@ -43043,7 +43156,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
43043
43156
|
/**
|
|
43044
43157
|
* A base64-encoded string representing the binary data of the item.
|
|
43045
43158
|
*/
|
|
43046
|
-
blob: ZodString
|
|
43159
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
43047
43160
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
43048
43161
|
/**
|
|
43049
43162
|
* The URI of this resource.
|
|
@@ -43062,7 +43175,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
43062
43175
|
/**
|
|
43063
43176
|
* A base64-encoded string representing the binary data of the item.
|
|
43064
43177
|
*/
|
|
43065
|
-
blob: ZodString
|
|
43178
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
43066
43179
|
}>, ZodTypeAny, "passthrough">>]>, "many">;
|
|
43067
43180
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
43068
43181
|
/**
|
|
@@ -43146,7 +43259,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
43146
43259
|
/**
|
|
43147
43260
|
* A base64-encoded string representing the binary data of the item.
|
|
43148
43261
|
*/
|
|
43149
|
-
blob: ZodString
|
|
43262
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
43150
43263
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
43151
43264
|
/**
|
|
43152
43265
|
* The URI of this resource.
|
|
@@ -43165,7 +43278,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
43165
43278
|
/**
|
|
43166
43279
|
* A base64-encoded string representing the binary data of the item.
|
|
43167
43280
|
*/
|
|
43168
|
-
blob: ZodString
|
|
43281
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
43169
43282
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
43170
43283
|
/**
|
|
43171
43284
|
* The URI of this resource.
|
|
@@ -43184,7 +43297,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
43184
43297
|
/**
|
|
43185
43298
|
* A base64-encoded string representing the binary data of the item.
|
|
43186
43299
|
*/
|
|
43187
|
-
blob: ZodString
|
|
43300
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
43188
43301
|
}>, ZodTypeAny, "passthrough">>]>, "many">;
|
|
43189
43302
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
43190
43303
|
/**
|
|
@@ -43268,7 +43381,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
43268
43381
|
/**
|
|
43269
43382
|
* A base64-encoded string representing the binary data of the item.
|
|
43270
43383
|
*/
|
|
43271
|
-
blob: ZodString
|
|
43384
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
43272
43385
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
43273
43386
|
/**
|
|
43274
43387
|
* The URI of this resource.
|
|
@@ -43287,7 +43400,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
43287
43400
|
/**
|
|
43288
43401
|
* A base64-encoded string representing the binary data of the item.
|
|
43289
43402
|
*/
|
|
43290
|
-
blob: ZodString
|
|
43403
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
43291
43404
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
43292
43405
|
/**
|
|
43293
43406
|
* The URI of this resource.
|
|
@@ -43306,7 +43419,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
43306
43419
|
/**
|
|
43307
43420
|
* A base64-encoded string representing the binary data of the item.
|
|
43308
43421
|
*/
|
|
43309
|
-
blob: ZodString
|
|
43422
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
43310
43423
|
}>, ZodTypeAny, "passthrough">>]>, "many">;
|
|
43311
43424
|
}>, ZodTypeAny, "passthrough">>, ZodObject<objectUtil.extendShape<{
|
|
43312
43425
|
/**
|
|
@@ -43359,7 +43472,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
43359
43472
|
/**
|
|
43360
43473
|
* The base64-encoded image data.
|
|
43361
43474
|
*/
|
|
43362
|
-
data: ZodString
|
|
43475
|
+
data: ZodEffects<ZodString, string, string>;
|
|
43363
43476
|
/**
|
|
43364
43477
|
* The MIME type of the image. Different providers may support different image types.
|
|
43365
43478
|
*/
|
|
@@ -43374,7 +43487,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
43374
43487
|
/**
|
|
43375
43488
|
* The base64-encoded image data.
|
|
43376
43489
|
*/
|
|
43377
|
-
data: ZodString
|
|
43490
|
+
data: ZodEffects<ZodString, string, string>;
|
|
43378
43491
|
/**
|
|
43379
43492
|
* The MIME type of the image. Different providers may support different image types.
|
|
43380
43493
|
*/
|
|
@@ -43389,7 +43502,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
43389
43502
|
/**
|
|
43390
43503
|
* The base64-encoded image data.
|
|
43391
43504
|
*/
|
|
43392
|
-
data: ZodString
|
|
43505
|
+
data: ZodEffects<ZodString, string, string>;
|
|
43393
43506
|
/**
|
|
43394
43507
|
* The MIME type of the image. Different providers may support different image types.
|
|
43395
43508
|
*/
|
|
@@ -43404,7 +43517,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
43404
43517
|
/**
|
|
43405
43518
|
* The base64-encoded audio data.
|
|
43406
43519
|
*/
|
|
43407
|
-
data: ZodString
|
|
43520
|
+
data: ZodEffects<ZodString, string, string>;
|
|
43408
43521
|
/**
|
|
43409
43522
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
43410
43523
|
*/
|
|
@@ -43419,7 +43532,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
43419
43532
|
/**
|
|
43420
43533
|
* The base64-encoded audio data.
|
|
43421
43534
|
*/
|
|
43422
|
-
data: ZodString
|
|
43535
|
+
data: ZodEffects<ZodString, string, string>;
|
|
43423
43536
|
/**
|
|
43424
43537
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
43425
43538
|
*/
|
|
@@ -43434,7 +43547,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
43434
43547
|
/**
|
|
43435
43548
|
* The base64-encoded audio data.
|
|
43436
43549
|
*/
|
|
43437
|
-
data: ZodString
|
|
43550
|
+
data: ZodEffects<ZodString, string, string>;
|
|
43438
43551
|
/**
|
|
43439
43552
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
43440
43553
|
*/
|
|
@@ -43623,7 +43736,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
43623
43736
|
/**
|
|
43624
43737
|
* A base64-encoded string representing the binary data of the item.
|
|
43625
43738
|
*/
|
|
43626
|
-
blob: ZodString
|
|
43739
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
43627
43740
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
43628
43741
|
/**
|
|
43629
43742
|
* The URI of this resource.
|
|
@@ -43642,7 +43755,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
43642
43755
|
/**
|
|
43643
43756
|
* A base64-encoded string representing the binary data of the item.
|
|
43644
43757
|
*/
|
|
43645
|
-
blob: ZodString
|
|
43758
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
43646
43759
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
43647
43760
|
/**
|
|
43648
43761
|
* The URI of this resource.
|
|
@@ -43661,7 +43774,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
43661
43774
|
/**
|
|
43662
43775
|
* A base64-encoded string representing the binary data of the item.
|
|
43663
43776
|
*/
|
|
43664
|
-
blob: ZodString
|
|
43777
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
43665
43778
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
43666
43779
|
/**
|
|
43667
43780
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -43745,7 +43858,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
43745
43858
|
/**
|
|
43746
43859
|
* A base64-encoded string representing the binary data of the item.
|
|
43747
43860
|
*/
|
|
43748
|
-
blob: ZodString
|
|
43861
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
43749
43862
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
43750
43863
|
/**
|
|
43751
43864
|
* The URI of this resource.
|
|
@@ -43764,7 +43877,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
43764
43877
|
/**
|
|
43765
43878
|
* A base64-encoded string representing the binary data of the item.
|
|
43766
43879
|
*/
|
|
43767
|
-
blob: ZodString
|
|
43880
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
43768
43881
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
43769
43882
|
/**
|
|
43770
43883
|
* The URI of this resource.
|
|
@@ -43783,7 +43896,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
43783
43896
|
/**
|
|
43784
43897
|
* A base64-encoded string representing the binary data of the item.
|
|
43785
43898
|
*/
|
|
43786
|
-
blob: ZodString
|
|
43899
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
43787
43900
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
43788
43901
|
/**
|
|
43789
43902
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -43867,7 +43980,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
43867
43980
|
/**
|
|
43868
43981
|
* A base64-encoded string representing the binary data of the item.
|
|
43869
43982
|
*/
|
|
43870
|
-
blob: ZodString
|
|
43983
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
43871
43984
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
43872
43985
|
/**
|
|
43873
43986
|
* The URI of this resource.
|
|
@@ -43886,7 +43999,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
43886
43999
|
/**
|
|
43887
44000
|
* A base64-encoded string representing the binary data of the item.
|
|
43888
44001
|
*/
|
|
43889
|
-
blob: ZodString
|
|
44002
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
43890
44003
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
43891
44004
|
/**
|
|
43892
44005
|
* The URI of this resource.
|
|
@@ -43905,7 +44018,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
43905
44018
|
/**
|
|
43906
44019
|
* A base64-encoded string representing the binary data of the item.
|
|
43907
44020
|
*/
|
|
43908
|
-
blob: ZodString
|
|
44021
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
43909
44022
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
43910
44023
|
/**
|
|
43911
44024
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -43985,7 +44098,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
43985
44098
|
/**
|
|
43986
44099
|
* The base64-encoded image data.
|
|
43987
44100
|
*/
|
|
43988
|
-
data: ZodString
|
|
44101
|
+
data: ZodEffects<ZodString, string, string>;
|
|
43989
44102
|
/**
|
|
43990
44103
|
* The MIME type of the image. Different providers may support different image types.
|
|
43991
44104
|
*/
|
|
@@ -44000,7 +44113,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
44000
44113
|
/**
|
|
44001
44114
|
* The base64-encoded image data.
|
|
44002
44115
|
*/
|
|
44003
|
-
data: ZodString
|
|
44116
|
+
data: ZodEffects<ZodString, string, string>;
|
|
44004
44117
|
/**
|
|
44005
44118
|
* The MIME type of the image. Different providers may support different image types.
|
|
44006
44119
|
*/
|
|
@@ -44015,7 +44128,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
44015
44128
|
/**
|
|
44016
44129
|
* The base64-encoded image data.
|
|
44017
44130
|
*/
|
|
44018
|
-
data: ZodString
|
|
44131
|
+
data: ZodEffects<ZodString, string, string>;
|
|
44019
44132
|
/**
|
|
44020
44133
|
* The MIME type of the image. Different providers may support different image types.
|
|
44021
44134
|
*/
|
|
@@ -44030,7 +44143,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
44030
44143
|
/**
|
|
44031
44144
|
* The base64-encoded audio data.
|
|
44032
44145
|
*/
|
|
44033
|
-
data: ZodString
|
|
44146
|
+
data: ZodEffects<ZodString, string, string>;
|
|
44034
44147
|
/**
|
|
44035
44148
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
44036
44149
|
*/
|
|
@@ -44045,7 +44158,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
44045
44158
|
/**
|
|
44046
44159
|
* The base64-encoded audio data.
|
|
44047
44160
|
*/
|
|
44048
|
-
data: ZodString
|
|
44161
|
+
data: ZodEffects<ZodString, string, string>;
|
|
44049
44162
|
/**
|
|
44050
44163
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
44051
44164
|
*/
|
|
@@ -44060,7 +44173,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
44060
44173
|
/**
|
|
44061
44174
|
* The base64-encoded audio data.
|
|
44062
44175
|
*/
|
|
44063
|
-
data: ZodString
|
|
44176
|
+
data: ZodEffects<ZodString, string, string>;
|
|
44064
44177
|
/**
|
|
44065
44178
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
44066
44179
|
*/
|
|
@@ -44249,7 +44362,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
44249
44362
|
/**
|
|
44250
44363
|
* A base64-encoded string representing the binary data of the item.
|
|
44251
44364
|
*/
|
|
44252
|
-
blob: ZodString
|
|
44365
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
44253
44366
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
44254
44367
|
/**
|
|
44255
44368
|
* The URI of this resource.
|
|
@@ -44268,7 +44381,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
44268
44381
|
/**
|
|
44269
44382
|
* A base64-encoded string representing the binary data of the item.
|
|
44270
44383
|
*/
|
|
44271
|
-
blob: ZodString
|
|
44384
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
44272
44385
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
44273
44386
|
/**
|
|
44274
44387
|
* The URI of this resource.
|
|
@@ -44287,7 +44400,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
44287
44400
|
/**
|
|
44288
44401
|
* A base64-encoded string representing the binary data of the item.
|
|
44289
44402
|
*/
|
|
44290
|
-
blob: ZodString
|
|
44403
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
44291
44404
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
44292
44405
|
/**
|
|
44293
44406
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -44371,7 +44484,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
44371
44484
|
/**
|
|
44372
44485
|
* A base64-encoded string representing the binary data of the item.
|
|
44373
44486
|
*/
|
|
44374
|
-
blob: ZodString
|
|
44487
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
44375
44488
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
44376
44489
|
/**
|
|
44377
44490
|
* The URI of this resource.
|
|
@@ -44390,7 +44503,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
44390
44503
|
/**
|
|
44391
44504
|
* A base64-encoded string representing the binary data of the item.
|
|
44392
44505
|
*/
|
|
44393
|
-
blob: ZodString
|
|
44506
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
44394
44507
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
44395
44508
|
/**
|
|
44396
44509
|
* The URI of this resource.
|
|
@@ -44409,7 +44522,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
44409
44522
|
/**
|
|
44410
44523
|
* A base64-encoded string representing the binary data of the item.
|
|
44411
44524
|
*/
|
|
44412
|
-
blob: ZodString
|
|
44525
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
44413
44526
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
44414
44527
|
/**
|
|
44415
44528
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -44493,7 +44606,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
44493
44606
|
/**
|
|
44494
44607
|
* A base64-encoded string representing the binary data of the item.
|
|
44495
44608
|
*/
|
|
44496
|
-
blob: ZodString
|
|
44609
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
44497
44610
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
44498
44611
|
/**
|
|
44499
44612
|
* The URI of this resource.
|
|
@@ -44512,7 +44625,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
44512
44625
|
/**
|
|
44513
44626
|
* A base64-encoded string representing the binary data of the item.
|
|
44514
44627
|
*/
|
|
44515
|
-
blob: ZodString
|
|
44628
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
44516
44629
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
44517
44630
|
/**
|
|
44518
44631
|
* The URI of this resource.
|
|
@@ -44531,7 +44644,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
44531
44644
|
/**
|
|
44532
44645
|
* A base64-encoded string representing the binary data of the item.
|
|
44533
44646
|
*/
|
|
44534
|
-
blob: ZodString
|
|
44647
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
44535
44648
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
44536
44649
|
/**
|
|
44537
44650
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -44611,7 +44724,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
44611
44724
|
/**
|
|
44612
44725
|
* The base64-encoded image data.
|
|
44613
44726
|
*/
|
|
44614
|
-
data: ZodString
|
|
44727
|
+
data: ZodEffects<ZodString, string, string>;
|
|
44615
44728
|
/**
|
|
44616
44729
|
* The MIME type of the image. Different providers may support different image types.
|
|
44617
44730
|
*/
|
|
@@ -44626,7 +44739,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
44626
44739
|
/**
|
|
44627
44740
|
* The base64-encoded image data.
|
|
44628
44741
|
*/
|
|
44629
|
-
data: ZodString
|
|
44742
|
+
data: ZodEffects<ZodString, string, string>;
|
|
44630
44743
|
/**
|
|
44631
44744
|
* The MIME type of the image. Different providers may support different image types.
|
|
44632
44745
|
*/
|
|
@@ -44641,7 +44754,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
44641
44754
|
/**
|
|
44642
44755
|
* The base64-encoded image data.
|
|
44643
44756
|
*/
|
|
44644
|
-
data: ZodString
|
|
44757
|
+
data: ZodEffects<ZodString, string, string>;
|
|
44645
44758
|
/**
|
|
44646
44759
|
* The MIME type of the image. Different providers may support different image types.
|
|
44647
44760
|
*/
|
|
@@ -44656,7 +44769,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
44656
44769
|
/**
|
|
44657
44770
|
* The base64-encoded audio data.
|
|
44658
44771
|
*/
|
|
44659
|
-
data: ZodString
|
|
44772
|
+
data: ZodEffects<ZodString, string, string>;
|
|
44660
44773
|
/**
|
|
44661
44774
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
44662
44775
|
*/
|
|
@@ -44671,7 +44784,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
44671
44784
|
/**
|
|
44672
44785
|
* The base64-encoded audio data.
|
|
44673
44786
|
*/
|
|
44674
|
-
data: ZodString
|
|
44787
|
+
data: ZodEffects<ZodString, string, string>;
|
|
44675
44788
|
/**
|
|
44676
44789
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
44677
44790
|
*/
|
|
@@ -44686,7 +44799,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
44686
44799
|
/**
|
|
44687
44800
|
* The base64-encoded audio data.
|
|
44688
44801
|
*/
|
|
44689
|
-
data: ZodString
|
|
44802
|
+
data: ZodEffects<ZodString, string, string>;
|
|
44690
44803
|
/**
|
|
44691
44804
|
* The MIME type of the audio. Different providers may support different audio types.
|
|
44692
44805
|
*/
|
|
@@ -44875,7 +44988,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
44875
44988
|
/**
|
|
44876
44989
|
* A base64-encoded string representing the binary data of the item.
|
|
44877
44990
|
*/
|
|
44878
|
-
blob: ZodString
|
|
44991
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
44879
44992
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
44880
44993
|
/**
|
|
44881
44994
|
* The URI of this resource.
|
|
@@ -44894,7 +45007,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
44894
45007
|
/**
|
|
44895
45008
|
* A base64-encoded string representing the binary data of the item.
|
|
44896
45009
|
*/
|
|
44897
|
-
blob: ZodString
|
|
45010
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
44898
45011
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
44899
45012
|
/**
|
|
44900
45013
|
* The URI of this resource.
|
|
@@ -44913,7 +45026,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
44913
45026
|
/**
|
|
44914
45027
|
* A base64-encoded string representing the binary data of the item.
|
|
44915
45028
|
*/
|
|
44916
|
-
blob: ZodString
|
|
45029
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
44917
45030
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
44918
45031
|
/**
|
|
44919
45032
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -44997,7 +45110,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
44997
45110
|
/**
|
|
44998
45111
|
* A base64-encoded string representing the binary data of the item.
|
|
44999
45112
|
*/
|
|
45000
|
-
blob: ZodString
|
|
45113
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
45001
45114
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
45002
45115
|
/**
|
|
45003
45116
|
* The URI of this resource.
|
|
@@ -45016,7 +45129,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
45016
45129
|
/**
|
|
45017
45130
|
* A base64-encoded string representing the binary data of the item.
|
|
45018
45131
|
*/
|
|
45019
|
-
blob: ZodString
|
|
45132
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
45020
45133
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
45021
45134
|
/**
|
|
45022
45135
|
* The URI of this resource.
|
|
@@ -45035,7 +45148,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
45035
45148
|
/**
|
|
45036
45149
|
* A base64-encoded string representing the binary data of the item.
|
|
45037
45150
|
*/
|
|
45038
|
-
blob: ZodString
|
|
45151
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
45039
45152
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
45040
45153
|
/**
|
|
45041
45154
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -45119,7 +45232,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
45119
45232
|
/**
|
|
45120
45233
|
* A base64-encoded string representing the binary data of the item.
|
|
45121
45234
|
*/
|
|
45122
|
-
blob: ZodString
|
|
45235
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
45123
45236
|
}>, "passthrough", ZodTypeAny, objectOutputType<objectUtil.extendShape<{
|
|
45124
45237
|
/**
|
|
45125
45238
|
* The URI of this resource.
|
|
@@ -45138,7 +45251,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
45138
45251
|
/**
|
|
45139
45252
|
* A base64-encoded string representing the binary data of the item.
|
|
45140
45253
|
*/
|
|
45141
|
-
blob: ZodString
|
|
45254
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
45142
45255
|
}>, ZodTypeAny, "passthrough">, objectInputType<objectUtil.extendShape<{
|
|
45143
45256
|
/**
|
|
45144
45257
|
* The URI of this resource.
|
|
@@ -45157,7 +45270,7 @@ declare const ServerResultSchema: ZodUnion<[ZodObject<{
|
|
|
45157
45270
|
/**
|
|
45158
45271
|
* A base64-encoded string representing the binary data of the item.
|
|
45159
45272
|
*/
|
|
45160
|
-
blob: ZodString
|
|
45273
|
+
blob: ZodEffects<ZodString, string, string>;
|
|
45161
45274
|
}>, ZodTypeAny, "passthrough">>]>;
|
|
45162
45275
|
/**
|
|
45163
45276
|
* See [MCP specification](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/47339c03c143bb4ec01a26e721a1b8fe66634ebe/docs/specification/draft/basic/index.mdx#general-fields)
|
|
@@ -46822,6 +46935,7 @@ type RequestMeta = Infer<typeof RequestMetaSchema>;
|
|
|
46822
46935
|
type Notification = Infer<typeof NotificationSchema>;
|
|
46823
46936
|
type Result = Infer<typeof ResultSchema>;
|
|
46824
46937
|
type RequestId = Infer<typeof RequestIdSchema>;
|
|
46938
|
+
type JSONRPCRequest = Infer<typeof JSONRPCRequestSchema>;
|
|
46825
46939
|
type JSONRPCMessage = Infer<typeof JSONRPCMessageSchema>;
|
|
46826
46940
|
type Implementation = Infer<typeof ImplementationSchema>;
|
|
46827
46941
|
type ClientCapabilities = Infer<typeof ClientCapabilitiesSchema>;
|
|
@@ -46932,6 +47046,13 @@ type ProtocolOptions = {
|
|
|
46932
47046
|
* Currently this defaults to false, for backwards compatibility with SDK versions that did not advertise capabilities correctly. In future, this will default to true.
|
|
46933
47047
|
*/
|
|
46934
47048
|
enforceStrictCapabilities?: boolean;
|
|
47049
|
+
/**
|
|
47050
|
+
* An array of notification method names that should be automatically debounced.
|
|
47051
|
+
* Any notifications with a method in this list will be coalesced if they
|
|
47052
|
+
* occur in the same tick of the event loop.
|
|
47053
|
+
* e.g., ['notifications/tools/list_changed']
|
|
47054
|
+
*/
|
|
47055
|
+
debouncedNotificationMethods?: string[];
|
|
46935
47056
|
};
|
|
46936
47057
|
/**
|
|
46937
47058
|
* Options that can be given per request.
|
|
@@ -47029,6 +47150,7 @@ declare abstract class Protocol<SendRequestT extends Request, SendNotificationT
|
|
|
47029
47150
|
private _responseHandlers;
|
|
47030
47151
|
private _progressHandlers;
|
|
47031
47152
|
private _timeoutInfo;
|
|
47153
|
+
private _pendingDebouncedNotifications;
|
|
47032
47154
|
/**
|
|
47033
47155
|
* Callback for when the connection is closed for any reason.
|
|
47034
47156
|
*
|
|
@@ -47044,7 +47166,7 @@ declare abstract class Protocol<SendRequestT extends Request, SendNotificationT
|
|
|
47044
47166
|
/**
|
|
47045
47167
|
* A handler to invoke for any request types that do not have their own handler installed.
|
|
47046
47168
|
*/
|
|
47047
|
-
fallbackRequestHandler?: (request:
|
|
47169
|
+
fallbackRequestHandler?: (request: JSONRPCRequest, extra: RequestHandlerExtra<SendRequestT, SendNotificationT>) => Promise<SendResultT>;
|
|
47048
47170
|
/**
|
|
47049
47171
|
* A handler to invoke for any notification types that do not have their own handler installed.
|
|
47050
47172
|
*/
|
|
@@ -47219,32 +47341,32 @@ declare class Server<RequestT extends Request = Request, NotificationT extends N
|
|
|
47219
47341
|
_meta: ZodOptional<ZodObject<{}, "passthrough", ZodTypeAny, objectOutputType<{}, ZodTypeAny, "passthrough">, objectInputType<{}, ZodTypeAny, "passthrough">>>;
|
|
47220
47342
|
}, ZodTypeAny, "passthrough">>, ZodObject<{
|
|
47221
47343
|
type: ZodLiteral<"image">;
|
|
47222
|
-
data: ZodString
|
|
47344
|
+
data: ZodEffects<ZodString, string, string>;
|
|
47223
47345
|
mimeType: ZodString;
|
|
47224
47346
|
_meta: ZodOptional<ZodObject<{}, "passthrough", ZodTypeAny, objectOutputType<{}, ZodTypeAny, "passthrough">, objectInputType<{}, ZodTypeAny, "passthrough">>>;
|
|
47225
47347
|
}, "passthrough", ZodTypeAny, objectOutputType<{
|
|
47226
47348
|
type: ZodLiteral<"image">;
|
|
47227
|
-
data: ZodString
|
|
47349
|
+
data: ZodEffects<ZodString, string, string>;
|
|
47228
47350
|
mimeType: ZodString;
|
|
47229
47351
|
_meta: ZodOptional<ZodObject<{}, "passthrough", ZodTypeAny, objectOutputType<{}, ZodTypeAny, "passthrough">, objectInputType<{}, ZodTypeAny, "passthrough">>>;
|
|
47230
47352
|
}, ZodTypeAny, "passthrough">, objectInputType<{
|
|
47231
47353
|
type: ZodLiteral<"image">;
|
|
47232
|
-
data: ZodString
|
|
47354
|
+
data: ZodEffects<ZodString, string, string>;
|
|
47233
47355
|
mimeType: ZodString;
|
|
47234
47356
|
_meta: ZodOptional<ZodObject<{}, "passthrough", ZodTypeAny, objectOutputType<{}, ZodTypeAny, "passthrough">, objectInputType<{}, ZodTypeAny, "passthrough">>>;
|
|
47235
47357
|
}, ZodTypeAny, "passthrough">>, ZodObject<{
|
|
47236
47358
|
type: ZodLiteral<"audio">;
|
|
47237
|
-
data: ZodString
|
|
47359
|
+
data: ZodEffects<ZodString, string, string>;
|
|
47238
47360
|
mimeType: ZodString;
|
|
47239
47361
|
_meta: ZodOptional<ZodObject<{}, "passthrough", ZodTypeAny, objectOutputType<{}, ZodTypeAny, "passthrough">, objectInputType<{}, ZodTypeAny, "passthrough">>>;
|
|
47240
47362
|
}, "passthrough", ZodTypeAny, objectOutputType<{
|
|
47241
47363
|
type: ZodLiteral<"audio">;
|
|
47242
|
-
data: ZodString
|
|
47364
|
+
data: ZodEffects<ZodString, string, string>;
|
|
47243
47365
|
mimeType: ZodString;
|
|
47244
47366
|
_meta: ZodOptional<ZodObject<{}, "passthrough", ZodTypeAny, objectOutputType<{}, ZodTypeAny, "passthrough">, objectInputType<{}, ZodTypeAny, "passthrough">>>;
|
|
47245
47367
|
}, ZodTypeAny, "passthrough">, objectInputType<{
|
|
47246
47368
|
type: ZodLiteral<"audio">;
|
|
47247
|
-
data: ZodString
|
|
47369
|
+
data: ZodEffects<ZodString, string, string>;
|
|
47248
47370
|
mimeType: ZodString;
|
|
47249
47371
|
_meta: ZodOptional<ZodObject<{}, "passthrough", ZodTypeAny, objectOutputType<{}, ZodTypeAny, "passthrough">, objectInputType<{}, ZodTypeAny, "passthrough">>>;
|
|
47250
47372
|
}, ZodTypeAny, "passthrough">>]>;
|
|
@@ -47354,7 +47476,8 @@ declare class McpServer {
|
|
|
47354
47476
|
* Registers a resource with a config object and callback.
|
|
47355
47477
|
* For static resources, use a URI string. For dynamic resources, use a ResourceTemplate.
|
|
47356
47478
|
*/
|
|
47357
|
-
registerResource(name: string, uriOrTemplate: string
|
|
47479
|
+
registerResource(name: string, uriOrTemplate: string, config: ResourceMetadata, readCallback: ReadResourceCallback): RegisteredResource;
|
|
47480
|
+
registerResource(name: string, uriOrTemplate: ResourceTemplate, config: ResourceMetadata, readCallback: ReadResourceTemplateCallback): RegisteredResourceTemplate;
|
|
47358
47481
|
private _createRegisteredResource;
|
|
47359
47482
|
private _createRegisteredResourceTemplate;
|
|
47360
47483
|
private _createRegisteredPrompt;
|
|
@@ -47591,12 +47714,16 @@ type RegisteredPrompt = {
|
|
|
47591
47714
|
};
|
|
47592
47715
|
|
|
47593
47716
|
interface LikeC4MCPServer {
|
|
47717
|
+
readonly mcp: McpServer;
|
|
47594
47718
|
readonly isStarted: boolean;
|
|
47595
47719
|
readonly port: number;
|
|
47596
|
-
start(port
|
|
47720
|
+
start(port?: number): Promise<void>;
|
|
47597
47721
|
stop(): Promise<void>;
|
|
47598
47722
|
}
|
|
47599
|
-
|
|
47723
|
+
|
|
47724
|
+
declare class LikeC4MCPServerFactory {
|
|
47725
|
+
private services;
|
|
47726
|
+
constructor(services: LikeC4Services);
|
|
47600
47727
|
create(options?: ServerOptions): McpServer;
|
|
47601
47728
|
}
|
|
47602
47729
|
|
|
@@ -47645,6 +47772,8 @@ interface LikeC4AddedSharedServices {
|
|
|
47645
47772
|
IndexManager: IndexManager;
|
|
47646
47773
|
LangiumDocuments: LangiumDocuments;
|
|
47647
47774
|
WorkspaceManager: LikeC4WorkspaceManager;
|
|
47775
|
+
FileSystemProvider: FileSystemProvider;
|
|
47776
|
+
FileSystemWatcher: FileSystemWatcher;
|
|
47648
47777
|
};
|
|
47649
47778
|
}
|
|
47650
47779
|
type LikeC4SharedServices = LangiumSharedServices & LikeC4AddedSharedServices;
|
|
@@ -47696,4 +47825,19 @@ interface LikeC4AddedServices {
|
|
|
47696
47825
|
}
|
|
47697
47826
|
type LikeC4Services = LangiumServices & LikeC4AddedServices;
|
|
47698
47827
|
|
|
47828
|
+
interface FileSystemWatcher extends AsyncDisposable {
|
|
47829
|
+
/**
|
|
47830
|
+
* Watches a folder for changes and triggers a reload of the documents and projects.
|
|
47831
|
+
*/
|
|
47832
|
+
watch(folder: string): void;
|
|
47833
|
+
}
|
|
47834
|
+
|
|
47835
|
+
interface FileSystemProvider extends FileSystemProvider$1 {
|
|
47836
|
+
/**
|
|
47837
|
+
* Scans the project files for the given URI.
|
|
47838
|
+
* @returns The list of file system entries that are contained within the specified directory.
|
|
47839
|
+
*/
|
|
47840
|
+
scanProjectFiles(folderUri: URI): Promise<FileSystemNode[]>;
|
|
47841
|
+
}
|
|
47842
|
+
|
|
47699
47843
|
export { type LikeC4LanguageServices as L, Range$1 as R, WorkspaceFolder as W, type LikeC4Services as a, type LikeC4Views as b };
|