@orq-ai/node 3.12.16 → 3.12.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/mcp-server.js +112 -112
- package/bin/mcp-server.js.map +30 -30
- package/examples/package-lock.json +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/models/operations/createbudget.js +2 -2
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createdataset.js +2 -2
- package/models/operations/createdatasetitem.js +2 -2
- package/models/operations/createdatasource.js +2 -2
- package/models/operations/createeval.js +16 -16
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/getbudget.js +2 -2
- package/models/operations/getevals.js +28 -28
- package/models/operations/listbudgets.js +2 -2
- package/models/operations/listcontacts.js +2 -2
- package/models/operations/listdatasetdatapoints.js +2 -2
- package/models/operations/listdatasets.js +2 -2
- package/models/operations/listdatasources.js +2 -2
- package/models/operations/retrievecontact.js +2 -2
- package/models/operations/retrievedatapoint.js +2 -2
- package/models/operations/retrievedataset.js +2 -2
- package/models/operations/retrievedatasource.js +2 -2
- package/models/operations/updatebudget.js +2 -2
- package/models/operations/updatecontact.js +2 -2
- package/models/operations/updatedatapoint.js +2 -2
- package/models/operations/updatedataset.js +2 -2
- package/models/operations/updatedatasource.js +2 -2
- package/models/operations/updateeval.js +16 -16
- package/package.json +1 -1
- package/packages/orq-rc/README.md +107 -90
- package/packages/orq-rc/docs/sdks/tools/README.md +488 -0
- package/packages/orq-rc/examples/package-lock.json +1 -1
- package/packages/orq-rc/jsr.json +1 -1
- package/packages/orq-rc/package-lock.json +2 -2
- package/packages/orq-rc/package.json +1 -1
- package/packages/orq-rc/src/funcs/toolsCreate.ts +163 -0
- package/packages/orq-rc/src/funcs/toolsDelete.ts +167 -0
- package/packages/orq-rc/src/funcs/toolsDuplicate.ts +175 -0
- package/packages/orq-rc/src/funcs/toolsList.ts +176 -0
- package/packages/orq-rc/src/funcs/toolsRetrieve.ts +166 -0
- package/packages/orq-rc/src/funcs/toolsUpdate.ts +176 -0
- package/packages/orq-rc/src/lib/config.ts +3 -3
- package/packages/orq-rc/src/mcp-server/mcp-server.ts +1 -1
- package/packages/orq-rc/src/mcp-server/server.ts +13 -1
- package/packages/orq-rc/src/mcp-server/tools/toolsCreate.ts +37 -0
- package/packages/orq-rc/src/mcp-server/tools/toolsDelete.ts +35 -0
- package/packages/orq-rc/src/mcp-server/tools/toolsDuplicate.ts +37 -0
- package/packages/orq-rc/src/mcp-server/tools/toolsList.ts +37 -0
- package/packages/orq-rc/src/mcp-server/tools/toolsRetrieve.ts +37 -0
- package/packages/orq-rc/src/mcp-server/tools/toolsUpdate.ts +37 -0
- package/packages/orq-rc/src/models/components/callsubagenttool.ts +109 -0
- package/packages/orq-rc/src/models/components/codeexecutiontool.ts +293 -0
- package/packages/orq-rc/src/models/components/currentdatetool.ts +107 -0
- package/packages/orq-rc/src/models/components/deployments.ts +52 -45
- package/packages/orq-rc/src/models/components/functiontool.ts +195 -0
- package/packages/orq-rc/src/models/components/googlesearchtool.ts +108 -0
- package/packages/orq-rc/src/models/components/httptool.ts +532 -0
- package/packages/orq-rc/src/models/components/index.ts +13 -0
- package/packages/orq-rc/src/models/components/queryknowledgebasetool.ts +111 -0
- package/packages/orq-rc/src/models/components/querymemorystoretool.ts +111 -0
- package/packages/orq-rc/src/models/components/retrieveagentstool.ts +109 -0
- package/packages/orq-rc/src/models/components/retrieveknowledgebasestool.ts +111 -0
- package/packages/orq-rc/src/models/components/retrievememorystorestool.ts +111 -0
- package/packages/orq-rc/src/models/components/webscrapertool.ts +105 -0
- package/packages/orq-rc/src/models/components/writememorystoretool.ts +111 -0
- package/packages/orq-rc/src/models/errors/duplicatetool.ts +91 -0
- package/packages/orq-rc/src/models/errors/index.ts +2 -0
- package/packages/orq-rc/src/models/errors/updatetool.ts +91 -0
- package/packages/orq-rc/src/models/operations/createbudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/createcontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdatasetitem.ts +10 -8
- package/packages/orq-rc/src/models/operations/createdatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/createeval.ts +60 -56
- package/packages/orq-rc/src/models/operations/createknowledge.ts +18 -0
- package/packages/orq-rc/src/models/operations/creatememorystore.ts +137 -136
- package/packages/orq-rc/src/models/operations/createprompt.ts +631 -314
- package/packages/orq-rc/src/models/operations/createtool.ts +4027 -0
- package/packages/orq-rc/src/models/operations/deletetool.ts +75 -0
- package/packages/orq-rc/src/models/operations/deploymentcreatemetric.ts +8 -6
- package/packages/orq-rc/src/models/operations/deploymentgetconfig.ts +362 -194
- package/packages/orq-rc/src/models/operations/deployments.ts +329 -160
- package/packages/orq-rc/src/models/operations/deploymentstream.ts +8 -6
- package/packages/orq-rc/src/models/operations/duplicatetool.ts +2311 -0
- package/packages/orq-rc/src/models/operations/fileget.ts +2 -2
- package/packages/orq-rc/src/models/operations/filelist.ts +2 -2
- package/packages/orq-rc/src/models/operations/fileupload.ts +2 -2
- package/packages/orq-rc/src/models/operations/getagent.ts +10 -10
- package/packages/orq-rc/src/models/operations/getallprompts.ts +333 -168
- package/packages/orq-rc/src/models/operations/getalltools.ts +2278 -0
- package/packages/orq-rc/src/models/operations/getbudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/getevals.ts +28 -28
- package/packages/orq-rc/src/models/operations/getoneknowledge.ts +9 -0
- package/packages/orq-rc/src/models/operations/getoneprompt.ts +329 -167
- package/packages/orq-rc/src/models/operations/getpromptversion.ts +337 -168
- package/packages/orq-rc/src/models/operations/index.ts +6 -0
- package/packages/orq-rc/src/models/operations/listagents.ts +10 -10
- package/packages/orq-rc/src/models/operations/listbudgets.ts +2 -2
- package/packages/orq-rc/src/models/operations/listcontacts.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +6 -5
- package/packages/orq-rc/src/models/operations/listdatasets.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasources.ts +2 -2
- package/packages/orq-rc/src/models/operations/listknowledgebases.ts +9 -0
- package/packages/orq-rc/src/models/operations/listpromptversions.ts +354 -183
- package/packages/orq-rc/src/models/operations/parse.ts +20 -335
- package/packages/orq-rc/src/models/operations/retrievecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +6 -5
- package/packages/orq-rc/src/models/operations/retrievedataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievetool.ts +2303 -0
- package/packages/orq-rc/src/models/operations/runagent.ts +412 -1375
- package/packages/orq-rc/src/models/operations/streamrunagent.ts +399 -1449
- package/packages/orq-rc/src/models/operations/updatebudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedatapoint.ts +10 -8
- package/packages/orq-rc/src/models/operations/updatedataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/updateeval.ts +57 -57
- package/packages/orq-rc/src/models/operations/updateknowledge.ts +18 -0
- package/packages/orq-rc/src/models/operations/updatememorystore.ts +136 -168
- package/packages/orq-rc/src/models/operations/updateprompt.ts +668 -335
- package/packages/orq-rc/src/models/operations/updatetool.ts +4231 -0
- package/packages/orq-rc/src/sdk/sdk.ts +6 -0
- package/packages/orq-rc/src/sdk/tools.ts +117 -0
- package/src/lib/config.ts +3 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/operations/createbudget.ts +2 -2
- package/src/models/operations/createcontact.ts +2 -2
- package/src/models/operations/createdataset.ts +2 -2
- package/src/models/operations/createdatasetitem.ts +2 -2
- package/src/models/operations/createdatasource.ts +2 -2
- package/src/models/operations/createeval.ts +16 -16
- package/src/models/operations/fileget.ts +2 -2
- package/src/models/operations/filelist.ts +2 -2
- package/src/models/operations/fileupload.ts +2 -2
- package/src/models/operations/getbudget.ts +2 -2
- package/src/models/operations/getevals.ts +28 -28
- package/src/models/operations/listbudgets.ts +2 -2
- package/src/models/operations/listcontacts.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +2 -2
- package/src/models/operations/listdatasets.ts +2 -2
- package/src/models/operations/listdatasources.ts +2 -2
- package/src/models/operations/retrievecontact.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +2 -2
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/retrievedatasource.ts +2 -2
- package/src/models/operations/updatebudget.ts +2 -2
- package/src/models/operations/updatecontact.ts +2 -2
- package/src/models/operations/updatedatapoint.ts +2 -2
- package/src/models/operations/updatedataset.ts +2 -2
- package/src/models/operations/updatedatasource.ts +2 -2
- package/src/models/operations/updateeval.ts +16 -16
|
@@ -123,46 +123,80 @@ export const DeploymentsFormat = {
|
|
|
123
123
|
*/
|
|
124
124
|
export type DeploymentsFormat = ClosedEnum<typeof DeploymentsFormat>;
|
|
125
125
|
|
|
126
|
-
export const
|
|
126
|
+
export const DeploymentsResponseFormat4 = {
|
|
127
|
+
Json: "json",
|
|
127
128
|
Text: "text",
|
|
129
|
+
Srt: "srt",
|
|
130
|
+
VerboseJson: "verbose_json",
|
|
131
|
+
Vtt: "vtt",
|
|
128
132
|
} as const;
|
|
129
|
-
export type
|
|
130
|
-
typeof
|
|
133
|
+
export type DeploymentsResponseFormat4 = ClosedEnum<
|
|
134
|
+
typeof DeploymentsResponseFormat4
|
|
131
135
|
>;
|
|
132
136
|
|
|
133
|
-
export
|
|
134
|
-
|
|
137
|
+
export const DeploymentsResponseFormat3 = {
|
|
138
|
+
Url: "url",
|
|
139
|
+
Base64Json: "base64_json",
|
|
140
|
+
} as const;
|
|
141
|
+
export type DeploymentsResponseFormat3 = ClosedEnum<
|
|
142
|
+
typeof DeploymentsResponseFormat3
|
|
143
|
+
>;
|
|
144
|
+
|
|
145
|
+
export const DeploymentsResponseFormat2 = {
|
|
146
|
+
Mp3: "mp3",
|
|
147
|
+
Opus: "opus",
|
|
148
|
+
Aac: "aac",
|
|
149
|
+
Flac: "flac",
|
|
150
|
+
Wav: "wav",
|
|
151
|
+
Pcm: "pcm",
|
|
152
|
+
} as const;
|
|
153
|
+
export type DeploymentsResponseFormat2 = ClosedEnum<
|
|
154
|
+
typeof DeploymentsResponseFormat2
|
|
155
|
+
>;
|
|
156
|
+
|
|
157
|
+
export const Deployments1DeploymentsType = {
|
|
158
|
+
Text: "text",
|
|
159
|
+
} as const;
|
|
160
|
+
export type Deployments1DeploymentsType = ClosedEnum<
|
|
161
|
+
typeof Deployments1DeploymentsType
|
|
162
|
+
>;
|
|
163
|
+
|
|
164
|
+
export type Deployments13 = {
|
|
165
|
+
type: Deployments1DeploymentsType;
|
|
135
166
|
};
|
|
136
167
|
|
|
137
|
-
export const
|
|
168
|
+
export const Deployments1Type = {
|
|
138
169
|
JsonObject: "json_object",
|
|
139
170
|
} as const;
|
|
140
|
-
export type
|
|
141
|
-
typeof DeploymentsResponseFormatType
|
|
142
|
-
>;
|
|
171
|
+
export type Deployments1Type = ClosedEnum<typeof Deployments1Type>;
|
|
143
172
|
|
|
144
|
-
export type
|
|
145
|
-
type:
|
|
173
|
+
export type Deployments12 = {
|
|
174
|
+
type: Deployments1Type;
|
|
146
175
|
};
|
|
147
176
|
|
|
148
|
-
export const
|
|
177
|
+
export const Deployments1DeploymentsResponseType = {
|
|
149
178
|
JsonSchema: "json_schema",
|
|
150
179
|
} as const;
|
|
151
|
-
export type
|
|
152
|
-
typeof
|
|
180
|
+
export type Deployments1DeploymentsResponseType = ClosedEnum<
|
|
181
|
+
typeof Deployments1DeploymentsResponseType
|
|
153
182
|
>;
|
|
154
183
|
|
|
155
|
-
export type
|
|
184
|
+
export type Deployments1JsonSchema = {
|
|
156
185
|
name: string;
|
|
157
186
|
strict?: boolean | undefined;
|
|
158
187
|
schema: { [k: string]: any };
|
|
159
188
|
};
|
|
160
189
|
|
|
161
|
-
export type
|
|
162
|
-
type:
|
|
163
|
-
jsonSchema:
|
|
190
|
+
export type Deployments11 = {
|
|
191
|
+
type: Deployments1DeploymentsResponseType;
|
|
192
|
+
jsonSchema: Deployments1JsonSchema;
|
|
164
193
|
};
|
|
165
194
|
|
|
195
|
+
export type DeploymentsResponseFormat1 =
|
|
196
|
+
| Deployments11
|
|
197
|
+
| Deployments12
|
|
198
|
+
| Deployments13;
|
|
199
|
+
|
|
166
200
|
/**
|
|
167
201
|
* An object specifying the format that the model must output.
|
|
168
202
|
*
|
|
@@ -175,9 +209,12 @@ export type DeploymentsResponseFormat1 = {
|
|
|
175
209
|
* Important: when using JSON mode, you must also instruct the model to produce JSON yourself via a system or user message. Without this, the model may generate an unending stream of whitespace until the generation reaches the token limit, resulting in a long-running and seemingly "stuck" request. Also note that the message content may be partially cut off if finish_reason="length", which indicates the generation exceeded max_tokens or the conversation exceeded the max context length.
|
|
176
210
|
*/
|
|
177
211
|
export type DeploymentsResponseFormat =
|
|
178
|
-
|
|
|
212
|
+
| Deployments11
|
|
213
|
+
| Deployments12
|
|
214
|
+
| Deployments13
|
|
179
215
|
| DeploymentsResponseFormat2
|
|
180
|
-
| DeploymentsResponseFormat3
|
|
216
|
+
| DeploymentsResponseFormat3
|
|
217
|
+
| DeploymentsResponseFormat4;
|
|
181
218
|
|
|
182
219
|
/**
|
|
183
220
|
* The version of photoReal to use. Must be v1 or v2. Only available for `leonardoai` provider
|
|
@@ -301,9 +338,12 @@ export type DeploymentsModelParameters = {
|
|
|
301
338
|
* Important: when using JSON mode, you must also instruct the model to produce JSON yourself via a system or user message. Without this, the model may generate an unending stream of whitespace until the generation reaches the token limit, resulting in a long-running and seemingly "stuck" request. Also note that the message content may be partially cut off if finish_reason="length", which indicates the generation exceeded max_tokens or the conversation exceeded the max context length.
|
|
302
339
|
*/
|
|
303
340
|
responseFormat?:
|
|
304
|
-
|
|
|
341
|
+
| Deployments11
|
|
342
|
+
| Deployments12
|
|
343
|
+
| Deployments13
|
|
305
344
|
| DeploymentsResponseFormat2
|
|
306
345
|
| DeploymentsResponseFormat3
|
|
346
|
+
| DeploymentsResponseFormat4
|
|
307
347
|
| null
|
|
308
348
|
| undefined;
|
|
309
349
|
/**
|
|
@@ -906,183 +946,236 @@ export namespace DeploymentsFormat$ {
|
|
|
906
946
|
}
|
|
907
947
|
|
|
908
948
|
/** @internal */
|
|
909
|
-
export const
|
|
910
|
-
|
|
911
|
-
|
|
949
|
+
export const DeploymentsResponseFormat4$inboundSchema: z.ZodNativeEnum<
|
|
950
|
+
typeof DeploymentsResponseFormat4
|
|
951
|
+
> = z.nativeEnum(DeploymentsResponseFormat4);
|
|
912
952
|
|
|
913
953
|
/** @internal */
|
|
914
|
-
export const
|
|
915
|
-
|
|
916
|
-
|
|
954
|
+
export const DeploymentsResponseFormat4$outboundSchema: z.ZodNativeEnum<
|
|
955
|
+
typeof DeploymentsResponseFormat4
|
|
956
|
+
> = DeploymentsResponseFormat4$inboundSchema;
|
|
917
957
|
|
|
918
958
|
/**
|
|
919
959
|
* @internal
|
|
920
960
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
921
961
|
*/
|
|
922
|
-
export namespace
|
|
923
|
-
/** @deprecated use `
|
|
924
|
-
export const inboundSchema =
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
962
|
+
export namespace DeploymentsResponseFormat4$ {
|
|
963
|
+
/** @deprecated use `DeploymentsResponseFormat4$inboundSchema` instead. */
|
|
964
|
+
export const inboundSchema = DeploymentsResponseFormat4$inboundSchema;
|
|
965
|
+
/** @deprecated use `DeploymentsResponseFormat4$outboundSchema` instead. */
|
|
966
|
+
export const outboundSchema = DeploymentsResponseFormat4$outboundSchema;
|
|
967
|
+
}
|
|
968
|
+
|
|
969
|
+
/** @internal */
|
|
970
|
+
export const DeploymentsResponseFormat3$inboundSchema: z.ZodNativeEnum<
|
|
971
|
+
typeof DeploymentsResponseFormat3
|
|
972
|
+
> = z.nativeEnum(DeploymentsResponseFormat3);
|
|
973
|
+
|
|
974
|
+
/** @internal */
|
|
975
|
+
export const DeploymentsResponseFormat3$outboundSchema: z.ZodNativeEnum<
|
|
976
|
+
typeof DeploymentsResponseFormat3
|
|
977
|
+
> = DeploymentsResponseFormat3$inboundSchema;
|
|
978
|
+
|
|
979
|
+
/**
|
|
980
|
+
* @internal
|
|
981
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
982
|
+
*/
|
|
983
|
+
export namespace DeploymentsResponseFormat3$ {
|
|
984
|
+
/** @deprecated use `DeploymentsResponseFormat3$inboundSchema` instead. */
|
|
985
|
+
export const inboundSchema = DeploymentsResponseFormat3$inboundSchema;
|
|
986
|
+
/** @deprecated use `DeploymentsResponseFormat3$outboundSchema` instead. */
|
|
987
|
+
export const outboundSchema = DeploymentsResponseFormat3$outboundSchema;
|
|
929
988
|
}
|
|
930
989
|
|
|
931
990
|
/** @internal */
|
|
932
|
-
export const
|
|
933
|
-
|
|
991
|
+
export const DeploymentsResponseFormat2$inboundSchema: z.ZodNativeEnum<
|
|
992
|
+
typeof DeploymentsResponseFormat2
|
|
993
|
+
> = z.nativeEnum(DeploymentsResponseFormat2);
|
|
994
|
+
|
|
995
|
+
/** @internal */
|
|
996
|
+
export const DeploymentsResponseFormat2$outboundSchema: z.ZodNativeEnum<
|
|
997
|
+
typeof DeploymentsResponseFormat2
|
|
998
|
+
> = DeploymentsResponseFormat2$inboundSchema;
|
|
999
|
+
|
|
1000
|
+
/**
|
|
1001
|
+
* @internal
|
|
1002
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1003
|
+
*/
|
|
1004
|
+
export namespace DeploymentsResponseFormat2$ {
|
|
1005
|
+
/** @deprecated use `DeploymentsResponseFormat2$inboundSchema` instead. */
|
|
1006
|
+
export const inboundSchema = DeploymentsResponseFormat2$inboundSchema;
|
|
1007
|
+
/** @deprecated use `DeploymentsResponseFormat2$outboundSchema` instead. */
|
|
1008
|
+
export const outboundSchema = DeploymentsResponseFormat2$outboundSchema;
|
|
1009
|
+
}
|
|
1010
|
+
|
|
1011
|
+
/** @internal */
|
|
1012
|
+
export const Deployments1DeploymentsType$inboundSchema: z.ZodNativeEnum<
|
|
1013
|
+
typeof Deployments1DeploymentsType
|
|
1014
|
+
> = z.nativeEnum(Deployments1DeploymentsType);
|
|
1015
|
+
|
|
1016
|
+
/** @internal */
|
|
1017
|
+
export const Deployments1DeploymentsType$outboundSchema: z.ZodNativeEnum<
|
|
1018
|
+
typeof Deployments1DeploymentsType
|
|
1019
|
+
> = Deployments1DeploymentsType$inboundSchema;
|
|
1020
|
+
|
|
1021
|
+
/**
|
|
1022
|
+
* @internal
|
|
1023
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1024
|
+
*/
|
|
1025
|
+
export namespace Deployments1DeploymentsType$ {
|
|
1026
|
+
/** @deprecated use `Deployments1DeploymentsType$inboundSchema` instead. */
|
|
1027
|
+
export const inboundSchema = Deployments1DeploymentsType$inboundSchema;
|
|
1028
|
+
/** @deprecated use `Deployments1DeploymentsType$outboundSchema` instead. */
|
|
1029
|
+
export const outboundSchema = Deployments1DeploymentsType$outboundSchema;
|
|
1030
|
+
}
|
|
1031
|
+
|
|
1032
|
+
/** @internal */
|
|
1033
|
+
export const Deployments13$inboundSchema: z.ZodType<
|
|
1034
|
+
Deployments13,
|
|
934
1035
|
z.ZodTypeDef,
|
|
935
1036
|
unknown
|
|
936
1037
|
> = z.object({
|
|
937
|
-
type:
|
|
1038
|
+
type: Deployments1DeploymentsType$inboundSchema,
|
|
938
1039
|
});
|
|
939
1040
|
|
|
940
1041
|
/** @internal */
|
|
941
|
-
export type
|
|
1042
|
+
export type Deployments13$Outbound = {
|
|
942
1043
|
type: string;
|
|
943
1044
|
};
|
|
944
1045
|
|
|
945
1046
|
/** @internal */
|
|
946
|
-
export const
|
|
947
|
-
|
|
1047
|
+
export const Deployments13$outboundSchema: z.ZodType<
|
|
1048
|
+
Deployments13$Outbound,
|
|
948
1049
|
z.ZodTypeDef,
|
|
949
|
-
|
|
1050
|
+
Deployments13
|
|
950
1051
|
> = z.object({
|
|
951
|
-
type:
|
|
1052
|
+
type: Deployments1DeploymentsType$outboundSchema,
|
|
952
1053
|
});
|
|
953
1054
|
|
|
954
1055
|
/**
|
|
955
1056
|
* @internal
|
|
956
1057
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
957
1058
|
*/
|
|
958
|
-
export namespace
|
|
959
|
-
/** @deprecated use `
|
|
960
|
-
export const inboundSchema =
|
|
961
|
-
/** @deprecated use `
|
|
962
|
-
export const outboundSchema =
|
|
963
|
-
/** @deprecated use `
|
|
964
|
-
export type Outbound =
|
|
1059
|
+
export namespace Deployments13$ {
|
|
1060
|
+
/** @deprecated use `Deployments13$inboundSchema` instead. */
|
|
1061
|
+
export const inboundSchema = Deployments13$inboundSchema;
|
|
1062
|
+
/** @deprecated use `Deployments13$outboundSchema` instead. */
|
|
1063
|
+
export const outboundSchema = Deployments13$outboundSchema;
|
|
1064
|
+
/** @deprecated use `Deployments13$Outbound` instead. */
|
|
1065
|
+
export type Outbound = Deployments13$Outbound;
|
|
965
1066
|
}
|
|
966
1067
|
|
|
967
|
-
export function
|
|
968
|
-
|
|
969
|
-
): string {
|
|
970
|
-
return JSON.stringify(
|
|
971
|
-
DeploymentsResponseFormat3$outboundSchema.parse(deploymentsResponseFormat3),
|
|
972
|
-
);
|
|
1068
|
+
export function deployments13ToJSON(deployments13: Deployments13): string {
|
|
1069
|
+
return JSON.stringify(Deployments13$outboundSchema.parse(deployments13));
|
|
973
1070
|
}
|
|
974
1071
|
|
|
975
|
-
export function
|
|
1072
|
+
export function deployments13FromJSON(
|
|
976
1073
|
jsonString: string,
|
|
977
|
-
): SafeParseResult<
|
|
1074
|
+
): SafeParseResult<Deployments13, SDKValidationError> {
|
|
978
1075
|
return safeParse(
|
|
979
1076
|
jsonString,
|
|
980
|
-
(x) =>
|
|
981
|
-
`Failed to parse '
|
|
1077
|
+
(x) => Deployments13$inboundSchema.parse(JSON.parse(x)),
|
|
1078
|
+
`Failed to parse 'Deployments13' from JSON`,
|
|
982
1079
|
);
|
|
983
1080
|
}
|
|
984
1081
|
|
|
985
1082
|
/** @internal */
|
|
986
|
-
export const
|
|
987
|
-
typeof
|
|
988
|
-
> = z.nativeEnum(
|
|
1083
|
+
export const Deployments1Type$inboundSchema: z.ZodNativeEnum<
|
|
1084
|
+
typeof Deployments1Type
|
|
1085
|
+
> = z.nativeEnum(Deployments1Type);
|
|
989
1086
|
|
|
990
1087
|
/** @internal */
|
|
991
|
-
export const
|
|
992
|
-
typeof
|
|
993
|
-
> =
|
|
1088
|
+
export const Deployments1Type$outboundSchema: z.ZodNativeEnum<
|
|
1089
|
+
typeof Deployments1Type
|
|
1090
|
+
> = Deployments1Type$inboundSchema;
|
|
994
1091
|
|
|
995
1092
|
/**
|
|
996
1093
|
* @internal
|
|
997
1094
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
998
1095
|
*/
|
|
999
|
-
export namespace
|
|
1000
|
-
/** @deprecated use `
|
|
1001
|
-
export const inboundSchema =
|
|
1002
|
-
/** @deprecated use `
|
|
1003
|
-
export const outboundSchema =
|
|
1096
|
+
export namespace Deployments1Type$ {
|
|
1097
|
+
/** @deprecated use `Deployments1Type$inboundSchema` instead. */
|
|
1098
|
+
export const inboundSchema = Deployments1Type$inboundSchema;
|
|
1099
|
+
/** @deprecated use `Deployments1Type$outboundSchema` instead. */
|
|
1100
|
+
export const outboundSchema = Deployments1Type$outboundSchema;
|
|
1004
1101
|
}
|
|
1005
1102
|
|
|
1006
1103
|
/** @internal */
|
|
1007
|
-
export const
|
|
1008
|
-
|
|
1104
|
+
export const Deployments12$inboundSchema: z.ZodType<
|
|
1105
|
+
Deployments12,
|
|
1009
1106
|
z.ZodTypeDef,
|
|
1010
1107
|
unknown
|
|
1011
1108
|
> = z.object({
|
|
1012
|
-
type:
|
|
1109
|
+
type: Deployments1Type$inboundSchema,
|
|
1013
1110
|
});
|
|
1014
1111
|
|
|
1015
1112
|
/** @internal */
|
|
1016
|
-
export type
|
|
1113
|
+
export type Deployments12$Outbound = {
|
|
1017
1114
|
type: string;
|
|
1018
1115
|
};
|
|
1019
1116
|
|
|
1020
1117
|
/** @internal */
|
|
1021
|
-
export const
|
|
1022
|
-
|
|
1118
|
+
export const Deployments12$outboundSchema: z.ZodType<
|
|
1119
|
+
Deployments12$Outbound,
|
|
1023
1120
|
z.ZodTypeDef,
|
|
1024
|
-
|
|
1121
|
+
Deployments12
|
|
1025
1122
|
> = z.object({
|
|
1026
|
-
type:
|
|
1123
|
+
type: Deployments1Type$outboundSchema,
|
|
1027
1124
|
});
|
|
1028
1125
|
|
|
1029
1126
|
/**
|
|
1030
1127
|
* @internal
|
|
1031
1128
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1032
1129
|
*/
|
|
1033
|
-
export namespace
|
|
1034
|
-
/** @deprecated use `
|
|
1035
|
-
export const inboundSchema =
|
|
1036
|
-
/** @deprecated use `
|
|
1037
|
-
export const outboundSchema =
|
|
1038
|
-
/** @deprecated use `
|
|
1039
|
-
export type Outbound =
|
|
1130
|
+
export namespace Deployments12$ {
|
|
1131
|
+
/** @deprecated use `Deployments12$inboundSchema` instead. */
|
|
1132
|
+
export const inboundSchema = Deployments12$inboundSchema;
|
|
1133
|
+
/** @deprecated use `Deployments12$outboundSchema` instead. */
|
|
1134
|
+
export const outboundSchema = Deployments12$outboundSchema;
|
|
1135
|
+
/** @deprecated use `Deployments12$Outbound` instead. */
|
|
1136
|
+
export type Outbound = Deployments12$Outbound;
|
|
1040
1137
|
}
|
|
1041
1138
|
|
|
1042
|
-
export function
|
|
1043
|
-
|
|
1044
|
-
): string {
|
|
1045
|
-
return JSON.stringify(
|
|
1046
|
-
DeploymentsResponseFormat2$outboundSchema.parse(deploymentsResponseFormat2),
|
|
1047
|
-
);
|
|
1139
|
+
export function deployments12ToJSON(deployments12: Deployments12): string {
|
|
1140
|
+
return JSON.stringify(Deployments12$outboundSchema.parse(deployments12));
|
|
1048
1141
|
}
|
|
1049
1142
|
|
|
1050
|
-
export function
|
|
1143
|
+
export function deployments12FromJSON(
|
|
1051
1144
|
jsonString: string,
|
|
1052
|
-
): SafeParseResult<
|
|
1145
|
+
): SafeParseResult<Deployments12, SDKValidationError> {
|
|
1053
1146
|
return safeParse(
|
|
1054
1147
|
jsonString,
|
|
1055
|
-
(x) =>
|
|
1056
|
-
`Failed to parse '
|
|
1148
|
+
(x) => Deployments12$inboundSchema.parse(JSON.parse(x)),
|
|
1149
|
+
`Failed to parse 'Deployments12' from JSON`,
|
|
1057
1150
|
);
|
|
1058
1151
|
}
|
|
1059
1152
|
|
|
1060
1153
|
/** @internal */
|
|
1061
|
-
export const
|
|
1062
|
-
|
|
1063
|
-
|
|
1154
|
+
export const Deployments1DeploymentsResponseType$inboundSchema: z.ZodNativeEnum<
|
|
1155
|
+
typeof Deployments1DeploymentsResponseType
|
|
1156
|
+
> = z.nativeEnum(Deployments1DeploymentsResponseType);
|
|
1064
1157
|
|
|
1065
1158
|
/** @internal */
|
|
1066
|
-
export const
|
|
1067
|
-
z.ZodNativeEnum<typeof
|
|
1068
|
-
|
|
1159
|
+
export const Deployments1DeploymentsResponseType$outboundSchema:
|
|
1160
|
+
z.ZodNativeEnum<typeof Deployments1DeploymentsResponseType> =
|
|
1161
|
+
Deployments1DeploymentsResponseType$inboundSchema;
|
|
1069
1162
|
|
|
1070
1163
|
/**
|
|
1071
1164
|
* @internal
|
|
1072
1165
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1073
1166
|
*/
|
|
1074
|
-
export namespace
|
|
1075
|
-
/** @deprecated use `
|
|
1167
|
+
export namespace Deployments1DeploymentsResponseType$ {
|
|
1168
|
+
/** @deprecated use `Deployments1DeploymentsResponseType$inboundSchema` instead. */
|
|
1076
1169
|
export const inboundSchema =
|
|
1077
|
-
|
|
1078
|
-
/** @deprecated use `
|
|
1170
|
+
Deployments1DeploymentsResponseType$inboundSchema;
|
|
1171
|
+
/** @deprecated use `Deployments1DeploymentsResponseType$outboundSchema` instead. */
|
|
1079
1172
|
export const outboundSchema =
|
|
1080
|
-
|
|
1173
|
+
Deployments1DeploymentsResponseType$outboundSchema;
|
|
1081
1174
|
}
|
|
1082
1175
|
|
|
1083
1176
|
/** @internal */
|
|
1084
|
-
export const
|
|
1085
|
-
|
|
1177
|
+
export const Deployments1JsonSchema$inboundSchema: z.ZodType<
|
|
1178
|
+
Deployments1JsonSchema,
|
|
1086
1179
|
z.ZodTypeDef,
|
|
1087
1180
|
unknown
|
|
1088
1181
|
> = z.object({
|
|
@@ -1092,17 +1185,17 @@ export const DeploymentsResponseFormatJsonSchema$inboundSchema: z.ZodType<
|
|
|
1092
1185
|
});
|
|
1093
1186
|
|
|
1094
1187
|
/** @internal */
|
|
1095
|
-
export type
|
|
1188
|
+
export type Deployments1JsonSchema$Outbound = {
|
|
1096
1189
|
name: string;
|
|
1097
1190
|
strict?: boolean | undefined;
|
|
1098
1191
|
schema: { [k: string]: any };
|
|
1099
1192
|
};
|
|
1100
1193
|
|
|
1101
1194
|
/** @internal */
|
|
1102
|
-
export const
|
|
1103
|
-
|
|
1195
|
+
export const Deployments1JsonSchema$outboundSchema: z.ZodType<
|
|
1196
|
+
Deployments1JsonSchema$Outbound,
|
|
1104
1197
|
z.ZodTypeDef,
|
|
1105
|
-
|
|
1198
|
+
Deployments1JsonSchema
|
|
1106
1199
|
> = z.object({
|
|
1107
1200
|
name: z.string(),
|
|
1108
1201
|
strict: z.boolean().optional(),
|
|
@@ -1113,46 +1206,41 @@ export const DeploymentsResponseFormatJsonSchema$outboundSchema: z.ZodType<
|
|
|
1113
1206
|
* @internal
|
|
1114
1207
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1115
1208
|
*/
|
|
1116
|
-
export namespace
|
|
1117
|
-
/** @deprecated use `
|
|
1118
|
-
export const inboundSchema =
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
/** @deprecated use `DeploymentsResponseFormatJsonSchema$Outbound` instead. */
|
|
1124
|
-
export type Outbound = DeploymentsResponseFormatJsonSchema$Outbound;
|
|
1209
|
+
export namespace Deployments1JsonSchema$ {
|
|
1210
|
+
/** @deprecated use `Deployments1JsonSchema$inboundSchema` instead. */
|
|
1211
|
+
export const inboundSchema = Deployments1JsonSchema$inboundSchema;
|
|
1212
|
+
/** @deprecated use `Deployments1JsonSchema$outboundSchema` instead. */
|
|
1213
|
+
export const outboundSchema = Deployments1JsonSchema$outboundSchema;
|
|
1214
|
+
/** @deprecated use `Deployments1JsonSchema$Outbound` instead. */
|
|
1215
|
+
export type Outbound = Deployments1JsonSchema$Outbound;
|
|
1125
1216
|
}
|
|
1126
1217
|
|
|
1127
|
-
export function
|
|
1128
|
-
|
|
1218
|
+
export function deployments1JsonSchemaToJSON(
|
|
1219
|
+
deployments1JsonSchema: Deployments1JsonSchema,
|
|
1129
1220
|
): string {
|
|
1130
1221
|
return JSON.stringify(
|
|
1131
|
-
|
|
1132
|
-
deploymentsResponseFormatJsonSchema,
|
|
1133
|
-
),
|
|
1222
|
+
Deployments1JsonSchema$outboundSchema.parse(deployments1JsonSchema),
|
|
1134
1223
|
);
|
|
1135
1224
|
}
|
|
1136
1225
|
|
|
1137
|
-
export function
|
|
1226
|
+
export function deployments1JsonSchemaFromJSON(
|
|
1138
1227
|
jsonString: string,
|
|
1139
|
-
): SafeParseResult<
|
|
1228
|
+
): SafeParseResult<Deployments1JsonSchema, SDKValidationError> {
|
|
1140
1229
|
return safeParse(
|
|
1141
1230
|
jsonString,
|
|
1142
|
-
(x) =>
|
|
1143
|
-
|
|
1144
|
-
`Failed to parse 'DeploymentsResponseFormatJsonSchema' from JSON`,
|
|
1231
|
+
(x) => Deployments1JsonSchema$inboundSchema.parse(JSON.parse(x)),
|
|
1232
|
+
`Failed to parse 'Deployments1JsonSchema' from JSON`,
|
|
1145
1233
|
);
|
|
1146
1234
|
}
|
|
1147
1235
|
|
|
1148
1236
|
/** @internal */
|
|
1149
|
-
export const
|
|
1150
|
-
|
|
1237
|
+
export const Deployments11$inboundSchema: z.ZodType<
|
|
1238
|
+
Deployments11,
|
|
1151
1239
|
z.ZodTypeDef,
|
|
1152
1240
|
unknown
|
|
1153
1241
|
> = z.object({
|
|
1154
|
-
type:
|
|
1155
|
-
json_schema: z.lazy(() =>
|
|
1242
|
+
type: Deployments1DeploymentsResponseType$inboundSchema,
|
|
1243
|
+
json_schema: z.lazy(() => Deployments1JsonSchema$inboundSchema),
|
|
1156
1244
|
}).transform((v) => {
|
|
1157
1245
|
return remap$(v, {
|
|
1158
1246
|
"json_schema": "jsonSchema",
|
|
@@ -1160,25 +1248,80 @@ export const DeploymentsResponseFormat1$inboundSchema: z.ZodType<
|
|
|
1160
1248
|
});
|
|
1161
1249
|
|
|
1162
1250
|
/** @internal */
|
|
1163
|
-
export type
|
|
1251
|
+
export type Deployments11$Outbound = {
|
|
1164
1252
|
type: string;
|
|
1165
|
-
json_schema:
|
|
1253
|
+
json_schema: Deployments1JsonSchema$Outbound;
|
|
1166
1254
|
};
|
|
1167
1255
|
|
|
1168
1256
|
/** @internal */
|
|
1169
|
-
export const
|
|
1170
|
-
|
|
1257
|
+
export const Deployments11$outboundSchema: z.ZodType<
|
|
1258
|
+
Deployments11$Outbound,
|
|
1171
1259
|
z.ZodTypeDef,
|
|
1172
|
-
|
|
1260
|
+
Deployments11
|
|
1173
1261
|
> = z.object({
|
|
1174
|
-
type:
|
|
1175
|
-
jsonSchema: z.lazy(() =>
|
|
1262
|
+
type: Deployments1DeploymentsResponseType$outboundSchema,
|
|
1263
|
+
jsonSchema: z.lazy(() => Deployments1JsonSchema$outboundSchema),
|
|
1176
1264
|
}).transform((v) => {
|
|
1177
1265
|
return remap$(v, {
|
|
1178
1266
|
jsonSchema: "json_schema",
|
|
1179
1267
|
});
|
|
1180
1268
|
});
|
|
1181
1269
|
|
|
1270
|
+
/**
|
|
1271
|
+
* @internal
|
|
1272
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1273
|
+
*/
|
|
1274
|
+
export namespace Deployments11$ {
|
|
1275
|
+
/** @deprecated use `Deployments11$inboundSchema` instead. */
|
|
1276
|
+
export const inboundSchema = Deployments11$inboundSchema;
|
|
1277
|
+
/** @deprecated use `Deployments11$outboundSchema` instead. */
|
|
1278
|
+
export const outboundSchema = Deployments11$outboundSchema;
|
|
1279
|
+
/** @deprecated use `Deployments11$Outbound` instead. */
|
|
1280
|
+
export type Outbound = Deployments11$Outbound;
|
|
1281
|
+
}
|
|
1282
|
+
|
|
1283
|
+
export function deployments11ToJSON(deployments11: Deployments11): string {
|
|
1284
|
+
return JSON.stringify(Deployments11$outboundSchema.parse(deployments11));
|
|
1285
|
+
}
|
|
1286
|
+
|
|
1287
|
+
export function deployments11FromJSON(
|
|
1288
|
+
jsonString: string,
|
|
1289
|
+
): SafeParseResult<Deployments11, SDKValidationError> {
|
|
1290
|
+
return safeParse(
|
|
1291
|
+
jsonString,
|
|
1292
|
+
(x) => Deployments11$inboundSchema.parse(JSON.parse(x)),
|
|
1293
|
+
`Failed to parse 'Deployments11' from JSON`,
|
|
1294
|
+
);
|
|
1295
|
+
}
|
|
1296
|
+
|
|
1297
|
+
/** @internal */
|
|
1298
|
+
export const DeploymentsResponseFormat1$inboundSchema: z.ZodType<
|
|
1299
|
+
DeploymentsResponseFormat1,
|
|
1300
|
+
z.ZodTypeDef,
|
|
1301
|
+
unknown
|
|
1302
|
+
> = z.union([
|
|
1303
|
+
z.lazy(() => Deployments11$inboundSchema),
|
|
1304
|
+
z.lazy(() => Deployments12$inboundSchema),
|
|
1305
|
+
z.lazy(() => Deployments13$inboundSchema),
|
|
1306
|
+
]);
|
|
1307
|
+
|
|
1308
|
+
/** @internal */
|
|
1309
|
+
export type DeploymentsResponseFormat1$Outbound =
|
|
1310
|
+
| Deployments11$Outbound
|
|
1311
|
+
| Deployments12$Outbound
|
|
1312
|
+
| Deployments13$Outbound;
|
|
1313
|
+
|
|
1314
|
+
/** @internal */
|
|
1315
|
+
export const DeploymentsResponseFormat1$outboundSchema: z.ZodType<
|
|
1316
|
+
DeploymentsResponseFormat1$Outbound,
|
|
1317
|
+
z.ZodTypeDef,
|
|
1318
|
+
DeploymentsResponseFormat1
|
|
1319
|
+
> = z.union([
|
|
1320
|
+
z.lazy(() => Deployments11$outboundSchema),
|
|
1321
|
+
z.lazy(() => Deployments12$outboundSchema),
|
|
1322
|
+
z.lazy(() => Deployments13$outboundSchema),
|
|
1323
|
+
]);
|
|
1324
|
+
|
|
1182
1325
|
/**
|
|
1183
1326
|
* @internal
|
|
1184
1327
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
@@ -1216,16 +1359,24 @@ export const DeploymentsResponseFormat$inboundSchema: z.ZodType<
|
|
|
1216
1359
|
z.ZodTypeDef,
|
|
1217
1360
|
unknown
|
|
1218
1361
|
> = z.union([
|
|
1219
|
-
z.
|
|
1220
|
-
|
|
1221
|
-
|
|
1362
|
+
z.union([
|
|
1363
|
+
z.lazy(() => Deployments11$inboundSchema),
|
|
1364
|
+
z.lazy(() => Deployments12$inboundSchema),
|
|
1365
|
+
z.lazy(() => Deployments13$inboundSchema),
|
|
1366
|
+
]),
|
|
1367
|
+
DeploymentsResponseFormat2$inboundSchema,
|
|
1368
|
+
DeploymentsResponseFormat3$inboundSchema,
|
|
1369
|
+
DeploymentsResponseFormat4$inboundSchema,
|
|
1222
1370
|
]);
|
|
1223
1371
|
|
|
1224
1372
|
/** @internal */
|
|
1225
1373
|
export type DeploymentsResponseFormat$Outbound =
|
|
1226
|
-
|
|
|
1227
|
-
|
|
|
1228
|
-
|
|
|
1374
|
+
| Deployments11$Outbound
|
|
1375
|
+
| Deployments12$Outbound
|
|
1376
|
+
| Deployments13$Outbound
|
|
1377
|
+
| string
|
|
1378
|
+
| string
|
|
1379
|
+
| string;
|
|
1229
1380
|
|
|
1230
1381
|
/** @internal */
|
|
1231
1382
|
export const DeploymentsResponseFormat$outboundSchema: z.ZodType<
|
|
@@ -1233,9 +1384,14 @@ export const DeploymentsResponseFormat$outboundSchema: z.ZodType<
|
|
|
1233
1384
|
z.ZodTypeDef,
|
|
1234
1385
|
DeploymentsResponseFormat
|
|
1235
1386
|
> = z.union([
|
|
1236
|
-
z.
|
|
1237
|
-
|
|
1238
|
-
|
|
1387
|
+
z.union([
|
|
1388
|
+
z.lazy(() => Deployments11$outboundSchema),
|
|
1389
|
+
z.lazy(() => Deployments12$outboundSchema),
|
|
1390
|
+
z.lazy(() => Deployments13$outboundSchema),
|
|
1391
|
+
]),
|
|
1392
|
+
DeploymentsResponseFormat2$outboundSchema,
|
|
1393
|
+
DeploymentsResponseFormat3$outboundSchema,
|
|
1394
|
+
DeploymentsResponseFormat4$outboundSchema,
|
|
1239
1395
|
]);
|
|
1240
1396
|
|
|
1241
1397
|
/**
|
|
@@ -1373,9 +1529,14 @@ export const DeploymentsModelParameters$inboundSchema: z.ZodType<
|
|
|
1373
1529
|
style: z.string().optional(),
|
|
1374
1530
|
responseFormat: z.nullable(
|
|
1375
1531
|
z.union([
|
|
1376
|
-
z.
|
|
1377
|
-
|
|
1378
|
-
|
|
1532
|
+
z.union([
|
|
1533
|
+
z.lazy(() => Deployments11$inboundSchema),
|
|
1534
|
+
z.lazy(() => Deployments12$inboundSchema),
|
|
1535
|
+
z.lazy(() => Deployments13$inboundSchema),
|
|
1536
|
+
]),
|
|
1537
|
+
DeploymentsResponseFormat2$inboundSchema,
|
|
1538
|
+
DeploymentsResponseFormat3$inboundSchema,
|
|
1539
|
+
DeploymentsResponseFormat4$inboundSchema,
|
|
1379
1540
|
]),
|
|
1380
1541
|
).optional(),
|
|
1381
1542
|
photoRealVersion: DeploymentsPhotoRealVersion$inboundSchema.optional(),
|
|
@@ -1404,9 +1565,12 @@ export type DeploymentsModelParameters$Outbound = {
|
|
|
1404
1565
|
quality?: string | undefined;
|
|
1405
1566
|
style?: string | undefined;
|
|
1406
1567
|
responseFormat?:
|
|
1407
|
-
|
|
|
1408
|
-
|
|
|
1409
|
-
|
|
|
1568
|
+
| Deployments11$Outbound
|
|
1569
|
+
| Deployments12$Outbound
|
|
1570
|
+
| Deployments13$Outbound
|
|
1571
|
+
| string
|
|
1572
|
+
| string
|
|
1573
|
+
| string
|
|
1410
1574
|
| null
|
|
1411
1575
|
| undefined;
|
|
1412
1576
|
photoRealVersion?: string | undefined;
|
|
@@ -1436,9 +1600,14 @@ export const DeploymentsModelParameters$outboundSchema: z.ZodType<
|
|
|
1436
1600
|
style: z.string().optional(),
|
|
1437
1601
|
responseFormat: z.nullable(
|
|
1438
1602
|
z.union([
|
|
1439
|
-
z.
|
|
1440
|
-
|
|
1441
|
-
|
|
1603
|
+
z.union([
|
|
1604
|
+
z.lazy(() => Deployments11$outboundSchema),
|
|
1605
|
+
z.lazy(() => Deployments12$outboundSchema),
|
|
1606
|
+
z.lazy(() => Deployments13$outboundSchema),
|
|
1607
|
+
]),
|
|
1608
|
+
DeploymentsResponseFormat2$outboundSchema,
|
|
1609
|
+
DeploymentsResponseFormat3$outboundSchema,
|
|
1610
|
+
DeploymentsResponseFormat4$outboundSchema,
|
|
1442
1611
|
]),
|
|
1443
1612
|
).optional(),
|
|
1444
1613
|
photoRealVersion: DeploymentsPhotoRealVersion$outboundSchema.optional(),
|