@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
@@ -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
@@ -1685,9 +1727,12 @@ export type ParametersT = {
1685
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.
1686
1728
  */
1687
1729
  responseFormat?:
1688
- | DeploymentGetConfigResponseFormat1
1730
+ | DeploymentGetConfig11
1731
+ | DeploymentGetConfig12
1732
+ | DeploymentGetConfig13
1689
1733
  | DeploymentGetConfigResponseFormat2
1690
1734
  | DeploymentGetConfigResponseFormat3
1735
+ | DeploymentGetConfigResponseFormat4
1691
1736
  | null
1692
1737
  | undefined;
1693
1738
  /**
@@ -9530,276 +9575,316 @@ export namespace DeploymentGetConfigFormat$ {
9530
9575
  }
9531
9576
 
9532
9577
  /** @internal */
9533
- export const DeploymentGetConfigResponseFormatDeploymentsType$inboundSchema:
9534
- z.ZodNativeEnum<typeof DeploymentGetConfigResponseFormatDeploymentsType> = z
9535
- .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);
9536
9625
 
9537
9626
  /** @internal */
9538
- export const DeploymentGetConfigResponseFormatDeploymentsType$outboundSchema:
9539
- z.ZodNativeEnum<typeof DeploymentGetConfigResponseFormatDeploymentsType> =
9540
- DeploymentGetConfigResponseFormatDeploymentsType$inboundSchema;
9627
+ export const DeploymentGetConfigResponseFormat2$outboundSchema: z.ZodNativeEnum<
9628
+ typeof DeploymentGetConfigResponseFormat2
9629
+ > = DeploymentGetConfigResponseFormat2$inboundSchema;
9541
9630
 
9542
9631
  /**
9543
9632
  * @internal
9544
9633
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
9545
9634
  */
9546
- export namespace DeploymentGetConfigResponseFormatDeploymentsType$ {
9547
- /** @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. */
9548
9659
  export const inboundSchema =
9549
- DeploymentGetConfigResponseFormatDeploymentsType$inboundSchema;
9550
- /** @deprecated use `DeploymentGetConfigResponseFormatDeploymentsType$outboundSchema` instead. */
9660
+ DeploymentGetConfig1DeploymentsType$inboundSchema;
9661
+ /** @deprecated use `DeploymentGetConfig1DeploymentsType$outboundSchema` instead. */
9551
9662
  export const outboundSchema =
9552
- DeploymentGetConfigResponseFormatDeploymentsType$outboundSchema;
9663
+ DeploymentGetConfig1DeploymentsType$outboundSchema;
9553
9664
  }
9554
9665
 
9555
9666
  /** @internal */
9556
- export const DeploymentGetConfigResponseFormat3$inboundSchema: z.ZodType<
9557
- DeploymentGetConfigResponseFormat3,
9667
+ export const DeploymentGetConfig13$inboundSchema: z.ZodType<
9668
+ DeploymentGetConfig13,
9558
9669
  z.ZodTypeDef,
9559
9670
  unknown
9560
9671
  > = z.object({
9561
- type: DeploymentGetConfigResponseFormatDeploymentsType$inboundSchema,
9672
+ type: DeploymentGetConfig1DeploymentsType$inboundSchema,
9562
9673
  });
9563
9674
 
9564
9675
  /** @internal */
