@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.
Files changed (159) hide show
  1. package/bin/mcp-server.js +112 -112
  2. package/bin/mcp-server.js.map +30 -30
  3. package/examples/package-lock.json +1 -1
  4. package/jsr.json +1 -1
  5. package/lib/config.d.ts +3 -3
  6. package/lib/config.js +3 -3
  7. package/mcp-server/mcp-server.js +1 -1
  8. package/mcp-server/server.js +1 -1
  9. package/models/operations/createbudget.js +2 -2
  10. package/models/operations/createcontact.js +2 -2
  11. package/models/operations/createdataset.js +2 -2
  12. package/models/operations/createdatasetitem.js +2 -2
  13. package/models/operations/createdatasource.js +2 -2
  14. package/models/operations/createeval.js +16 -16
  15. package/models/operations/fileget.js +2 -2
  16. package/models/operations/filelist.js +2 -2
  17. package/models/operations/fileupload.js +2 -2
  18. package/models/operations/getbudget.js +2 -2
  19. package/models/operations/getevals.js +28 -28
  20. package/models/operations/listbudgets.js +2 -2
  21. package/models/operations/listcontacts.js +2 -2
  22. package/models/operations/listdatasetdatapoints.js +2 -2
  23. package/models/operations/listdatasets.js +2 -2
  24. package/models/operations/listdatasources.js +2 -2
  25. package/models/operations/retrievecontact.js +2 -2
  26. package/models/operations/retrievedatapoint.js +2 -2
  27. package/models/operations/retrievedataset.js +2 -2
  28. package/models/operations/retrievedatasource.js +2 -2
  29. package/models/operations/updatebudget.js +2 -2
  30. package/models/operations/updatecontact.js +2 -2
  31. package/models/operations/updatedatapoint.js +2 -2
  32. package/models/operations/updatedataset.js +2 -2
  33. package/models/operations/updatedatasource.js +2 -2
  34. package/models/operations/updateeval.js +16 -16
  35. package/package.json +1 -1
  36. package/packages/orq-rc/README.md +107 -90
  37. package/packages/orq-rc/docs/sdks/tools/README.md +488 -0
  38. package/packages/orq-rc/examples/package-lock.json +1 -1
  39. package/packages/orq-rc/jsr.json +1 -1
  40. package/packages/orq-rc/package-lock.json +2 -2
  41. package/packages/orq-rc/package.json +1 -1
  42. package/packages/orq-rc/src/funcs/toolsCreate.ts +163 -0
  43. package/packages/orq-rc/src/funcs/toolsDelete.ts +167 -0
  44. package/packages/orq-rc/src/funcs/toolsDuplicate.ts +175 -0
  45. package/packages/orq-rc/src/funcs/toolsList.ts +176 -0
  46. package/packages/orq-rc/src/funcs/toolsRetrieve.ts +166 -0
  47. package/packages/orq-rc/src/funcs/toolsUpdate.ts +176 -0
  48. package/packages/orq-rc/src/lib/config.ts +3 -3
  49. package/packages/orq-rc/src/mcp-server/mcp-server.ts +1 -1
  50. package/packages/orq-rc/src/mcp-server/server.ts +13 -1
  51. package/packages/orq-rc/src/mcp-server/tools/toolsCreate.ts +37 -0
  52. package/packages/orq-rc/src/mcp-server/tools/toolsDelete.ts +35 -0
  53. package/packages/orq-rc/src/mcp-server/tools/toolsDuplicate.ts +37 -0
  54. package/packages/orq-rc/src/mcp-server/tools/toolsList.ts +37 -0
  55. package/packages/orq-rc/src/mcp-server/tools/toolsRetrieve.ts +37 -0
  56. package/packages/orq-rc/src/mcp-server/tools/toolsUpdate.ts +37 -0
  57. package/packages/orq-rc/src/models/components/callsubagenttool.ts +109 -0
  58. package/packages/orq-rc/src/models/components/codeexecutiontool.ts +293 -0
  59. package/packages/orq-rc/src/models/components/currentdatetool.ts +107 -0
  60. package/packages/orq-rc/src/models/components/deployments.ts +52 -45
  61. package/packages/orq-rc/src/models/components/functiontool.ts +195 -0
  62. package/packages/orq-rc/src/models/components/googlesearchtool.ts +108 -0
  63. package/packages/orq-rc/src/models/components/httptool.ts +532 -0
  64. package/packages/orq-rc/src/models/components/index.ts +13 -0
  65. package/packages/orq-rc/src/models/components/queryknowledgebasetool.ts +111 -0
  66. package/packages/orq-rc/src/models/components/querymemorystoretool.ts +111 -0
  67. package/packages/orq-rc/src/models/components/retrieveagentstool.ts +109 -0
  68. package/packages/orq-rc/src/models/components/retrieveknowledgebasestool.ts +111 -0
  69. package/packages/orq-rc/src/models/components/retrievememorystorestool.ts +111 -0
  70. package/packages/orq-rc/src/models/components/webscrapertool.ts +105 -0
  71. package/packages/orq-rc/src/models/components/writememorystoretool.ts +111 -0
  72. package/packages/orq-rc/src/models/errors/duplicatetool.ts +91 -0
  73. package/packages/orq-rc/src/models/errors/index.ts +2 -0
  74. package/packages/orq-rc/src/models/errors/updatetool.ts +91 -0
  75. package/packages/orq-rc/src/models/operations/createbudget.ts +2 -2
  76. package/packages/orq-rc/src/models/operations/createcontact.ts +2 -2
  77. package/packages/orq-rc/src/models/operations/createdataset.ts +2 -2
  78. package/packages/orq-rc/src/models/operations/createdatasetitem.ts +10 -8
  79. package/packages/orq-rc/src/models/operations/createdatasource.ts +2 -2
  80. package/packages/orq-rc/src/models/operations/createeval.ts +60 -56
  81. package/packages/orq-rc/src/models/operations/createknowledge.ts +18 -0
  82. package/packages/orq-rc/src/models/operations/creatememorystore.ts +137 -136
  83. package/packages/orq-rc/src/models/operations/createprompt.ts +631 -314
  84. package/packages/orq-rc/src/models/operations/createtool.ts +4027 -0
  85. package/packages/orq-rc/src/models/operations/deletetool.ts +75 -0
  86. package/packages/orq-rc/src/models/operations/deploymentcreatemetric.ts +8 -6
  87. package/packages/orq-rc/src/models/operations/deploymentgetconfig.ts +362 -194
  88. package/packages/orq-rc/src/models/operations/deployments.ts +329 -160
  89. package/packages/orq-rc/src/models/operations/deploymentstream.ts +8 -6
  90. package/packages/orq-rc/src/models/operations/duplicatetool.ts +2311 -0
  91. package/packages/orq-rc/src/models/operations/fileget.ts +2 -2
  92. package/packages/orq-rc/src/models/operations/filelist.ts +2 -2
  93. package/packages/orq-rc/src/models/operations/fileupload.ts +2 -2
  94. package/packages/orq-rc/src/models/operations/getagent.ts +10 -10
  95. package/packages/orq-rc/src/models/operations/getallprompts.ts +333 -168
  96. package/packages/orq-rc/src/models/operations/getalltools.ts +2278 -0
  97. package/packages/orq-rc/src/models/operations/getbudget.ts +2 -2
  98. package/packages/orq-rc/src/models/operations/getevals.ts +28 -28
  99. package/packages/orq-rc/src/models/operations/getoneknowledge.ts +9 -0
  100. package/packages/orq-rc/src/models/operations/getoneprompt.ts +329 -167
  101. package/packages/orq-rc/src/models/operations/getpromptversion.ts +337 -168
  102. package/packages/orq-rc/src/models/operations/index.ts +6 -0
  103. package/packages/orq-rc/src/models/operations/listagents.ts +10 -10
  104. package/packages/orq-rc/src/models/operations/listbudgets.ts +2 -2
  105. package/packages/orq-rc/src/models/operations/listcontacts.ts +2 -2
  106. package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +6 -5
  107. package/packages/orq-rc/src/models/operations/listdatasets.ts +2 -2
  108. package/packages/orq-rc/src/models/operations/listdatasources.ts +2 -2
  109. package/packages/orq-rc/src/models/operations/listknowledgebases.ts +9 -0
  110. package/packages/orq-rc/src/models/operations/listpromptversions.ts +354 -183
  111. package/packages/orq-rc/src/models/operations/parse.ts +20 -335
  112. package/packages/orq-rc/src/models/operations/retrievecontact.ts +2 -2
  113. package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +6 -5
  114. package/packages/orq-rc/src/models/operations/retrievedataset.ts +2 -2
  115. package/packages/orq-rc/src/models/operations/retrievedatasource.ts +2 -2
  116. package/packages/orq-rc/src/models/operations/retrievetool.ts +2303 -0
  117. package/packages/orq-rc/src/models/operations/runagent.ts +412 -1375
  118. package/packages/orq-rc/src/models/operations/streamrunagent.ts +399 -1449
  119. package/packages/orq-rc/src/models/operations/updatebudget.ts +2 -2
  120. package/packages/orq-rc/src/models/operations/updatecontact.ts +2 -2
  121. package/packages/orq-rc/src/models/operations/updatedatapoint.ts +10 -8
  122. package/packages/orq-rc/src/models/operations/updatedataset.ts +2 -2
  123. package/packages/orq-rc/src/models/operations/updatedatasource.ts +2 -2
  124. package/packages/orq-rc/src/models/operations/updateeval.ts +57 -57
  125. package/packages/orq-rc/src/models/operations/updateknowledge.ts +18 -0
  126. package/packages/orq-rc/src/models/operations/updatememorystore.ts +136 -168
  127. package/packages/orq-rc/src/models/operations/updateprompt.ts +668 -335
  128. package/packages/orq-rc/src/models/operations/updatetool.ts +4231 -0
  129. package/packages/orq-rc/src/sdk/sdk.ts +6 -0
  130. package/packages/orq-rc/src/sdk/tools.ts +117 -0
  131. package/src/lib/config.ts +3 -3
  132. package/src/mcp-server/mcp-server.ts +1 -1
  133. package/src/mcp-server/server.ts +1 -1
  134. package/src/models/operations/createbudget.ts +2 -2
  135. package/src/models/operations/createcontact.ts +2 -2
  136. package/src/models/operations/createdataset.ts +2 -2
  137. package/src/models/operations/createdatasetitem.ts +2 -2
  138. package/src/models/operations/createdatasource.ts +2 -2
  139. package/src/models/operations/createeval.ts +16 -16
  140. package/src/models/operations/fileget.ts +2 -2
  141. package/src/models/operations/filelist.ts +2 -2
  142. package/src/models/operations/fileupload.ts +2 -2
  143. package/src/models/operations/getbudget.ts +2 -2
  144. package/src/models/operations/getevals.ts +28 -28
  145. package/src/models/operations/listbudgets.ts +2 -2
  146. package/src/models/operations/listcontacts.ts +2 -2
  147. package/src/models/operations/listdatasetdatapoints.ts +2 -2
  148. package/src/models/operations/listdatasets.ts +2 -2
  149. package/src/models/operations/listdatasources.ts +2 -2
  150. package/src/models/operations/retrievecontact.ts +2 -2
  151. package/src/models/operations/retrievedatapoint.ts +2 -2
  152. package/src/models/operations/retrievedataset.ts +2 -2
  153. package/src/models/operations/retrievedatasource.ts +2 -2
  154. package/src/models/operations/updatebudget.ts +2 -2
  155. package/src/models/operations/updatecontact.ts +2 -2
  156. package/src/models/operations/updatedatapoint.ts +2 -2
  157. package/src/models/operations/updatedataset.ts +2 -2
  158. package/src/models/operations/updatedatasource.ts +2 -2
  159. 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
