@orq-ai/node 3.12.14 → 3.12.17

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.
Files changed (167) hide show
  1. package/README.md +1 -4
  2. package/bin/mcp-server.js +113 -113
  3. package/bin/mcp-server.js.map +31 -31
  4. package/examples/package-lock.json +1 -1
  5. package/jsr.json +1 -1
  6. package/lib/config.d.ts +3 -3
  7. package/lib/config.js +3 -3
  8. package/lib/url.js +1 -1
  9. package/lib/url.js.map +1 -1
  10. package/mcp-server/mcp-server.js +1 -1
  11. package/mcp-server/server.js +1 -1
  12. package/models/operations/createbudget.js +2 -2
  13. package/models/operations/createcontact.js +2 -2
  14. package/models/operations/createdataset.js +2 -2
  15. package/models/operations/createdatasetitem.js +2 -2
  16. package/models/operations/createdatasource.js +2 -2
  17. package/models/operations/createeval.js +16 -16
  18. package/models/operations/fileget.js +2 -2
  19. package/models/operations/filelist.js +2 -2
  20. package/models/operations/fileupload.js +2 -2
  21. package/models/operations/getbudget.js +2 -2
  22. package/models/operations/getevals.js +28 -28
  23. package/models/operations/listbudgets.js +2 -2
  24. package/models/operations/listcontacts.js +2 -2
  25. package/models/operations/listdatasetdatapoints.js +2 -2
  26. package/models/operations/listdatasets.js +2 -2
  27. package/models/operations/listdatasources.js +2 -2
  28. package/models/operations/retrievecontact.js +2 -2
  29. package/models/operations/retrievedatapoint.js +2 -2
  30. package/models/operations/retrievedataset.js +2 -2
  31. package/models/operations/retrievedatasource.js +2 -2
  32. package/models/operations/updatebudget.js +2 -2
  33. package/models/operations/updatecontact.js +2 -2
  34. package/models/operations/updatedatapoint.js +2 -2
  35. package/models/operations/updatedataset.js +2 -2
  36. package/models/operations/updatedatasource.js +2 -2
  37. package/models/operations/updateeval.js +16 -16
  38. package/package.json +1 -1
  39. package/packages/orq-rc/README.md +108 -94
  40. package/packages/orq-rc/docs/sdks/agents/README.md +8 -2
  41. package/packages/orq-rc/docs/sdks/evals/README.md +2 -0
  42. package/packages/orq-rc/docs/sdks/tools/README.md +488 -0
  43. package/packages/orq-rc/examples/package-lock.json +1 -1
  44. package/packages/orq-rc/jsr.json +1 -1
  45. package/packages/orq-rc/package-lock.json +2 -2
  46. package/packages/orq-rc/package.json +1 -1
  47. package/packages/orq-rc/src/funcs/toolsCreate.ts +163 -0
  48. package/packages/orq-rc/src/funcs/toolsDelete.ts +167 -0
  49. package/packages/orq-rc/src/funcs/toolsDuplicate.ts +175 -0
  50. package/packages/orq-rc/src/funcs/toolsList.ts +176 -0
  51. package/packages/orq-rc/src/funcs/toolsRetrieve.ts +166 -0
  52. package/packages/orq-rc/src/funcs/toolsUpdate.ts +176 -0
  53. package/packages/orq-rc/src/lib/config.ts +3 -3
  54. package/packages/orq-rc/src/lib/url.ts +1 -1
  55. package/packages/orq-rc/src/mcp-server/mcp-server.ts +1 -1
  56. package/packages/orq-rc/src/mcp-server/server.ts +13 -1
  57. package/packages/orq-rc/src/mcp-server/tools/toolsCreate.ts +37 -0
  58. package/packages/orq-rc/src/mcp-server/tools/toolsDelete.ts +35 -0
  59. package/packages/orq-rc/src/mcp-server/tools/toolsDuplicate.ts +37 -0
  60. package/packages/orq-rc/src/mcp-server/tools/toolsList.ts +37 -0
  61. package/packages/orq-rc/src/mcp-server/tools/toolsRetrieve.ts +37 -0
  62. package/packages/orq-rc/src/mcp-server/tools/toolsUpdate.ts +37 -0
  63. package/packages/orq-rc/src/models/components/callsubagenttool.ts +109 -0
  64. package/packages/orq-rc/src/models/components/codeexecutiontool.ts +293 -0
  65. package/packages/orq-rc/src/models/components/currentdatetool.ts +107 -0
  66. package/packages/orq-rc/src/models/components/deployments.ts +52 -45
  67. package/packages/orq-rc/src/models/components/functiontool.ts +195 -0
  68. package/packages/orq-rc/src/models/components/googlesearchtool.ts +108 -0
  69. package/packages/orq-rc/src/models/components/httptool.ts +532 -0
  70. package/packages/orq-rc/src/models/components/index.ts +13 -0
  71. package/packages/orq-rc/src/models/components/queryknowledgebasetool.ts +111 -0
  72. package/packages/orq-rc/src/models/components/querymemorystoretool.ts +111 -0
  73. package/packages/orq-rc/src/models/components/retrieveagentstool.ts +109 -0
  74. package/packages/orq-rc/src/models/components/retrieveknowledgebasestool.ts +111 -0
  75. package/packages/orq-rc/src/models/components/retrievememorystorestool.ts +111 -0
  76. package/packages/orq-rc/src/models/components/webscrapertool.ts +105 -0
  77. package/packages/orq-rc/src/models/components/writememorystoretool.ts +111 -0
  78. package/packages/orq-rc/src/models/errors/duplicatetool.ts +91 -0
  79. package/packages/orq-rc/src/models/errors/index.ts +2 -0
  80. package/packages/orq-rc/src/models/errors/updatetool.ts +91 -0
  81. package/packages/orq-rc/src/models/operations/createbudget.ts +2 -2
  82. package/packages/orq-rc/src/models/operations/createcontact.ts +2 -2
  83. package/packages/orq-rc/src/models/operations/createdataset.ts +2 -2
  84. package/packages/orq-rc/src/models/operations/createdatasetitem.ts +10 -8
  85. package/packages/orq-rc/src/models/operations/createdatasource.ts +2 -2
  86. package/packages/orq-rc/src/models/operations/createeval.ts +199 -56
  87. package/packages/orq-rc/src/models/operations/createknowledge.ts +18 -0
  88. package/packages/orq-rc/src/models/operations/creatememorystore.ts +137 -136
  89. package/packages/orq-rc/src/models/operations/createprompt.ts +633 -314
  90. package/packages/orq-rc/src/models/operations/createtool.ts +4027 -0
  91. package/packages/orq-rc/src/models/operations/deletetool.ts +75 -0
  92. package/packages/orq-rc/src/models/operations/deploymentcreatemetric.ts +8 -6
  93. package/packages/orq-rc/src/models/operations/deploymentgetconfig.ts +363 -194
  94. package/packages/orq-rc/src/models/operations/deployments.ts +330 -160
  95. package/packages/orq-rc/src/models/operations/deploymentstream.ts +8 -6
  96. package/packages/orq-rc/src/models/operations/duplicatetool.ts +2311 -0
  97. package/packages/orq-rc/src/models/operations/fileget.ts +2 -2
  98. package/packages/orq-rc/src/models/operations/filelist.ts +2 -2
  99. package/packages/orq-rc/src/models/operations/fileupload.ts +2 -2
  100. package/packages/orq-rc/src/models/operations/getagent.ts +10 -10
  101. package/packages/orq-rc/src/models/operations/getallprompts.ts +334 -168
  102. package/packages/orq-rc/src/models/operations/getalltools.ts +2278 -0
  103. package/packages/orq-rc/src/models/operations/getbudget.ts +2 -2
  104. package/packages/orq-rc/src/models/operations/getevals.ts +28 -28
  105. package/packages/orq-rc/src/models/operations/getoneknowledge.ts +9 -0
  106. package/packages/orq-rc/src/models/operations/getoneprompt.ts +330 -167
  107. package/packages/orq-rc/src/models/operations/getpromptversion.ts +338 -168
  108. package/packages/orq-rc/src/models/operations/index.ts +6 -0
  109. package/packages/orq-rc/src/models/operations/listagents.ts +10 -10
  110. package/packages/orq-rc/src/models/operations/listbudgets.ts +2 -2
  111. package/packages/orq-rc/src/models/operations/listcontacts.ts +2 -2
  112. package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +6 -5
  113. package/packages/orq-rc/src/models/operations/listdatasets.ts +2 -2
  114. package/packages/orq-rc/src/models/operations/listdatasources.ts +2 -2
  115. package/packages/orq-rc/src/models/operations/listknowledgebases.ts +9 -0
  116. package/packages/orq-rc/src/models/operations/listpromptversions.ts +355 -183
  117. package/packages/orq-rc/src/models/operations/parse.ts +20 -335
  118. package/packages/orq-rc/src/models/operations/retrievecontact.ts +2 -2
  119. package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +6 -5
  120. package/packages/orq-rc/src/models/operations/retrievedataset.ts +2 -2
  121. package/packages/orq-rc/src/models/operations/retrievedatasource.ts +2 -2
  122. package/packages/orq-rc/src/models/operations/retrievetool.ts +2303 -0
  123. package/packages/orq-rc/src/models/operations/runagent.ts +428 -1384
  124. package/packages/orq-rc/src/models/operations/searchknowledge.ts +2 -2
  125. package/packages/orq-rc/src/models/operations/streamrunagent.ts +409 -1452
  126. package/packages/orq-rc/src/models/operations/updatebudget.ts +2 -2
  127. package/packages/orq-rc/src/models/operations/updatecontact.ts +2 -2
  128. package/packages/orq-rc/src/models/operations/updatedatapoint.ts +10 -8
  129. package/packages/orq-rc/src/models/operations/updatedataset.ts +2 -2
  130. package/packages/orq-rc/src/models/operations/updatedatasource.ts +2 -2
  131. package/packages/orq-rc/src/models/operations/updateeval.ts +210 -57
  132. package/packages/orq-rc/src/models/operations/updateknowledge.ts +18 -0
  133. package/packages/orq-rc/src/models/operations/updatememorystore.ts +136 -168
  134. package/packages/orq-rc/src/models/operations/updateprompt.ts +670 -335
  135. package/packages/orq-rc/src/models/operations/updatetool.ts +4231 -0
  136. package/packages/orq-rc/src/sdk/sdk.ts +6 -0
  137. package/packages/orq-rc/src/sdk/tools.ts +117 -0
  138. package/src/lib/config.ts +3 -3
  139. package/src/lib/url.ts +1 -1
  140. package/src/mcp-server/mcp-server.ts +1 -1
  141. package/src/mcp-server/server.ts +1 -1
  142. package/src/models/operations/createbudget.ts +2 -2
  143. package/src/models/operations/createcontact.ts +2 -2
  144. package/src/models/operations/createdataset.ts +2 -2
  145. package/src/models/operations/createdatasetitem.ts +2 -2
  146. package/src/models/operations/createdatasource.ts +2 -2
  147. package/src/models/operations/createeval.ts +16 -16
  148. package/src/models/operations/fileget.ts +2 -2
  149. package/src/models/operations/filelist.ts +2 -2
  150. package/src/models/operations/fileupload.ts +2 -2
  151. package/src/models/operations/getbudget.ts +2 -2
  152. package/src/models/operations/getevals.ts +28 -28
  153. package/src/models/operations/listbudgets.ts +2 -2
  154. package/src/models/operations/listcontacts.ts +2 -2
  155. package/src/models/operations/listdatasetdatapoints.ts +2 -2
  156. package/src/models/operations/listdatasets.ts +2 -2
  157. package/src/models/operations/listdatasources.ts +2 -2
  158. package/src/models/operations/retrievecontact.ts +2 -2
  159. package/src/models/operations/retrievedatapoint.ts +2 -2
  160. package/src/models/operations/retrievedataset.ts +2 -2
  161. package/src/models/operations/retrievedatasource.ts +2 -2
  162. package/src/models/operations/updatebudget.ts +2 -2
  163. package/src/models/operations/updatecontact.ts +2 -2
  164. package/src/models/operations/updatedatapoint.ts +2 -2
  165. package/src/models/operations/updatedataset.ts +2 -2
  166. package/src/models/operations/updatedatasource.ts +2 -2
  167. 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 DeploymentsResponseFormatDeploymentsType = {
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 DeploymentsResponseFormatDeploymentsType = ClosedEnum<
130
- typeof DeploymentsResponseFormatDeploymentsType
133
+ export type DeploymentsResponseFormat4 = ClosedEnum<
134
+ typeof DeploymentsResponseFormat4
131
135
  >;
132
136
 
133
- export type DeploymentsResponseFormat3 = {
134
- type: DeploymentsResponseFormatDeploymentsType;
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 DeploymentsResponseFormatType = {
168
+ export const Deployments1Type = {
138
169
  JsonObject: "json_object",
139
170
  } as const;
140
- export type DeploymentsResponseFormatType = ClosedEnum<
141
- typeof DeploymentsResponseFormatType
142
- >;
171
+ export type Deployments1Type = ClosedEnum<typeof Deployments1Type>;
143
172
 
144
- export type DeploymentsResponseFormat2 = {
145
- type: DeploymentsResponseFormatType;
173
+ export type Deployments12 = {
174
+ type: Deployments1Type;
146
175
  };
147
176
 
148
- export const DeploymentsResponseFormatDeploymentsResponseType = {
177
+ export const Deployments1DeploymentsResponseType = {
149
178
  JsonSchema: "json_schema",
150
179
  } as const;
151
- export type DeploymentsResponseFormatDeploymentsResponseType = ClosedEnum<
152
- typeof DeploymentsResponseFormatDeploymentsResponseType
180
+ export type Deployments1DeploymentsResponseType = ClosedEnum<
181
+ typeof Deployments1DeploymentsResponseType
153
182
  >;
154
183
 
155
- export type DeploymentsResponseFormatJsonSchema = {
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 DeploymentsResponseFormat1 = {
162
- type: DeploymentsResponseFormatDeploymentsResponseType;
163
- jsonSchema: DeploymentsResponseFormatJsonSchema;
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
- | DeploymentsResponseFormat1
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
@@ -212,6 +249,7 @@ export type DeploymentsEncodingFormat = ClosedEnum<
212
249
  */
213
250
  export const DeploymentsReasoningEffort = {
214
251
  Disable: "disable",
252
+ Minimal: "minimal",
215
253
  Low: "low",
216
254
  Medium: "medium",
217
255
  High: "high",
@@ -300,9 +338,12 @@ export type DeploymentsModelParameters = {
300
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.
301
339
  */
302
340
  responseFormat?:
303
- | DeploymentsResponseFormat1
341
+ | Deployments11
342
+ | Deployments12
343
+ | Deployments13
304
344
  | DeploymentsResponseFormat2
305
345
  | DeploymentsResponseFormat3
346
+ | DeploymentsResponseFormat4
306
347
  | null
307
348
  | undefined;
308
349
  /**
@@ -905,183 +946,236 @@ export namespace DeploymentsFormat$ {
905
946
  }
906
947
 
907
948
  /** @internal */
908
- export const DeploymentsResponseFormatDeploymentsType$inboundSchema:
909
- z.ZodNativeEnum<typeof DeploymentsResponseFormatDeploymentsType> = z
910
- .nativeEnum(DeploymentsResponseFormatDeploymentsType);
949
+ export const DeploymentsResponseFormat4$inboundSchema: z.ZodNativeEnum<
950
+ typeof DeploymentsResponseFormat4
951
+ > = z.nativeEnum(DeploymentsResponseFormat4);
911
952
 
912
953
  /** @internal */
913
- export const DeploymentsResponseFormatDeploymentsType$outboundSchema:
914
- z.ZodNativeEnum<typeof DeploymentsResponseFormatDeploymentsType> =
915
- DeploymentsResponseFormatDeploymentsType$inboundSchema;
954
+ export const DeploymentsResponseFormat4$outboundSchema: z.ZodNativeEnum<
955
+ typeof DeploymentsResponseFormat4
956
+ > = DeploymentsResponseFormat4$inboundSchema;
916
957
 
917
958
  /**
918
959
  * @internal
919
960
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
920
961
  */
921
- export namespace DeploymentsResponseFormatDeploymentsType$ {
922
- /** @deprecated use `DeploymentsResponseFormatDeploymentsType$inboundSchema` instead. */
923
- export const inboundSchema =
924
- DeploymentsResponseFormatDeploymentsType$inboundSchema;
925
- /** @deprecated use `DeploymentsResponseFormatDeploymentsType$outboundSchema` instead. */
926
- export const outboundSchema =
927
- DeploymentsResponseFormatDeploymentsType$outboundSchema;
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;
928
988
  }
929
989
 
930
990
  /** @internal */
931
- export const DeploymentsResponseFormat3$inboundSchema: z.ZodType<
932
- DeploymentsResponseFormat3,
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,
933
1035
  z.ZodTypeDef,
934
1036
  unknown
935
1037
  > = z.object({
936
- type: DeploymentsResponseFormatDeploymentsType$inboundSchema,
1038
+ type: Deployments1DeploymentsType$inboundSchema,
937
1039
  });
938
1040
 
939
1041
  /** @internal */
940
- export type DeploymentsResponseFormat3$Outbound = {
1042
+ export type Deployments13$Outbound = {
941
1043
  type: string;
942
1044
  };
943
1045
 
944
1046
  /** @internal */
945
- export const DeploymentsResponseFormat3$outboundSchema: z.ZodType<
946
- DeploymentsResponseFormat3$Outbound,
1047
+ export const Deployments13$outboundSchema: z.ZodType<
1048
+ Deployments13$Outbound,
947
1049
  z.ZodTypeDef,
948
- DeploymentsResponseFormat3
1050
+ Deployments13
949
1051
  > = z.object({
950
- type: DeploymentsResponseFormatDeploymentsType$outboundSchema,
1052
+ type: Deployments1DeploymentsType$outboundSchema,
951
1053
  });
952
1054
 
953
1055
  /**
954
1056
  * @internal
955
1057
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
956
1058
  */
957
- export namespace DeploymentsResponseFormat3$ {
958
- /** @deprecated use `DeploymentsResponseFormat3$inboundSchema` instead. */
959
- export const inboundSchema = DeploymentsResponseFormat3$inboundSchema;
960
- /** @deprecated use `DeploymentsResponseFormat3$outboundSchema` instead. */
961
- export const outboundSchema = DeploymentsResponseFormat3$outboundSchema;
962
- /** @deprecated use `DeploymentsResponseFormat3$Outbound` instead. */
963
- export type Outbound = DeploymentsResponseFormat3$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;
964
1066
  }
965
1067
 
966
- export function deploymentsResponseFormat3ToJSON(
967
- deploymentsResponseFormat3: DeploymentsResponseFormat3,
968
- ): string {
969
- return JSON.stringify(
970
- DeploymentsResponseFormat3$outboundSchema.parse(deploymentsResponseFormat3),
971
- );
1068
+ export function deployments13ToJSON(deployments13: Deployments13): string {
1069
+ return JSON.stringify(Deployments13$outboundSchema.parse(deployments13));
972
1070
  }
973
1071
 
974
- export function deploymentsResponseFormat3FromJSON(
1072
+ export function deployments13FromJSON(
975
1073
  jsonString: string,
976
- ): SafeParseResult<DeploymentsResponseFormat3, SDKValidationError> {
1074
+ ): SafeParseResult<Deployments13, SDKValidationError> {
977
1075
  return safeParse(
978
1076
  jsonString,
979
- (x) => DeploymentsResponseFormat3$inboundSchema.parse(JSON.parse(x)),
980
- `Failed to parse 'DeploymentsResponseFormat3' from JSON`,
1077
+ (x) => Deployments13$inboundSchema.parse(JSON.parse(x)),
1078
+ `Failed to parse 'Deployments13' from JSON`,
981
1079
  );
982
1080
  }
983
1081
 
984
1082
  /** @internal */
985
- export const DeploymentsResponseFormatType$inboundSchema: z.ZodNativeEnum<
986
- typeof DeploymentsResponseFormatType
987
- > = z.nativeEnum(DeploymentsResponseFormatType);
1083
+ export const Deployments1Type$inboundSchema: z.ZodNativeEnum<
1084
+ typeof Deployments1Type
1085
+ > = z.nativeEnum(Deployments1Type);
988
1086
 
989
1087
  /** @internal */
990
- export const DeploymentsResponseFormatType$outboundSchema: z.ZodNativeEnum<
991
- typeof DeploymentsResponseFormatType
992
- > = DeploymentsResponseFormatType$inboundSchema;
1088
+ export const Deployments1Type$outboundSchema: z.ZodNativeEnum<
1089
+ typeof Deployments1Type
1090
+ > = Deployments1Type$inboundSchema;
993
1091
 
994
1092
  /**
995
1093
  * @internal
996
1094
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
997
1095
  */
998
- export namespace DeploymentsResponseFormatType$ {
999
- /** @deprecated use `DeploymentsResponseFormatType$inboundSchema` instead. */
1000
- export const inboundSchema = DeploymentsResponseFormatType$inboundSchema;
1001
- /** @deprecated use `DeploymentsResponseFormatType$outboundSchema` instead. */
1002
- export const outboundSchema = DeploymentsResponseFormatType$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;
1003
1101
  }
1004
1102
 
1005
1103
  /** @internal */
1006
- export const DeploymentsResponseFormat2$inboundSchema: z.ZodType<
1007
- DeploymentsResponseFormat2,
1104
+ export const Deployments12$inboundSchema: z.ZodType<
1105
+ Deployments12,
1008
1106
  z.ZodTypeDef,
1009
1107
  unknown
1010
1108
  > = z.object({
1011
- type: DeploymentsResponseFormatType$inboundSchema,
1109
+ type: Deployments1Type$inboundSchema,
1012
1110
  });
1013
1111
 
1014
1112
  /** @internal */
1015
- export type DeploymentsResponseFormat2$Outbound = {
1113
+ export type Deployments12$Outbound = {
1016
1114
  type: string;
1017
1115
  };
1018
1116
 
1019
1117
  /** @internal */
1020
- export const DeploymentsResponseFormat2$outboundSchema: z.ZodType<
1021
- DeploymentsResponseFormat2$Outbound,
1118
+ export const Deployments12$outboundSchema: z.ZodType<
1119
+ Deployments12$Outbound,
1022
1120
  z.ZodTypeDef,
1023
- DeploymentsResponseFormat2
1121
+ Deployments12
1024
1122
  > = z.object({
1025
- type: DeploymentsResponseFormatType$outboundSchema,
1123
+ type: Deployments1Type$outboundSchema,
1026
1124
  });
1027
1125
 
1028
1126
  /**
1029
1127
  * @internal
1030
1128
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1031
1129
  */
1032
- export namespace DeploymentsResponseFormat2$ {
1033
- /** @deprecated use `DeploymentsResponseFormat2$inboundSchema` instead. */
1034
- export const inboundSchema = DeploymentsResponseFormat2$inboundSchema;
1035
- /** @deprecated use `DeploymentsResponseFormat2$outboundSchema` instead. */
1036
- export const outboundSchema = DeploymentsResponseFormat2$outboundSchema;
1037
- /** @deprecated use `DeploymentsResponseFormat2$Outbound` instead. */
1038
- export type Outbound = DeploymentsResponseFormat2$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;
1039
1137
  }
1040
1138
 
1041
- export function deploymentsResponseFormat2ToJSON(
1042
- deploymentsResponseFormat2: DeploymentsResponseFormat2,
1043
- ): string {
1044
- return JSON.stringify(
1045
- DeploymentsResponseFormat2$outboundSchema.parse(deploymentsResponseFormat2),
1046
- );
1139
+ export function deployments12ToJSON(deployments12: Deployments12): string {
1140
+ return JSON.stringify(Deployments12$outboundSchema.parse(deployments12));
1047
1141
  }
1048
1142
 
1049
- export function deploymentsResponseFormat2FromJSON(
1143
+ export function deployments12FromJSON(
1050
1144
  jsonString: string,
1051
- ): SafeParseResult<DeploymentsResponseFormat2, SDKValidationError> {
1145
+ ): SafeParseResult<Deployments12, SDKValidationError> {
1052
1146
  return safeParse(
1053
1147
  jsonString,
1054
- (x) => DeploymentsResponseFormat2$inboundSchema.parse(JSON.parse(x)),
1055
- `Failed to parse 'DeploymentsResponseFormat2' from JSON`,
1148
+ (x) => Deployments12$inboundSchema.parse(JSON.parse(x)),
1149
+ `Failed to parse 'Deployments12' from JSON`,
1056
1150
  );
1057
1151
  }
1058
1152
 
1059
1153
  /** @internal */
1060
- export const DeploymentsResponseFormatDeploymentsResponseType$inboundSchema:
1061
- z.ZodNativeEnum<typeof DeploymentsResponseFormatDeploymentsResponseType> = z
1062
- .nativeEnum(DeploymentsResponseFormatDeploymentsResponseType);
1154
+ export const Deployments1DeploymentsResponseType$inboundSchema: z.ZodNativeEnum<
1155
+ typeof Deployments1DeploymentsResponseType
1156
+ > = z.nativeEnum(Deployments1DeploymentsResponseType);
1063
1157
 
1064
1158
  /** @internal */
1065
- export const DeploymentsResponseFormatDeploymentsResponseType$outboundSchema:
1066
- z.ZodNativeEnum<typeof DeploymentsResponseFormatDeploymentsResponseType> =
1067
- DeploymentsResponseFormatDeploymentsResponseType$inboundSchema;
1159
+ export const Deployments1DeploymentsResponseType$outboundSchema:
1160
+ z.ZodNativeEnum<typeof Deployments1DeploymentsResponseType> =
1161
+ Deployments1DeploymentsResponseType$inboundSchema;
1068
1162
 
1069
1163
  /**
1070
1164
  * @internal
1071
1165
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1072
1166
  */
1073
- export namespace DeploymentsResponseFormatDeploymentsResponseType$ {
1074
- /** @deprecated use `DeploymentsResponseFormatDeploymentsResponseType$inboundSchema` instead. */
1167
+ export namespace Deployments1DeploymentsResponseType$ {
1168
+ /** @deprecated use `Deployments1DeploymentsResponseType$inboundSchema` instead. */
1075
1169
  export const inboundSchema =
1076
- DeploymentsResponseFormatDeploymentsResponseType$inboundSchema;
1077
- /** @deprecated use `DeploymentsResponseFormatDeploymentsResponseType$outboundSchema` instead. */
1170
+ Deployments1DeploymentsResponseType$inboundSchema;
1171
+ /** @deprecated use `Deployments1DeploymentsResponseType$outboundSchema` instead. */
1078
1172
  export const outboundSchema =
1079
- DeploymentsResponseFormatDeploymentsResponseType$outboundSchema;
1173
+ Deployments1DeploymentsResponseType$outboundSchema;
1080
1174
  }
1081
1175
 
1082
1176
  /** @internal */
1083
- export const DeploymentsResponseFormatJsonSchema$inboundSchema: z.ZodType<
1084
- DeploymentsResponseFormatJsonSchema,
1177
+ export const Deployments1JsonSchema$inboundSchema: z.ZodType<
1178
+ Deployments1JsonSchema,
1085
1179
  z.ZodTypeDef,
1086
1180
  unknown
1087
1181
  > = z.object({
@@ -1091,17 +1185,17 @@ export const DeploymentsResponseFormatJsonSchema$inboundSchema: z.ZodType<
1091
1185
  });
1092
1186
 
1093
1187
  /** @internal */
1094
- export type DeploymentsResponseFormatJsonSchema$Outbound = {
1188
+ export type Deployments1JsonSchema$Outbound = {
1095
1189
  name: string;
1096
1190
  strict?: boolean | undefined;
1097
1191
  schema: { [k: string]: any };
1098
1192
  };
1099
1193
 
1100
1194
  /** @internal */
1101
- export const DeploymentsResponseFormatJsonSchema$outboundSchema: z.ZodType<
1102
- DeploymentsResponseFormatJsonSchema$Outbound,
1195
+ export const Deployments1JsonSchema$outboundSchema: z.ZodType<
1196
+ Deployments1JsonSchema$Outbound,
1103
1197
  z.ZodTypeDef,
1104
- DeploymentsResponseFormatJsonSchema
1198
+ Deployments1JsonSchema
1105
1199
  > = z.object({
1106
1200
  name: z.string(),
1107
1201
  strict: z.boolean().optional(),
@@ -1112,46 +1206,41 @@ export const DeploymentsResponseFormatJsonSchema$outboundSchema: z.ZodType<
1112
1206
  * @internal
1113
1207
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1114
1208
  */
1115
- export namespace DeploymentsResponseFormatJsonSchema$ {
1116
- /** @deprecated use `DeploymentsResponseFormatJsonSchema$inboundSchema` instead. */
1117
- export const inboundSchema =
1118
- DeploymentsResponseFormatJsonSchema$inboundSchema;
1119
- /** @deprecated use `DeploymentsResponseFormatJsonSchema$outboundSchema` instead. */
1120
- export const outboundSchema =
1121
- DeploymentsResponseFormatJsonSchema$outboundSchema;
1122
- /** @deprecated use `DeploymentsResponseFormatJsonSchema$Outbound` instead. */
1123
- 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;
1124
1216
  }
1125
1217
 
1126
- export function deploymentsResponseFormatJsonSchemaToJSON(
1127
- deploymentsResponseFormatJsonSchema: DeploymentsResponseFormatJsonSchema,
1218
+ export function deployments1JsonSchemaToJSON(
1219
+ deployments1JsonSchema: Deployments1JsonSchema,
1128
1220
  ): string {
1129
1221
  return JSON.stringify(
1130
- DeploymentsResponseFormatJsonSchema$outboundSchema.parse(
1131
- deploymentsResponseFormatJsonSchema,
1132
- ),
1222
+ Deployments1JsonSchema$outboundSchema.parse(deployments1JsonSchema),
1133
1223
  );
1134
1224
  }
1135
1225
 
1136
- export function deploymentsResponseFormatJsonSchemaFromJSON(
1226
+ export function deployments1JsonSchemaFromJSON(
1137
1227
  jsonString: string,
1138
- ): SafeParseResult<DeploymentsResponseFormatJsonSchema, SDKValidationError> {
1228
+ ): SafeParseResult<Deployments1JsonSchema, SDKValidationError> {
1139
1229
  return safeParse(
1140
1230
  jsonString,
1141
- (x) =>
1142
- DeploymentsResponseFormatJsonSchema$inboundSchema.parse(JSON.parse(x)),
1143
- `Failed to parse 'DeploymentsResponseFormatJsonSchema' from JSON`,
1231
+ (x) => Deployments1JsonSchema$inboundSchema.parse(JSON.parse(x)),
1232
+ `Failed to parse 'Deployments1JsonSchema' from JSON`,
1144
1233
  );
1145
1234
  }
1146
1235
 
1147
1236
  /** @internal */
1148
- export const DeploymentsResponseFormat1$inboundSchema: z.ZodType<
1149
- DeploymentsResponseFormat1,
1237
+ export const Deployments11$inboundSchema: z.ZodType<
1238
+ Deployments11,
1150
1239
  z.ZodTypeDef,
1151
1240
  unknown
1152
1241
  > = z.object({
1153
- type: DeploymentsResponseFormatDeploymentsResponseType$inboundSchema,
1154
- json_schema: z.lazy(() => DeploymentsResponseFormatJsonSchema$inboundSchema),
1242
+ type: Deployments1DeploymentsResponseType$inboundSchema,
1243
+ json_schema: z.lazy(() => Deployments1JsonSchema$inboundSchema),
1155
1244
  }).transform((v) => {
1156
1245
  return remap$(v, {
1157
1246
  "json_schema": "jsonSchema",
@@ -1159,25 +1248,80 @@ export const DeploymentsResponseFormat1$inboundSchema: z.ZodType<
1159
1248
  });
1160
1249
 
1161
1250
  /** @internal */
1162
- export type DeploymentsResponseFormat1$Outbound = {
1251
+ export type Deployments11$Outbound = {
1163
1252
  type: string;
1164
- json_schema: DeploymentsResponseFormatJsonSchema$Outbound;
1253
+ json_schema: Deployments1JsonSchema$Outbound;
1165
1254
  };
1166
1255
 
1167
1256
  /** @internal */
1168
- export const DeploymentsResponseFormat1$outboundSchema: z.ZodType<
1169
- DeploymentsResponseFormat1$Outbound,
1257
+ export const Deployments11$outboundSchema: z.ZodType<
1258
+ Deployments11$Outbound,
1170
1259
  z.ZodTypeDef,
1171
- DeploymentsResponseFormat1
1260
+ Deployments11
1172
1261
  > = z.object({
1173
- type: DeploymentsResponseFormatDeploymentsResponseType$outboundSchema,
1174
- jsonSchema: z.lazy(() => DeploymentsResponseFormatJsonSchema$outboundSchema),
1262
+ type: Deployments1DeploymentsResponseType$outboundSchema,
1263
+ jsonSchema: z.lazy(() => Deployments1JsonSchema$outboundSchema),
1175
1264
  }).transform((v) => {
1176
1265
  return remap$(v, {
1177
1266
  jsonSchema: "json_schema",
1178
1267
  });
1179
1268
  });
1180
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
+
1181
1325
  /**
1182
1326
  * @internal
1183
1327
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
@@ -1215,16 +1359,24 @@ export const DeploymentsResponseFormat$inboundSchema: z.ZodType<
1215
1359
  z.ZodTypeDef,
1216
1360
  unknown
1217
1361
  > = z.union([
1218
- z.lazy(() => DeploymentsResponseFormat1$inboundSchema),
1219
- z.lazy(() => DeploymentsResponseFormat2$inboundSchema),
1220
- z.lazy(() => DeploymentsResponseFormat3$inboundSchema),
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,
1221
1370
  ]);
1222
1371
 
1223
1372
  /** @internal */
1224
1373
  export type DeploymentsResponseFormat$Outbound =
1225
- | DeploymentsResponseFormat1$Outbound
1226
- | DeploymentsResponseFormat2$Outbound
1227
- | DeploymentsResponseFormat3$Outbound;
1374
+ | Deployments11$Outbound
1375
+ | Deployments12$Outbound
1376
+ | Deployments13$Outbound
1377
+ | string
1378
+ | string
1379
+ | string;
1228
1380
 
1229
1381
  /** @internal */
1230
1382
  export const DeploymentsResponseFormat$outboundSchema: z.ZodType<
@@ -1232,9 +1384,14 @@ export const DeploymentsResponseFormat$outboundSchema: z.ZodType<
1232
1384
  z.ZodTypeDef,
1233
1385
  DeploymentsResponseFormat
1234
1386
  > = z.union([
1235
- z.lazy(() => DeploymentsResponseFormat1$outboundSchema),
1236
- z.lazy(() => DeploymentsResponseFormat2$outboundSchema),
1237
- z.lazy(() => DeploymentsResponseFormat3$outboundSchema),
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,
1238
1395
  ]);
1239
1396
 
1240
1397
  /**
@@ -1372,9 +1529,14 @@ export const DeploymentsModelParameters$inboundSchema: z.ZodType<
1372
1529
  style: z.string().optional(),
1373
1530
  responseFormat: z.nullable(
1374
1531
  z.union([
1375
- z.lazy(() => DeploymentsResponseFormat1$inboundSchema),
1376
- z.lazy(() => DeploymentsResponseFormat2$inboundSchema),
1377
- z.lazy(() => DeploymentsResponseFormat3$inboundSchema),
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,
1378
1540
  ]),
1379
1541
  ).optional(),
1380
1542
  photoRealVersion: DeploymentsPhotoRealVersion$inboundSchema.optional(),
@@ -1403,9 +1565,12 @@ export type DeploymentsModelParameters$Outbound = {
1403
1565
  quality?: string | undefined;
1404
1566
  style?: string | undefined;
1405
1567
  responseFormat?:
1406
- | DeploymentsResponseFormat1$Outbound
1407
- | DeploymentsResponseFormat2$Outbound
1408
- | DeploymentsResponseFormat3$Outbound
1568
+ | Deployments11$Outbound
1569
+ | Deployments12$Outbound
1570
+ | Deployments13$Outbound
1571
+ | string
1572
+ | string
1573
+ | string
1409
1574
  | null
1410
1575
  | undefined;
1411
1576
  photoRealVersion?: string | undefined;
@@ -1435,9 +1600,14 @@ export const DeploymentsModelParameters$outboundSchema: z.ZodType<
1435
1600
  style: z.string().optional(),
1436
1601
  responseFormat: z.nullable(
1437
1602
  z.union([
1438
- z.lazy(() => DeploymentsResponseFormat1$outboundSchema),
1439
- z.lazy(() => DeploymentsResponseFormat2$outboundSchema),
1440
- z.lazy(() => DeploymentsResponseFormat3$outboundSchema),
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,
1441
1611
  ]),
1442
1612
  ).optional(),
1443
1613
  photoRealVersion: DeploymentsPhotoRealVersion$outboundSchema.optional(),