@orq-ai/node 3.12.16 → 3.12.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/mcp-server.js +112 -112
- package/bin/mcp-server.js.map +30 -30
- package/examples/package-lock.json +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/models/operations/createbudget.js +2 -2
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createdataset.js +2 -2
- package/models/operations/createdatasetitem.js +2 -2
- package/models/operations/createdatasource.js +2 -2
- package/models/operations/createeval.js +16 -16
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/getbudget.js +2 -2
- package/models/operations/getevals.js +28 -28
- package/models/operations/listbudgets.js +2 -2
- package/models/operations/listcontacts.js +2 -2
- package/models/operations/listdatasetdatapoints.js +2 -2
- package/models/operations/listdatasets.js +2 -2
- package/models/operations/listdatasources.js +2 -2
- package/models/operations/retrievecontact.js +2 -2
- package/models/operations/retrievedatapoint.js +2 -2
- package/models/operations/retrievedataset.js +2 -2
- package/models/operations/retrievedatasource.js +2 -2
- package/models/operations/updatebudget.js +2 -2
- package/models/operations/updatecontact.js +2 -2
- package/models/operations/updatedatapoint.js +2 -2
- package/models/operations/updatedataset.js +2 -2
- package/models/operations/updatedatasource.js +2 -2
- package/models/operations/updateeval.js +16 -16
- package/package.json +1 -1
- package/packages/orq-rc/README.md +107 -90
- package/packages/orq-rc/docs/sdks/tools/README.md +488 -0
- package/packages/orq-rc/examples/package-lock.json +1 -1
- package/packages/orq-rc/jsr.json +1 -1
- package/packages/orq-rc/package-lock.json +2 -2
- package/packages/orq-rc/package.json +1 -1
- package/packages/orq-rc/src/funcs/toolsCreate.ts +163 -0
- package/packages/orq-rc/src/funcs/toolsDelete.ts +167 -0
- package/packages/orq-rc/src/funcs/toolsDuplicate.ts +175 -0
- package/packages/orq-rc/src/funcs/toolsList.ts +176 -0
- package/packages/orq-rc/src/funcs/toolsRetrieve.ts +166 -0
- package/packages/orq-rc/src/funcs/toolsUpdate.ts +176 -0
- package/packages/orq-rc/src/lib/config.ts +3 -3
- package/packages/orq-rc/src/mcp-server/mcp-server.ts +1 -1
- package/packages/orq-rc/src/mcp-server/server.ts +13 -1
- package/packages/orq-rc/src/mcp-server/tools/toolsCreate.ts +37 -0
- package/packages/orq-rc/src/mcp-server/tools/toolsDelete.ts +35 -0
- package/packages/orq-rc/src/mcp-server/tools/toolsDuplicate.ts +37 -0
- package/packages/orq-rc/src/mcp-server/tools/toolsList.ts +37 -0
- package/packages/orq-rc/src/mcp-server/tools/toolsRetrieve.ts +37 -0
- package/packages/orq-rc/src/mcp-server/tools/toolsUpdate.ts +37 -0
- package/packages/orq-rc/src/models/components/callsubagenttool.ts +109 -0
- package/packages/orq-rc/src/models/components/codeexecutiontool.ts +293 -0
- package/packages/orq-rc/src/models/components/currentdatetool.ts +107 -0
- package/packages/orq-rc/src/models/components/deployments.ts +52 -45
- package/packages/orq-rc/src/models/components/functiontool.ts +195 -0
- package/packages/orq-rc/src/models/components/googlesearchtool.ts +108 -0
- package/packages/orq-rc/src/models/components/httptool.ts +532 -0
- package/packages/orq-rc/src/models/components/index.ts +13 -0
- package/packages/orq-rc/src/models/components/queryknowledgebasetool.ts +111 -0
- package/packages/orq-rc/src/models/components/querymemorystoretool.ts +111 -0
- package/packages/orq-rc/src/models/components/retrieveagentstool.ts +109 -0
- package/packages/orq-rc/src/models/components/retrieveknowledgebasestool.ts +111 -0
- package/packages/orq-rc/src/models/components/retrievememorystorestool.ts +111 -0
- package/packages/orq-rc/src/models/components/webscrapertool.ts +105 -0
- package/packages/orq-rc/src/models/components/writememorystoretool.ts +111 -0
- package/packages/orq-rc/src/models/errors/duplicatetool.ts +91 -0
- package/packages/orq-rc/src/models/errors/index.ts +2 -0
- package/packages/orq-rc/src/models/errors/updatetool.ts +91 -0
- package/packages/orq-rc/src/models/operations/createbudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/createcontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdatasetitem.ts +10 -8
- package/packages/orq-rc/src/models/operations/createdatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/createeval.ts +60 -56
- package/packages/orq-rc/src/models/operations/createknowledge.ts +18 -0
- package/packages/orq-rc/src/models/operations/creatememorystore.ts +137 -136
- package/packages/orq-rc/src/models/operations/createprompt.ts +631 -314
- package/packages/orq-rc/src/models/operations/createtool.ts +4027 -0
- package/packages/orq-rc/src/models/operations/deletetool.ts +75 -0
- package/packages/orq-rc/src/models/operations/deploymentcreatemetric.ts +8 -6
- package/packages/orq-rc/src/models/operations/deploymentgetconfig.ts +362 -194
- package/packages/orq-rc/src/models/operations/deployments.ts +329 -160
- package/packages/orq-rc/src/models/operations/deploymentstream.ts +8 -6
- package/packages/orq-rc/src/models/operations/duplicatetool.ts +2311 -0
- package/packages/orq-rc/src/models/operations/fileget.ts +2 -2
- package/packages/orq-rc/src/models/operations/filelist.ts +2 -2
- package/packages/orq-rc/src/models/operations/fileupload.ts +2 -2
- package/packages/orq-rc/src/models/operations/getagent.ts +10 -10
- package/packages/orq-rc/src/models/operations/getallprompts.ts +333 -168
- package/packages/orq-rc/src/models/operations/getalltools.ts +2278 -0
- package/packages/orq-rc/src/models/operations/getbudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/getevals.ts +28 -28
- package/packages/orq-rc/src/models/operations/getoneknowledge.ts +9 -0
- package/packages/orq-rc/src/models/operations/getoneprompt.ts +329 -167
- package/packages/orq-rc/src/models/operations/getpromptversion.ts +337 -168
- package/packages/orq-rc/src/models/operations/index.ts +6 -0
- package/packages/orq-rc/src/models/operations/listagents.ts +10 -10
- package/packages/orq-rc/src/models/operations/listbudgets.ts +2 -2
- package/packages/orq-rc/src/models/operations/listcontacts.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +6 -5
- package/packages/orq-rc/src/models/operations/listdatasets.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasources.ts +2 -2
- package/packages/orq-rc/src/models/operations/listknowledgebases.ts +9 -0
- package/packages/orq-rc/src/models/operations/listpromptversions.ts +354 -183
- package/packages/orq-rc/src/models/operations/parse.ts +20 -335
- package/packages/orq-rc/src/models/operations/retrievecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +6 -5
- package/packages/orq-rc/src/models/operations/retrievedataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievetool.ts +2303 -0
- package/packages/orq-rc/src/models/operations/runagent.ts +412 -1375
- package/packages/orq-rc/src/models/operations/streamrunagent.ts +399 -1449
- package/packages/orq-rc/src/models/operations/updatebudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedatapoint.ts +10 -8
- package/packages/orq-rc/src/models/operations/updatedataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/updateeval.ts +57 -57
- package/packages/orq-rc/src/models/operations/updateknowledge.ts +18 -0
- package/packages/orq-rc/src/models/operations/updatememorystore.ts +136 -168
- package/packages/orq-rc/src/models/operations/updateprompt.ts +668 -335
- package/packages/orq-rc/src/models/operations/updatetool.ts +4231 -0
- package/packages/orq-rc/src/sdk/sdk.ts +6 -0
- package/packages/orq-rc/src/sdk/tools.ts +117 -0
- package/src/lib/config.ts +3 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/operations/createbudget.ts +2 -2
- package/src/models/operations/createcontact.ts +2 -2
- package/src/models/operations/createdataset.ts +2 -2
- package/src/models/operations/createdatasetitem.ts +2 -2
- package/src/models/operations/createdatasource.ts +2 -2
- package/src/models/operations/createeval.ts +16 -16
- package/src/models/operations/fileget.ts +2 -2
- package/src/models/operations/filelist.ts +2 -2
- package/src/models/operations/fileupload.ts +2 -2
- package/src/models/operations/getbudget.ts +2 -2
- package/src/models/operations/getevals.ts +28 -28
- package/src/models/operations/listbudgets.ts +2 -2
- package/src/models/operations/listcontacts.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +2 -2
- package/src/models/operations/listdatasets.ts +2 -2
- package/src/models/operations/listdatasources.ts +2 -2
- package/src/models/operations/retrievecontact.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +2 -2
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/retrievedatasource.ts +2 -2
- package/src/models/operations/updatebudget.ts +2 -2
- package/src/models/operations/updatecontact.ts +2 -2
- package/src/models/operations/updatedatapoint.ts +2 -2
- package/src/models/operations/updatedataset.ts +2 -2
- package/src/models/operations/updatedatasource.ts +2 -2
- package/src/models/operations/updateeval.ts +16 -16
|
@@ -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
|
|
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
|
|
1513
|
-
typeof
|
|
1545
|
+
export type DeploymentGetConfig1DeploymentsType = ClosedEnum<
|
|
1546
|
+
typeof DeploymentGetConfig1DeploymentsType
|
|
1514
1547
|
>;
|
|
1515
1548
|
|
|
1516
|
-
export type
|
|
1517
|
-
type:
|
|
1549
|
+
export type DeploymentGetConfig13 = {
|
|
1550
|
+
type: DeploymentGetConfig1DeploymentsType;
|
|
1518
1551
|
};
|
|
1519
1552
|
|
|
1520
|
-
export const
|
|
1553
|
+
export const DeploymentGetConfig1Type = {
|
|
1521
1554
|
JsonObject: "json_object",
|
|
1522
1555
|
} as const;
|
|
1523
|
-
export type
|
|
1524
|
-
typeof
|
|
1556
|
+
export type DeploymentGetConfig1Type = ClosedEnum<
|
|
1557
|
+
typeof DeploymentGetConfig1Type
|
|
1525
1558
|
>;
|
|
1526
1559
|
|
|
1527
|
-
export type
|
|
1528
|
-
type:
|
|
1560
|
+
export type DeploymentGetConfig12 = {
|
|
1561
|
+
type: DeploymentGetConfig1Type;
|
|
1529
1562
|
};
|
|
1530
1563
|
|
|
1531
|
-
export const
|
|
1564
|
+
export const DeploymentGetConfig1DeploymentsResponseType = {
|
|
1532
1565
|
JsonSchema: "json_schema",
|
|
1533
1566
|
} as const;
|
|
1534
|
-
export type
|
|
1535
|
-
|
|
1567
|
+
export type DeploymentGetConfig1DeploymentsResponseType = ClosedEnum<
|
|
1568
|
+
typeof DeploymentGetConfig1DeploymentsResponseType
|
|
1569
|
+
>;
|
|
1536
1570
|
|
|
1537
|
-
export type
|
|
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
|
|
1544
|
-
type:
|
|
1545
|
-
jsonSchema:
|
|
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
|
-
|
|
|
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
|
-
|
|
|
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
|
|
9534
|
-
|
|
9535
|
-
|
|
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
|
|
9539
|
-
|
|
9540
|
-
|
|
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
|
|
9547
|
-
/** @deprecated use `
|
|
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
|
-
|
|
9550
|
-
/** @deprecated use `
|
|
9660
|
+
DeploymentGetConfig1DeploymentsType$inboundSchema;
|
|
9661
|
+
/** @deprecated use `DeploymentGetConfig1DeploymentsType$outboundSchema` instead. */
|
|
9551
9662
|
export const outboundSchema =
|
|
9552
|
-
|
|
9663
|
+
DeploymentGetConfig1DeploymentsType$outboundSchema;
|
|
9553
9664
|
}
|
|
9554
9665
|
|
|
9555
9666
|
/** @internal */
|
|
9556
|
-
export const
|
|
9557
|
-
|
|
9667
|
+
export const DeploymentGetConfig13$inboundSchema: z.ZodType<
|
|
9668
|
+
DeploymentGetConfig13,
|
|
9558
9669
|
z.ZodTypeDef,
|
|
9559
9670
|
unknown
|
|
9560
9671
|
> = z.object({
|
|
9561
|
-
type:
|
|
9672
|
+
type: DeploymentGetConfig1DeploymentsType$inboundSchema,
|
|
9562
9673
|
});
|
|
9563
9674
|
|
|
9564
9675
|
/** @internal */
|
|
9565
|
-
export type
|
|
9676
|
+
export type DeploymentGetConfig13$Outbound = {
|
|
9566
9677
|
type: string;
|
|
9567
9678
|
};
|
|
9568
9679
|
|
|
9569
9680
|
/** @internal */
|
|
9570
|
-
export const
|
|
9571
|
-
|
|
9681
|
+
export const DeploymentGetConfig13$outboundSchema: z.ZodType<
|
|
9682
|
+
DeploymentGetConfig13$Outbound,
|
|
9572
9683
|
z.ZodTypeDef,
|
|
9573
|
-
|
|
9684
|
+
DeploymentGetConfig13
|
|
9574
9685
|
> = z.object({
|
|
9575
|
-
type:
|
|
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
|
|
9583
|
-
/** @deprecated use `
|
|
9584
|
-
export const inboundSchema =
|
|
9585
|
-
/** @deprecated use `
|
|
9586
|
-
export const outboundSchema =
|
|
9587
|
-
|
|
9588
|
-
|
|
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
|
|
9593
|
-
|
|
9702
|
+
export function deploymentGetConfig13ToJSON(
|
|
9703
|
+
deploymentGetConfig13: DeploymentGetConfig13,
|
|
9594
9704
|
): string {
|
|
9595
9705
|
return JSON.stringify(
|
|
9596
|
-
|
|
9597
|
-
deploymentGetConfigResponseFormat3,
|
|
9598
|
-
),
|
|
9706
|
+
DeploymentGetConfig13$outboundSchema.parse(deploymentGetConfig13),
|
|
9599
9707
|
);
|
|
9600
9708
|
}
|
|
9601
9709
|
|
|
9602
|
-
export function
|
|
9710
|
+
export function deploymentGetConfig13FromJSON(
|
|
9603
9711
|
jsonString: string,
|
|
9604
|
-
): SafeParseResult<
|
|
9712
|
+
): SafeParseResult<DeploymentGetConfig13, SDKValidationError> {
|
|
9605
9713
|
return safeParse(
|
|
9606
9714
|
jsonString,
|
|
9607
|
-
(x) =>
|
|
9608
|
-
|
|
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
|
|
9615
|
-
|
|
9616
|
-
|
|
9617
|
-
);
|
|
9721
|
+
export const DeploymentGetConfig1Type$inboundSchema: z.ZodNativeEnum<
|
|
9722
|
+
typeof DeploymentGetConfig1Type
|
|
9723
|
+
> = z.nativeEnum(DeploymentGetConfig1Type);
|
|
9618
9724
|
|
|
9619
9725
|
/** @internal */
|
|
9620
|
-
export const
|
|
9621
|
-
|
|
9622
|
-
|
|
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
|
|
9629
|
-
/** @deprecated use `
|
|
9630
|
-
export const inboundSchema =
|
|
9631
|
-
|
|
9632
|
-
|
|
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
|
|
9639
|
-
|
|
9742
|
+
export const DeploymentGetConfig12$inboundSchema: z.ZodType<
|
|
9743
|
+
DeploymentGetConfig12,
|
|
9640
9744
|
z.ZodTypeDef,
|
|
9641
9745
|
unknown
|
|
9642
9746
|
> = z.object({
|
|
9643
|
-
type:
|
|
9747
|
+
type: DeploymentGetConfig1Type$inboundSchema,
|
|
9644
9748
|
});
|
|
9645
9749
|
|
|
9646
9750
|
/** @internal */
|
|
9647
|
-
export type
|
|
9751
|
+
export type DeploymentGetConfig12$Outbound = {
|
|
9648
9752
|
type: string;
|
|
9649
9753
|
};
|
|
9650
9754
|
|
|
9651
9755
|
/** @internal */
|
|
9652
|
-
export const
|
|
9653
|
-
|
|
9756
|
+
export const DeploymentGetConfig12$outboundSchema: z.ZodType<
|
|
9757
|
+
DeploymentGetConfig12$Outbound,
|
|
9654
9758
|
z.ZodTypeDef,
|
|
9655
|
-
|
|
9759
|
+
DeploymentGetConfig12
|
|
9656
9760
|
> = z.object({
|
|
9657
|
-
type:
|
|
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
|
|
9665
|
-
/** @deprecated use `
|
|
9666
|
-
export const inboundSchema =
|
|
9667
|
-
/** @deprecated use `
|
|
9668
|
-
export const outboundSchema =
|
|
9669
|
-
|
|
9670
|
-
|
|
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
|
|
9675
|
-
|
|
9777
|
+
export function deploymentGetConfig12ToJSON(
|
|
9778
|
+
deploymentGetConfig12: DeploymentGetConfig12,
|
|
9676
9779
|
): string {
|
|
9677
9780
|
return JSON.stringify(
|
|
9678
|
-
|
|
9679
|
-
deploymentGetConfigResponseFormat2,
|
|
9680
|
-
),
|
|
9781
|
+
DeploymentGetConfig12$outboundSchema.parse(deploymentGetConfig12),
|
|
9681
9782
|
);
|
|
9682
9783
|
}
|
|
9683
9784
|
|
|
9684
|
-
export function
|
|
9785
|
+
export function deploymentGetConfig12FromJSON(
|
|
9685
9786
|
jsonString: string,
|
|
9686
|
-
): SafeParseResult<
|
|
9787
|
+
): SafeParseResult<DeploymentGetConfig12, SDKValidationError> {
|
|
9687
9788
|
return safeParse(
|
|
9688
9789
|
jsonString,
|
|
9689
|
-
(x) =>
|
|
9690
|
-
|
|
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
|
|
9697
|
-
z.ZodNativeEnum<
|
|
9698
|
-
|
|
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
|
|
9703
|
-
z.ZodNativeEnum<
|
|
9704
|
-
|
|
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
|
|
9712
|
-
/** @deprecated use `
|
|
9809
|
+
export namespace DeploymentGetConfig1DeploymentsResponseType$ {
|
|
9810
|
+
/** @deprecated use `DeploymentGetConfig1DeploymentsResponseType$inboundSchema` instead. */
|
|
9713
9811
|
export const inboundSchema =
|
|
9714
|
-
|
|
9715
|
-
/** @deprecated use `
|
|
9812
|
+
DeploymentGetConfig1DeploymentsResponseType$inboundSchema;
|
|
9813
|
+
/** @deprecated use `DeploymentGetConfig1DeploymentsResponseType$outboundSchema` instead. */
|
|
9716
9814
|
export const outboundSchema =
|
|
9717
|
-
|
|
9815
|
+
DeploymentGetConfig1DeploymentsResponseType$outboundSchema;
|
|
9718
9816
|
}
|
|
9719
9817
|
|
|
9720
9818
|
/** @internal */
|
|
9721
|
-
export const
|
|
9722
|
-
|
|
9723
|
-
|
|
9724
|
-
|
|
9725
|
-
|
|
9726
|
-
|
|
9727
|
-
|
|
9728
|
-
|
|
9729
|
-
|
|
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
|
|
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
|
|
9741
|
-
|
|
9742
|
-
|
|
9743
|
-
|
|
9744
|
-
|
|
9745
|
-
|
|
9746
|
-
|
|
9747
|
-
|
|
9748
|
-
|
|
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
|
|
9756
|
-
/** @deprecated use `
|
|
9757
|
-
export const inboundSchema =
|
|
9758
|
-
|
|
9759
|
-
|
|
9760
|
-
|
|
9761
|
-
|
|
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
|
|
9767
|
-
|
|
9768
|
-
DeploymentGetConfigResponseFormatJsonSchema,
|
|
9860
|
+
export function deploymentGetConfig1JsonSchemaToJSON(
|
|
9861
|
+
deploymentGetConfig1JsonSchema: DeploymentGetConfig1JsonSchema,
|
|
9769
9862
|
): string {
|
|
9770
9863
|
return JSON.stringify(
|
|
9771
|
-
|
|
9772
|
-
|
|
9864
|
+
DeploymentGetConfig1JsonSchema$outboundSchema.parse(
|
|
9865
|
+
deploymentGetConfig1JsonSchema,
|
|
9773
9866
|
),
|
|
9774
9867
|
);
|
|
9775
9868
|
}
|
|
9776
9869
|
|
|
9777
|
-
export function
|
|
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
|
-
|
|
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
|
|
9795
|
-
|
|
9881
|
+
export const DeploymentGetConfig11$inboundSchema: z.ZodType<
|
|
9882
|
+
DeploymentGetConfig11,
|
|
9796
9883
|
z.ZodTypeDef,
|
|
9797
9884
|
unknown
|
|
9798
9885
|
> = z.object({
|
|
9799
|
-
type:
|
|
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
|
|
9895
|
+
export type DeploymentGetConfig11$Outbound = {
|
|
9811
9896
|
type: string;
|
|
9812
|
-
json_schema:
|
|
9897
|
+
json_schema: DeploymentGetConfig1JsonSchema$Outbound;
|
|
9813
9898
|
};
|
|
9814
9899
|
|
|
9815
9900
|
/** @internal */
|
|
9816
|
-
export const
|
|
9817
|
-
|
|
9901
|
+
export const DeploymentGetConfig11$outboundSchema: z.ZodType<
|
|
9902
|
+
DeploymentGetConfig11$Outbound,
|
|
9818
9903
|
z.ZodTypeDef,
|
|
9819
|
-
|
|
9904
|
+
DeploymentGetConfig11
|
|
9820
9905
|
> = z.object({
|
|
9821
|
-
type:
|
|
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.
|
|
9873
|
-
|
|
9874
|
-
|
|
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
|
-
|
|
|
9880
|
-
|
|
|
9881
|
-
|
|
|
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.
|
|
9890
|
-
|
|
9891
|
-
|
|
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.
|
|
10037
|
-
|
|
10038
|
-
|
|
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
|
-
|
|
|
10069
|
-
|
|
|
10070
|
-
|
|
|
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.
|
|
10101
|
-
|
|
10102
|
-
|
|
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
|