@@ -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
- | DeploymentsResponseFormat1
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 DeploymentsResponseFormatDeploymentsType$inboundSchema:
910
- z.ZodNativeEnum<typeof DeploymentsResponseFormatDeploymentsType> = z
911
- .nativeEnum(DeploymentsResponseFormatDeploymentsType);
949
+ export const DeploymentsResponseFormat4$inboundSchema: z.ZodNativeEnum<
950
+ typeof DeploymentsResponseFormat4
951
+ > = z.nativeEnum(DeploymentsResponseFormat4);
912
952
 
913
953
  /** @internal */
914
- export const DeploymentsResponseFormatDeploymentsType$outboundSchema:
915
- z.ZodNativeEnum<typeof DeploymentsResponseFormatDeploymentsType> =
916
- DeploymentsResponseFormatDeploymentsType$inboundSchema;
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 DeploymentsResponseFormatDeploymentsType$ {
923
- /** @deprecated use `DeploymentsResponseFormatDeploymentsType$inboundSchema` instead. */
924
- export const inboundSchema =
925
- DeploymentsResponseFormatDeploymentsType$inboundSchema;
926
- /** @deprecated use `DeploymentsResponseFormatDeploymentsType$outboundSchema` instead. */
927
- export const outboundSchema =
928
- 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;
929
988
  }
