@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
@@ -142,13 +142,14 @@ export type PrefixMessagesContent =
142
142
  | Array<TextContentPart | RefusalContentPart>;
143
143
 
144
144
  /**
145
- * The role of the messages author, in this case `assistant`.
145
+ * The role of the messages author, in this case `assistant` or `exception`.
146
146
  */
147
147
  export const DeploymentGetConfigPrefixMessagesDeploymentsRole = {
148
148
  Assistant: "assistant",
149
+ Exception: "exception",
149
150
  } as const;
150
151
  /**
151
- * The role of the messages author, in this case `assistant`.
152
+ * The role of the messages author, in this case `assistant` or `exception`.
152
153
  */
153
154
  export type DeploymentGetConfigPrefixMessagesDeploymentsRole = ClosedEnum<
154
155
  typeof DeploymentGetConfigPrefixMessagesDeploymentsRole
@@ -212,7 +213,7 @@ export type AssistantMessage = {
212
213
  */
213
214
  refusal?: string | null | undefined;
214
215
  /**
215
- * The role of the messages author, in this case `assistant`.
216
+ * The role of the messages author, in this case `assistant` or `exception`.
216
217
  */
217
218
  role: DeploymentGetConfigPrefixMessagesDeploymentsRole;
218
219
  /**
@@ -594,13 +595,14 @@ export type DeploymentGetConfigMessagesContent =
594
595
  | Array<TwoTextContentPart | TwoRefusalContentPart>;
595
596
 
596
597
  /**
597
- * The role of the messages author, in this case `assistant`.
598
+ * The role of the messages author, in this case `assistant` or `exception`.
598
599
  */
599
600
  export const DeploymentGetConfigMessagesDeploymentsRequestRole = {
600
601
  Assistant: "assistant",
602
+ Exception: "exception",
601
603
  } as const;
602
604
  /**
603
- * The role of the messages author, in this case `assistant`.
605
+ * The role of the messages author, in this case `assistant` or `exception`.
604
606
  */
605
607
  export type DeploymentGetConfigMessagesDeploymentsRequestRole = ClosedEnum<
606
608
  typeof DeploymentGetConfigMessagesDeploymentsRequestRole
@@ -664,7 +666,7 @@ export type MessagesAssistantMessage = {
664
666
  */
665
667
  refusal?: string | null | undefined;
666
668
  /**
667
- * The role of the messages author, in this case `assistant`.
669
+ * The role of the messages author, in this case `assistant` or `exception`.
668
670
  */
669
671
  role: DeploymentGetConfigMessagesDeploymentsRequestRole;
670
672
  /**
@@ -1506,45 +1508,82 @@ export type DeploymentGetConfigFormat = ClosedEnum<
1506
1508
  typeof DeploymentGetConfigFormat
1507
1509
  >;
1508
1510
 
1509
- export const DeploymentGetConfigResponseFormatDeploymentsType = {
1511
+ export const DeploymentGetConfigResponseFormat4 = {
1512
+ Json: "json",
1513
+ Text: "text",
1514
+ Srt: "srt",
1515
+ VerboseJson: "verbose_json",
1516
+ Vtt: "vtt",
1517
+ } as const;
1518
+ export type DeploymentGetConfigResponseFormat4 = ClosedEnum<
1519
+ typeof DeploymentGetConfigResponseFormat4
1520
+ >;
1521
+
1522
+ export const DeploymentGetConfigResponseFormat3 = {
1523
+ Url: "url",
1524
+ Base64Json: "base64_json",
1525
+ } as const;
1526
+ export type DeploymentGetConfigResponseFormat3 = ClosedEnum<
1527
+ typeof DeploymentGetConfigResponseFormat3
1528
+ >;
1529
+
1530
+ export const DeploymentGetConfigResponseFormat2 = {
1531
+ Mp3: "mp3",
1532
+ Opus: "opus",
1533
+ Aac: "aac",
1534
+ Flac: "flac",
1535
+ Wav: "wav",
1536
+ Pcm: "pcm",
1537
+ } as const;
1538
+ export type DeploymentGetConfigResponseFormat2 = ClosedEnum<
1539
+ typeof DeploymentGetConfigResponseFormat2
1540
+ >;
1541
+
1542
+ export const DeploymentGetConfig1DeploymentsType = {
1510
1543
  Text: "text",
1511
1544
  } as const;
1512
- export type DeploymentGetConfigResponseFormatDeploymentsType = ClosedEnum<
1513
- typeof DeploymentGetConfigResponseFormatDeploymentsType
1545
+ export type DeploymentGetConfig1DeploymentsType = ClosedEnum<
1546
+ typeof DeploymentGetConfig1DeploymentsType
1514
1547
  >;
1515
1548
 
1516
- export type DeploymentGetConfigResponseFormat3 = {
1517
- type: DeploymentGetConfigResponseFormatDeploymentsType;
1549
+ export type DeploymentGetConfig13 = {
1550
+ type: DeploymentGetConfig1DeploymentsType;
1518
1551
  };
1519
1552
 
1520
- export const DeploymentGetConfigResponseFormatType = {
1553
+ export const DeploymentGetConfig1Type = {
1521
1554
  JsonObject: "json_object",
1522
1555
  } as const;
1523
- export type DeploymentGetConfigResponseFormatType = ClosedEnum<
1524
- typeof DeploymentGetConfigResponseFormatType
1556
+ export type DeploymentGetConfig1Type = ClosedEnum<
1557
+ typeof DeploymentGetConfig1Type
1525
1558
  >;
1526
1559
 
1527
- export type DeploymentGetConfigResponseFormat2 = {
1528
- type: DeploymentGetConfigResponseFormatType;
1560
+ export type DeploymentGetConfig12 = {
1561
+ type: DeploymentGetConfig1Type;
1529
1562
  };
1530
1563
 
1531
- export const DeploymentGetConfigResponseFormatDeploymentsResponseType = {
1564
+ export const DeploymentGetConfig1DeploymentsResponseType = {
1532
1565
  JsonSchema: "json_schema",
1533
1566
  } as const;
1534
- export type DeploymentGetConfigResponseFormatDeploymentsResponseType =
1535
- ClosedEnum<typeof DeploymentGetConfigResponseFormatDeploymentsResponseType>;
1567
+ export type DeploymentGetConfig1DeploymentsResponseType = ClosedEnum<
1568
+ typeof DeploymentGetConfig1DeploymentsResponseType
1569
+ >;
1536
1570
 
1537
- export type DeploymentGetConfigResponseFormatJsonSchema = {
1571
+ export type DeploymentGetConfig1JsonSchema = {
1538
1572
  name: string;
1539
1573
  strict?: boolean | undefined;
1540
1574
  schema: { [k: string]: any };
1541
1575
  };
1542
1576
 
1543
- export type DeploymentGetConfigResponseFormat1 = {
1544
- type: DeploymentGetConfigResponseFormatDeploymentsResponseType;
1545
- jsonSchema: DeploymentGetConfigResponseFormatJsonSchema;
1577
+ export type DeploymentGetConfig11 = {
1578
+ type: DeploymentGetConfig1DeploymentsResponseType;
1579
+ jsonSchema: DeploymentGetConfig1JsonSchema;
1546
1580
  };
1547
1581
 
1582
+ export type DeploymentGetConfigResponseFormat1 =
1583
+ | DeploymentGetConfig11
1584
+ | DeploymentGetConfig12
1585
+ | DeploymentGetConfig13;
1586
+
1548
1587
  /**
1549
1588
  * An object specifying the format that the model must output.
1550
1589
  *
@@ -1557,9 +1596,12 @@ export type DeploymentGetConfigResponseFormat1 = {
1557
1596
  * 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.
1558
1597
  */
1559
1598
  export type DeploymentGetConfigResponseFormat =
1560
- | DeploymentGetConfigResponseFormat1
1599
+ | DeploymentGetConfig11
1600
+ | DeploymentGetConfig12
1601
+ | DeploymentGetConfig13
1561
1602
  | DeploymentGetConfigResponseFormat2
1562
- | DeploymentGetConfigResponseFormat3;
1603
+ | DeploymentGetConfigResponseFormat3
1604
+ | DeploymentGetConfigResponseFormat4;
1563
1605
 
1564
1606
  /**
1565
1607
  * The version of photoReal to use. Must be v1 or v2. Only available for `leonardoai` provider
@@ -1594,6 +1636,7 @@ export type DeploymentGetConfigEncodingFormat = ClosedEnum<
1594
1636
  */
1595
1637
  export const DeploymentGetConfigReasoningEffort = {
1596
1638
  Disable: "disable",
1639
+ Minimal: "minimal",
1597
1640
  Low: "low",
1598
1641
  Medium: "medium",
1599
1642
  High: "high",
@@ -1684,9 +1727,12 @@ export type ParametersT = {
1684
1727
  * 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.
1685
1728
  */
1686
1729
  responseFormat?:
1687
- | DeploymentGetConfigResponseFormat1
1730
+ | DeploymentGetConfig11
1731
+ | DeploymentGetConfig12
1732
+ | DeploymentGetConfig13
1688
1733
  | DeploymentGetConfigResponseFormat2
1689
1734
  | DeploymentGetConfigResponseFormat3
1735
+ | DeploymentGetConfigResponseFormat4
1690
1736
  | null
1691
1737
  | undefined;
1692
1738
  /**
@@ -9529,276 +9575,316 @@ export namespace DeploymentGetConfigFormat$ {
9529
9575
  }
9530
9576
 
9531
9577
  /** @internal */
9532
- export const DeploymentGetConfigResponseFormatDeploymentsType$inboundSchema:
9533
- z.ZodNativeEnum<typeof DeploymentGetConfigResponseFormatDeploymentsType> = z
9534
- .nativeEnum(DeploymentGetConfigResponseFormatDeploymentsType);
9578
+ export const DeploymentGetConfigResponseFormat4$inboundSchema: z.ZodNativeEnum<
9579
+ typeof DeploymentGetConfigResponseFormat4
9580
+ > = z.nativeEnum(DeploymentGetConfigResponseFormat4);
9581
+
9582
+ /** @internal */
9583
+ export const DeploymentGetConfigResponseFormat4$outboundSchema: z.ZodNativeEnum<
9584
+ typeof DeploymentGetConfigResponseFormat4
9585
+ > = DeploymentGetConfigResponseFormat4$inboundSchema;
9586
+
9587
+ /**
9588
+ * @internal
9589
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
9590
+ */
9591
+ export namespace DeploymentGetConfigResponseFormat4$ {
9592
+ /** @deprecated use `DeploymentGetConfigResponseFormat4$inboundSchema` instead. */
9593
+ export const inboundSchema = DeploymentGetConfigResponseFormat4$inboundSchema;
9594
+ /** @deprecated use `DeploymentGetConfigResponseFormat4$outboundSchema` instead. */
9595
+ export const outboundSchema =
9596
+ DeploymentGetConfigResponseFormat4$outboundSchema;
9597
+ }
9598
+
9599
+ /** @internal */
9600
+ export const DeploymentGetConfigResponseFormat3$inboundSchema: z.ZodNativeEnum<
9601
+ typeof DeploymentGetConfigResponseFormat3
9602
+ > = z.nativeEnum(DeploymentGetConfigResponseFormat3);
9603
+
9604
+ /** @internal */
9605
+ export const DeploymentGetConfigResponseFormat3$outboundSchema: z.ZodNativeEnum<
9606
+ typeof DeploymentGetConfigResponseFormat3
9607
+ > = DeploymentGetConfigResponseFormat3$inboundSchema;
9608
+
9609
+ /**
9610
+ * @internal
9611
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
9612
+ */
9613
+ export namespace DeploymentGetConfigResponseFormat3$ {
9614
+ /** @deprecated use `DeploymentGetConfigResponseFormat3$inboundSchema` instead. */
9615
+ export const inboundSchema = DeploymentGetConfigResponseFormat3$inboundSchema;
9616
+ /** @deprecated use `DeploymentGetConfigResponseFormat3$outboundSchema` instead. */
9617
+ export const outboundSchema =
9618
+ DeploymentGetConfigResponseFormat3$outboundSchema;
9619
+ }
9620
+
9621
+ /** @internal */
9622
+ export const DeploymentGetConfigResponseFormat2$inboundSchema: z.ZodNativeEnum<
9623
+ typeof DeploymentGetConfigResponseFormat2
9624
+ > = z.nativeEnum(DeploymentGetConfigResponseFormat2);
9535
9625
 
9536
9626
  /** @internal */
9537
- export const DeploymentGetConfigResponseFormatDeploymentsType$outboundSchema:
9538
- z.ZodNativeEnum<typeof DeploymentGetConfigResponseFormatDeploymentsType> =
9539
- DeploymentGetConfigResponseFormatDeploymentsType$inboundSchema;
9627
+ export const DeploymentGetConfigResponseFormat2$outboundSchema: z.ZodNativeEnum<
9628
+ typeof DeploymentGetConfigResponseFormat2
9629
+ > = DeploymentGetConfigResponseFormat2$inboundSchema;
9540
9630
 
9541
9631
  /**
9542
9632
  * @internal
9543
9633
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
9544
9634
  */
9545
- export namespace DeploymentGetConfigResponseFormatDeploymentsType$ {
9546
- /** @deprecated use `DeploymentGetConfigResponseFormatDeploymentsType$inboundSchema` instead. */
9635
+ export namespace DeploymentGetConfigResponseFormat2$ {
9636
+ /** @deprecated use `DeploymentGetConfigResponseFormat2$inboundSchema` instead. */
9637
+ export const inboundSchema = DeploymentGetConfigResponseFormat2$inboundSchema;
9638
+ /** @deprecated use `DeploymentGetConfigResponseFormat2$outboundSchema` instead. */
9639
+ export const outboundSchema =
9640
+ DeploymentGetConfigResponseFormat2$outboundSchema;
9641
+ }
9642
+
9643
+ /** @internal */
9644
+ export const DeploymentGetConfig1DeploymentsType$inboundSchema: z.ZodNativeEnum<
9645
+ typeof DeploymentGetConfig1DeploymentsType
9646
+ > = z.nativeEnum(DeploymentGetConfig1DeploymentsType);
9647
+
9648
+ /** @internal */
9649
+ export const DeploymentGetConfig1DeploymentsType$outboundSchema:
9650
+ z.ZodNativeEnum<typeof DeploymentGetConfig1DeploymentsType> =
9651
+ DeploymentGetConfig1DeploymentsType$inboundSchema;
9652
+
9653
+ /**
9654
+ * @internal
9655
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
9656
+ */
9657
+ export namespace DeploymentGetConfig1DeploymentsType$ {
9658
+ /** @deprecated use `DeploymentGetConfig1DeploymentsType$inboundSchema` instead. */
9547
9659
  export const inboundSchema =
9548
- DeploymentGetConfigResponseFormatDeploymentsType$inboundSchema;
9549
- /** @deprecated use `DeploymentGetConfigResponseFormatDeploymentsType$outboundSchema` instead. */
9660
+ DeploymentGetConfig1DeploymentsType$inboundSchema;
9661
+ /** @deprecated use `DeploymentGetConfig1DeploymentsType$outboundSchema` instead. */
9550
9662
  export const outboundSchema =
9551
- DeploymentGetConfigResponseFormatDeploymentsType$outboundSchema;
9663
+ DeploymentGetConfig1DeploymentsType$outboundSchema;
9552
9664
  }
9553
9665
 
9554
9666
  /** @internal */
9555
- export const DeploymentGetConfigResponseFormat3$inboundSchema: z.ZodType<
9556
- DeploymentGetConfigResponseFormat3,
9667
+ export const DeploymentGetConfig13$inboundSchema: z.ZodType<
9668
+ DeploymentGetConfig13,
9557
9669
  z.ZodTypeDef,
9558
9670
  unknown
9559
9671
  > = z.object({
9560
- type: DeploymentGetConfigResponseFormatDeploymentsType$inboundSchema,
9672
+ type: DeploymentGetConfig1DeploymentsType$inboundSchema,
9561
9673
  });
9562
9674
 
9563
9675
  /** @internal */
9564
- export type DeploymentGetConfigResponseFormat3$Outbound = {
9676
+ export type DeploymentGetConfig13$Outbound = {
9565
9677
  type: string;
9566
9678
  };
9567
9679
 
9568
9680
  /** @internal */
9569
- export const DeploymentGetConfigResponseFormat3$outboundSchema: z.ZodType<
9570
- DeploymentGetConfigResponseFormat3$Outbound,
9681
+ export const DeploymentGetConfig13$outboundSchema: z.ZodType<
9682
+ DeploymentGetConfig13$Outbound,
9571
9683
  z.ZodTypeDef,
9572
- DeploymentGetConfigResponseFormat3
9684
+ DeploymentGetConfig13
9573
9685
  > = z.object({
9574
- type: DeploymentGetConfigResponseFormatDeploymentsType$outboundSchema,
9686
+ type: DeploymentGetConfig1DeploymentsType$outboundSchema,
9575
9687
  });
9576
9688
 
9577
9689
  /**
9578
9690
  * @internal
9579
9691
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
9580
9692
  */
9581
- export namespace DeploymentGetConfigResponseFormat3$ {
9582
- /** @deprecated use `DeploymentGetConfigResponseFormat3$inboundSchema` instead. */
9583
- export const inboundSchema = DeploymentGetConfigResponseFormat3$inboundSchema;
9584
- /** @deprecated use `DeploymentGetConfigResponseFormat3$outboundSchema` instead. */
9585
- export const outboundSchema =
9586
- DeploymentGetConfigResponseFormat3$outboundSchema;
9587
- /** @deprecated use `DeploymentGetConfigResponseFormat3$Outbound` instead. */
9588
- export type Outbound = DeploymentGetConfigResponseFormat3$Outbound;
9693
+ export namespace DeploymentGetConfig13$ {
9694
+ /** @deprecated use `DeploymentGetConfig13$inboundSchema` instead. */
9695
+ export const inboundSchema = DeploymentGetConfig13$inboundSchema;
9696
+ /** @deprecated use `DeploymentGetConfig13$outboundSchema` instead. */
9697
+ export const outboundSchema = DeploymentGetConfig13$outboundSchema;
9698
+ /** @deprecated use `DeploymentGetConfig13$Outbound` instead. */
9699
+ export type Outbound = DeploymentGetConfig13$Outbound;
9589
9700
  }
9590
9701
 
9591
- export function deploymentGetConfigResponseFormat3ToJSON(
9592
- deploymentGetConfigResponseFormat3: DeploymentGetConfigResponseFormat3,
9702
+ export function deploymentGetConfig13ToJSON(
9703
+ deploymentGetConfig13: DeploymentGetConfig13,
9593
9704
  ): string {
9594
9705
  return JSON.stringify(
9595
- DeploymentGetConfigResponseFormat3$outboundSchema.parse(
9596
- deploymentGetConfigResponseFormat3,
9597
- ),
9706
+ DeploymentGetConfig13$outboundSchema.parse(deploymentGetConfig13),
9598
9707
  );
9599
9708
  }
9600
9709
 
9601
- export function deploymentGetConfigResponseFormat3FromJSON(
9710
+ export function deploymentGetConfig13FromJSON(
9602
9711
  jsonString: string,
9603
- ): SafeParseResult<DeploymentGetConfigResponseFormat3, SDKValidationError> {
9712
+ ): SafeParseResult<DeploymentGetConfig13, SDKValidationError> {
9604
9713
  return safeParse(
9605
9714
  jsonString,
9606
- (x) =>
9607
- DeploymentGetConfigResponseFormat3$inboundSchema.parse(JSON.parse(x)),
9608
- `Failed to parse 'DeploymentGetConfigResponseFormat3' from JSON`,
9715
+ (x) => DeploymentGetConfig13$inboundSchema.parse(JSON.parse(x)),
9716
+ `Failed to parse 'DeploymentGetConfig13' from JSON`,
9609
9717
  );
9610
9718
  }
9611
9719
 
9612
9720
  /** @internal */
9613
- export const DeploymentGetConfigResponseFormatType$inboundSchema:
9614
- z.ZodNativeEnum<typeof DeploymentGetConfigResponseFormatType> = z.nativeEnum(
9615
- DeploymentGetConfigResponseFormatType,
9616
- );
9721
+ export const DeploymentGetConfig1Type$inboundSchema: z.ZodNativeEnum<
9722
+ typeof DeploymentGetConfig1Type
9723
+ > = z.nativeEnum(DeploymentGetConfig1Type);
9617
9724
 
9618
9725
  /** @internal */
9619
- export const DeploymentGetConfigResponseFormatType$outboundSchema:
9620
- z.ZodNativeEnum<typeof DeploymentGetConfigResponseFormatType> =
9621
- DeploymentGetConfigResponseFormatType$inboundSchema;
9726
+ export const DeploymentGetConfig1Type$outboundSchema: z.ZodNativeEnum<
9727
+ typeof DeploymentGetConfig1Type
9728
+ > = DeploymentGetConfig1Type$inboundSchema;
9622
9729
 
9623
9730
  /**
9624
9731
  * @internal
9625
9732
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
9626
9733
  */
9627
- export namespace DeploymentGetConfigResponseFormatType$ {
9628
- /** @deprecated use `DeploymentGetConfigResponseFormatType$inboundSchema` instead. */
9629
- export const inboundSchema =
9630
- DeploymentGetConfigResponseFormatType$inboundSchema;
9631
- /** @deprecated use `DeploymentGetConfigResponseFormatType$outboundSchema` instead. */
9632
- export const outboundSchema =
9633
- DeploymentGetConfigResponseFormatType$outboundSchema;
9734
+ export namespace DeploymentGetConfig1Type$ {
9735
+ /** @deprecated use `DeploymentGetConfig1Type$inboundSchema` instead. */
9736
+ export const inboundSchema = DeploymentGetConfig1Type$inboundSchema;
9737
+ /** @deprecated use `DeploymentGetConfig1Type$outboundSchema` instead. */
9738
+ export const outboundSchema = DeploymentGetConfig1Type$outboundSchema;
9634
9739
  }
9635
9740
 
9636
9741
  /** @internal */
9637
- export const DeploymentGetConfigResponseFormat2$inboundSchema: z.ZodType<
9638
- DeploymentGetConfigResponseFormat2,
9742
+ export const DeploymentGetConfig12$inboundSchema: z.ZodType<
9743
+ DeploymentGetConfig12,
9639
9744
  z.ZodTypeDef,
9640
9745
  unknown
9641
9746
  > = z.object({
9642
- type: DeploymentGetConfigResponseFormatType$inboundSchema,
9747
+ type: DeploymentGetConfig1Type$inboundSchema,
9643
9748
  });
9644
9749
 
9645
9750
  /** @internal */
9646
- export type DeploymentGetConfigResponseFormat2$Outbound = {
9751
+ export type DeploymentGetConfig12$Outbound = {
9647
9752
  type: string;
9648
9753
  };
9649
9754
 
9650
9755
  /** @internal */
9651
- export const DeploymentGetConfigResponseFormat2$outboundSchema: z.ZodType<
9652
- DeploymentGetConfigResponseFormat2$Outbound,
9756
+ export const DeploymentGetConfig12$outboundSchema: z.ZodType<
9757
+ DeploymentGetConfig12$Outbound,
9653
9758
  z.ZodTypeDef,
9654
- DeploymentGetConfigResponseFormat2
9759
+ DeploymentGetConfig12
9655
9760
  > = z.object({
9656
- type: DeploymentGetConfigResponseFormatType$outboundSchema,
9761
+ type: DeploymentGetConfig1Type$outboundSchema,
9657
9762
  });
9658
9763
 
9659
9764
  /**
9660
9765
  * @internal
9661
9766
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
9662
9767
  */
9663
- export namespace DeploymentGetConfigResponseFormat2$ {
9664
- /** @deprecated use `DeploymentGetConfigResponseFormat2$inboundSchema` instead. */
9665
- export const inboundSchema = DeploymentGetConfigResponseFormat2$inboundSchema;
9666
- /** @deprecated use `DeploymentGetConfigResponseFormat2$outboundSchema` instead. */
9667
- export const outboundSchema =
9668
- DeploymentGetConfigResponseFormat2$outboundSchema;
9669
- /** @deprecated use `DeploymentGetConfigResponseFormat2$Outbound` instead. */
9670
- export type Outbound = DeploymentGetConfigResponseFormat2$Outbound;
9768
+ export namespace DeploymentGetConfig12$ {
9769
+ /** @deprecated use `DeploymentGetConfig12$inboundSchema` instead. */
9770
+ export const inboundSchema = DeploymentGetConfig12$inboundSchema;
9771
+ /** @deprecated use `DeploymentGetConfig12$outboundSchema` instead. */
9772
+ export const outboundSchema = DeploymentGetConfig12$outboundSchema;
9773
+ /** @deprecated use `DeploymentGetConfig12$Outbound` instead. */
9774
+ export type Outbound = DeploymentGetConfig12$Outbound;
9671
9775
  }
9672
9776
 
9673
- export function deploymentGetConfigResponseFormat2ToJSON(
9674
- deploymentGetConfigResponseFormat2: DeploymentGetConfigResponseFormat2,
9777
+ export function deploymentGetConfig12ToJSON(
9778
+ deploymentGetConfig12: DeploymentGetConfig12,
9675
9779
  ): string {
9676
9780
  return JSON.stringify(
9677
- DeploymentGetConfigResponseFormat2$outboundSchema.parse(
9678
- deploymentGetConfigResponseFormat2,
9679
- ),
9781
+ DeploymentGetConfig12$outboundSchema.parse(deploymentGetConfig12),
9680
9782
  );
9681
9783
  }
9682
9784
 
9683
- export function deploymentGetConfigResponseFormat2FromJSON(
9785
+ export function deploymentGetConfig12FromJSON(
9684
9786
  jsonString: string,
9685
- ): SafeParseResult<DeploymentGetConfigResponseFormat2, SDKValidationError> {
9787
+ ): SafeParseResult<DeploymentGetConfig12, SDKValidationError> {
9686
9788
  return safeParse(
9687
9789
  jsonString,
9688
- (x) =>
9689
- DeploymentGetConfigResponseFormat2$inboundSchema.parse(JSON.parse(x)),
9690
- `Failed to parse 'DeploymentGetConfigResponseFormat2' from JSON`,
9790
+ (x) => DeploymentGetConfig12$inboundSchema.parse(JSON.parse(x)),
9791
+ `Failed to parse 'DeploymentGetConfig12' from JSON`,
9691
9792
  );
9692
9793
  }
9693
9794
 
9694
9795
  /** @internal */
9695
- export const DeploymentGetConfigResponseFormatDeploymentsResponseType$inboundSchema:
9696
- z.ZodNativeEnum<
9697
- typeof DeploymentGetConfigResponseFormatDeploymentsResponseType
9698
- > = z.nativeEnum(DeploymentGetConfigResponseFormatDeploymentsResponseType);
9796
+ export const DeploymentGetConfig1DeploymentsResponseType$inboundSchema:
9797
+ z.ZodNativeEnum<typeof DeploymentGetConfig1DeploymentsResponseType> = z
9798
+ .nativeEnum(DeploymentGetConfig1DeploymentsResponseType);
9699
9799
 
9700
9800
  /** @internal */
9701
- export const DeploymentGetConfigResponseFormatDeploymentsResponseType$outboundSchema:
9702
- z.ZodNativeEnum<
9703
- typeof DeploymentGetConfigResponseFormatDeploymentsResponseType
9704
- > = DeploymentGetConfigResponseFormatDeploymentsResponseType$inboundSchema;
9801
+ export const DeploymentGetConfig1DeploymentsResponseType$outboundSchema:
9802
+ z.ZodNativeEnum<typeof DeploymentGetConfig1DeploymentsResponseType> =
9803
+ DeploymentGetConfig1DeploymentsResponseType$inboundSchema;
9705
9804
 
9706
9805
  /**
9707
9806
  * @internal
9708
9807
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
9709
9808
  */
9710
- export namespace DeploymentGetConfigResponseFormatDeploymentsResponseType$ {
9711
- /** @deprecated use `DeploymentGetConfigResponseFormatDeploymentsResponseType$inboundSchema` instead. */
9809
+ export namespace DeploymentGetConfig1DeploymentsResponseType$ {
9810
+ /** @deprecated use `DeploymentGetConfig1DeploymentsResponseType$inboundSchema` instead. */
9712
9811
  export const inboundSchema =
9713
- DeploymentGetConfigResponseFormatDeploymentsResponseType$inboundSchema;
9714
- /** @deprecated use `DeploymentGetConfigResponseFormatDeploymentsResponseType$outboundSchema` instead. */
9812
+ DeploymentGetConfig1DeploymentsResponseType$inboundSchema;
9813
+ /** @deprecated use `DeploymentGetConfig1DeploymentsResponseType$outboundSchema` instead. */
9715
9814
  export const outboundSchema =
9716
- DeploymentGetConfigResponseFormatDeploymentsResponseType$outboundSchema;
9815
+ DeploymentGetConfig1DeploymentsResponseType$outboundSchema;
9717
9816
  }
9718
9817
 
9719
9818
  /** @internal */
9720
- export const DeploymentGetConfigResponseFormatJsonSchema$inboundSchema:
9721
- z.ZodType<
9722
- DeploymentGetConfigResponseFormatJsonSchema,
9723
- z.ZodTypeDef,
9724
- unknown
9725
- > = z.object({
9726
- name: z.string(),
9727
- strict: z.boolean().optional(),
9728
- schema: z.record(z.any()),
9729
- });
9819
+ export const DeploymentGetConfig1JsonSchema$inboundSchema: z.ZodType<
9820
+ DeploymentGetConfig1JsonSchema,
9821
+ z.ZodTypeDef,
9822
+ unknown
9823
+ > = z.object({
9824
+ name: z.string(),
9825
+ strict: z.boolean().optional(),
9826
+ schema: z.record(z.any()),
9827
+ });
9730
9828
 
9731
9829
  /** @internal */
9732
- export type DeploymentGetConfigResponseFormatJsonSchema$Outbound = {
9830
+ export type DeploymentGetConfig1JsonSchema$Outbound = {
9733
9831
  name: string;
9734
9832
  strict?: boolean | undefined;
9735
9833
  schema: { [k: string]: any };
9736
9834
  };
9737
9835
 
9738
9836
  /** @internal */
9739
- export const DeploymentGetConfigResponseFormatJsonSchema$outboundSchema:
9740
- z.ZodType<
9741
- DeploymentGetConfigResponseFormatJsonSchema$Outbound,
9742
- z.ZodTypeDef,
9743
- DeploymentGetConfigResponseFormatJsonSchema
9744
- > = z.object({
9745
- name: z.string(),
9746
- strict: z.boolean().optional(),
9747
- schema: z.record(z.any()),
9748
- });
9837
+ export const DeploymentGetConfig1JsonSchema$outboundSchema: z.ZodType<
9838
+ DeploymentGetConfig1JsonSchema$Outbound,
9839
+ z.ZodTypeDef,
9840
+ DeploymentGetConfig1JsonSchema
9841
+ > = z.object({
9842
+ name: z.string(),
9843
+ strict: z.boolean().optional(),
9844
+ schema: z.record(z.any()),
9845
+ });
9749
9846
 
9750
9847
  /**
9751
9848
  * @internal
9752
9849
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
9753
9850
  */
9754
- export namespace DeploymentGetConfigResponseFormatJsonSchema$ {
9755
- /** @deprecated use `DeploymentGetConfigResponseFormatJsonSchema$inboundSchema` instead. */
9756
- export const inboundSchema =
9757
- DeploymentGetConfigResponseFormatJsonSchema$inboundSchema;
9758
- /** @deprecated use `DeploymentGetConfigResponseFormatJsonSchema$outboundSchema` instead. */
9759
- export const outboundSchema =
9760
- DeploymentGetConfigResponseFormatJsonSchema$outboundSchema;
9761
- /** @deprecated use `DeploymentGetConfigResponseFormatJsonSchema$Outbound` instead. */
9762
- export type Outbound = DeploymentGetConfigResponseFormatJsonSchema$Outbound;
9851
+ export namespace DeploymentGetConfig1JsonSchema$ {
9852
+ /** @deprecated use `DeploymentGetConfig1JsonSchema$inboundSchema` instead. */
9853
+ export const inboundSchema = DeploymentGetConfig1JsonSchema$inboundSchema;
9854
+ /** @deprecated use `DeploymentGetConfig1JsonSchema$outboundSchema` instead. */
9855
+ export const outboundSchema = DeploymentGetConfig1JsonSchema$outboundSchema;
9856
+ /** @deprecated use `DeploymentGetConfig1JsonSchema$Outbound` instead. */
9857
+ export type Outbound = DeploymentGetConfig1JsonSchema$Outbound;
9763
9858
  }
9764
9859
 
9765
- export function deploymentGetConfigResponseFormatJsonSchemaToJSON(
9766
- deploymentGetConfigResponseFormatJsonSchema:
9767
- DeploymentGetConfigResponseFormatJsonSchema,
9860
+ export function deploymentGetConfig1JsonSchemaToJSON(
9861
+ deploymentGetConfig1JsonSchema: DeploymentGetConfig1JsonSchema,
9768
9862
  ): string {
9769
9863
  return JSON.stringify(
9770
- DeploymentGetConfigResponseFormatJsonSchema$outboundSchema.parse(
9771
- deploymentGetConfigResponseFormatJsonSchema,
9864
+ DeploymentGetConfig1JsonSchema$outboundSchema.parse(
9865
+ deploymentGetConfig1JsonSchema,
9772
9866
  ),
9773
9867
  );
9774
9868
  }
9775
9869
 
9776
- export function deploymentGetConfigResponseFormatJsonSchemaFromJSON(
9870
+ export function deploymentGetConfig1JsonSchemaFromJSON(
9777
9871
  jsonString: string,
9778
- ): SafeParseResult<
9779
- DeploymentGetConfigResponseFormatJsonSchema,
9780
- SDKValidationError
9781
- > {
9872
+ ): SafeParseResult<DeploymentGetConfig1JsonSchema, SDKValidationError> {
9782
9873
  return safeParse(
9783
9874
  jsonString,
9784
- (x) =>
9785
- DeploymentGetConfigResponseFormatJsonSchema$inboundSchema.parse(
9786
- JSON.parse(x),
9787
- ),
9788
- `Failed to parse 'DeploymentGetConfigResponseFormatJsonSchema' from JSON`,
9875
+ (x) => DeploymentGetConfig1JsonSchema$inboundSchema.parse(JSON.parse(x)),
9876
+ `Failed to parse 'DeploymentGetConfig1JsonSchema' from JSON`,
9789
9877
  );
9790
9878
  }
9791
9879
 
9792
9880
  /** @internal */
9793
- export const DeploymentGetConfigResponseFormat1$inboundSchema: z.ZodType<
9794
- DeploymentGetConfigResponseFormat1,
9881
+ export const DeploymentGetConfig11$inboundSchema: z.ZodType<
9882
+ DeploymentGetConfig11,
9795
9883
  z.ZodTypeDef,
9796
9884
  unknown
9797
9885
  > = z.object({
9798
- type: DeploymentGetConfigResponseFormatDeploymentsResponseType$inboundSchema,
9799
- json_schema: z.lazy(() =>
9800
- DeploymentGetConfigResponseFormatJsonSchema$inboundSchema
9801
- ),
9886
+ type: DeploymentGetConfig1DeploymentsResponseType$inboundSchema,
9887
+ json_schema: z.lazy(() => DeploymentGetConfig1JsonSchema$inboundSchema),
9802
9888
  }).transform((v) => {
9803
9889
  return remap$(v, {
9804
9890
  "json_schema": "jsonSchema",
@@ -9806,27 +9892,84 @@ export const DeploymentGetConfigResponseFormat1$inboundSchema: z.ZodType<
9806
9892
  });
9807
9893
 
9808
9894
  /** @internal */
9809
- export type DeploymentGetConfigResponseFormat1$Outbound = {
9895
+ export type DeploymentGetConfig11$Outbound = {
9810
9896
  type: string;
9811
- json_schema: DeploymentGetConfigResponseFormatJsonSchema$Outbound;
9897
+ json_schema: DeploymentGetConfig1JsonSchema$Outbound;
9812
9898
  };
9813
9899
 
9814
9900
  /** @internal */
9815
- export const DeploymentGetConfigResponseFormat1$outboundSchema: z.ZodType<
9816
- DeploymentGetConfigResponseFormat1$Outbound,
9901
+ export const DeploymentGetConfig11$outboundSchema: z.ZodType<
9902
+ DeploymentGetConfig11$Outbound,
9817
9903
  z.ZodTypeDef,
9818
- DeploymentGetConfigResponseFormat1
9904
+ DeploymentGetConfig11
9819
9905
  > = z.object({
9820
- type: DeploymentGetConfigResponseFormatDeploymentsResponseType$outboundSchema,
9821
- jsonSchema: z.lazy(() =>
9822
- DeploymentGetConfigResponseFormatJsonSchema$outboundSchema
9823
- ),
9906
+ type: DeploymentGetConfig1DeploymentsResponseType$outboundSchema,
9907
+ jsonSchema: z.lazy(() => DeploymentGetConfig1JsonSchema$outboundSchema),
9824
9908
  }).transform((v) => {
9825
9909
  return remap$(v, {
9826
9910
  jsonSchema: "json_schema",
9827
9911
  });
9828
9912
  });
9829
9913
 
9914
+ /**
9915
+ * @internal
9916
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
9917
+ */
9918
+ export namespace DeploymentGetConfig11$ {
9919
+ /** @deprecated use `DeploymentGetConfig11$inboundSchema` instead. */
9920
+ export const inboundSchema = DeploymentGetConfig11$inboundSchema;
9921
+ /** @deprecated use `DeploymentGetConfig11$outboundSchema` instead. */
9922
+ export const outboundSchema = DeploymentGetConfig11$outboundSchema;
9923
+ /** @deprecated use `DeploymentGetConfig11$Outbound` instead. */
9924
+ export type Outbound = DeploymentGetConfig11$Outbound;
9925
+ }
9926
+
9927
+ export function deploymentGetConfig11ToJSON(
9928
+ deploymentGetConfig11: DeploymentGetConfig11,
9929
+ ): string {
9930
+ return JSON.stringify(
9931
+ DeploymentGetConfig11$outboundSchema.parse(deploymentGetConfig11),
9932
+ );
9933
+ }
9934
+
9935
+ export function deploymentGetConfig11FromJSON(
9936
+ jsonString: string,
9937
+ ): SafeParseResult<DeploymentGetConfig11, SDKValidationError> {
9938
+ return safeParse(
9939
+ jsonString,
9940
+ (x) => DeploymentGetConfig11$inboundSchema.parse(JSON.parse(x)),
9941
+ `Failed to parse 'DeploymentGetConfig11' from JSON`,
9942
+ );
9943
+ }
9944
+
9945
+ /** @internal */
9946
+ export const DeploymentGetConfigResponseFormat1$inboundSchema: z.ZodType<
9947
+ DeploymentGetConfigResponseFormat1,
9948
+ z.ZodTypeDef,
9949
+ unknown
9950
+ > = z.union([
9951
+ z.lazy(() => DeploymentGetConfig11$inboundSchema),
9952
+ z.lazy(() => DeploymentGetConfig12$inboundSchema),
9953
+ z.lazy(() => DeploymentGetConfig13$inboundSchema),
9954
+ ]);
9955
+
9956
+ /** @internal */
9957
+ export type DeploymentGetConfigResponseFormat1$Outbound =
9958
+ | DeploymentGetConfig11$Outbound
9959
+ | DeploymentGetConfig12$Outbound
9960
+ | DeploymentGetConfig13$Outbound;
9961
+
9962
+ /** @internal */
9963
+ export const DeploymentGetConfigResponseFormat1$outboundSchema: z.ZodType<
9964
+ DeploymentGetConfigResponseFormat1$Outbound,
9965
+ z.ZodTypeDef,
9966
+ DeploymentGetConfigResponseFormat1
9967
+ > = z.union([
9968
+ z.lazy(() => DeploymentGetConfig11$outboundSchema),
9969
+ z.lazy(() => DeploymentGetConfig12$outboundSchema),
9970
+ z.lazy(() => DeploymentGetConfig13$outboundSchema),
9971
+ ]);
9972
+
9830
9973
  /**
9831
9974
  * @internal
9832
9975
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
@@ -9868,16 +10011,24 @@ export const DeploymentGetConfigResponseFormat$inboundSchema: z.ZodType<
9868
10011
  z.ZodTypeDef,
9869
10012
  unknown
9870
10013
  > = z.union([
9871
- z.lazy(() => DeploymentGetConfigResponseFormat1$inboundSchema),
9872
- z.lazy(() => DeploymentGetConfigResponseFormat2$inboundSchema),
9873
- z.lazy(() => DeploymentGetConfigResponseFormat3$inboundSchema),
10014
+ z.union([
10015
+ z.lazy(() => DeploymentGetConfig11$inboundSchema),
10016
+ z.lazy(() => DeploymentGetConfig12$inboundSchema),
10017
+ z.lazy(() => DeploymentGetConfig13$inboundSchema),
10018
+ ]),
10019
+ DeploymentGetConfigResponseFormat2$inboundSchema,
10020
+ DeploymentGetConfigResponseFormat3$inboundSchema,
10021
+ DeploymentGetConfigResponseFormat4$inboundSchema,
9874
10022
  ]);
9875
10023
 
9876
10024
  /** @internal */
9877
10025
  export type DeploymentGetConfigResponseFormat$Outbound =
9878
- | DeploymentGetConfigResponseFormat1$Outbound
9879
- | DeploymentGetConfigResponseFormat2$Outbound
9880
- | DeploymentGetConfigResponseFormat3$Outbound;
10026
+ | DeploymentGetConfig11$Outbound
10027
+ | DeploymentGetConfig12$Outbound
10028
+ | DeploymentGetConfig13$Outbound
10029
+ | string
10030
+ | string
10031
+ | string;
9881
10032
 
9882
10033
  /** @internal */
9883
10034
  export const DeploymentGetConfigResponseFormat$outboundSchema: z.ZodType<
@@ -9885,9 +10036,14 @@ export const DeploymentGetConfigResponseFormat$outboundSchema: z.ZodType<
9885
10036
  z.ZodTypeDef,
9886
10037
  DeploymentGetConfigResponseFormat
9887
10038
  > = z.union([
9888
- z.lazy(() => DeploymentGetConfigResponseFormat1$outboundSchema),
9889
- z.lazy(() => DeploymentGetConfigResponseFormat2$outboundSchema),
9890
- z.lazy(() => DeploymentGetConfigResponseFormat3$outboundSchema),
10039
+ z.union([
10040
+ z.lazy(() => DeploymentGetConfig11$outboundSchema),
10041
+ z.lazy(() => DeploymentGetConfig12$outboundSchema),
10042
+ z.lazy(() => DeploymentGetConfig13$outboundSchema),
10043
+ ]),
10044
+ DeploymentGetConfigResponseFormat2$outboundSchema,
10045
+ DeploymentGetConfigResponseFormat3$outboundSchema,
10046
+ DeploymentGetConfigResponseFormat4$outboundSchema,
9891
10047
  ]);
9892
10048
 
9893
10049
  /**
@@ -10032,9 +10188,14 @@ export const ParametersT$inboundSchema: z.ZodType<
10032
10188
  style: z.string().optional(),
10033
10189
  responseFormat: z.nullable(
10034
10190
  z.union([
10035
- z.lazy(() => DeploymentGetConfigResponseFormat1$inboundSchema),
10036
- z.lazy(() => DeploymentGetConfigResponseFormat2$inboundSchema),
10037
- z.lazy(() => DeploymentGetConfigResponseFormat3$inboundSchema),
10191
+ z.union([
10192
+ z.lazy(() => DeploymentGetConfig11$inboundSchema),
10193
+ z.lazy(() => DeploymentGetConfig12$inboundSchema),
10194
+ z.lazy(() => DeploymentGetConfig13$inboundSchema),
10195
+ ]),
10196
+ DeploymentGetConfigResponseFormat2$inboundSchema,
10197
+ DeploymentGetConfigResponseFormat3$inboundSchema,
10198
+ DeploymentGetConfigResponseFormat4$inboundSchema,
10038
10199
  ]),
10039
10200
  ).optional(),
10040
10201
  photoRealVersion: DeploymentGetConfigPhotoRealVersion$inboundSchema
@@ -10064,9 +10225,12 @@ export type ParametersT$Outbound = {
10064
10225
  quality?: string | undefined;
10065
10226
  style?: string | undefined;
10066
10227
  responseFormat?:
10067
- | DeploymentGetConfigResponseFormat1$Outbound
10068
- | DeploymentGetConfigResponseFormat2$Outbound
10069
- | DeploymentGetConfigResponseFormat3$Outbound
10228
+ | DeploymentGetConfig11$Outbound
10229
+ | DeploymentGetConfig12$Outbound
10230
+ | DeploymentGetConfig13$Outbound
10231
+ | string
10232
+ | string
10233
+ | string
10070
10234
  | null
10071
10235
  | undefined;
10072
10236
  photoRealVersion?: string | undefined;
@@ -10096,9 +10260,14 @@ export const ParametersT$outboundSchema: z.ZodType<
10096
10260
  style: z.string().optional(),
10097
10261
  responseFormat: z.nullable(
10098
10262
  z.union([
10099
- z.lazy(() => DeploymentGetConfigResponseFormat1$outboundSchema),
10100
- z.lazy(() => DeploymentGetConfigResponseFormat2$outboundSchema),
10101
- z.lazy(() => DeploymentGetConfigResponseFormat3$outboundSchema),
10263
+ z.union([
10264
+ z.lazy(() => DeploymentGetConfig11$outboundSchema),
10265
+ z.lazy(() => DeploymentGetConfig12$outboundSchema),
10266
+ z.lazy(() => DeploymentGetConfig13$outboundSchema),
10267
+ ]),
10268
+ DeploymentGetConfigResponseFormat2$outboundSchema,
10269
+ DeploymentGetConfigResponseFormat3$outboundSchema,
10270
+ DeploymentGetConfigResponseFormat4$outboundSchema,
10102
10271
  ]),
10103
10272
  ).optional(),
10104
10273
  photoRealVersion: DeploymentGetConfigPhotoRealVersion$outboundSchema