9565
- export type DeploymentGetConfigResponseFormat3$Outbound = {
9676
+ export type DeploymentGetConfig13$Outbound = {
9566
9677
  type: string;
9567
9678
  };
9568
9679
 
9569
9680
  /** @internal */
9570
- export const DeploymentGetConfigResponseFormat3$outboundSchema: z.ZodType<
9571
- DeploymentGetConfigResponseFormat3$Outbound,
9681
+ export const DeploymentGetConfig13$outboundSchema: z.ZodType<
9682
+ DeploymentGetConfig13$Outbound,
9572
9683
  z.ZodTypeDef,
9573
- DeploymentGetConfigResponseFormat3
9684
+ DeploymentGetConfig13
9574
9685
  > = z.object({
9575
- type: DeploymentGetConfigResponseFormatDeploymentsType$outboundSchema,
9686
+ type: DeploymentGetConfig1DeploymentsType$outboundSchema,
9576
9687
  });
9577
9688
 
9578
9689
  /**
9579
9690
  * @internal
9580
9691
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
9581
9692
  */
9582
- export namespace DeploymentGetConfigResponseFormat3$ {
9583
- /** @deprecated use `DeploymentGetConfigResponseFormat3$inboundSchema` instead. */
9584
- export const inboundSchema = DeploymentGetConfigResponseFormat3$inboundSchema;
9585
- /** @deprecated use `DeploymentGetConfigResponseFormat3$outboundSchema` instead. */
9586
- export const outboundSchema =
9587
- DeploymentGetConfigResponseFormat3$outboundSchema;
9588
- /** @deprecated use `DeploymentGetConfigResponseFormat3$Outbound` instead. */
9589
- 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;
9590
9700
  }
9591
9701
 
9592
- export function deploymentGetConfigResponseFormat3ToJSON(
9593
- deploymentGetConfigResponseFormat3: DeploymentGetConfigResponseFormat3,
9702
+ export function deploymentGetConfig13ToJSON(
9703
+ deploymentGetConfig13: DeploymentGetConfig13,
9594
9704
  ): string {
9595
9705
  return JSON.stringify(
9596
- DeploymentGetConfigResponseFormat3$outboundSchema.parse(
9597
- deploymentGetConfigResponseFormat3,
9598
- ),
9706
+ DeploymentGetConfig13$outboundSchema.parse(deploymentGetConfig13),
9599
9707
  );
9600
9708
  }
9601
9709
 
9602
- export function deploymentGetConfigResponseFormat3FromJSON(
9710
+ export function deploymentGetConfig13FromJSON(
9603
9711
  jsonString: string,
9604
- ): SafeParseResult<DeploymentGetConfigResponseFormat3, SDKValidationError> {
9712
+ ): SafeParseResult<DeploymentGetConfig13, SDKValidationError> {
9605
9713
  return safeParse(
9606
9714
  jsonString,
9607
- (x) =>
9608
- DeploymentGetConfigResponseFormat3$inboundSchema.parse(JSON.parse(x)),
9609
- `Failed to parse 'DeploymentGetConfigResponseFormat3' from JSON`,
9715
+ (x) => DeploymentGetConfig13$inboundSchema.parse(JSON.parse(x)),
9716
+ `Failed to parse 'DeploymentGetConfig13' from JSON`,
9610
9717
  );
9611
9718
  }
9612
9719
 
9613
9720
  /** @internal */
9614
- export const DeploymentGetConfigResponseFormatType$inboundSchema:
9615
- z.ZodNativeEnum<typeof DeploymentGetConfigResponseFormatType> = z.nativeEnum(
9616
- DeploymentGetConfigResponseFormatType,
9617
- );
9721
+ export const DeploymentGetConfig1Type$inboundSchema: z.ZodNativeEnum<
9722
+ typeof DeploymentGetConfig1Type
9723
+ > = z.nativeEnum(DeploymentGetConfig1Type);
9618
9724
 
9619
9725
  /** @internal */
9620
- export const DeploymentGetConfigResponseFormatType$outboundSchema:
9621
- z.ZodNativeEnum<typeof DeploymentGetConfigResponseFormatType> =
9622
- DeploymentGetConfigResponseFormatType$inboundSchema;
9726
+ export const DeploymentGetConfig1Type$outboundSchema: z.ZodNativeEnum<
9727
+ typeof DeploymentGetConfig1Type
9728
+ > = DeploymentGetConfig1Type$inboundSchema;
9623
9729
 
9624
9730
  /**
9625
9731
  * @internal
9626
9732
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
9627
9733
  */
9628
- export namespace DeploymentGetConfigResponseFormatType$ {
9629
- /** @deprecated use `DeploymentGetConfigResponseFormatType$inboundSchema` instead. */
9630
- export const inboundSchema =
9631
- DeploymentGetConfigResponseFormatType$inboundSchema;
9632
- /** @deprecated use `DeploymentGetConfigResponseFormatType$outboundSchema` instead. */
9633
- export const outboundSchema =
9634
- 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;
9635
9739
  }
9636
9740
 
9637
9741
  /** @internal */
9638
- export const DeploymentGetConfigResponseFormat2$inboundSchema: z.ZodType<
9639
- DeploymentGetConfigResponseFormat2,
9742
+ export const DeploymentGetConfig12$inboundSchema: z.ZodType<
9743
+ DeploymentGetConfig12,
9640
9744
  z.ZodTypeDef,
9641
9745
  unknown
9642
9746
  > = z.object({
9643
- type: DeploymentGetConfigResponseFormatType$inboundSchema,
9747
+ type: DeploymentGetConfig1Type$inboundSchema,
9644
9748
  });
9645
9749
 
9646
9750
  /** @internal */
9647
- export type DeploymentGetConfigResponseFormat2$Outbound = {
9751
+ export type DeploymentGetConfig12$Outbound = {
9648
9752
  type: string;
9649
9753
  };
9650
9754
 
9651
9755
  /** @internal */
9652
- export const DeploymentGetConfigResponseFormat2$outboundSchema: z.ZodType<
9653
- DeploymentGetConfigResponseFormat2$Outbound,
9756
+ export const DeploymentGetConfig12$outboundSchema: z.ZodType<
9757
+ DeploymentGetConfig12$Outbound,
9654
9758
  z.ZodTypeDef,
9655
- DeploymentGetConfigResponseFormat2
9759
+ DeploymentGetConfig12
9656
9760
  > = z.object({
9657
- type: DeploymentGetConfigResponseFormatType$outboundSchema,
9761
+ type: DeploymentGetConfig1Type$outboundSchema,
9658
9762
  });
9659
9763
 
9660
9764
  /**
9661
9765
  * @internal
9662
9766
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
9663
9767
  */
9664
- export namespace DeploymentGetConfigResponseFormat2$ {
9665
- /** @deprecated use `DeploymentGetConfigResponseFormat2$inboundSchema` instead. */
9666
- export const inboundSchema = DeploymentGetConfigResponseFormat2$inboundSchema;
9667
- /** @deprecated use `DeploymentGetConfigResponseFormat2$outboundSchema` instead. */
9668
- export const outboundSchema =
9669
- DeploymentGetConfigResponseFormat2$outboundSchema;
9670
- /** @deprecated use `DeploymentGetConfigResponseFormat2$Outbound` instead. */
9671
- 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;
9672
9775
  }
9673
9776
 
9674
- export function deploymentGetConfigResponseFormat2ToJSON(
9675
- deploymentGetConfigResponseFormat2: DeploymentGetConfigResponseFormat2,
9777
+ export function deploymentGetConfig12ToJSON(
9778
+ deploymentGetConfig12: DeploymentGetConfig12,
9676
9779
  ): string {
9677
9780
  return JSON.stringify(
9678
- DeploymentGetConfigResponseFormat2$outboundSchema.parse(
9679
- deploymentGetConfigResponseFormat2,
9680
- ),
9781
+ DeploymentGetConfig12$outboundSchema.parse(deploymentGetConfig12),
9681
9782
  );
9682
9783
  }
9683
9784
 
9684
- export function deploymentGetConfigResponseFormat2FromJSON(
9785
+ export function deploymentGetConfig12FromJSON(
9685
9786
  jsonString: string,
9686
- ): SafeParseResult<DeploymentGetConfigResponseFormat2, SDKValidationError> {
9787
+ ): SafeParseResult<DeploymentGetConfig12, SDKValidationError> {
9687
9788
  return safeParse(
9688
9789
  jsonString,
9689
- (x) =>
9690
- DeploymentGetConfigResponseFormat2$inboundSchema.parse(JSON.parse(x)),
9691
- `Failed to parse 'DeploymentGetConfigResponseFormat2' from JSON`,
9790
+ (x) => DeploymentGetConfig12$inboundSchema.parse(JSON.parse(x)),
9791
+ `Failed to parse 'DeploymentGetConfig12' from JSON`,
9692
9792
  );
9693
9793
  }
9694
9794
 
9695
9795
  /** @internal */
9696
- export const DeploymentGetConfigResponseFormatDeploymentsResponseType$inboundSchema:
9697
- z.ZodNativeEnum<
9698
- typeof DeploymentGetConfigResponseFormatDeploymentsResponseType
9699
- > = z.nativeEnum(DeploymentGetConfigResponseFormatDeploymentsResponseType);
9796
+ export const DeploymentGetConfig1DeploymentsResponseType$inboundSchema:
9797
+ z.ZodNativeEnum<typeof DeploymentGetConfig1DeploymentsResponseType> = z
9798
+ .nativeEnum(DeploymentGetConfig1DeploymentsResponseType);
9700
9799
 
9701
9800
  /** @internal */
9702
- export const DeploymentGetConfigResponseFormatDeploymentsResponseType$outboundSchema:
9703
- z.ZodNativeEnum<
9704
- typeof DeploymentGetConfigResponseFormatDeploymentsResponseType
9705
- > = DeploymentGetConfigResponseFormatDeploymentsResponseType$inboundSchema;
9801
+ export const DeploymentGetConfig1DeploymentsResponseType$outboundSchema:
9802
+ z.ZodNativeEnum<typeof DeploymentGetConfig1DeploymentsResponseType> =
9803
+ DeploymentGetConfig1DeploymentsResponseType$inboundSchema;
9706
9804
 
9707
9805
  /**
9708
9806
  * @internal
9709
9807
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
9710
9808
  */
9711
- export namespace DeploymentGetConfigResponseFormatDeploymentsResponseType$ {
9712
- /** @deprecated use `DeploymentGetConfigResponseFormatDeploymentsResponseType$inboundSchema` instead. */
9809
+ export namespace DeploymentGetConfig1DeploymentsResponseType$ {
9810
+ /** @deprecated use `DeploymentGetConfig1DeploymentsResponseType$inboundSchema` instead. */
9713
9811
  export const inboundSchema =
9714
- DeploymentGetConfigResponseFormatDeploymentsResponseType$inboundSchema;
9715
- /** @deprecated use `DeploymentGetConfigResponseFormatDeploymentsResponseType$outboundSchema` instead. */
9812
+ DeploymentGetConfig1DeploymentsResponseType$inboundSchema;
9813
+ /** @deprecated use `DeploymentGetConfig1DeploymentsResponseType$outboundSchema` instead. */
9716
9814
  export const outboundSchema =
9717
- DeploymentGetConfigResponseFormatDeploymentsResponseType$outboundSchema;
9815
+ DeploymentGetConfig1DeploymentsResponseType$outboundSchema;
9718
9816
  }
9719
9817
 
9720
9818
  /** @internal */
9721
- export const DeploymentGetConfigResponseFormatJsonSchema$inboundSchema:
9722
- z.ZodType<
9723
- DeploymentGetConfigResponseFormatJsonSchema,
9724
- z.ZodTypeDef,
9725
- unknown
9726
- > = z.object({
9727
- name: z.string(),
9728
- strict: z.boolean().optional(),
9729
- schema: z.record(z.any()),
9730
- });
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
+ });
9731
9828
 
9732
9829
  /** @internal */
9733
- export type DeploymentGetConfigResponseFormatJsonSchema$Outbound = {
9830
+ export type DeploymentGetConfig1JsonSchema$Outbound = {
9734
9831
  name: string;
9735
9832
  strict?: boolean | undefined;
9736
9833
  schema: { [k: string]: any };
9737
9834
  };
9738
9835
 
9739
9836
  /** @internal */
9740
- export const DeploymentGetConfigResponseFormatJsonSchema$outboundSchema:
9741
- z.ZodType<
9742
- DeploymentGetConfigResponseFormatJsonSchema$Outbound,
9743
- z.ZodTypeDef,
9744
- DeploymentGetConfigResponseFormatJsonSchema
9745
- > = z.object({
9746
- name: z.string(),
9747
- strict: z.boolean().optional(),
9748
- schema: z.record(z.any()),
9749
- });
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
+ });
9750
9846
 
9751
9847
  /**
9752
9848
  * @internal
9753
9849
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
9754
9850
  */
9755
- export namespace DeploymentGetConfigResponseFormatJsonSchema$ {
9756
- /** @deprecated use `DeploymentGetConfigResponseFormatJsonSchema$inboundSchema` instead. */
9757
- export const inboundSchema =
9758
- DeploymentGetConfigResponseFormatJsonSchema$inboundSchema;
9759
- /** @deprecated use `DeploymentGetConfigResponseFormatJsonSchema$outboundSchema` instead. */
9760
- export const outboundSchema =
9761
- DeploymentGetConfigResponseFormatJsonSchema$outboundSchema;
9762
- /** @deprecated use `DeploymentGetConfigResponseFormatJsonSchema$Outbound` instead. */
9763
- 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;
9764
9858
  }
9765
9859
 
9766
- export function deploymentGetConfigResponseFormatJsonSchemaToJSON(
9767
- deploymentGetConfigResponseFormatJsonSchema:
9768
- DeploymentGetConfigResponseFormatJsonSchema,
9860
+ export function deploymentGetConfig1JsonSchemaToJSON(
9861
+ deploymentGetConfig1JsonSchema: DeploymentGetConfig1JsonSchema,
9769
9862
  ): string {
9770
9863
  return JSON.stringify(
9771
- DeploymentGetConfigResponseFormatJsonSchema$outboundSchema.parse(
9772
- deploymentGetConfigResponseFormatJsonSchema,
9864
+ DeploymentGetConfig1JsonSchema$outboundSchema.parse(
9865
+ deploymentGetConfig1JsonSchema,
9773
9866
  ),
9774
9867
  );
9775
9868
  }
9776
9869
 
9777
- export function deploymentGetConfigResponseFormatJsonSchemaFromJSON(
9870
+ export function deploymentGetConfig1JsonSchemaFromJSON(
9778
9871
  jsonString: string,
9779
- ): SafeParseResult<
9780
- DeploymentGetConfigResponseFormatJsonSchema,
9781
- SDKValidationError
9782
- > {
9872
+ ): SafeParseResult<DeploymentGetConfig1JsonSchema, SDKValidationError> {
9783
9873
  return safeParse(
9784
9874
  jsonString,
9785
- (x) =>
9786
- DeploymentGetConfigResponseFormatJsonSchema$inboundSchema.parse(
9787
- JSON.parse(x),
9788
- ),
9789
- `Failed to parse 'DeploymentGetConfigResponseFormatJsonSchema' from JSON`,
9875
+ (x) => DeploymentGetConfig1JsonSchema$inboundSchema.parse(JSON.parse(x)),
9876
+ `Failed to parse 'DeploymentGetConfig1JsonSchema' from JSON`,
9790
9877
  );
9791
9878
  }
9792
9879
 
9793
9880
  /** @internal */
9794
- export const DeploymentGetConfigResponseFormat1$inboundSchema: z.ZodType<
9795
- DeploymentGetConfigResponseFormat1,
9881
+ export const DeploymentGetConfig11$inboundSchema: z.ZodType<
9882
+ DeploymentGetConfig11,
9796
9883
  z.ZodTypeDef,
9797
9884
  unknown
9798
9885
  > = z.object({
9799
- type: DeploymentGetConfigResponseFormatDeploymentsResponseType$inboundSchema,
9800
- json_schema: z.lazy(() =>
9801
- DeploymentGetConfigResponseFormatJsonSchema$inboundSchema
9802
- ),
9886
+ type: DeploymentGetConfig1DeploymentsResponseType$inboundSchema,
9887
+ json_schema: z.lazy(() => DeploymentGetConfig1JsonSchema$inboundSchema),
9803
9888
  }).transform((v) => {
9804
9889
  return remap$(v, {
9805
9890
  "json_schema": "jsonSchema",
@@ -9807,27 +9892,84 @@ export const DeploymentGetConfigResponseFormat1$inboundSchema: z.ZodType<
9807
9892
  });
9808
9893
 
9809
9894
  /** @internal */
9810
- export type DeploymentGetConfigResponseFormat1$Outbound = {
9895
+ export type DeploymentGetConfig11$Outbound = {
9811
9896
  type: string;
9812
- json_schema: DeploymentGetConfigResponseFormatJsonSchema$Outbound;
9897
+ json_schema: DeploymentGetConfig1JsonSchema$Outbound;
9813
9898
  };
9814
9899
 
9815
9900
  /** @internal */
9816
- export const DeploymentGetConfigResponseFormat1$outboundSchema: z.ZodType<
9817
- DeploymentGetConfigResponseFormat1$Outbound,
9901
+ export const DeploymentGetConfig11$outboundSchema: z.ZodType<
9902
+ DeploymentGetConfig11$Outbound,
9818
9903
  z.ZodTypeDef,
9819
- DeploymentGetConfigResponseFormat1
9904
+ DeploymentGetConfig11
9820
9905
  > = z.object({
9821
- type: DeploymentGetConfigResponseFormatDeploymentsResponseType$outboundSchema,
9822
- jsonSchema: z.lazy(() =>
9823
- DeploymentGetConfigResponseFormatJsonSchema$outboundSchema
9824
- ),
9906
+ type: DeploymentGetConfig1DeploymentsResponseType$outboundSchema,
9907
+ jsonSchema: z.lazy(() => DeploymentGetConfig1JsonSchema$outboundSchema),
9825
9908
  }).transform((v) => {
9826
9909
  return remap$(v, {
9827
9910
  jsonSchema: "json_schema",
9828
9911
  });
9829
9912
  });
9830
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
+
9831
9973
  /**
9832
9974
  * @internal
9833
9975
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
@@ -9869,16 +10011,24 @@ export const DeploymentGetConfigResponseFormat$inboundSchema: z.ZodType<
9869
10011
  z.ZodTypeDef,
9870
10012
  unknown
9871
10013
  > = z.union([
9872
- z.lazy(() => DeploymentGetConfigResponseFormat1$inboundSchema),
9873
- z.lazy(() => DeploymentGetConfigResponseFormat2$inboundSchema),
9874
- 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,
9875
10022
  ]);
9876
10023
 
9877
10024
  /** @internal */
9878
10025
  export type DeploymentGetConfigResponseFormat$Outbound =
9879
- | DeploymentGetConfigResponseFormat1$Outbound
9880
- | DeploymentGetConfigResponseFormat2$Outbound
9881
- | DeploymentGetConfigResponseFormat3$Outbound;
10026
+ | DeploymentGetConfig11$Outbound
10027
+ | DeploymentGetConfig12$Outbound
10028
+ | DeploymentGetConfig13$Outbound
10029
+ | string
10030
+ | string
10031
+ | string;
9882
10032
 
9883
10033
  /** @internal */
9884
10034
  export const DeploymentGetConfigResponseFormat$outboundSchema: z.ZodType<
@@ -9886,9 +10036,14 @@ export const DeploymentGetConfigResponseFormat$outboundSchema: z.ZodType<
9886
10036
  z.ZodTypeDef,
9887
10037
  DeploymentGetConfigResponseFormat
9888
10038
  > = z.union([
9889
- z.lazy(() => DeploymentGetConfigResponseFormat1$outboundSchema),
9890
- z.lazy(() => DeploymentGetConfigResponseFormat2$outboundSchema),
9891
- 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,
9892
10047
  ]);
9893
10048
 
9894
10049
  /**
@@ -10033,9 +10188,14 @@ export const ParametersT$inboundSchema: z.ZodType<
10033
10188
  style: z.string().optional(),
10034
10189
  responseFormat: z.nullable(
10035
10190
  z.union([
10036
- z.lazy(() => DeploymentGetConfigResponseFormat1$inboundSchema),
10037
- z.lazy(() => DeploymentGetConfigResponseFormat2$inboundSchema),
10038
- 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,
10039
10199
  ]),
10040
10200
  ).optional(),
10041
10201
  photoRealVersion: DeploymentGetConfigPhotoRealVersion$inboundSchema
@@ -10065,9 +10225,12 @@ export type ParametersT$Outbound = {
10065
10225
  quality?: string | undefined;
10066
10226
  style?: string | undefined;
10067
10227
  responseFormat?:
10068
- | DeploymentGetConfigResponseFormat1$Outbound
10069
- | DeploymentGetConfigResponseFormat2$Outbound
10070
- | DeploymentGetConfigResponseFormat3$Outbound
10228
+ | DeploymentGetConfig11$Outbound
10229
+ | DeploymentGetConfig12$Outbound
10230
+ | DeploymentGetConfig13$Outbound
10231
+ | string
10232
+ | string
10233
+ | string
10071
10234
  | null
10072
10235
  | undefined;
10073
10236
  photoRealVersion?: string | undefined;
@@ -10097,9 +10260,14 @@ export const ParametersT$outboundSchema: z.ZodType<
10097
10260
  style: z.string().optional(),
10098
10261
  responseFormat: z.nullable(
10099
10262
  z.union([
10100
- z.lazy(() => DeploymentGetConfigResponseFormat1$outboundSchema),
10101
- z.lazy(() => DeploymentGetConfigResponseFormat2$outboundSchema),
10102
- 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,
10103
10271
  ]),
10104
10272
  ).optional(),
10105
10273
  photoRealVersion: DeploymentGetConfigPhotoRealVersion$outboundSchema