930
989
 
931
990
  /** @internal */
932
- export const DeploymentsResponseFormat3$inboundSchema: z.ZodType<
933
- 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,
934
1035
  z.ZodTypeDef,
935
1036
  unknown
936
1037
  > = z.object({
937
- type: DeploymentsResponseFormatDeploymentsType$inboundSchema,
1038
+ type: Deployments1DeploymentsType$inboundSchema,
938
1039
  });
939
1040
 
940
1041
  /** @internal */
941
- export type DeploymentsResponseFormat3$Outbound = {
1042
+ export type Deployments13$Outbound = {
942
1043
  type: string;
943
1044
  };
944
1045
 
945
1046
  /** @internal */
946
- export const DeploymentsResponseFormat3$outboundSchema: z.ZodType<
947
- DeploymentsResponseFormat3$Outbound,
1047
+ export const Deployments13$outboundSchema: z.ZodType<
1048
+ Deployments13$Outbound,
948
1049
  z.ZodTypeDef,
949
- DeploymentsResponseFormat3
1050
+ Deployments13
950
1051
  > = z.object({
951
- type: DeploymentsResponseFormatDeploymentsType$outboundSchema,
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 DeploymentsResponseFormat3$ {
959
- /** @deprecated use `DeploymentsResponseFormat3$inboundSchema` instead. */
960
- export const inboundSchema = DeploymentsResponseFormat3$inboundSchema;
961
- /** @deprecated use `DeploymentsResponseFormat3$outboundSchema` instead. */
962
- export const outboundSchema = DeploymentsResponseFormat3$outboundSchema;
963
- /** @deprecated use `DeploymentsResponseFormat3$Outbound` instead. */
964
- 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;
965
1066
  }
966
1067
 
967
- export function deploymentsResponseFormat3ToJSON(
968
- deploymentsResponseFormat3: DeploymentsResponseFormat3,
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 deploymentsResponseFormat3FromJSON(
1072
+ export function deployments13FromJSON(
976
1073
  jsonString: string,
977
- ): SafeParseResult<DeploymentsResponseFormat3, SDKValidationError> {
1074
+ ): SafeParseResult<Deployments13, SDKValidationError> {
978
1075
  return safeParse(
979
1076
  jsonString,
980
- (x) => DeploymentsResponseFormat3$inboundSchema.parse(JSON.parse(x)),
981
- `Failed to parse 'DeploymentsResponseFormat3' from JSON`,
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 DeploymentsResponseFormatType$inboundSchema: z.ZodNativeEnum<
987
- typeof DeploymentsResponseFormatType
988
- > = z.nativeEnum(DeploymentsResponseFormatType);
1083
+ export const Deployments1Type$inboundSchema: z.ZodNativeEnum<
1084
+ typeof Deployments1Type
1085
+ > = z.nativeEnum(Deployments1Type);
989
1086
 
990
1087
  /** @internal */
991
- export const DeploymentsResponseFormatType$outboundSchema: z.ZodNativeEnum<
992
- typeof DeploymentsResponseFormatType
993
- > = DeploymentsResponseFormatType$inboundSchema;
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 DeploymentsResponseFormatType$ {
1000
- /** @deprecated use `DeploymentsResponseFormatType$inboundSchema` instead. */
1001
- export const inboundSchema = DeploymentsResponseFormatType$inboundSchema;
1002
- /** @deprecated use `DeploymentsResponseFormatType$outboundSchema` instead. */
1003
- 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;
1004
1101
  }
1005
1102
 
1006
1103
  /** @internal */
1007
- export const DeploymentsResponseFormat2$inboundSchema: z.ZodType<
1008
- DeploymentsResponseFormat2,
1104
+ export const Deployments12$inboundSchema: z.ZodType<
1105
+ Deployments12,
1009
1106
  z.ZodTypeDef,
1010
1107
  unknown
1011
1108
  > = z.object({
1012
- type: DeploymentsResponseFormatType$inboundSchema,
1109
+ type: Deployments1Type$inboundSchema,
1013
1110
  });
1014
1111
 
1015
1112
  /** @internal */
1016
- export type DeploymentsResponseFormat2$Outbound = {
1113
+ export type Deployments12$Outbound = {
1017
1114
  type: string;
1018
1115
  };
1019
1116
 
1020
1117
  /** @internal */
1021
- export const DeploymentsResponseFormat2$outboundSchema: z.ZodType<
1022
- DeploymentsResponseFormat2$Outbound,
1118
+ export const Deployments12$outboundSchema: z.ZodType<
1119
+ Deployments12$Outbound,
1023
1120
  z.ZodTypeDef,
1024
- DeploymentsResponseFormat2
1121
+ Deployments12
1025
1122
  > = z.object({
1026
- type: DeploymentsResponseFormatType$outboundSchema,
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 DeploymentsResponseFormat2$ {
1034
- /** @deprecated use `DeploymentsResponseFormat2$inboundSchema` instead. */
1035
- export const inboundSchema = DeploymentsResponseFormat2$inboundSchema;
1036
- /** @deprecated use `DeploymentsResponseFormat2$outboundSchema` instead. */
1037
- export const outboundSchema = DeploymentsResponseFormat2$outboundSchema;
1038
- /** @deprecated use `DeploymentsResponseFormat2$Outbound` instead. */
1039
- 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;
1040
1137
  }
1041
1138
 
1042
- export function deploymentsResponseFormat2ToJSON(
1043
- deploymentsResponseFormat2: DeploymentsResponseFormat2,
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 deploymentsResponseFormat2FromJSON(
1143
+ export function deployments12FromJSON(
1051
1144
  jsonString: string,
1052
- ): SafeParseResult<DeploymentsResponseFormat2, SDKValidationError> {
1145
+ ): SafeParseResult<Deployments12, SDKValidationError> {
1053
1146
  return safeParse(
1054
1147
  jsonString,
1055
- (x) => DeploymentsResponseFormat2$inboundSchema.parse(JSON.parse(x)),
1056
- `Failed to parse 'DeploymentsResponseFormat2' from JSON`,
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 DeploymentsResponseFormatDeploymentsResponseType$inboundSchema:
1062
- z.ZodNativeEnum<typeof DeploymentsResponseFormatDeploymentsResponseType> = z
1063
- .nativeEnum(DeploymentsResponseFormatDeploymentsResponseType);
1154
+ export const Deployments1DeploymentsResponseType$inboundSchema: z.ZodNativeEnum<
1155
+ typeof Deployments1DeploymentsResponseType
1156
+ > = z.nativeEnum(Deployments1DeploymentsResponseType);
1064
1157
 
1065
1158
  /** @internal */
1066
- export const DeploymentsResponseFormatDeploymentsResponseType$outboundSchema:
1067
- z.ZodNativeEnum<typeof DeploymentsResponseFormatDeploymentsResponseType> =
1068
- DeploymentsResponseFormatDeploymentsResponseType$inboundSchema;
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 DeploymentsResponseFormatDeploymentsResponseType$ {
1075
- /** @deprecated use `DeploymentsResponseFormatDeploymentsResponseType$inboundSchema` instead. */
1167
+ export namespace Deployments1DeploymentsResponseType$ {
1168
+ /** @deprecated use `Deployments1DeploymentsResponseType$inboundSchema` instead. */
1076
1169
  export const inboundSchema =
1077
- DeploymentsResponseFormatDeploymentsResponseType$inboundSchema;
1078
- /** @deprecated use `DeploymentsResponseFormatDeploymentsResponseType$outboundSchema` instead. */
1170
+ Deployments1DeploymentsResponseType$inboundSchema;
1171
+ /** @deprecated use `Deployments1DeploymentsResponseType$outboundSchema` instead. */
1079
1172
  export const outboundSchema =
1080
- DeploymentsResponseFormatDeploymentsResponseType$outboundSchema;
1173
+ Deployments1DeploymentsResponseType$outboundSchema;
1081
1174
  }
1082
1175
 
1083
1176
  /** @internal */
1084
- export const DeploymentsResponseFormatJsonSchema$inboundSchema: z.ZodType<
1085
- DeploymentsResponseFormatJsonSchema,
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 DeploymentsResponseFormatJsonSchema$Outbound = {
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 DeploymentsResponseFormatJsonSchema$outboundSchema: z.ZodType<
1103
- DeploymentsResponseFormatJsonSchema$Outbound,
1195
+ export const Deployments1JsonSchema$outboundSchema: z.ZodType<
1196
+ Deployments1JsonSchema$Outbound,
1104
1197
  z.ZodTypeDef,
1105
- DeploymentsResponseFormatJsonSchema
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 DeploymentsResponseFormatJsonSchema$ {
1117
- /** @deprecated use `DeploymentsResponseFormatJsonSchema$inboundSchema` instead. */
1118
- export const inboundSchema =
1119
- DeploymentsResponseFormatJsonSchema$inboundSchema;
1120
- /** @deprecated use `DeploymentsResponseFormatJsonSchema$outboundSchema` instead. */
1121
- export const outboundSchema =
1122
- DeploymentsResponseFormatJsonSchema$outboundSchema;
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 deploymentsResponseFormatJsonSchemaToJSON(
1128
- deploymentsResponseFormatJsonSchema: DeploymentsResponseFormatJsonSchema,
1218
+ export function deployments1JsonSchemaToJSON(
1219
+ deployments1JsonSchema: Deployments1JsonSchema,
1129
1220
  ): string {
1130
1221
  return JSON.stringify(
1131
- DeploymentsResponseFormatJsonSchema$outboundSchema.parse(
1132
- deploymentsResponseFormatJsonSchema,
1133
- ),
1222
+ Deployments1JsonSchema$outboundSchema.parse(deployments1JsonSchema),
1134
1223
  );
1135
1224
  }
1136
1225
 
1137
- export function deploymentsResponseFormatJsonSchemaFromJSON(
1226
+ export function deployments1JsonSchemaFromJSON(
1138
1227
  jsonString: string,
1139
- ): SafeParseResult<DeploymentsResponseFormatJsonSchema, SDKValidationError> {
1228
+ ): SafeParseResult<Deployments1JsonSchema, SDKValidationError> {
1140
1229
  return safeParse(
1141
1230
  jsonString,
1142
- (x) =>
1143
- DeploymentsResponseFormatJsonSchema$inboundSchema.parse(JSON.parse(x)),
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 DeploymentsResponseFormat1$inboundSchema: z.ZodType<
1150
- DeploymentsResponseFormat1,
1237
+ export const Deployments11$inboundSchema: z.ZodType<
1238
+ Deployments11,
1151
1239
  z.ZodTypeDef,
1152
1240
  unknown
1153
1241
  > = z.object({
1154
- type: DeploymentsResponseFormatDeploymentsResponseType$inboundSchema,
1155
- json_schema: z.lazy(() => DeploymentsResponseFormatJsonSchema$inboundSchema),
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 DeploymentsResponseFormat1$Outbound = {
1251
+ export type Deployments11$Outbound = {
1164
1252
  type: string;
1165
- json_schema: DeploymentsResponseFormatJsonSchema$Outbound;
1253
+ json_schema: Deployments1JsonSchema$Outbound;
1166
1254
  };
1167
1255
 
1168
1256
  /** @internal */
1169
- export const DeploymentsResponseFormat1$outboundSchema: z.ZodType<
1170
- DeploymentsResponseFormat1$Outbound,
1257
+ export const Deployments11$outboundSchema: z.ZodType<
1258
+ Deployments11$Outbound,
1171
1259
  z.ZodTypeDef,
1172
- DeploymentsResponseFormat1
1260
+ Deployments11
1173
1261
  > = z.object({
1174
- type: DeploymentsResponseFormatDeploymentsResponseType$outboundSchema,
1175
- jsonSchema: z.lazy(() => DeploymentsResponseFormatJsonSchema$outboundSchema),
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.lazy(() => DeploymentsResponseFormat1$inboundSchema),
1220
- z.lazy(() => DeploymentsResponseFormat2$inboundSchema),
1221
- 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,
1222
1370
  ]);
1223
1371
 
1224
1372
  /** @internal */
1225
1373
  export type DeploymentsResponseFormat$Outbound =
1226
- | DeploymentsResponseFormat1$Outbound
1227
- | DeploymentsResponseFormat2$Outbound
1228
- | DeploymentsResponseFormat3$Outbound;
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.lazy(() => DeploymentsResponseFormat1$outboundSchema),
1237
- z.lazy(() => DeploymentsResponseFormat2$outboundSchema),
1238
- 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,
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.lazy(() => DeploymentsResponseFormat1$inboundSchema),
1377
- z.lazy(() => DeploymentsResponseFormat2$inboundSchema),
1378
- 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,
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
- | DeploymentsResponseFormat1$Outbound
1408
- | DeploymentsResponseFormat2$Outbound
1409
- | DeploymentsResponseFormat3$Outbound
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.lazy(() => DeploymentsResponseFormat1$outboundSchema),
1440
- z.lazy(() => DeploymentsResponseFormat2$outboundSchema),
1441
- 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,
1442
1611
  ]),
1443
1612
  ).optional(),
1444
1613
  photoRealVersion: DeploymentsPhotoRealVersion$outboundSchema.optional(),