@orq-ai/node 3.10.16 → 3.10.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/mcp-server.js +608 -378
- package/bin/mcp-server.js.map +35 -35
- 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/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/createprompt.d.ts +163 -69
- package/models/operations/createprompt.d.ts.map +1 -1
- package/models/operations/createprompt.js +196 -96
- package/models/operations/createprompt.js.map +1 -1
- package/models/operations/deploymentgetconfig.d.ts +82 -35
- package/models/operations/deploymentgetconfig.d.ts.map +1 -1
- package/models/operations/deploymentgetconfig.js +106 -57
- package/models/operations/deploymentgetconfig.js.map +1 -1
- package/models/operations/deployments.d.ts +82 -35
- package/models/operations/deployments.d.ts.map +1 -1
- package/models/operations/deployments.js +99 -49
- package/models/operations/deployments.js.map +1 -1
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/getallprompts.d.ts +81 -34
- package/models/operations/getallprompts.d.ts.map +1 -1
- package/models/operations/getallprompts.js +99 -49
- package/models/operations/getallprompts.js.map +1 -1
- package/models/operations/getevals.js +28 -28
- package/models/operations/getoneprompt.d.ts +81 -34
- package/models/operations/getoneprompt.d.ts.map +1 -1
- package/models/operations/getoneprompt.js +99 -49
- package/models/operations/getoneprompt.js.map +1 -1
- package/models/operations/getpromptversion.d.ts +81 -34
- package/models/operations/getpromptversion.d.ts.map +1 -1
- package/models/operations/getpromptversion.js +100 -50
- package/models/operations/getpromptversion.js.map +1 -1
- 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/listpromptversions.d.ts +81 -34
- package/models/operations/listpromptversions.d.ts.map +1 -1
- package/models/operations/listpromptversions.js +99 -50
- package/models/operations/listpromptversions.js.map +1 -1
- 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/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/models/operations/updateprompt.d.ts +162 -68
- package/models/operations/updateprompt.d.ts.map +1 -1
- package/models/operations/updateprompt.js +197 -97
- package/models/operations/updateprompt.js.map +1 -1
- package/package.json +1 -1
- package/packages/orq-rc/docs/sdks/datasets/README.md +1 -1
- package/packages/orq-rc/docs/sdks/knowledge/README.md +1 -1
- 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/datasetsCreateDatapoint.ts +5 -4
- package/packages/orq-rc/src/funcs/knowledgeCreateChunks.ts +4 -4
- 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 +1 -1
- package/packages/orq-rc/src/models/operations/createchunk.ts +54 -44
- 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 +46 -63
- package/packages/orq-rc/src/models/operations/createdatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/createeval.ts +16 -16
- 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/getevals.ts +28 -28
- package/packages/orq-rc/src/models/operations/listcontacts.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +2 -2
- 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/retrievecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +2 -2
- 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/updatecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedatapoint.ts +2 -2
- 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 +16 -16
- package/packages/orq-rc/src/sdk/datasets.ts +1 -1
- package/packages/orq-rc/src/sdk/knowledge.ts +1 -1
- 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/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/createprompt.ts +347 -141
- package/src/models/operations/deploymentgetconfig.ts +173 -72
- package/src/models/operations/deployments.ts +168 -72
- 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/getallprompts.ts +169 -71
- package/src/models/operations/getevals.ts +28 -28
- package/src/models/operations/getoneprompt.ts +169 -71
- package/src/models/operations/getpromptversion.ts +168 -70
- 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/listpromptversions.ts +170 -71
- 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/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
- package/src/models/operations/updateprompt.ts +347 -141
package/bin/mcp-server.js
CHANGED
|
@@ -34206,9 +34206,9 @@ var init_config = __esm(() => {
|
|
|
34206
34206
|
SDK_METADATA = {
|
|
34207
34207
|
language: "typescript",
|
|
34208
34208
|
openapiDocVersion: "2.0",
|
|
34209
|
-
sdkVersion: "3.10.
|
|
34210
|
-
genVersion: "2.
|
|
34211
|
-
userAgent: "speakeasy-sdk/typescript 3.10.
|
|
34209
|
+
sdkVersion: "3.10.17",
|
|
34210
|
+
genVersion: "2.680.0",
|
|
34211
|
+
userAgent: "speakeasy-sdk/typescript 3.10.17 2.680.0 2.0 @orq-ai/node"
|
|
34212
34212
|
};
|
|
34213
34213
|
});
|
|
34214
34214
|
|
|
@@ -35881,7 +35881,7 @@ var init_createcontact = __esm(() => {
|
|
|
35881
35881
|
tags: arrayType(stringType()).optional(),
|
|
35882
35882
|
metadata: recordType(anyType()).optional(),
|
|
35883
35883
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
35884
|
-
updated: stringType().datetime({ offset: true }).default("2025-08-
|
|
35884
|
+
updated: stringType().datetime({ offset: true }).default("2025-08-12T10:35:45.801Z").transform((v2) => new Date(v2))
|
|
35885
35885
|
}).transform((v2) => {
|
|
35886
35886
|
return remap(v2, {
|
|
35887
35887
|
_id: "id",
|
|
@@ -35901,7 +35901,7 @@ var init_createcontact = __esm(() => {
|
|
|
35901
35901
|
tags: arrayType(stringType()).optional(),
|
|
35902
35902
|
metadata: recordType(anyType()).optional(),
|
|
35903
35903
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
35904
|
-
updated: dateType().default(() => new Date("2025-08-
|
|
35904
|
+
updated: dateType().default(() => new Date("2025-08-12T10:35:45.801Z")).transform((v2) => v2.toISOString())
|
|
35905
35905
|
}).transform((v2) => {
|
|
35906
35906
|
return remap(v2, {
|
|
35907
35907
|
id: "_id",
|
|
@@ -35973,7 +35973,7 @@ var init_createdataset = __esm(() => {
|
|
|
35973
35973
|
updated_by_id: stringType().optional(),
|
|
35974
35974
|
metadata: lazyType(() => CreateDatasetMetadata$inboundSchema),
|
|
35975
35975
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
35976
|
-
updated: stringType().datetime({ offset: true }).default("2025-08-
|
|
35976
|
+
updated: stringType().datetime({ offset: true }).default("2025-08-12T10:35:45.801Z").transform((v2) => new Date(v2))
|
|
35977
35977
|
}).transform((v2) => {
|
|
35978
35978
|
return remap(v2, {
|
|
35979
35979
|
_id: "id",
|
|
@@ -35993,7 +35993,7 @@ var init_createdataset = __esm(() => {
|
|
|
35993
35993
|
updatedById: stringType().optional(),
|
|
35994
35994
|
metadata: lazyType(() => CreateDatasetMetadata$outboundSchema),
|
|
35995
35995
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
35996
|
-
updated: dateType().default(() => new Date("2025-08-
|
|
35996
|
+
updated: dateType().default(() => new Date("2025-08-12T10:35:45.801Z")).transform((v2) => v2.toISOString())
|
|
35997
35997
|
}).transform((v2) => {
|
|
35998
35998
|
return remap(v2, {
|
|
35999
35999
|
id: "_id",
|
|
@@ -37125,7 +37125,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
37125
37125
|
created_by_id: stringType().optional(),
|
|
37126
37126
|
updated_by_id: stringType().optional(),
|
|
37127
37127
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
37128
|
-
updated: stringType().datetime({ offset: true }).default("2025-08-
|
|
37128
|
+
updated: stringType().datetime({ offset: true }).default("2025-08-12T10:35:45.801Z").transform((v2) => new Date(v2))
|
|
37129
37129
|
}).transform((v2) => {
|
|
37130
37130
|
return remap(v2, {
|
|
37131
37131
|
_id: "id",
|
|
@@ -37152,7 +37152,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
37152
37152
|
createdById: stringType().optional(),
|
|
37153
37153
|
updatedById: stringType().optional(),
|
|
37154
37154
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
37155
|
-
updated: dateType().default(() => new Date("2025-08-
|
|
37155
|
+
updated: dateType().default(() => new Date("2025-08-12T10:35:45.801Z")).transform((v2) => v2.toISOString())
|
|
37156
37156
|
}).transform((v2) => {
|
|
37157
37157
|
return remap(v2, {
|
|
37158
37158
|
id: "_id",
|
|
@@ -37374,7 +37374,7 @@ var init_createdatasource = __esm(() => {
|
|
|
37374
37374
|
CreateDatasourceStatus$.outboundSchema = CreateDatasourceStatus$outboundSchema;
|
|
37375
37375
|
})(CreateDatasourceStatus$ ||= {});
|
|
37376
37376
|
CreateDatasourceResponseBody$inboundSchema = objectType({
|
|
37377
|
-
_id: stringType().default("
|
|
37377
|
+
_id: stringType().default("01K2EXKNBCFXD50M72K38B23SQ"),
|
|
37378
37378
|
display_name: stringType(),
|
|
37379
37379
|
description: stringType().optional(),
|
|
37380
37380
|
status: CreateDatasourceStatus$inboundSchema,
|
|
@@ -37397,7 +37397,7 @@ var init_createdatasource = __esm(() => {
|
|
|
37397
37397
|
});
|
|
37398
37398
|
});
|
|
37399
37399
|
CreateDatasourceResponseBody$outboundSchema = objectType({
|
|
37400
|
-
id: stringType().default("
|
|
37400
|
+
id: stringType().default("01K2EXKNBCFXD50M72K38B23SQ"),
|
|
37401
37401
|
displayName: stringType(),
|
|
37402
37402
|
description: stringType().optional(),
|
|
37403
37403
|
status: CreateDatasourceStatus$outboundSchema,
|
|
@@ -38073,8 +38073,8 @@ var init_createeval = __esm(() => {
|
|
|
38073
38073
|
ResponseBodyPython$inboundSchema = objectType({
|
|
38074
38074
|
_id: stringType(),
|
|
38075
38075
|
description: stringType(),
|
|
38076
|
-
created: stringType().default("2025-08-
|
|
38077
|
-
updated: stringType().default("2025-08-
|
|
38076
|
+
created: stringType().default("2025-08-12T10:35:48.407Z"),
|
|
38077
|
+
updated: stringType().default("2025-08-12T10:35:48.407Z"),
|
|
38078
38078
|
guardrail_config: unionType([
|
|
38079
38079
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
38080
38080
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
|
|
@@ -38091,8 +38091,8 @@ var init_createeval = __esm(() => {
|
|
|
38091
38091
|
ResponseBodyPython$outboundSchema = objectType({
|
|
38092
38092
|
id: stringType(),
|
|
38093
38093
|
description: stringType(),
|
|
38094
|
-
created: stringType().default("2025-08-
|
|
38095
|
-
updated: stringType().default("2025-08-
|
|
38094
|
+
created: stringType().default("2025-08-12T10:35:48.407Z"),
|
|
38095
|
+
updated: stringType().default("2025-08-12T10:35:48.407Z"),
|
|
38096
38096
|
guardrailConfig: unionType([
|
|
38097
38097
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
38098
38098
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
|
|
@@ -38185,8 +38185,8 @@ var init_createeval = __esm(() => {
|
|
|
38185
38185
|
ResponseBodyHTTP$inboundSchema = objectType({
|
|
38186
38186
|
_id: stringType(),
|
|
38187
38187
|
description: stringType(),
|
|
38188
|
-
created: stringType().default("2025-08-
|
|
38189
|
-
updated: stringType().default("2025-08-
|
|
38188
|
+
created: stringType().default("2025-08-12T10:35:48.407Z"),
|
|
38189
|
+
updated: stringType().default("2025-08-12T10:35:48.407Z"),
|
|
38190
38190
|
guardrail_config: unionType([
|
|
38191
38191
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
38192
38192
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
|
|
@@ -38206,8 +38206,8 @@ var init_createeval = __esm(() => {
|
|
|
38206
38206
|
ResponseBodyHTTP$outboundSchema = objectType({
|
|
38207
38207
|
id: stringType(),
|
|
38208
38208
|
description: stringType(),
|
|
38209
|
-
created: stringType().default("2025-08-
|
|
38210
|
-
updated: stringType().default("2025-08-
|
|
38209
|
+
created: stringType().default("2025-08-12T10:35:48.407Z"),
|
|
38210
|
+
updated: stringType().default("2025-08-12T10:35:48.407Z"),
|
|
38211
38211
|
guardrailConfig: unionType([
|
|
38212
38212
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
38213
38213
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
|
|
@@ -38297,8 +38297,8 @@ var init_createeval = __esm(() => {
|
|
|
38297
38297
|
ResponseBodyJSON$inboundSchema = objectType({
|
|
38298
38298
|
_id: stringType(),
|
|
38299
38299
|
description: stringType(),
|
|
38300
|
-
created: stringType().default("2025-08-
|
|
38301
|
-
updated: stringType().default("2025-08-
|
|
38300
|
+
created: stringType().default("2025-08-12T10:35:48.407Z"),
|
|
38301
|
+
updated: stringType().default("2025-08-12T10:35:48.407Z"),
|
|
38302
38302
|
guardrail_config: unionType([
|
|
38303
38303
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
38304
38304
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema)
|
|
@@ -38315,8 +38315,8 @@ var init_createeval = __esm(() => {
|
|
|
38315
38315
|
ResponseBodyJSON$outboundSchema = objectType({
|
|
38316
38316
|
id: stringType(),
|
|
38317
38317
|
description: stringType(),
|
|
38318
|
-
created: stringType().default("2025-08-
|
|
38319
|
-
updated: stringType().default("2025-08-
|
|
38318
|
+
created: stringType().default("2025-08-12T10:35:48.407Z"),
|
|
38319
|
+
updated: stringType().default("2025-08-12T10:35:48.407Z"),
|
|
38320
38320
|
guardrailConfig: unionType([
|
|
38321
38321
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
38322
38322
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema)
|
|
@@ -38403,8 +38403,8 @@ var init_createeval = __esm(() => {
|
|
|
38403
38403
|
ResponseBodyLLM$inboundSchema = objectType({
|
|
38404
38404
|
_id: stringType(),
|
|
38405
38405
|
description: stringType(),
|
|
38406
|
-
created: stringType().default("2025-08-
|
|
38407
|
-
updated: stringType().default("2025-08-
|
|
38406
|
+
created: stringType().default("2025-08-12T10:35:48.407Z"),
|
|
38407
|
+
updated: stringType().default("2025-08-12T10:35:48.407Z"),
|
|
38408
38408
|
guardrail_config: unionType([
|
|
38409
38409
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
38410
38410
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema)
|
|
@@ -38422,8 +38422,8 @@ var init_createeval = __esm(() => {
|
|
|
38422
38422
|
ResponseBodyLLM$outboundSchema = objectType({
|
|
38423
38423
|
id: stringType(),
|
|
38424
38424
|
description: stringType(),
|
|
38425
|
-
created: stringType().default("2025-08-
|
|
38426
|
-
updated: stringType().default("2025-08-
|
|
38425
|
+
created: stringType().default("2025-08-12T10:35:48.407Z"),
|
|
38426
|
+
updated: stringType().default("2025-08-12T10:35:48.407Z"),
|
|
38427
38427
|
guardrailConfig: unionType([
|
|
38428
38428
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
38429
38429
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema)
|
|
@@ -38759,7 +38759,7 @@ var init_createknowledge = __esm(() => {
|
|
|
38759
38759
|
});
|
|
38760
38760
|
|
|
38761
38761
|
// src/models/operations/createprompt.ts
|
|
38762
|
-
var ModelType, CreatePromptFormat, CreatePromptResponseFormatType, ResponseFormatType, PhotoRealVersion, EncodingFormat, ReasoningEffort, Verbosity, Provider, CreatePromptRole, CreatePrompt2PromptsRequestType, CreatePrompt2PromptsType, CreatePrompt2Type, CreatePromptType, UseCases, Language, CreatePromptPromptsType, CreatePromptModelType, CreatePromptPromptsFormat,
|
|
38762
|
+
var ModelType, CreatePromptFormat, CreatePromptResponseFormatPromptsType, CreatePromptResponseFormatType, ResponseFormatType, PhotoRealVersion, EncodingFormat, ReasoningEffort, Verbosity, Provider, CreatePromptRole, CreatePrompt2PromptsRequestType, CreatePrompt2PromptsType, CreatePrompt2Type, CreatePromptType, UseCases, Language, CreatePromptPromptsType, CreatePromptModelType, CreatePromptPromptsFormat, CreatePromptResponseFormatPromptsResponse200ApplicationJSONType, CreatePromptResponseFormatPromptsResponse200Type, CreatePromptResponseFormatPromptsResponseType, CreatePromptPhotoRealVersion, CreatePromptEncodingFormat, CreatePromptReasoningEffort, CreatePromptVerbosity, CreatePromptProvider, CreatePromptPromptsRole, CreatePrompt2PromptsResponse200ApplicationJSONType, CreatePrompt2PromptsResponse200Type, CreatePrompt2PromptsResponseType, CreatePromptPromptsResponseType, CreatePromptUseCases, CreatePromptLanguage, ModelType$inboundSchema, ModelType$outboundSchema, ModelType$, CreatePromptFormat$inboundSchema, CreatePromptFormat$outboundSchema, CreatePromptFormat$, CreatePromptResponseFormatPromptsType$inboundSchema, CreatePromptResponseFormatPromptsType$outboundSchema, CreatePromptResponseFormatPromptsType$, ResponseFormat3$inboundSchema, ResponseFormat3$outboundSchema, ResponseFormat3$, CreatePromptResponseFormatType$inboundSchema, CreatePromptResponseFormatType$outboundSchema, CreatePromptResponseFormatType$, JsonSchema$inboundSchema, JsonSchema$outboundSchema, JsonSchema$, ResponseFormat2$inboundSchema, ResponseFormat2$outboundSchema, ResponseFormat2$, ResponseFormatType$inboundSchema, ResponseFormatType$outboundSchema, ResponseFormatType$, ResponseFormat1$inboundSchema, ResponseFormat1$outboundSchema, ResponseFormat1$, ResponseFormat$inboundSchema, ResponseFormat$outboundSchema, ResponseFormat$, PhotoRealVersion$inboundSchema, PhotoRealVersion$outboundSchema, PhotoRealVersion$, EncodingFormat$inboundSchema, EncodingFormat$outboundSchema, EncodingFormat$, ReasoningEffort$inboundSchema, ReasoningEffort$outboundSchema, ReasoningEffort$, Verbosity$inboundSchema, Verbosity$outboundSchema, Verbosity$, ModelParameters$inboundSchema, ModelParameters$outboundSchema, ModelParameters$, Provider$inboundSchema, Provider$outboundSchema, Provider$, CreatePromptRole$inboundSchema, CreatePromptRole$outboundSchema, CreatePromptRole$, CreatePrompt2PromptsRequestType$inboundSchema, CreatePrompt2PromptsRequestType$outboundSchema, CreatePrompt2PromptsRequestType$, CreatePrompt2File$inboundSchema, CreatePrompt2File$outboundSchema, CreatePrompt2File$, CreatePrompt23$inboundSchema, CreatePrompt23$outboundSchema, CreatePrompt23$, CreatePrompt2PromptsType$inboundSchema, CreatePrompt2PromptsType$outboundSchema, CreatePrompt2PromptsType$, CreatePrompt2ImageUrl$inboundSchema, CreatePrompt2ImageUrl$outboundSchema, CreatePrompt2ImageUrl$, CreatePrompt22$inboundSchema, CreatePrompt22$outboundSchema, CreatePrompt22$, CreatePrompt2Type$inboundSchema, CreatePrompt2Type$outboundSchema, CreatePrompt2Type$, CreatePrompt21$inboundSchema, CreatePrompt21$outboundSchema, CreatePrompt21$, CreatePromptContent2$inboundSchema, CreatePromptContent2$outboundSchema, CreatePromptContent2$, CreatePromptContent$inboundSchema, CreatePromptContent$outboundSchema, CreatePromptContent$, CreatePromptType$inboundSchema, CreatePromptType$outboundSchema, CreatePromptType$, CreatePromptFunction$inboundSchema, CreatePromptFunction$outboundSchema, CreatePromptFunction$, CreatePromptToolCalls$inboundSchema, CreatePromptToolCalls$outboundSchema, CreatePromptToolCalls$, CreatePromptMessages$inboundSchema, CreatePromptMessages$outboundSchema, CreatePromptMessages$, PromptConfig$inboundSchema, PromptConfig$outboundSchema, PromptConfig$, UseCases$inboundSchema, UseCases$outboundSchema, UseCases$, Language$inboundSchema, Language$outboundSchema, Language$, CreatePromptMetadata$inboundSchema, CreatePromptMetadata$outboundSchema, CreatePromptMetadata$, CreatePromptRequestBody$inboundSchema, CreatePromptRequestBody$outboundSchema, CreatePromptRequestBody$, CreatePromptPromptsType$inboundSchema, CreatePromptPromptsType$outboundSchema, CreatePromptPromptsType$, CreatePromptModelType$inboundSchema, CreatePromptModelType$outboundSchema, CreatePromptModelType$, CreatePromptPromptsFormat$inboundSchema, CreatePromptPromptsFormat$outboundSchema, CreatePromptPromptsFormat$, CreatePromptResponseFormatPromptsResponse200ApplicationJSONType$inboundSchema, CreatePromptResponseFormatPromptsResponse200ApplicationJSONType$outboundSchema, CreatePromptResponseFormatPromptsResponse200ApplicationJSONType$, CreatePromptResponseFormat3$inboundSchema, CreatePromptResponseFormat3$outboundSchema, CreatePromptResponseFormat3$, CreatePromptResponseFormatPromptsResponse200Type$inboundSchema, CreatePromptResponseFormatPromptsResponse200Type$outboundSchema, CreatePromptResponseFormatPromptsResponse200Type$, CreatePromptResponseFormatJsonSchema$inboundSchema, CreatePromptResponseFormatJsonSchema$outboundSchema, CreatePromptResponseFormatJsonSchema$, CreatePromptResponseFormat2$inboundSchema, CreatePromptResponseFormat2$outboundSchema, CreatePromptResponseFormat2$, CreatePromptResponseFormatPromptsResponseType$inboundSchema, CreatePromptResponseFormatPromptsResponseType$outboundSchema, CreatePromptResponseFormatPromptsResponseType$, CreatePromptResponseFormat1$inboundSchema, CreatePromptResponseFormat1$outboundSchema, CreatePromptResponseFormat1$, CreatePromptResponseFormat$inboundSchema, CreatePromptResponseFormat$outboundSchema, CreatePromptResponseFormat$, CreatePromptPhotoRealVersion$inboundSchema, CreatePromptPhotoRealVersion$outboundSchema, CreatePromptPhotoRealVersion$, CreatePromptEncodingFormat$inboundSchema, CreatePromptEncodingFormat$outboundSchema, CreatePromptEncodingFormat$, CreatePromptReasoningEffort$inboundSchema, CreatePromptReasoningEffort$outboundSchema, CreatePromptReasoningEffort$, CreatePromptVerbosity$inboundSchema, CreatePromptVerbosity$outboundSchema, CreatePromptVerbosity$, CreatePromptModelParameters$inboundSchema, CreatePromptModelParameters$outboundSchema, CreatePromptModelParameters$, CreatePromptProvider$inboundSchema, CreatePromptProvider$outboundSchema, CreatePromptProvider$, CreatePromptPromptsRole$inboundSchema, CreatePromptPromptsRole$outboundSchema, CreatePromptPromptsRole$, CreatePrompt2PromptsResponse200ApplicationJSONType$inboundSchema, CreatePrompt2PromptsResponse200ApplicationJSONType$outboundSchema, CreatePrompt2PromptsResponse200ApplicationJSONType$, CreatePrompt2PromptsFile$inboundSchema, CreatePrompt2PromptsFile$outboundSchema, CreatePrompt2PromptsFile$, CreatePrompt2Prompts3$inboundSchema, CreatePrompt2Prompts3$outboundSchema, CreatePrompt2Prompts3$, CreatePrompt2PromptsResponse200Type$inboundSchema, CreatePrompt2PromptsResponse200Type$outboundSchema, CreatePrompt2PromptsResponse200Type$, CreatePrompt2PromptsImageUrl$inboundSchema, CreatePrompt2PromptsImageUrl$outboundSchema, CreatePrompt2PromptsImageUrl$, CreatePrompt2Prompts2$inboundSchema, CreatePrompt2Prompts2$outboundSchema, CreatePrompt2Prompts2$, CreatePrompt2PromptsResponseType$inboundSchema, CreatePrompt2PromptsResponseType$outboundSchema, CreatePrompt2PromptsResponseType$, CreatePrompt2Prompts1$inboundSchema, CreatePrompt2Prompts1$outboundSchema, CreatePrompt2Prompts1$, CreatePromptContentPrompts2$inboundSchema, CreatePromptContentPrompts2$outboundSchema, CreatePromptContentPrompts2$, CreatePromptPromptsContent$inboundSchema, CreatePromptPromptsContent$outboundSchema, CreatePromptPromptsContent$, CreatePromptPromptsResponseType$inboundSchema, CreatePromptPromptsResponseType$outboundSchema, CreatePromptPromptsResponseType$, CreatePromptPromptsFunction$inboundSchema, CreatePromptPromptsFunction$outboundSchema, CreatePromptPromptsFunction$, CreatePromptPromptsToolCalls$inboundSchema, CreatePromptPromptsToolCalls$outboundSchema, CreatePromptPromptsToolCalls$, CreatePromptPromptsMessages$inboundSchema, CreatePromptPromptsMessages$outboundSchema, CreatePromptPromptsMessages$, CreatePromptPromptConfig$inboundSchema, CreatePromptPromptConfig$outboundSchema, CreatePromptPromptConfig$, CreatePromptUseCases$inboundSchema, CreatePromptUseCases$outboundSchema, CreatePromptUseCases$, CreatePromptLanguage$inboundSchema, CreatePromptLanguage$outboundSchema, CreatePromptLanguage$, CreatePromptPromptsMetadata$inboundSchema, CreatePromptPromptsMetadata$outboundSchema, CreatePromptPromptsMetadata$, CreatePromptResponseBody$inboundSchema, CreatePromptResponseBody$outboundSchema, CreatePromptResponseBody$;
|
|
38763
38763
|
var init_createprompt = __esm(() => {
|
|
38764
38764
|
init_esm();
|
|
38765
38765
|
init_primitives();
|
|
@@ -38780,12 +38780,15 @@ var init_createprompt = __esm(() => {
|
|
|
38780
38780
|
Text: "text",
|
|
38781
38781
|
JsonObject: "json_object"
|
|
38782
38782
|
};
|
|
38783
|
-
|
|
38783
|
+
CreatePromptResponseFormatPromptsType = {
|
|
38784
38784
|
JsonObject: "json_object"
|
|
38785
38785
|
};
|
|
38786
|
-
|
|
38786
|
+
CreatePromptResponseFormatType = {
|
|
38787
38787
|
JsonSchema: "json_schema"
|
|
38788
38788
|
};
|
|
38789
|
+
ResponseFormatType = {
|
|
38790
|
+
Text: "text"
|
|
38791
|
+
};
|
|
38789
38792
|
PhotoRealVersion = {
|
|
38790
38793
|
V1: "v1",
|
|
38791
38794
|
V2: "v2"
|
|
@@ -38901,12 +38904,15 @@ var init_createprompt = __esm(() => {
|
|
|
38901
38904
|
Text: "text",
|
|
38902
38905
|
JsonObject: "json_object"
|
|
38903
38906
|
};
|
|
38904
|
-
|
|
38907
|
+
CreatePromptResponseFormatPromptsResponse200ApplicationJSONType = {
|
|
38905
38908
|
JsonObject: "json_object"
|
|
38906
38909
|
};
|
|
38907
|
-
|
|
38910
|
+
CreatePromptResponseFormatPromptsResponse200Type = {
|
|
38908
38911
|
JsonSchema: "json_schema"
|
|
38909
38912
|
};
|
|
38913
|
+
CreatePromptResponseFormatPromptsResponseType = {
|
|
38914
|
+
Text: "text"
|
|
38915
|
+
};
|
|
38910
38916
|
CreatePromptPhotoRealVersion = {
|
|
38911
38917
|
V1: "v1",
|
|
38912
38918
|
V2: "v2"
|
|
@@ -39014,28 +39020,28 @@ var init_createprompt = __esm(() => {
|
|
|
39014
39020
|
CreatePromptFormat$.inboundSchema = CreatePromptFormat$inboundSchema;
|
|
39015
39021
|
CreatePromptFormat$.outboundSchema = CreatePromptFormat$outboundSchema;
|
|
39016
39022
|
})(CreatePromptFormat$ ||= {});
|
|
39023
|
+
CreatePromptResponseFormatPromptsType$inboundSchema = nativeEnumType(CreatePromptResponseFormatPromptsType);
|
|
39024
|
+
CreatePromptResponseFormatPromptsType$outboundSchema = CreatePromptResponseFormatPromptsType$inboundSchema;
|
|
39025
|
+
((CreatePromptResponseFormatPromptsType$) => {
|
|
39026
|
+
CreatePromptResponseFormatPromptsType$.inboundSchema = CreatePromptResponseFormatPromptsType$inboundSchema;
|
|
39027
|
+
CreatePromptResponseFormatPromptsType$.outboundSchema = CreatePromptResponseFormatPromptsType$outboundSchema;
|
|
39028
|
+
})(CreatePromptResponseFormatPromptsType$ ||= {});
|
|
39029
|
+
ResponseFormat3$inboundSchema = objectType({
|
|
39030
|
+
type: CreatePromptResponseFormatPromptsType$inboundSchema
|
|
39031
|
+
});
|
|
39032
|
+
ResponseFormat3$outboundSchema = objectType({
|
|
39033
|
+
type: CreatePromptResponseFormatPromptsType$outboundSchema
|
|
39034
|
+
});
|
|
39035
|
+
((ResponseFormat3$) => {
|
|
39036
|
+
ResponseFormat3$.inboundSchema = ResponseFormat3$inboundSchema;
|
|
39037
|
+
ResponseFormat3$.outboundSchema = ResponseFormat3$outboundSchema;
|
|
39038
|
+
})(ResponseFormat3$ ||= {});
|
|
39017
39039
|
CreatePromptResponseFormatType$inboundSchema = nativeEnumType(CreatePromptResponseFormatType);
|
|
39018
39040
|
CreatePromptResponseFormatType$outboundSchema = CreatePromptResponseFormatType$inboundSchema;
|
|
39019
39041
|
((CreatePromptResponseFormatType$) => {
|
|
39020
39042
|
CreatePromptResponseFormatType$.inboundSchema = CreatePromptResponseFormatType$inboundSchema;
|
|
39021
39043
|
CreatePromptResponseFormatType$.outboundSchema = CreatePromptResponseFormatType$outboundSchema;
|
|
39022
39044
|
})(CreatePromptResponseFormatType$ ||= {});
|
|
39023
|
-
ResponseFormat2$inboundSchema = objectType({
|
|
39024
|
-
type: CreatePromptResponseFormatType$inboundSchema
|
|
39025
|
-
});
|
|
39026
|
-
ResponseFormat2$outboundSchema = objectType({
|
|
39027
|
-
type: CreatePromptResponseFormatType$outboundSchema
|
|
39028
|
-
});
|
|
39029
|
-
((ResponseFormat2$) => {
|
|
39030
|
-
ResponseFormat2$.inboundSchema = ResponseFormat2$inboundSchema;
|
|
39031
|
-
ResponseFormat2$.outboundSchema = ResponseFormat2$outboundSchema;
|
|
39032
|
-
})(ResponseFormat2$ ||= {});
|
|
39033
|
-
ResponseFormatType$inboundSchema = nativeEnumType(ResponseFormatType);
|
|
39034
|
-
ResponseFormatType$outboundSchema = ResponseFormatType$inboundSchema;
|
|
39035
|
-
((ResponseFormatType$) => {
|
|
39036
|
-
ResponseFormatType$.inboundSchema = ResponseFormatType$inboundSchema;
|
|
39037
|
-
ResponseFormatType$.outboundSchema = ResponseFormatType$outboundSchema;
|
|
39038
|
-
})(ResponseFormatType$ ||= {});
|
|
39039
39045
|
JsonSchema$inboundSchema = objectType({
|
|
39040
39046
|
name: stringType(),
|
|
39041
39047
|
strict: booleanType().optional(),
|
|
@@ -39050,33 +39056,51 @@ var init_createprompt = __esm(() => {
|
|
|
39050
39056
|
JsonSchema$.inboundSchema = JsonSchema$inboundSchema;
|
|
39051
39057
|
JsonSchema$.outboundSchema = JsonSchema$outboundSchema;
|
|
39052
39058
|
})(JsonSchema$ ||= {});
|
|
39053
|
-
|
|
39054
|
-
type:
|
|
39059
|
+
ResponseFormat2$inboundSchema = objectType({
|
|
39060
|
+
type: CreatePromptResponseFormatType$inboundSchema,
|
|
39055
39061
|
json_schema: lazyType(() => JsonSchema$inboundSchema)
|
|
39056
39062
|
}).transform((v2) => {
|
|
39057
39063
|
return remap(v2, {
|
|
39058
39064
|
json_schema: "jsonSchema"
|
|
39059
39065
|
});
|
|
39060
39066
|
});
|
|
39061
|
-
|
|
39062
|
-
type:
|
|
39067
|
+
ResponseFormat2$outboundSchema = objectType({
|
|
39068
|
+
type: CreatePromptResponseFormatType$outboundSchema,
|
|
39063
39069
|
jsonSchema: lazyType(() => JsonSchema$outboundSchema)
|
|
39064
39070
|
}).transform((v2) => {
|
|
39065
39071
|
return remap(v2, {
|
|
39066
39072
|
jsonSchema: "json_schema"
|
|
39067
39073
|
});
|
|
39068
39074
|
});
|
|
39075
|
+
((ResponseFormat2$) => {
|
|
39076
|
+
ResponseFormat2$.inboundSchema = ResponseFormat2$inboundSchema;
|
|
39077
|
+
ResponseFormat2$.outboundSchema = ResponseFormat2$outboundSchema;
|
|
39078
|
+
})(ResponseFormat2$ ||= {});
|
|
39079
|
+
ResponseFormatType$inboundSchema = nativeEnumType(ResponseFormatType);
|
|
39080
|
+
ResponseFormatType$outboundSchema = ResponseFormatType$inboundSchema;
|
|
39081
|
+
((ResponseFormatType$) => {
|
|
39082
|
+
ResponseFormatType$.inboundSchema = ResponseFormatType$inboundSchema;
|
|
39083
|
+
ResponseFormatType$.outboundSchema = ResponseFormatType$outboundSchema;
|
|
39084
|
+
})(ResponseFormatType$ ||= {});
|
|
39085
|
+
ResponseFormat1$inboundSchema = objectType({
|
|
39086
|
+
type: ResponseFormatType$inboundSchema
|
|
39087
|
+
});
|
|
39088
|
+
ResponseFormat1$outboundSchema = objectType({
|
|
39089
|
+
type: ResponseFormatType$outboundSchema
|
|
39090
|
+
});
|
|
39069
39091
|
((ResponseFormat1$) => {
|
|
39070
39092
|
ResponseFormat1$.inboundSchema = ResponseFormat1$inboundSchema;
|
|
39071
39093
|
ResponseFormat1$.outboundSchema = ResponseFormat1$outboundSchema;
|
|
39072
39094
|
})(ResponseFormat1$ ||= {});
|
|
39073
39095
|
ResponseFormat$inboundSchema = unionType([
|
|
39096
|
+
lazyType(() => ResponseFormat2$inboundSchema),
|
|
39074
39097
|
lazyType(() => ResponseFormat1$inboundSchema),
|
|
39075
|
-
lazyType(() =>
|
|
39098
|
+
lazyType(() => ResponseFormat3$inboundSchema)
|
|
39076
39099
|
]);
|
|
39077
39100
|
ResponseFormat$outboundSchema = unionType([
|
|
39101
|
+
lazyType(() => ResponseFormat2$outboundSchema),
|
|
39078
39102
|
lazyType(() => ResponseFormat1$outboundSchema),
|
|
39079
|
-
lazyType(() =>
|
|
39103
|
+
lazyType(() => ResponseFormat3$outboundSchema)
|
|
39080
39104
|
]);
|
|
39081
39105
|
((ResponseFormat$) => {
|
|
39082
39106
|
ResponseFormat$.inboundSchema = ResponseFormat$inboundSchema;
|
|
@@ -39120,8 +39144,9 @@ var init_createprompt = __esm(() => {
|
|
|
39120
39144
|
quality: stringType().optional(),
|
|
39121
39145
|
style: stringType().optional(),
|
|
39122
39146
|
responseFormat: nullableType(unionType([
|
|
39147
|
+
lazyType(() => ResponseFormat2$inboundSchema),
|
|
39123
39148
|
lazyType(() => ResponseFormat1$inboundSchema),
|
|
39124
|
-
lazyType(() =>
|
|
39149
|
+
lazyType(() => ResponseFormat3$inboundSchema)
|
|
39125
39150
|
])).optional(),
|
|
39126
39151
|
photoRealVersion: PhotoRealVersion$inboundSchema.optional(),
|
|
39127
39152
|
encoding_format: EncodingFormat$inboundSchema.optional(),
|
|
@@ -39147,8 +39172,9 @@ var init_createprompt = __esm(() => {
|
|
|
39147
39172
|
quality: stringType().optional(),
|
|
39148
39173
|
style: stringType().optional(),
|
|
39149
39174
|
responseFormat: nullableType(unionType([
|
|
39175
|
+
lazyType(() => ResponseFormat2$outboundSchema),
|
|
39150
39176
|
lazyType(() => ResponseFormat1$outboundSchema),
|
|
39151
|
-
lazyType(() =>
|
|
39177
|
+
lazyType(() => ResponseFormat3$outboundSchema)
|
|
39152
39178
|
])).optional(),
|
|
39153
39179
|
photoRealVersion: PhotoRealVersion$outboundSchema.optional(),
|
|
39154
39180
|
encodingFormat: EncodingFormat$outboundSchema.optional(),
|
|
@@ -39488,28 +39514,28 @@ var init_createprompt = __esm(() => {
|
|
|
39488
39514
|
CreatePromptPromptsFormat$.inboundSchema = CreatePromptPromptsFormat$inboundSchema;
|
|
39489
39515
|
CreatePromptPromptsFormat$.outboundSchema = CreatePromptPromptsFormat$outboundSchema;
|
|
39490
39516
|
})(CreatePromptPromptsFormat$ ||= {});
|
|
39491
|
-
|
|
39492
|
-
|
|
39493
|
-
((
|
|
39494
|
-
|
|
39495
|
-
|
|
39496
|
-
})(
|
|
39497
|
-
|
|
39498
|
-
type:
|
|
39499
|
-
});
|
|
39500
|
-
|
|
39501
|
-
type:
|
|
39502
|
-
});
|
|
39503
|
-
((
|
|
39504
|
-
|
|
39505
|
-
|
|
39506
|
-
})(
|
|
39507
|
-
|
|
39508
|
-
|
|
39509
|
-
((
|
|
39510
|
-
|
|
39511
|
-
|
|
39512
|
-
})(
|
|
39517
|
+
CreatePromptResponseFormatPromptsResponse200ApplicationJSONType$inboundSchema = nativeEnumType(CreatePromptResponseFormatPromptsResponse200ApplicationJSONType);
|
|
39518
|
+
CreatePromptResponseFormatPromptsResponse200ApplicationJSONType$outboundSchema = CreatePromptResponseFormatPromptsResponse200ApplicationJSONType$inboundSchema;
|
|
39519
|
+
((CreatePromptResponseFormatPromptsResponse200ApplicationJSONType$) => {
|
|
39520
|
+
CreatePromptResponseFormatPromptsResponse200ApplicationJSONType$.inboundSchema = CreatePromptResponseFormatPromptsResponse200ApplicationJSONType$inboundSchema;
|
|
39521
|
+
CreatePromptResponseFormatPromptsResponse200ApplicationJSONType$.outboundSchema = CreatePromptResponseFormatPromptsResponse200ApplicationJSONType$outboundSchema;
|
|
39522
|
+
})(CreatePromptResponseFormatPromptsResponse200ApplicationJSONType$ ||= {});
|
|
39523
|
+
CreatePromptResponseFormat3$inboundSchema = objectType({
|
|
39524
|
+
type: CreatePromptResponseFormatPromptsResponse200ApplicationJSONType$inboundSchema
|
|
39525
|
+
});
|
|
39526
|
+
CreatePromptResponseFormat3$outboundSchema = objectType({
|
|
39527
|
+
type: CreatePromptResponseFormatPromptsResponse200ApplicationJSONType$outboundSchema
|
|
39528
|
+
});
|
|
39529
|
+
((CreatePromptResponseFormat3$) => {
|
|
39530
|
+
CreatePromptResponseFormat3$.inboundSchema = CreatePromptResponseFormat3$inboundSchema;
|
|
39531
|
+
CreatePromptResponseFormat3$.outboundSchema = CreatePromptResponseFormat3$outboundSchema;
|
|
39532
|
+
})(CreatePromptResponseFormat3$ ||= {});
|
|
39533
|
+
CreatePromptResponseFormatPromptsResponse200Type$inboundSchema = nativeEnumType(CreatePromptResponseFormatPromptsResponse200Type);
|
|
39534
|
+
CreatePromptResponseFormatPromptsResponse200Type$outboundSchema = CreatePromptResponseFormatPromptsResponse200Type$inboundSchema;
|
|
39535
|
+
((CreatePromptResponseFormatPromptsResponse200Type$) => {
|
|
39536
|
+
CreatePromptResponseFormatPromptsResponse200Type$.inboundSchema = CreatePromptResponseFormatPromptsResponse200Type$inboundSchema;
|
|
39537
|
+
CreatePromptResponseFormatPromptsResponse200Type$.outboundSchema = CreatePromptResponseFormatPromptsResponse200Type$outboundSchema;
|
|
39538
|
+
})(CreatePromptResponseFormatPromptsResponse200Type$ ||= {});
|
|
39513
39539
|
CreatePromptResponseFormatJsonSchema$inboundSchema = objectType({
|
|
39514
39540
|
name: stringType(),
|
|
39515
39541
|
strict: booleanType().optional(),
|
|
@@ -39524,33 +39550,51 @@ var init_createprompt = __esm(() => {
|
|
|
39524
39550
|
CreatePromptResponseFormatJsonSchema$.inboundSchema = CreatePromptResponseFormatJsonSchema$inboundSchema;
|
|
39525
39551
|
CreatePromptResponseFormatJsonSchema$.outboundSchema = CreatePromptResponseFormatJsonSchema$outboundSchema;
|
|
39526
39552
|
})(CreatePromptResponseFormatJsonSchema$ ||= {});
|
|
39527
|
-
|
|
39528
|
-
type:
|
|
39553
|
+
CreatePromptResponseFormat2$inboundSchema = objectType({
|
|
39554
|
+
type: CreatePromptResponseFormatPromptsResponse200Type$inboundSchema,
|
|
39529
39555
|
json_schema: lazyType(() => CreatePromptResponseFormatJsonSchema$inboundSchema)
|
|
39530
39556
|
}).transform((v2) => {
|
|
39531
39557
|
return remap(v2, {
|
|
39532
39558
|
json_schema: "jsonSchema"
|
|
39533
39559
|
});
|
|
39534
39560
|
});
|
|
39535
|
-
|
|
39536
|
-
type:
|
|
39561
|
+
CreatePromptResponseFormat2$outboundSchema = objectType({
|
|
39562
|
+
type: CreatePromptResponseFormatPromptsResponse200Type$outboundSchema,
|
|
39537
39563
|
jsonSchema: lazyType(() => CreatePromptResponseFormatJsonSchema$outboundSchema)
|
|
39538
39564
|
}).transform((v2) => {
|
|
39539
39565
|
return remap(v2, {
|
|
39540
39566
|
jsonSchema: "json_schema"
|
|
39541
39567
|
});
|
|
39542
39568
|
});
|
|
39569
|
+
((CreatePromptResponseFormat2$) => {
|
|
39570
|
+
CreatePromptResponseFormat2$.inboundSchema = CreatePromptResponseFormat2$inboundSchema;
|
|
39571
|
+
CreatePromptResponseFormat2$.outboundSchema = CreatePromptResponseFormat2$outboundSchema;
|
|
39572
|
+
})(CreatePromptResponseFormat2$ ||= {});
|
|
39573
|
+
CreatePromptResponseFormatPromptsResponseType$inboundSchema = nativeEnumType(CreatePromptResponseFormatPromptsResponseType);
|
|
39574
|
+
CreatePromptResponseFormatPromptsResponseType$outboundSchema = CreatePromptResponseFormatPromptsResponseType$inboundSchema;
|
|
39575
|
+
((CreatePromptResponseFormatPromptsResponseType$) => {
|
|
39576
|
+
CreatePromptResponseFormatPromptsResponseType$.inboundSchema = CreatePromptResponseFormatPromptsResponseType$inboundSchema;
|
|
39577
|
+
CreatePromptResponseFormatPromptsResponseType$.outboundSchema = CreatePromptResponseFormatPromptsResponseType$outboundSchema;
|
|
39578
|
+
})(CreatePromptResponseFormatPromptsResponseType$ ||= {});
|
|
39579
|
+
CreatePromptResponseFormat1$inboundSchema = objectType({
|
|
39580
|
+
type: CreatePromptResponseFormatPromptsResponseType$inboundSchema
|
|
39581
|
+
});
|
|
39582
|
+
CreatePromptResponseFormat1$outboundSchema = objectType({
|
|
39583
|
+
type: CreatePromptResponseFormatPromptsResponseType$outboundSchema
|
|
39584
|
+
});
|
|
39543
39585
|
((CreatePromptResponseFormat1$) => {
|
|
39544
39586
|
CreatePromptResponseFormat1$.inboundSchema = CreatePromptResponseFormat1$inboundSchema;
|
|
39545
39587
|
CreatePromptResponseFormat1$.outboundSchema = CreatePromptResponseFormat1$outboundSchema;
|
|
39546
39588
|
})(CreatePromptResponseFormat1$ ||= {});
|
|
39547
39589
|
CreatePromptResponseFormat$inboundSchema = unionType([
|
|
39590
|
+
lazyType(() => CreatePromptResponseFormat2$inboundSchema),
|
|
39548
39591
|
lazyType(() => CreatePromptResponseFormat1$inboundSchema),
|
|
39549
|
-
lazyType(() =>
|
|
39592
|
+
lazyType(() => CreatePromptResponseFormat3$inboundSchema)
|
|
39550
39593
|
]);
|
|
39551
39594
|
CreatePromptResponseFormat$outboundSchema = unionType([
|
|
39595
|
+
lazyType(() => CreatePromptResponseFormat2$outboundSchema),
|
|
39552
39596
|
lazyType(() => CreatePromptResponseFormat1$outboundSchema),
|
|
39553
|
-
lazyType(() =>
|
|
39597
|
+
lazyType(() => CreatePromptResponseFormat3$outboundSchema)
|
|
39554
39598
|
]);
|
|
39555
39599
|
((CreatePromptResponseFormat$) => {
|
|
39556
39600
|
CreatePromptResponseFormat$.inboundSchema = CreatePromptResponseFormat$inboundSchema;
|
|
@@ -39594,8 +39638,9 @@ var init_createprompt = __esm(() => {
|
|
|
39594
39638
|
quality: stringType().optional(),
|
|
39595
39639
|
style: stringType().optional(),
|
|
39596
39640
|
responseFormat: nullableType(unionType([
|
|
39641
|
+
lazyType(() => CreatePromptResponseFormat2$inboundSchema),
|
|
39597
39642
|
lazyType(() => CreatePromptResponseFormat1$inboundSchema),
|
|
39598
|
-
lazyType(() =>
|
|
39643
|
+
lazyType(() => CreatePromptResponseFormat3$inboundSchema)
|
|
39599
39644
|
])).optional(),
|
|
39600
39645
|
photoRealVersion: CreatePromptPhotoRealVersion$inboundSchema.optional(),
|
|
39601
39646
|
encoding_format: CreatePromptEncodingFormat$inboundSchema.optional(),
|
|
@@ -39621,8 +39666,9 @@ var init_createprompt = __esm(() => {
|
|
|
39621
39666
|
quality: stringType().optional(),
|
|
39622
39667
|
style: stringType().optional(),
|
|
39623
39668
|
responseFormat: nullableType(unionType([
|
|
39669
|
+
lazyType(() => CreatePromptResponseFormat2$outboundSchema),
|
|
39624
39670
|
lazyType(() => CreatePromptResponseFormat1$outboundSchema),
|
|
39625
|
-
lazyType(() =>
|
|
39671
|
+
lazyType(() => CreatePromptResponseFormat3$outboundSchema)
|
|
39626
39672
|
])).optional(),
|
|
39627
39673
|
photoRealVersion: CreatePromptPhotoRealVersion$outboundSchema.optional(),
|
|
39628
39674
|
encodingFormat: CreatePromptEncodingFormat$outboundSchema.optional(),
|
|
@@ -41343,7 +41389,7 @@ var init_deploymentcreatemetric = __esm(() => {
|
|
|
41343
41389
|
});
|
|
41344
41390
|
|
|
41345
41391
|
// src/models/operations/deploymentgetconfig.ts
|
|
41346
|
-
var DeploymentGetConfigPrefixMessagesDeploymentsRequestRole, DeploymentGetConfig2DeploymentsRequestRequestBodyType, DeploymentGetConfig2DeploymentsRequestType, DeploymentGetConfigPrefixMessagesDeploymentsRole, PrefixMessagesType, DeploymentGetConfigPrefixMessagesRole, DeploymentGetConfig2DeploymentsType, DeploymentGetConfig2Type, Format, TwoType, Detail, Type, PrefixMessagesRole, Role, DeploymentGetConfigMessagesDeploymentsRequestRequestBodyRole, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages4ContentType, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages4Type, DeploymentGetConfigMessagesDeploymentsRequestRole, MessagesType, DeploymentGetConfigMessagesDeploymentsRole, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages3Content4Type, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages3ContentType, TwoFormat, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages3Type, TwoDetail, DeploymentGetConfig2DeploymentsRequestRequestBodyMessagesType, DeploymentGetConfigMessagesRole, MessagesRole, DeploymentGetConfigType, DeploymentGetConfigRole, DeploymentGetConfig2DeploymentsResponse200ApplicationJSONType, DeploymentGetConfig2DeploymentsResponse200Type, DeploymentGetConfig2DeploymentsResponseType, DeploymentGetConfigDeploymentsResponseType, DeploymentGetConfigFormat, DeploymentGetConfigResponseFormatType, DeploymentGetConfigResponseFormatDeploymentsType, DeploymentGetConfigPhotoRealVersion, DeploymentGetConfigEncodingFormat, DeploymentGetConfigReasoningEffort, DeploymentGetConfigVerbosity, DeploymentGetConfigDeploymentsType, DeploymentGetConfigPrefixMessagesDeploymentsRequestRole$inboundSchema, DeploymentGetConfigPrefixMessagesDeploymentsRequestRole$outboundSchema, DeploymentGetConfigPrefixMessagesDeploymentsRequestRole$, DeploymentGetConfigPrefixMessagesContent$inboundSchema, DeploymentGetConfigPrefixMessagesContent$outboundSchema, DeploymentGetConfigPrefixMessagesContent$, ToolMessage$inboundSchema, ToolMessage$outboundSchema, ToolMessage$, DeploymentGetConfig2DeploymentsRequestRequestBodyType$inboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyType$outboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyType$, RefusalContentPart$inboundSchema, RefusalContentPart$outboundSchema, RefusalContentPart$, DeploymentGetConfig2DeploymentsRequestType$inboundSchema, DeploymentGetConfig2DeploymentsRequestType$outboundSchema, DeploymentGetConfig2DeploymentsRequestType$, TextContentPart$inboundSchema, TextContentPart$outboundSchema, TextContentPart$, Content2$inboundSchema, Content2$outboundSchema, Content2$, PrefixMessagesContent$inboundSchema, PrefixMessagesContent$outboundSchema, PrefixMessagesContent$, DeploymentGetConfigPrefixMessagesDeploymentsRole$inboundSchema, DeploymentGetConfigPrefixMessagesDeploymentsRole$outboundSchema, DeploymentGetConfigPrefixMessagesDeploymentsRole$, Audio$inboundSchema, Audio$outboundSchema, Audio$, PrefixMessagesType$inboundSchema, PrefixMessagesType$outboundSchema, PrefixMessagesType$, FunctionT$inboundSchema, FunctionT$outboundSchema, FunctionT$, ToolCalls$inboundSchema, ToolCalls$outboundSchema, ToolCalls$, AssistantMessage$inboundSchema, AssistantMessage$outboundSchema, AssistantMessage$, DeploymentGetConfigPrefixMessagesRole$inboundSchema, DeploymentGetConfigPrefixMessagesRole$outboundSchema, DeploymentGetConfigPrefixMessagesRole$, DeploymentGetConfig2DeploymentsType$inboundSchema, DeploymentGetConfig2DeploymentsType$outboundSchema, DeploymentGetConfig2DeploymentsType$, FileT$inboundSchema, FileT$outboundSchema, FileT$, Four$inboundSchema, Four$outboundSchema, Four$, DeploymentGetConfig2Type$inboundSchema, DeploymentGetConfig2Type$outboundSchema, DeploymentGetConfig2Type$, Format$inboundSchema, Format$outboundSchema, Format$, InputAudio$inboundSchema, InputAudio$outboundSchema, InputAudio$, Three$inboundSchema, Three$outboundSchema, Three$, TwoType$inboundSchema, TwoType$outboundSchema, TwoType$, Detail$inboundSchema, Detail$outboundSchema, Detail$, ImageUrl$inboundSchema, ImageUrl$outboundSchema, ImageUrl$, Two2$inboundSchema, Two2$outboundSchema, Two2$, Type$inboundSchema, Type$outboundSchema, Type$, One$inboundSchema, One$outboundSchema, One$, Two$inboundSchema, Two$outboundSchema, Two$, Content$inboundSchema, Content$outboundSchema, Content$, UserMessage$inboundSchema, UserMessage$outboundSchema, UserMessage$, PrefixMessagesRole$inboundSchema, PrefixMessagesRole$outboundSchema, PrefixMessagesRole$, SystemMessage$inboundSchema, SystemMessage$outboundSchema, SystemMessage$, Role$inboundSchema, Role$outboundSchema, Role$, DeveloperMessage$inboundSchema, DeveloperMessage$outboundSchema, DeveloperMessage$, PrefixMessages$inboundSchema, PrefixMessages$outboundSchema, PrefixMessages$, DeploymentGetConfigMessagesDeploymentsRequestRequestBodyRole$inboundSchema, DeploymentGetConfigMessagesDeploymentsRequestRequestBodyRole$outboundSchema, DeploymentGetConfigMessagesDeploymentsRequestRequestBodyRole$, DeploymentGetConfigMessagesDeploymentsContent$inboundSchema, DeploymentGetConfigMessagesDeploymentsContent$outboundSchema, DeploymentGetConfigMessagesDeploymentsContent$, MessagesToolMessage$inboundSchema, MessagesToolMessage$outboundSchema, MessagesToolMessage$, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages4ContentType$inboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages4ContentType$outboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages4ContentType$, TwoRefusalContentPart$inboundSchema, TwoRefusalContentPart$outboundSchema, TwoRefusalContentPart$, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages4Type$inboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages4Type$outboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages4Type$, TwoTextContentPart$inboundSchema, TwoTextContentPart$outboundSchema, TwoTextContentPart$, DeploymentGetConfigContentDeployments2$inboundSchema, DeploymentGetConfigContentDeployments2$outboundSchema, DeploymentGetConfigContentDeployments2$, DeploymentGetConfigMessagesContent$inboundSchema, DeploymentGetConfigMessagesContent$outboundSchema, DeploymentGetConfigMessagesContent$, DeploymentGetConfigMessagesDeploymentsRequestRole$inboundSchema, DeploymentGetConfigMessagesDeploymentsRequestRole$outboundSchema, DeploymentGetConfigMessagesDeploymentsRequestRole$, MessagesAudio$inboundSchema, MessagesAudio$outboundSchema, MessagesAudio$, MessagesType$inboundSchema, MessagesType$outboundSchema, MessagesType$, MessagesFunction$inboundSchema, MessagesFunction$outboundSchema, MessagesFunction$, MessagesToolCalls$inboundSchema, MessagesToolCalls$outboundSchema, MessagesToolCalls$, MessagesAssistantMessage$inboundSchema, MessagesAssistantMessage$outboundSchema, MessagesAssistantMessage$, DeploymentGetConfigMessagesDeploymentsRole$inboundSchema, DeploymentGetConfigMessagesDeploymentsRole$outboundSchema, DeploymentGetConfigMessagesDeploymentsRole$, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages3Content4Type$inboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages3Content4Type$outboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages3Content4Type$, TwoFile$inboundSchema, TwoFile$outboundSchema, TwoFile$, Two4$inboundSchema, Two4$outboundSchema, Two4$, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages3ContentType$inboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages3ContentType$outboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages3ContentType$, TwoFormat$inboundSchema, TwoFormat$outboundSchema, TwoFormat$, TwoInputAudio$inboundSchema, TwoInputAudio$outboundSchema, TwoInputAudio$, Two3$inboundSchema, Two3$outboundSchema, Two3$, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages3Type$inboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages3Type$outboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages3Type$, TwoDetail$inboundSchema, TwoDetail$outboundSchema, TwoDetail$, TwoImageUrl$inboundSchema, TwoImageUrl$outboundSchema, TwoImageUrl$, DeploymentGetConfig22$inboundSchema, DeploymentGetConfig22$outboundSchema, DeploymentGetConfig22$, DeploymentGetConfig2DeploymentsRequestRequestBodyMessagesType$inboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyMessagesType$outboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyMessagesType$, Two1$inboundSchema, Two1$outboundSchema, Two1$, DeploymentGetConfigContent2$inboundSchema, DeploymentGetConfigContent2$outboundSchema, DeploymentGetConfigContent2$, MessagesContent$inboundSchema, MessagesContent$outboundSchema, MessagesContent$, MessagesUserMessage$inboundSchema, MessagesUserMessage$outboundSchema, MessagesUserMessage$, DeploymentGetConfigMessagesRole$inboundSchema, DeploymentGetConfigMessagesRole$outboundSchema, DeploymentGetConfigMessagesRole$, MessagesSystemMessage$inboundSchema, MessagesSystemMessage$outboundSchema, MessagesSystemMessage$, MessagesRole$inboundSchema, MessagesRole$outboundSchema, MessagesRole$, MessagesDeveloperMessage$inboundSchema, MessagesDeveloperMessage$outboundSchema, MessagesDeveloperMessage$, Messages$inboundSchema, Messages$outboundSchema, Messages$, Metadata$inboundSchema, Metadata$outboundSchema, Metadata$, Documents$inboundSchema, Documents$outboundSchema, Documents$, InvokeOptions$inboundSchema, InvokeOptions$outboundSchema, InvokeOptions$, Thread$inboundSchema, Thread$outboundSchema, Thread$, OrExists$inboundSchema, OrExists$outboundSchema, OrExists$, DeploymentGetConfigOrNin$inboundSchema, DeploymentGetConfigOrNin$outboundSchema, DeploymentGetConfigOrNin$, OrNin$inboundSchema, OrNin$outboundSchema, OrNin$, DeploymentGetConfigOrIn$inboundSchema, DeploymentGetConfigOrIn$outboundSchema, DeploymentGetConfigOrIn$, OrIn$inboundSchema, OrIn$outboundSchema, OrIn$, OrLte$inboundSchema, OrLte$outboundSchema, OrLte$, OrLt$inboundSchema, OrLt$outboundSchema, OrLt$, OrGte$inboundSchema, OrGte$outboundSchema, OrGte$, Or3$inboundSchema, Or3$outboundSchema, Or3$, DeploymentGetConfigOrNe$inboundSchema, DeploymentGetConfigOrNe$outboundSchema, DeploymentGetConfigOrNe$, OrNe$inboundSchema, OrNe$outboundSchema, OrNe$, DeploymentGetConfigOrEq$inboundSchema, DeploymentGetConfigOrEq$outboundSchema, DeploymentGetConfigOrEq$, OrEq$inboundSchema, OrEq$outboundSchema, OrEq$, KnowledgeFilterOr$inboundSchema, KnowledgeFilterOr$outboundSchema, KnowledgeFilterOr$, Or$inboundSchema, Or$outboundSchema, Or$, AndExists$inboundSchema, AndExists$outboundSchema, AndExists$, DeploymentGetConfigAndNin$inboundSchema, DeploymentGetConfigAndNin$outboundSchema, DeploymentGetConfigAndNin$, AndNin$inboundSchema, AndNin$outboundSchema, AndNin$, DeploymentGetConfigAndIn$inboundSchema, DeploymentGetConfigAndIn$outboundSchema, DeploymentGetConfigAndIn$, AndIn$inboundSchema, AndIn$outboundSchema, AndIn$, AndLte$inboundSchema, AndLte$outboundSchema, AndLte$, AndLt$inboundSchema, AndLt$outboundSchema, AndLt$, AndGte$inboundSchema, AndGte$outboundSchema, AndGte$, And3$inboundSchema, And3$outboundSchema, And3$, DeploymentGetConfigAndNe$inboundSchema, DeploymentGetConfigAndNe$outboundSchema, DeploymentGetConfigAndNe$, AndNe$inboundSchema, AndNe$outboundSchema, AndNe$, DeploymentGetConfigAndEq$inboundSchema, DeploymentGetConfigAndEq$outboundSchema, DeploymentGetConfigAndEq$, AndEq$inboundSchema, AndEq$outboundSchema, AndEq$, KnowledgeFilterAnd$inboundSchema, KnowledgeFilterAnd$outboundSchema, KnowledgeFilterAnd$, And$inboundSchema, And$outboundSchema, And$, Exists$inboundSchema, Exists$outboundSchema, Exists$, OneNin$inboundSchema, OneNin$outboundSchema, OneNin$, Nin$inboundSchema, Nin$outboundSchema, Nin$, OneIn$inboundSchema, OneIn$outboundSchema, OneIn$, In$inboundSchema, In$outboundSchema, In$, Lte$inboundSchema, Lte$outboundSchema, Lte$, Lt$inboundSchema, Lt$outboundSchema, Lt$, Gte$inboundSchema, Gte$outboundSchema, Gte$, One3$inboundSchema, One3$outboundSchema, One3$, OneNe$inboundSchema, OneNe$outboundSchema, OneNe$, Ne$inboundSchema, Ne$outboundSchema, Ne$, OneEq$inboundSchema, OneEq$outboundSchema, OneEq$, Eq$inboundSchema, Eq$outboundSchema, Eq$, KnowledgeFilter1$inboundSchema, KnowledgeFilter1$outboundSchema, KnowledgeFilter1$, KnowledgeFilter$inboundSchema, KnowledgeFilter$outboundSchema, KnowledgeFilter$, DeploymentGetConfigRequestBody$inboundSchema, DeploymentGetConfigRequestBody$outboundSchema, DeploymentGetConfigRequestBody$, DeploymentGetConfigType$inboundSchema, DeploymentGetConfigType$outboundSchema, DeploymentGetConfigType$, DeploymentGetConfigRole$inboundSchema, DeploymentGetConfigRole$outboundSchema, DeploymentGetConfigRole$, DeploymentGetConfig2DeploymentsResponse200ApplicationJSONType$inboundSchema, DeploymentGetConfig2DeploymentsResponse200ApplicationJSONType$outboundSchema, DeploymentGetConfig2DeploymentsResponse200ApplicationJSONType$, DeploymentGetConfig2File$inboundSchema, DeploymentGetConfig2File$outboundSchema, DeploymentGetConfig2File$, DeploymentGetConfig23$inboundSchema, DeploymentGetConfig23$outboundSchema, DeploymentGetConfig23$, DeploymentGetConfig2DeploymentsResponse200Type$inboundSchema, DeploymentGetConfig2DeploymentsResponse200Type$outboundSchema, DeploymentGetConfig2DeploymentsResponse200Type$, DeploymentGetConfig2ImageUrl$inboundSchema, DeploymentGetConfig2ImageUrl$outboundSchema, DeploymentGetConfig2ImageUrl$, DeploymentGetConfig2Deployments2$inboundSchema, DeploymentGetConfig2Deployments2$outboundSchema, DeploymentGetConfig2Deployments2$, DeploymentGetConfig2DeploymentsResponseType$inboundSchema, DeploymentGetConfig2DeploymentsResponseType$outboundSchema, DeploymentGetConfig2DeploymentsResponseType$, DeploymentGetConfig21$inboundSchema, DeploymentGetConfig21$outboundSchema, DeploymentGetConfig21$, DeploymentGetConfigContentDeploymentsResponse2$inboundSchema, DeploymentGetConfigContentDeploymentsResponse2$outboundSchema, DeploymentGetConfigContentDeploymentsResponse2$, DeploymentGetConfigContent$inboundSchema, DeploymentGetConfigContent$outboundSchema, DeploymentGetConfigContent$, DeploymentGetConfigDeploymentsResponseType$inboundSchema, DeploymentGetConfigDeploymentsResponseType$outboundSchema, DeploymentGetConfigDeploymentsResponseType$, DeploymentGetConfigDeploymentsFunction$inboundSchema, DeploymentGetConfigDeploymentsFunction$outboundSchema, DeploymentGetConfigDeploymentsFunction$, DeploymentGetConfigToolCalls$inboundSchema, DeploymentGetConfigToolCalls$outboundSchema, DeploymentGetConfigToolCalls$, DeploymentGetConfigMessages$inboundSchema, DeploymentGetConfigMessages$outboundSchema, DeploymentGetConfigMessages$, DeploymentGetConfigFormat$inboundSchema, DeploymentGetConfigFormat$outboundSchema, DeploymentGetConfigFormat$, DeploymentGetConfigResponseFormatType$inboundSchema, DeploymentGetConfigResponseFormatType$outboundSchema, DeploymentGetConfigResponseFormatType$, DeploymentGetConfigResponseFormat2$inboundSchema, DeploymentGetConfigResponseFormat2$outboundSchema, DeploymentGetConfigResponseFormat2$, DeploymentGetConfigResponseFormatDeploymentsType$inboundSchema, DeploymentGetConfigResponseFormatDeploymentsType$outboundSchema, DeploymentGetConfigResponseFormatDeploymentsType$, DeploymentGetConfigResponseFormatJsonSchema$inboundSchema, DeploymentGetConfigResponseFormatJsonSchema$outboundSchema, DeploymentGetConfigResponseFormatJsonSchema$, DeploymentGetConfigResponseFormat1$inboundSchema, DeploymentGetConfigResponseFormat1$outboundSchema, DeploymentGetConfigResponseFormat1$, DeploymentGetConfigResponseFormat$inboundSchema, DeploymentGetConfigResponseFormat$outboundSchema, DeploymentGetConfigResponseFormat$, DeploymentGetConfigPhotoRealVersion$inboundSchema, DeploymentGetConfigPhotoRealVersion$outboundSchema, DeploymentGetConfigPhotoRealVersion$, DeploymentGetConfigEncodingFormat$inboundSchema, DeploymentGetConfigEncodingFormat$outboundSchema, DeploymentGetConfigEncodingFormat$, DeploymentGetConfigReasoningEffort$inboundSchema, DeploymentGetConfigReasoningEffort$outboundSchema, DeploymentGetConfigReasoningEffort$, DeploymentGetConfigVerbosity$inboundSchema, DeploymentGetConfigVerbosity$outboundSchema, DeploymentGetConfigVerbosity$, ParametersT$inboundSchema, ParametersT$outboundSchema, ParametersT$, DeploymentGetConfigDeploymentsType$inboundSchema, DeploymentGetConfigDeploymentsType$outboundSchema, DeploymentGetConfigDeploymentsType$, DeploymentGetConfigFunction$inboundSchema, DeploymentGetConfigFunction$outboundSchema, DeploymentGetConfigFunction$, Tools$inboundSchema, Tools$outboundSchema, Tools$, DeploymentGetConfigResponseBody$inboundSchema, DeploymentGetConfigResponseBody$outboundSchema, DeploymentGetConfigResponseBody$;
|
|
41392
|
+
var DeploymentGetConfigPrefixMessagesDeploymentsRequestRole, DeploymentGetConfig2DeploymentsRequestRequestBodyType, DeploymentGetConfig2DeploymentsRequestType, DeploymentGetConfigPrefixMessagesDeploymentsRole, PrefixMessagesType, DeploymentGetConfigPrefixMessagesRole, DeploymentGetConfig2DeploymentsType, DeploymentGetConfig2Type, Format, TwoType, Detail, Type, PrefixMessagesRole, Role, DeploymentGetConfigMessagesDeploymentsRequestRequestBodyRole, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages4ContentType, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages4Type, DeploymentGetConfigMessagesDeploymentsRequestRole, MessagesType, DeploymentGetConfigMessagesDeploymentsRole, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages3Content4Type, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages3ContentType, TwoFormat, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages3Type, TwoDetail, DeploymentGetConfig2DeploymentsRequestRequestBodyMessagesType, DeploymentGetConfigMessagesRole, MessagesRole, DeploymentGetConfigType, DeploymentGetConfigRole, DeploymentGetConfig2DeploymentsResponse200ApplicationJSONType, DeploymentGetConfig2DeploymentsResponse200Type, DeploymentGetConfig2DeploymentsResponseType, DeploymentGetConfigDeploymentsResponseType, DeploymentGetConfigFormat, DeploymentGetConfigResponseFormatDeploymentsType, DeploymentGetConfigResponseFormatType, DeploymentGetConfigResponseFormatDeploymentsResponseType, DeploymentGetConfigPhotoRealVersion, DeploymentGetConfigEncodingFormat, DeploymentGetConfigReasoningEffort, DeploymentGetConfigVerbosity, DeploymentGetConfigDeploymentsType, DeploymentGetConfigPrefixMessagesDeploymentsRequestRole$inboundSchema, DeploymentGetConfigPrefixMessagesDeploymentsRequestRole$outboundSchema, DeploymentGetConfigPrefixMessagesDeploymentsRequestRole$, DeploymentGetConfigPrefixMessagesContent$inboundSchema, DeploymentGetConfigPrefixMessagesContent$outboundSchema, DeploymentGetConfigPrefixMessagesContent$, ToolMessage$inboundSchema, ToolMessage$outboundSchema, ToolMessage$, DeploymentGetConfig2DeploymentsRequestRequestBodyType$inboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyType$outboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyType$, RefusalContentPart$inboundSchema, RefusalContentPart$outboundSchema, RefusalContentPart$, DeploymentGetConfig2DeploymentsRequestType$inboundSchema, DeploymentGetConfig2DeploymentsRequestType$outboundSchema, DeploymentGetConfig2DeploymentsRequestType$, TextContentPart$inboundSchema, TextContentPart$outboundSchema, TextContentPart$, Content2$inboundSchema, Content2$outboundSchema, Content2$, PrefixMessagesContent$inboundSchema, PrefixMessagesContent$outboundSchema, PrefixMessagesContent$, DeploymentGetConfigPrefixMessagesDeploymentsRole$inboundSchema, DeploymentGetConfigPrefixMessagesDeploymentsRole$outboundSchema, DeploymentGetConfigPrefixMessagesDeploymentsRole$, Audio$inboundSchema, Audio$outboundSchema, Audio$, PrefixMessagesType$inboundSchema, PrefixMessagesType$outboundSchema, PrefixMessagesType$, FunctionT$inboundSchema, FunctionT$outboundSchema, FunctionT$, ToolCalls$inboundSchema, ToolCalls$outboundSchema, ToolCalls$, AssistantMessage$inboundSchema, AssistantMessage$outboundSchema, AssistantMessage$, DeploymentGetConfigPrefixMessagesRole$inboundSchema, DeploymentGetConfigPrefixMessagesRole$outboundSchema, DeploymentGetConfigPrefixMessagesRole$, DeploymentGetConfig2DeploymentsType$inboundSchema, DeploymentGetConfig2DeploymentsType$outboundSchema, DeploymentGetConfig2DeploymentsType$, FileT$inboundSchema, FileT$outboundSchema, FileT$, Four$inboundSchema, Four$outboundSchema, Four$, DeploymentGetConfig2Type$inboundSchema, DeploymentGetConfig2Type$outboundSchema, DeploymentGetConfig2Type$, Format$inboundSchema, Format$outboundSchema, Format$, InputAudio$inboundSchema, InputAudio$outboundSchema, InputAudio$, Three$inboundSchema, Three$outboundSchema, Three$, TwoType$inboundSchema, TwoType$outboundSchema, TwoType$, Detail$inboundSchema, Detail$outboundSchema, Detail$, ImageUrl$inboundSchema, ImageUrl$outboundSchema, ImageUrl$, Two2$inboundSchema, Two2$outboundSchema, Two2$, Type$inboundSchema, Type$outboundSchema, Type$, One$inboundSchema, One$outboundSchema, One$, Two$inboundSchema, Two$outboundSchema, Two$, Content$inboundSchema, Content$outboundSchema, Content$, UserMessage$inboundSchema, UserMessage$outboundSchema, UserMessage$, PrefixMessagesRole$inboundSchema, PrefixMessagesRole$outboundSchema, PrefixMessagesRole$, SystemMessage$inboundSchema, SystemMessage$outboundSchema, SystemMessage$, Role$inboundSchema, Role$outboundSchema, Role$, DeveloperMessage$inboundSchema, DeveloperMessage$outboundSchema, DeveloperMessage$, PrefixMessages$inboundSchema, PrefixMessages$outboundSchema, PrefixMessages$, DeploymentGetConfigMessagesDeploymentsRequestRequestBodyRole$inboundSchema, DeploymentGetConfigMessagesDeploymentsRequestRequestBodyRole$outboundSchema, DeploymentGetConfigMessagesDeploymentsRequestRequestBodyRole$, DeploymentGetConfigMessagesDeploymentsContent$inboundSchema, DeploymentGetConfigMessagesDeploymentsContent$outboundSchema, DeploymentGetConfigMessagesDeploymentsContent$, MessagesToolMessage$inboundSchema, MessagesToolMessage$outboundSchema, MessagesToolMessage$, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages4ContentType$inboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages4ContentType$outboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages4ContentType$, TwoRefusalContentPart$inboundSchema, TwoRefusalContentPart$outboundSchema, TwoRefusalContentPart$, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages4Type$inboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages4Type$outboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages4Type$, TwoTextContentPart$inboundSchema, TwoTextContentPart$outboundSchema, TwoTextContentPart$, DeploymentGetConfigContentDeployments2$inboundSchema, DeploymentGetConfigContentDeployments2$outboundSchema, DeploymentGetConfigContentDeployments2$, DeploymentGetConfigMessagesContent$inboundSchema, DeploymentGetConfigMessagesContent$outboundSchema, DeploymentGetConfigMessagesContent$, DeploymentGetConfigMessagesDeploymentsRequestRole$inboundSchema, DeploymentGetConfigMessagesDeploymentsRequestRole$outboundSchema, DeploymentGetConfigMessagesDeploymentsRequestRole$, MessagesAudio$inboundSchema, MessagesAudio$outboundSchema, MessagesAudio$, MessagesType$inboundSchema, MessagesType$outboundSchema, MessagesType$, MessagesFunction$inboundSchema, MessagesFunction$outboundSchema, MessagesFunction$, MessagesToolCalls$inboundSchema, MessagesToolCalls$outboundSchema, MessagesToolCalls$, MessagesAssistantMessage$inboundSchema, MessagesAssistantMessage$outboundSchema, MessagesAssistantMessage$, DeploymentGetConfigMessagesDeploymentsRole$inboundSchema, DeploymentGetConfigMessagesDeploymentsRole$outboundSchema, DeploymentGetConfigMessagesDeploymentsRole$, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages3Content4Type$inboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages3Content4Type$outboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages3Content4Type$, TwoFile$inboundSchema, TwoFile$outboundSchema, TwoFile$, Two4$inboundSchema, Two4$outboundSchema, Two4$, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages3ContentType$inboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages3ContentType$outboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages3ContentType$, TwoFormat$inboundSchema, TwoFormat$outboundSchema, TwoFormat$, TwoInputAudio$inboundSchema, TwoInputAudio$outboundSchema, TwoInputAudio$, Two3$inboundSchema, Two3$outboundSchema, Two3$, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages3Type$inboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages3Type$outboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages3Type$, TwoDetail$inboundSchema, TwoDetail$outboundSchema, TwoDetail$, TwoImageUrl$inboundSchema, TwoImageUrl$outboundSchema, TwoImageUrl$, DeploymentGetConfig22$inboundSchema, DeploymentGetConfig22$outboundSchema, DeploymentGetConfig22$, DeploymentGetConfig2DeploymentsRequestRequestBodyMessagesType$inboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyMessagesType$outboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyMessagesType$, Two1$inboundSchema, Two1$outboundSchema, Two1$, DeploymentGetConfigContent2$inboundSchema, DeploymentGetConfigContent2$outboundSchema, DeploymentGetConfigContent2$, MessagesContent$inboundSchema, MessagesContent$outboundSchema, MessagesContent$, MessagesUserMessage$inboundSchema, MessagesUserMessage$outboundSchema, MessagesUserMessage$, DeploymentGetConfigMessagesRole$inboundSchema, DeploymentGetConfigMessagesRole$outboundSchema, DeploymentGetConfigMessagesRole$, MessagesSystemMessage$inboundSchema, MessagesSystemMessage$outboundSchema, MessagesSystemMessage$, MessagesRole$inboundSchema, MessagesRole$outboundSchema, MessagesRole$, MessagesDeveloperMessage$inboundSchema, MessagesDeveloperMessage$outboundSchema, MessagesDeveloperMessage$, Messages$inboundSchema, Messages$outboundSchema, Messages$, Metadata$inboundSchema, Metadata$outboundSchema, Metadata$, Documents$inboundSchema, Documents$outboundSchema, Documents$, InvokeOptions$inboundSchema, InvokeOptions$outboundSchema, InvokeOptions$, Thread$inboundSchema, Thread$outboundSchema, Thread$, OrExists$inboundSchema, OrExists$outboundSchema, OrExists$, DeploymentGetConfigOrNin$inboundSchema, DeploymentGetConfigOrNin$outboundSchema, DeploymentGetConfigOrNin$, OrNin$inboundSchema, OrNin$outboundSchema, OrNin$, DeploymentGetConfigOrIn$inboundSchema, DeploymentGetConfigOrIn$outboundSchema, DeploymentGetConfigOrIn$, OrIn$inboundSchema, OrIn$outboundSchema, OrIn$, OrLte$inboundSchema, OrLte$outboundSchema, OrLte$, OrLt$inboundSchema, OrLt$outboundSchema, OrLt$, OrGte$inboundSchema, OrGte$outboundSchema, OrGte$, Or3$inboundSchema, Or3$outboundSchema, Or3$, DeploymentGetConfigOrNe$inboundSchema, DeploymentGetConfigOrNe$outboundSchema, DeploymentGetConfigOrNe$, OrNe$inboundSchema, OrNe$outboundSchema, OrNe$, DeploymentGetConfigOrEq$inboundSchema, DeploymentGetConfigOrEq$outboundSchema, DeploymentGetConfigOrEq$, OrEq$inboundSchema, OrEq$outboundSchema, OrEq$, KnowledgeFilterOr$inboundSchema, KnowledgeFilterOr$outboundSchema, KnowledgeFilterOr$, Or$inboundSchema, Or$outboundSchema, Or$, AndExists$inboundSchema, AndExists$outboundSchema, AndExists$, DeploymentGetConfigAndNin$inboundSchema, DeploymentGetConfigAndNin$outboundSchema, DeploymentGetConfigAndNin$, AndNin$inboundSchema, AndNin$outboundSchema, AndNin$, DeploymentGetConfigAndIn$inboundSchema, DeploymentGetConfigAndIn$outboundSchema, DeploymentGetConfigAndIn$, AndIn$inboundSchema, AndIn$outboundSchema, AndIn$, AndLte$inboundSchema, AndLte$outboundSchema, AndLte$, AndLt$inboundSchema, AndLt$outboundSchema, AndLt$, AndGte$inboundSchema, AndGte$outboundSchema, AndGte$, And3$inboundSchema, And3$outboundSchema, And3$, DeploymentGetConfigAndNe$inboundSchema, DeploymentGetConfigAndNe$outboundSchema, DeploymentGetConfigAndNe$, AndNe$inboundSchema, AndNe$outboundSchema, AndNe$, DeploymentGetConfigAndEq$inboundSchema, DeploymentGetConfigAndEq$outboundSchema, DeploymentGetConfigAndEq$, AndEq$inboundSchema, AndEq$outboundSchema, AndEq$, KnowledgeFilterAnd$inboundSchema, KnowledgeFilterAnd$outboundSchema, KnowledgeFilterAnd$, And$inboundSchema, And$outboundSchema, And$, Exists$inboundSchema, Exists$outboundSchema, Exists$, OneNin$inboundSchema, OneNin$outboundSchema, OneNin$, Nin$inboundSchema, Nin$outboundSchema, Nin$, OneIn$inboundSchema, OneIn$outboundSchema, OneIn$, In$inboundSchema, In$outboundSchema, In$, Lte$inboundSchema, Lte$outboundSchema, Lte$, Lt$inboundSchema, Lt$outboundSchema, Lt$, Gte$inboundSchema, Gte$outboundSchema, Gte$, One3$inboundSchema, One3$outboundSchema, One3$, OneNe$inboundSchema, OneNe$outboundSchema, OneNe$, Ne$inboundSchema, Ne$outboundSchema, Ne$, OneEq$inboundSchema, OneEq$outboundSchema, OneEq$, Eq$inboundSchema, Eq$outboundSchema, Eq$, KnowledgeFilter1$inboundSchema, KnowledgeFilter1$outboundSchema, KnowledgeFilter1$, KnowledgeFilter$inboundSchema, KnowledgeFilter$outboundSchema, KnowledgeFilter$, DeploymentGetConfigRequestBody$inboundSchema, DeploymentGetConfigRequestBody$outboundSchema, DeploymentGetConfigRequestBody$, DeploymentGetConfigType$inboundSchema, DeploymentGetConfigType$outboundSchema, DeploymentGetConfigType$, DeploymentGetConfigRole$inboundSchema, DeploymentGetConfigRole$outboundSchema, DeploymentGetConfigRole$, DeploymentGetConfig2DeploymentsResponse200ApplicationJSONType$inboundSchema, DeploymentGetConfig2DeploymentsResponse200ApplicationJSONType$outboundSchema, DeploymentGetConfig2DeploymentsResponse200ApplicationJSONType$, DeploymentGetConfig2File$inboundSchema, DeploymentGetConfig2File$outboundSchema, DeploymentGetConfig2File$, DeploymentGetConfig23$inboundSchema, DeploymentGetConfig23$outboundSchema, DeploymentGetConfig23$, DeploymentGetConfig2DeploymentsResponse200Type$inboundSchema, DeploymentGetConfig2DeploymentsResponse200Type$outboundSchema, DeploymentGetConfig2DeploymentsResponse200Type$, DeploymentGetConfig2ImageUrl$inboundSchema, DeploymentGetConfig2ImageUrl$outboundSchema, DeploymentGetConfig2ImageUrl$, DeploymentGetConfig2Deployments2$inboundSchema, DeploymentGetConfig2Deployments2$outboundSchema, DeploymentGetConfig2Deployments2$, DeploymentGetConfig2DeploymentsResponseType$inboundSchema, DeploymentGetConfig2DeploymentsResponseType$outboundSchema, DeploymentGetConfig2DeploymentsResponseType$, DeploymentGetConfig21$inboundSchema, DeploymentGetConfig21$outboundSchema, DeploymentGetConfig21$, DeploymentGetConfigContentDeploymentsResponse2$inboundSchema, DeploymentGetConfigContentDeploymentsResponse2$outboundSchema, DeploymentGetConfigContentDeploymentsResponse2$, DeploymentGetConfigContent$inboundSchema, DeploymentGetConfigContent$outboundSchema, DeploymentGetConfigContent$, DeploymentGetConfigDeploymentsResponseType$inboundSchema, DeploymentGetConfigDeploymentsResponseType$outboundSchema, DeploymentGetConfigDeploymentsResponseType$, DeploymentGetConfigDeploymentsFunction$inboundSchema, DeploymentGetConfigDeploymentsFunction$outboundSchema, DeploymentGetConfigDeploymentsFunction$, DeploymentGetConfigToolCalls$inboundSchema, DeploymentGetConfigToolCalls$outboundSchema, DeploymentGetConfigToolCalls$, DeploymentGetConfigMessages$inboundSchema, DeploymentGetConfigMessages$outboundSchema, DeploymentGetConfigMessages$, DeploymentGetConfigFormat$inboundSchema, DeploymentGetConfigFormat$outboundSchema, DeploymentGetConfigFormat$, DeploymentGetConfigResponseFormatDeploymentsType$inboundSchema, DeploymentGetConfigResponseFormatDeploymentsType$outboundSchema, DeploymentGetConfigResponseFormatDeploymentsType$, DeploymentGetConfigResponseFormat3$inboundSchema, DeploymentGetConfigResponseFormat3$outboundSchema, DeploymentGetConfigResponseFormat3$, DeploymentGetConfigResponseFormatType$inboundSchema, DeploymentGetConfigResponseFormatType$outboundSchema, DeploymentGetConfigResponseFormatType$, DeploymentGetConfigResponseFormatJsonSchema$inboundSchema, DeploymentGetConfigResponseFormatJsonSchema$outboundSchema, DeploymentGetConfigResponseFormatJsonSchema$, DeploymentGetConfigResponseFormat2$inboundSchema, DeploymentGetConfigResponseFormat2$outboundSchema, DeploymentGetConfigResponseFormat2$, DeploymentGetConfigResponseFormatDeploymentsResponseType$inboundSchema, DeploymentGetConfigResponseFormatDeploymentsResponseType$outboundSchema, DeploymentGetConfigResponseFormatDeploymentsResponseType$, DeploymentGetConfigResponseFormat1$inboundSchema, DeploymentGetConfigResponseFormat1$outboundSchema, DeploymentGetConfigResponseFormat1$, DeploymentGetConfigResponseFormat$inboundSchema, DeploymentGetConfigResponseFormat$outboundSchema, DeploymentGetConfigResponseFormat$, DeploymentGetConfigPhotoRealVersion$inboundSchema, DeploymentGetConfigPhotoRealVersion$outboundSchema, DeploymentGetConfigPhotoRealVersion$, DeploymentGetConfigEncodingFormat$inboundSchema, DeploymentGetConfigEncodingFormat$outboundSchema, DeploymentGetConfigEncodingFormat$, DeploymentGetConfigReasoningEffort$inboundSchema, DeploymentGetConfigReasoningEffort$outboundSchema, DeploymentGetConfigReasoningEffort$, DeploymentGetConfigVerbosity$inboundSchema, DeploymentGetConfigVerbosity$outboundSchema, DeploymentGetConfigVerbosity$, ParametersT$inboundSchema, ParametersT$outboundSchema, ParametersT$, DeploymentGetConfigDeploymentsType$inboundSchema, DeploymentGetConfigDeploymentsType$outboundSchema, DeploymentGetConfigDeploymentsType$, DeploymentGetConfigFunction$inboundSchema, DeploymentGetConfigFunction$outboundSchema, DeploymentGetConfigFunction$, Tools$inboundSchema, Tools$outboundSchema, Tools$, DeploymentGetConfigResponseBody$inboundSchema, DeploymentGetConfigResponseBody$outboundSchema, DeploymentGetConfigResponseBody$;
|
|
41347
41393
|
var init_deploymentgetconfig = __esm(() => {
|
|
41348
41394
|
init_esm();
|
|
41349
41395
|
init_primitives();
|
|
@@ -41476,12 +41522,15 @@ var init_deploymentgetconfig = __esm(() => {
|
|
|
41476
41522
|
Text: "text",
|
|
41477
41523
|
JsonObject: "json_object"
|
|
41478
41524
|
};
|
|
41479
|
-
|
|
41525
|
+
DeploymentGetConfigResponseFormatDeploymentsType = {
|
|
41480
41526
|
JsonObject: "json_object"
|
|
41481
41527
|
};
|
|
41482
|
-
|
|
41528
|
+
DeploymentGetConfigResponseFormatType = {
|
|
41483
41529
|
JsonSchema: "json_schema"
|
|
41484
41530
|
};
|
|
41531
|
+
DeploymentGetConfigResponseFormatDeploymentsResponseType = {
|
|
41532
|
+
Text: "text"
|
|
41533
|
+
};
|
|
41485
41534
|
DeploymentGetConfigPhotoRealVersion = {
|
|
41486
41535
|
V1: "v1",
|
|
41487
41536
|
V2: "v2"
|
|
@@ -43360,28 +43409,28 @@ var init_deploymentgetconfig = __esm(() => {
|
|
|
43360
43409
|
DeploymentGetConfigFormat$.inboundSchema = DeploymentGetConfigFormat$inboundSchema;
|
|
43361
43410
|
DeploymentGetConfigFormat$.outboundSchema = DeploymentGetConfigFormat$outboundSchema;
|
|
43362
43411
|
})(DeploymentGetConfigFormat$ ||= {});
|
|
43363
|
-
DeploymentGetConfigResponseFormatType$inboundSchema = nativeEnumType(DeploymentGetConfigResponseFormatType);
|
|
43364
|
-
DeploymentGetConfigResponseFormatType$outboundSchema = DeploymentGetConfigResponseFormatType$inboundSchema;
|
|
43365
|
-
((DeploymentGetConfigResponseFormatType$) => {
|
|
43366
|
-
DeploymentGetConfigResponseFormatType$.inboundSchema = DeploymentGetConfigResponseFormatType$inboundSchema;
|
|
43367
|
-
DeploymentGetConfigResponseFormatType$.outboundSchema = DeploymentGetConfigResponseFormatType$outboundSchema;
|
|
43368
|
-
})(DeploymentGetConfigResponseFormatType$ ||= {});
|
|
43369
|
-
DeploymentGetConfigResponseFormat2$inboundSchema = objectType({
|
|
43370
|
-
type: DeploymentGetConfigResponseFormatType$inboundSchema
|
|
43371
|
-
});
|
|
43372
|
-
DeploymentGetConfigResponseFormat2$outboundSchema = objectType({
|
|
43373
|
-
type: DeploymentGetConfigResponseFormatType$outboundSchema
|
|
43374
|
-
});
|
|
43375
|
-
((DeploymentGetConfigResponseFormat2$) => {
|
|
43376
|
-
DeploymentGetConfigResponseFormat2$.inboundSchema = DeploymentGetConfigResponseFormat2$inboundSchema;
|
|
43377
|
-
DeploymentGetConfigResponseFormat2$.outboundSchema = DeploymentGetConfigResponseFormat2$outboundSchema;
|
|
43378
|
-
})(DeploymentGetConfigResponseFormat2$ ||= {});
|
|
43379
43412
|
DeploymentGetConfigResponseFormatDeploymentsType$inboundSchema = nativeEnumType(DeploymentGetConfigResponseFormatDeploymentsType);
|
|
43380
43413
|
DeploymentGetConfigResponseFormatDeploymentsType$outboundSchema = DeploymentGetConfigResponseFormatDeploymentsType$inboundSchema;
|
|
43381
43414
|
((DeploymentGetConfigResponseFormatDeploymentsType$) => {
|
|
43382
43415
|
DeploymentGetConfigResponseFormatDeploymentsType$.inboundSchema = DeploymentGetConfigResponseFormatDeploymentsType$inboundSchema;
|
|
43383
43416
|
DeploymentGetConfigResponseFormatDeploymentsType$.outboundSchema = DeploymentGetConfigResponseFormatDeploymentsType$outboundSchema;
|
|
43384
43417
|
})(DeploymentGetConfigResponseFormatDeploymentsType$ ||= {});
|
|
43418
|
+
DeploymentGetConfigResponseFormat3$inboundSchema = objectType({
|
|
43419
|
+
type: DeploymentGetConfigResponseFormatDeploymentsType$inboundSchema
|
|
43420
|
+
});
|
|
43421
|
+
DeploymentGetConfigResponseFormat3$outboundSchema = objectType({
|
|
43422
|
+
type: DeploymentGetConfigResponseFormatDeploymentsType$outboundSchema
|
|
43423
|
+
});
|
|
43424
|
+
((DeploymentGetConfigResponseFormat3$) => {
|
|
43425
|
+
DeploymentGetConfigResponseFormat3$.inboundSchema = DeploymentGetConfigResponseFormat3$inboundSchema;
|
|
43426
|
+
DeploymentGetConfigResponseFormat3$.outboundSchema = DeploymentGetConfigResponseFormat3$outboundSchema;
|
|
43427
|
+
})(DeploymentGetConfigResponseFormat3$ ||= {});
|
|
43428
|
+
DeploymentGetConfigResponseFormatType$inboundSchema = nativeEnumType(DeploymentGetConfigResponseFormatType);
|
|
43429
|
+
DeploymentGetConfigResponseFormatType$outboundSchema = DeploymentGetConfigResponseFormatType$inboundSchema;
|
|
43430
|
+
((DeploymentGetConfigResponseFormatType$) => {
|
|
43431
|
+
DeploymentGetConfigResponseFormatType$.inboundSchema = DeploymentGetConfigResponseFormatType$inboundSchema;
|
|
43432
|
+
DeploymentGetConfigResponseFormatType$.outboundSchema = DeploymentGetConfigResponseFormatType$outboundSchema;
|
|
43433
|
+
})(DeploymentGetConfigResponseFormatType$ ||= {});
|
|
43385
43434
|
DeploymentGetConfigResponseFormatJsonSchema$inboundSchema = objectType({
|
|
43386
43435
|
name: stringType(),
|
|
43387
43436
|
strict: booleanType().optional(),
|
|
@@ -43396,33 +43445,51 @@ var init_deploymentgetconfig = __esm(() => {
|
|
|
43396
43445
|
DeploymentGetConfigResponseFormatJsonSchema$.inboundSchema = DeploymentGetConfigResponseFormatJsonSchema$inboundSchema;
|
|
43397
43446
|
DeploymentGetConfigResponseFormatJsonSchema$.outboundSchema = DeploymentGetConfigResponseFormatJsonSchema$outboundSchema;
|
|
43398
43447
|
})(DeploymentGetConfigResponseFormatJsonSchema$ ||= {});
|
|
43399
|
-
|
|
43400
|
-
type:
|
|
43448
|
+
DeploymentGetConfigResponseFormat2$inboundSchema = objectType({
|
|
43449
|
+
type: DeploymentGetConfigResponseFormatType$inboundSchema,
|
|
43401
43450
|
json_schema: lazyType(() => DeploymentGetConfigResponseFormatJsonSchema$inboundSchema)
|
|
43402
43451
|
}).transform((v2) => {
|
|
43403
43452
|
return remap(v2, {
|
|
43404
43453
|
json_schema: "jsonSchema"
|
|
43405
43454
|
});
|
|
43406
43455
|
});
|
|
43407
|
-
|
|
43408
|
-
type:
|
|
43456
|
+
DeploymentGetConfigResponseFormat2$outboundSchema = objectType({
|
|
43457
|
+
type: DeploymentGetConfigResponseFormatType$outboundSchema,
|
|
43409
43458
|
jsonSchema: lazyType(() => DeploymentGetConfigResponseFormatJsonSchema$outboundSchema)
|
|
43410
43459
|
}).transform((v2) => {
|
|
43411
43460
|
return remap(v2, {
|
|
43412
43461
|
jsonSchema: "json_schema"
|
|
43413
43462
|
});
|
|
43414
43463
|
});
|
|
43464
|
+
((DeploymentGetConfigResponseFormat2$) => {
|
|
43465
|
+
DeploymentGetConfigResponseFormat2$.inboundSchema = DeploymentGetConfigResponseFormat2$inboundSchema;
|
|
43466
|
+
DeploymentGetConfigResponseFormat2$.outboundSchema = DeploymentGetConfigResponseFormat2$outboundSchema;
|
|
43467
|
+
})(DeploymentGetConfigResponseFormat2$ ||= {});
|
|
43468
|
+
DeploymentGetConfigResponseFormatDeploymentsResponseType$inboundSchema = nativeEnumType(DeploymentGetConfigResponseFormatDeploymentsResponseType);
|
|
43469
|
+
DeploymentGetConfigResponseFormatDeploymentsResponseType$outboundSchema = DeploymentGetConfigResponseFormatDeploymentsResponseType$inboundSchema;
|
|
43470
|
+
((DeploymentGetConfigResponseFormatDeploymentsResponseType$) => {
|
|
43471
|
+
DeploymentGetConfigResponseFormatDeploymentsResponseType$.inboundSchema = DeploymentGetConfigResponseFormatDeploymentsResponseType$inboundSchema;
|
|
43472
|
+
DeploymentGetConfigResponseFormatDeploymentsResponseType$.outboundSchema = DeploymentGetConfigResponseFormatDeploymentsResponseType$outboundSchema;
|
|
43473
|
+
})(DeploymentGetConfigResponseFormatDeploymentsResponseType$ ||= {});
|
|
43474
|
+
DeploymentGetConfigResponseFormat1$inboundSchema = objectType({
|
|
43475
|
+
type: DeploymentGetConfigResponseFormatDeploymentsResponseType$inboundSchema
|
|
43476
|
+
});
|
|
43477
|
+
DeploymentGetConfigResponseFormat1$outboundSchema = objectType({
|
|
43478
|
+
type: DeploymentGetConfigResponseFormatDeploymentsResponseType$outboundSchema
|
|
43479
|
+
});
|
|
43415
43480
|
((DeploymentGetConfigResponseFormat1$) => {
|
|
43416
43481
|
DeploymentGetConfigResponseFormat1$.inboundSchema = DeploymentGetConfigResponseFormat1$inboundSchema;
|
|
43417
43482
|
DeploymentGetConfigResponseFormat1$.outboundSchema = DeploymentGetConfigResponseFormat1$outboundSchema;
|
|
43418
43483
|
})(DeploymentGetConfigResponseFormat1$ ||= {});
|
|
43419
43484
|
DeploymentGetConfigResponseFormat$inboundSchema = unionType([
|
|
43485
|
+
lazyType(() => DeploymentGetConfigResponseFormat2$inboundSchema),
|
|
43420
43486
|
lazyType(() => DeploymentGetConfigResponseFormat1$inboundSchema),
|
|
43421
|
-
lazyType(() =>
|
|
43487
|
+
lazyType(() => DeploymentGetConfigResponseFormat3$inboundSchema)
|
|
43422
43488
|
]);
|
|
43423
43489
|
DeploymentGetConfigResponseFormat$outboundSchema = unionType([
|
|
43490
|
+
lazyType(() => DeploymentGetConfigResponseFormat2$outboundSchema),
|
|
43424
43491
|
lazyType(() => DeploymentGetConfigResponseFormat1$outboundSchema),
|
|
43425
|
-
lazyType(() =>
|
|
43492
|
+
lazyType(() => DeploymentGetConfigResponseFormat3$outboundSchema)
|
|
43426
43493
|
]);
|
|
43427
43494
|
((DeploymentGetConfigResponseFormat$) => {
|
|
43428
43495
|
DeploymentGetConfigResponseFormat$.inboundSchema = DeploymentGetConfigResponseFormat$inboundSchema;
|
|
@@ -43466,8 +43533,9 @@ var init_deploymentgetconfig = __esm(() => {
|
|
|
43466
43533
|
quality: stringType().optional(),
|
|
43467
43534
|
style: stringType().optional(),
|
|
43468
43535
|
responseFormat: nullableType(unionType([
|
|
43536
|
+
lazyType(() => DeploymentGetConfigResponseFormat2$inboundSchema),
|
|
43469
43537
|
lazyType(() => DeploymentGetConfigResponseFormat1$inboundSchema),
|
|
43470
|
-
lazyType(() =>
|
|
43538
|
+
lazyType(() => DeploymentGetConfigResponseFormat3$inboundSchema)
|
|
43471
43539
|
])).optional(),
|
|
43472
43540
|
photoRealVersion: DeploymentGetConfigPhotoRealVersion$inboundSchema.optional(),
|
|
43473
43541
|
encoding_format: DeploymentGetConfigEncodingFormat$inboundSchema.optional(),
|
|
@@ -43493,8 +43561,9 @@ var init_deploymentgetconfig = __esm(() => {
|
|
|
43493
43561
|
quality: stringType().optional(),
|
|
43494
43562
|
style: stringType().optional(),
|
|
43495
43563
|
responseFormat: nullableType(unionType([
|
|
43564
|
+
lazyType(() => DeploymentGetConfigResponseFormat2$outboundSchema),
|
|
43496
43565
|
lazyType(() => DeploymentGetConfigResponseFormat1$outboundSchema),
|
|
43497
|
-
lazyType(() =>
|
|
43566
|
+
lazyType(() => DeploymentGetConfigResponseFormat3$outboundSchema)
|
|
43498
43567
|
])).optional(),
|
|
43499
43568
|
photoRealVersion: DeploymentGetConfigPhotoRealVersion$outboundSchema.optional(),
|
|
43500
43569
|
encodingFormat: DeploymentGetConfigEncodingFormat$outboundSchema.optional(),
|
|
@@ -43955,7 +44024,7 @@ var init_deploymentinvoke = __esm(() => {
|
|
|
43955
44024
|
});
|
|
43956
44025
|
|
|
43957
44026
|
// src/models/operations/deployments.ts
|
|
43958
|
-
var DeploymentsObject, DeploymentsType, DeploymentsDeploymentsResponseType, DeploymentsModelType, DeploymentsFormat, DeploymentsResponseFormatType,
|
|
44027
|
+
var DeploymentsObject, DeploymentsType, DeploymentsDeploymentsResponseType, DeploymentsModelType, DeploymentsFormat, DeploymentsResponseFormatDeploymentsType, DeploymentsResponseFormatType, DeploymentsResponseFormatDeploymentsResponseType, DeploymentsPhotoRealVersion, DeploymentsEncodingFormat, DeploymentsReasoningEffort, DeploymentsVerbosity, DeploymentsProvider, DeploymentsRole, Deployments2DeploymentsType, Deployments2Type, Deployments2DeploymentsResponseType, DeploymentsDeploymentsType, DeploymentsRequest$inboundSchema, DeploymentsRequest$outboundSchema, DeploymentsRequest$, DeploymentsObject$inboundSchema, DeploymentsObject$outboundSchema, DeploymentsObject$, DeploymentsType$inboundSchema, DeploymentsType$outboundSchema, DeploymentsType$, DeploymentsDeploymentsResponseType$inboundSchema, DeploymentsDeploymentsResponseType$outboundSchema, DeploymentsDeploymentsResponseType$, DeploymentsParameters$inboundSchema, DeploymentsParameters$outboundSchema, DeploymentsParameters$, DeploymentsFunction$inboundSchema, DeploymentsFunction$outboundSchema, DeploymentsFunction$, DeploymentsTools$inboundSchema, DeploymentsTools$outboundSchema, DeploymentsTools$, DeploymentsModelType$inboundSchema, DeploymentsModelType$outboundSchema, DeploymentsModelType$, DeploymentsFormat$inboundSchema, DeploymentsFormat$outboundSchema, DeploymentsFormat$, DeploymentsResponseFormatDeploymentsType$inboundSchema, DeploymentsResponseFormatDeploymentsType$outboundSchema, DeploymentsResponseFormatDeploymentsType$, DeploymentsResponseFormat3$inboundSchema, DeploymentsResponseFormat3$outboundSchema, DeploymentsResponseFormat3$, DeploymentsResponseFormatType$inboundSchema, DeploymentsResponseFormatType$outboundSchema, DeploymentsResponseFormatType$, DeploymentsResponseFormatJsonSchema$inboundSchema, DeploymentsResponseFormatJsonSchema$outboundSchema, DeploymentsResponseFormatJsonSchema$, DeploymentsResponseFormat2$inboundSchema, DeploymentsResponseFormat2$outboundSchema, DeploymentsResponseFormat2$, DeploymentsResponseFormatDeploymentsResponseType$inboundSchema, DeploymentsResponseFormatDeploymentsResponseType$outboundSchema, DeploymentsResponseFormatDeploymentsResponseType$, DeploymentsResponseFormat1$inboundSchema, DeploymentsResponseFormat1$outboundSchema, DeploymentsResponseFormat1$, DeploymentsResponseFormat$inboundSchema, DeploymentsResponseFormat$outboundSchema, DeploymentsResponseFormat$, DeploymentsPhotoRealVersion$inboundSchema, DeploymentsPhotoRealVersion$outboundSchema, DeploymentsPhotoRealVersion$, DeploymentsEncodingFormat$inboundSchema, DeploymentsEncodingFormat$outboundSchema, DeploymentsEncodingFormat$, DeploymentsReasoningEffort$inboundSchema, DeploymentsReasoningEffort$outboundSchema, DeploymentsReasoningEffort$, DeploymentsVerbosity$inboundSchema, DeploymentsVerbosity$outboundSchema, DeploymentsVerbosity$, DeploymentsModelParameters$inboundSchema, DeploymentsModelParameters$outboundSchema, DeploymentsModelParameters$, DeploymentsProvider$inboundSchema, DeploymentsProvider$outboundSchema, DeploymentsProvider$, DeploymentsRole$inboundSchema, DeploymentsRole$outboundSchema, DeploymentsRole$, Deployments2DeploymentsType$inboundSchema, Deployments2DeploymentsType$outboundSchema, Deployments2DeploymentsType$, Deployments2File$inboundSchema, Deployments2File$outboundSchema, Deployments2File$, Deployments23$inboundSchema, Deployments23$outboundSchema, Deployments23$, Deployments2Type$inboundSchema, Deployments2Type$outboundSchema, Deployments2Type$, Deployments2ImageUrl$inboundSchema, Deployments2ImageUrl$outboundSchema, Deployments2ImageUrl$, Deployments22$inboundSchema, Deployments22$outboundSchema, Deployments22$, Deployments2DeploymentsResponseType$inboundSchema, Deployments2DeploymentsResponseType$outboundSchema, Deployments2DeploymentsResponseType$, Deployments21$inboundSchema, Deployments21$outboundSchema, Deployments21$, DeploymentsContent2$inboundSchema, DeploymentsContent2$outboundSchema, DeploymentsContent2$, DeploymentsContent$inboundSchema, DeploymentsContent$outboundSchema, DeploymentsContent$, DeploymentsDeploymentsType$inboundSchema, DeploymentsDeploymentsType$outboundSchema, DeploymentsDeploymentsType$, DeploymentsDeploymentsFunction$inboundSchema, DeploymentsDeploymentsFunction$outboundSchema, DeploymentsDeploymentsFunction$, DeploymentsToolCalls$inboundSchema, DeploymentsToolCalls$outboundSchema, DeploymentsToolCalls$, DeploymentsMessages$inboundSchema, DeploymentsMessages$outboundSchema, DeploymentsMessages$, DeploymentsPromptConfig$inboundSchema, DeploymentsPromptConfig$outboundSchema, DeploymentsPromptConfig$, DeploymentsData$inboundSchema, DeploymentsData$outboundSchema, DeploymentsData$, DeploymentsResponseBody$inboundSchema, DeploymentsResponseBody$outboundSchema, DeploymentsResponseBody$;
|
|
43959
44028
|
var init_deployments = __esm(() => {
|
|
43960
44029
|
init_esm();
|
|
43961
44030
|
init_primitives();
|
|
@@ -43985,12 +44054,15 @@ var init_deployments = __esm(() => {
|
|
|
43985
44054
|
Text: "text",
|
|
43986
44055
|
JsonObject: "json_object"
|
|
43987
44056
|
};
|
|
43988
|
-
|
|
44057
|
+
DeploymentsResponseFormatDeploymentsType = {
|
|
43989
44058
|
JsonObject: "json_object"
|
|
43990
44059
|
};
|
|
43991
|
-
|
|
44060
|
+
DeploymentsResponseFormatType = {
|
|
43992
44061
|
JsonSchema: "json_schema"
|
|
43993
44062
|
};
|
|
44063
|
+
DeploymentsResponseFormatDeploymentsResponseType = {
|
|
44064
|
+
Text: "text"
|
|
44065
|
+
};
|
|
43994
44066
|
DeploymentsPhotoRealVersion = {
|
|
43995
44067
|
V1: "v1",
|
|
43996
44068
|
V2: "v2"
|
|
@@ -44155,28 +44227,28 @@ var init_deployments = __esm(() => {
|
|
|
44155
44227
|
DeploymentsFormat$.inboundSchema = DeploymentsFormat$inboundSchema;
|
|
44156
44228
|
DeploymentsFormat$.outboundSchema = DeploymentsFormat$outboundSchema;
|
|
44157
44229
|
})(DeploymentsFormat$ ||= {});
|
|
44158
|
-
DeploymentsResponseFormatType$inboundSchema = nativeEnumType(DeploymentsResponseFormatType);
|
|
44159
|
-
DeploymentsResponseFormatType$outboundSchema = DeploymentsResponseFormatType$inboundSchema;
|
|
44160
|
-
((DeploymentsResponseFormatType$) => {
|
|
44161
|
-
DeploymentsResponseFormatType$.inboundSchema = DeploymentsResponseFormatType$inboundSchema;
|
|
44162
|
-
DeploymentsResponseFormatType$.outboundSchema = DeploymentsResponseFormatType$outboundSchema;
|
|
44163
|
-
})(DeploymentsResponseFormatType$ ||= {});
|
|
44164
|
-
DeploymentsResponseFormat2$inboundSchema = objectType({
|
|
44165
|
-
type: DeploymentsResponseFormatType$inboundSchema
|
|
44166
|
-
});
|
|
44167
|
-
DeploymentsResponseFormat2$outboundSchema = objectType({
|
|
44168
|
-
type: DeploymentsResponseFormatType$outboundSchema
|
|
44169
|
-
});
|
|
44170
|
-
((DeploymentsResponseFormat2$) => {
|
|
44171
|
-
DeploymentsResponseFormat2$.inboundSchema = DeploymentsResponseFormat2$inboundSchema;
|
|
44172
|
-
DeploymentsResponseFormat2$.outboundSchema = DeploymentsResponseFormat2$outboundSchema;
|
|
44173
|
-
})(DeploymentsResponseFormat2$ ||= {});
|
|
44174
44230
|
DeploymentsResponseFormatDeploymentsType$inboundSchema = nativeEnumType(DeploymentsResponseFormatDeploymentsType);
|
|
44175
44231
|
DeploymentsResponseFormatDeploymentsType$outboundSchema = DeploymentsResponseFormatDeploymentsType$inboundSchema;
|
|
44176
44232
|
((DeploymentsResponseFormatDeploymentsType$) => {
|
|
44177
44233
|
DeploymentsResponseFormatDeploymentsType$.inboundSchema = DeploymentsResponseFormatDeploymentsType$inboundSchema;
|
|
44178
44234
|
DeploymentsResponseFormatDeploymentsType$.outboundSchema = DeploymentsResponseFormatDeploymentsType$outboundSchema;
|
|
44179
44235
|
})(DeploymentsResponseFormatDeploymentsType$ ||= {});
|
|
44236
|
+
DeploymentsResponseFormat3$inboundSchema = objectType({
|
|
44237
|
+
type: DeploymentsResponseFormatDeploymentsType$inboundSchema
|
|
44238
|
+
});
|
|
44239
|
+
DeploymentsResponseFormat3$outboundSchema = objectType({
|
|
44240
|
+
type: DeploymentsResponseFormatDeploymentsType$outboundSchema
|
|
44241
|
+
});
|
|
44242
|
+
((DeploymentsResponseFormat3$) => {
|
|
44243
|
+
DeploymentsResponseFormat3$.inboundSchema = DeploymentsResponseFormat3$inboundSchema;
|
|
44244
|
+
DeploymentsResponseFormat3$.outboundSchema = DeploymentsResponseFormat3$outboundSchema;
|
|
44245
|
+
})(DeploymentsResponseFormat3$ ||= {});
|
|
44246
|
+
DeploymentsResponseFormatType$inboundSchema = nativeEnumType(DeploymentsResponseFormatType);
|
|
44247
|
+
DeploymentsResponseFormatType$outboundSchema = DeploymentsResponseFormatType$inboundSchema;
|
|
44248
|
+
((DeploymentsResponseFormatType$) => {
|
|
44249
|
+
DeploymentsResponseFormatType$.inboundSchema = DeploymentsResponseFormatType$inboundSchema;
|
|
44250
|
+
DeploymentsResponseFormatType$.outboundSchema = DeploymentsResponseFormatType$outboundSchema;
|
|
44251
|
+
})(DeploymentsResponseFormatType$ ||= {});
|
|
44180
44252
|
DeploymentsResponseFormatJsonSchema$inboundSchema = objectType({
|
|
44181
44253
|
name: stringType(),
|
|
44182
44254
|
strict: booleanType().optional(),
|
|
@@ -44191,33 +44263,51 @@ var init_deployments = __esm(() => {
|
|
|
44191
44263
|
DeploymentsResponseFormatJsonSchema$.inboundSchema = DeploymentsResponseFormatJsonSchema$inboundSchema;
|
|
44192
44264
|
DeploymentsResponseFormatJsonSchema$.outboundSchema = DeploymentsResponseFormatJsonSchema$outboundSchema;
|
|
44193
44265
|
})(DeploymentsResponseFormatJsonSchema$ ||= {});
|
|
44194
|
-
|
|
44195
|
-
type:
|
|
44266
|
+
DeploymentsResponseFormat2$inboundSchema = objectType({
|
|
44267
|
+
type: DeploymentsResponseFormatType$inboundSchema,
|
|
44196
44268
|
json_schema: lazyType(() => DeploymentsResponseFormatJsonSchema$inboundSchema)
|
|
44197
44269
|
}).transform((v2) => {
|
|
44198
44270
|
return remap(v2, {
|
|
44199
44271
|
json_schema: "jsonSchema"
|
|
44200
44272
|
});
|
|
44201
44273
|
});
|
|
44202
|
-
|
|
44203
|
-
type:
|
|
44274
|
+
DeploymentsResponseFormat2$outboundSchema = objectType({
|
|
44275
|
+
type: DeploymentsResponseFormatType$outboundSchema,
|
|
44204
44276
|
jsonSchema: lazyType(() => DeploymentsResponseFormatJsonSchema$outboundSchema)
|
|
44205
44277
|
}).transform((v2) => {
|
|
44206
44278
|
return remap(v2, {
|
|
44207
44279
|
jsonSchema: "json_schema"
|
|
44208
44280
|
});
|
|
44209
44281
|
});
|
|
44282
|
+
((DeploymentsResponseFormat2$) => {
|
|
44283
|
+
DeploymentsResponseFormat2$.inboundSchema = DeploymentsResponseFormat2$inboundSchema;
|
|
44284
|
+
DeploymentsResponseFormat2$.outboundSchema = DeploymentsResponseFormat2$outboundSchema;
|
|
44285
|
+
})(DeploymentsResponseFormat2$ ||= {});
|
|
44286
|
+
DeploymentsResponseFormatDeploymentsResponseType$inboundSchema = nativeEnumType(DeploymentsResponseFormatDeploymentsResponseType);
|
|
44287
|
+
DeploymentsResponseFormatDeploymentsResponseType$outboundSchema = DeploymentsResponseFormatDeploymentsResponseType$inboundSchema;
|
|
44288
|
+
((DeploymentsResponseFormatDeploymentsResponseType$) => {
|
|
44289
|
+
DeploymentsResponseFormatDeploymentsResponseType$.inboundSchema = DeploymentsResponseFormatDeploymentsResponseType$inboundSchema;
|
|
44290
|
+
DeploymentsResponseFormatDeploymentsResponseType$.outboundSchema = DeploymentsResponseFormatDeploymentsResponseType$outboundSchema;
|
|
44291
|
+
})(DeploymentsResponseFormatDeploymentsResponseType$ ||= {});
|
|
44292
|
+
DeploymentsResponseFormat1$inboundSchema = objectType({
|
|
44293
|
+
type: DeploymentsResponseFormatDeploymentsResponseType$inboundSchema
|
|
44294
|
+
});
|
|
44295
|
+
DeploymentsResponseFormat1$outboundSchema = objectType({
|
|
44296
|
+
type: DeploymentsResponseFormatDeploymentsResponseType$outboundSchema
|
|
44297
|
+
});
|
|
44210
44298
|
((DeploymentsResponseFormat1$) => {
|
|
44211
44299
|
DeploymentsResponseFormat1$.inboundSchema = DeploymentsResponseFormat1$inboundSchema;
|
|
44212
44300
|
DeploymentsResponseFormat1$.outboundSchema = DeploymentsResponseFormat1$outboundSchema;
|
|
44213
44301
|
})(DeploymentsResponseFormat1$ ||= {});
|
|
44214
44302
|
DeploymentsResponseFormat$inboundSchema = unionType([
|
|
44303
|
+
lazyType(() => DeploymentsResponseFormat2$inboundSchema),
|
|
44215
44304
|
lazyType(() => DeploymentsResponseFormat1$inboundSchema),
|
|
44216
|
-
lazyType(() =>
|
|
44305
|
+
lazyType(() => DeploymentsResponseFormat3$inboundSchema)
|
|
44217
44306
|
]);
|
|
44218
44307
|
DeploymentsResponseFormat$outboundSchema = unionType([
|
|
44308
|
+
lazyType(() => DeploymentsResponseFormat2$outboundSchema),
|
|
44219
44309
|
lazyType(() => DeploymentsResponseFormat1$outboundSchema),
|
|
44220
|
-
lazyType(() =>
|
|
44310
|
+
lazyType(() => DeploymentsResponseFormat3$outboundSchema)
|
|
44221
44311
|
]);
|
|
44222
44312
|
((DeploymentsResponseFormat$) => {
|
|
44223
44313
|
DeploymentsResponseFormat$.inboundSchema = DeploymentsResponseFormat$inboundSchema;
|
|
@@ -44261,8 +44351,9 @@ var init_deployments = __esm(() => {
|
|
|
44261
44351
|
quality: stringType().optional(),
|
|
44262
44352
|
style: stringType().optional(),
|
|
44263
44353
|
responseFormat: nullableType(unionType([
|
|
44354
|
+
lazyType(() => DeploymentsResponseFormat2$inboundSchema),
|
|
44264
44355
|
lazyType(() => DeploymentsResponseFormat1$inboundSchema),
|
|
44265
|
-
lazyType(() =>
|
|
44356
|
+
lazyType(() => DeploymentsResponseFormat3$inboundSchema)
|
|
44266
44357
|
])).optional(),
|
|
44267
44358
|
photoRealVersion: DeploymentsPhotoRealVersion$inboundSchema.optional(),
|
|
44268
44359
|
encoding_format: DeploymentsEncodingFormat$inboundSchema.optional(),
|
|
@@ -44288,8 +44379,9 @@ var init_deployments = __esm(() => {
|
|
|
44288
44379
|
quality: stringType().optional(),
|
|
44289
44380
|
style: stringType().optional(),
|
|
44290
44381
|
responseFormat: nullableType(unionType([
|
|
44382
|
+
lazyType(() => DeploymentsResponseFormat2$outboundSchema),
|
|
44291
44383
|
lazyType(() => DeploymentsResponseFormat1$outboundSchema),
|
|
44292
|
-
lazyType(() =>
|
|
44384
|
+
lazyType(() => DeploymentsResponseFormat3$outboundSchema)
|
|
44293
44385
|
])).optional(),
|
|
44294
44386
|
photoRealVersion: DeploymentsPhotoRealVersion$outboundSchema.optional(),
|
|
44295
44387
|
encodingFormat: DeploymentsEncodingFormat$outboundSchema.optional(),
|
|
@@ -48269,7 +48361,7 @@ var init_fileget = __esm(() => {
|
|
|
48269
48361
|
bytes: numberType(),
|
|
48270
48362
|
file_name: stringType(),
|
|
48271
48363
|
workspace_id: stringType(),
|
|
48272
|
-
created: stringType().datetime({ offset: true }).default("2025-08-
|
|
48364
|
+
created: stringType().datetime({ offset: true }).default("2025-08-12T10:35:49.436Z").transform((v2) => new Date(v2))
|
|
48273
48365
|
}).transform((v2) => {
|
|
48274
48366
|
return remap(v2, {
|
|
48275
48367
|
_id: "id",
|
|
@@ -48285,7 +48377,7 @@ var init_fileget = __esm(() => {
|
|
|
48285
48377
|
bytes: numberType(),
|
|
48286
48378
|
fileName: stringType(),
|
|
48287
48379
|
workspaceId: stringType(),
|
|
48288
|
-
created: dateType().default(() => new Date("2025-08-
|
|
48380
|
+
created: dateType().default(() => new Date("2025-08-12T10:35:49.436Z")).transform((v2) => v2.toISOString())
|
|
48289
48381
|
}).transform((v2) => {
|
|
48290
48382
|
return remap(v2, {
|
|
48291
48383
|
id: "_id",
|
|
@@ -48356,7 +48448,7 @@ var init_filelist = __esm(() => {
|
|
|
48356
48448
|
bytes: numberType(),
|
|
48357
48449
|
file_name: stringType(),
|
|
48358
48450
|
workspace_id: stringType(),
|
|
48359
|
-
created: stringType().datetime({ offset: true }).default("2025-08-
|
|
48451
|
+
created: stringType().datetime({ offset: true }).default("2025-08-12T10:35:49.436Z").transform((v2) => new Date(v2))
|
|
48360
48452
|
}).transform((v2) => {
|
|
48361
48453
|
return remap(v2, {
|
|
48362
48454
|
_id: "id",
|
|
@@ -48372,7 +48464,7 @@ var init_filelist = __esm(() => {
|
|
|
48372
48464
|
bytes: numberType(),
|
|
48373
48465
|
fileName: stringType(),
|
|
48374
48466
|
workspaceId: stringType(),
|
|
48375
|
-
created: dateType().default(() => new Date("2025-08-
|
|
48467
|
+
created: dateType().default(() => new Date("2025-08-12T10:35:49.436Z")).transform((v2) => v2.toISOString())
|
|
48376
48468
|
}).transform((v2) => {
|
|
48377
48469
|
return remap(v2, {
|
|
48378
48470
|
id: "_id",
|
|
@@ -48504,7 +48596,7 @@ var init_fileupload = __esm(() => {
|
|
|
48504
48596
|
bytes: numberType(),
|
|
48505
48597
|
file_name: stringType(),
|
|
48506
48598
|
workspace_id: stringType(),
|
|
48507
|
-
created: stringType().datetime({ offset: true }).default("2025-08-
|
|
48599
|
+
created: stringType().datetime({ offset: true }).default("2025-08-12T10:35:49.436Z").transform((v2) => new Date(v2))
|
|
48508
48600
|
}).transform((v2) => {
|
|
48509
48601
|
return remap(v2, {
|
|
48510
48602
|
_id: "id",
|
|
@@ -48520,7 +48612,7 @@ var init_fileupload = __esm(() => {
|
|
|
48520
48612
|
bytes: numberType(),
|
|
48521
48613
|
fileName: stringType(),
|
|
48522
48614
|
workspaceId: stringType(),
|
|
48523
|
-
created: dateType().default(() => new Date("2025-08-
|
|
48615
|
+
created: dateType().default(() => new Date("2025-08-12T10:35:49.436Z")).transform((v2) => v2.toISOString())
|
|
48524
48616
|
}).transform((v2) => {
|
|
48525
48617
|
return remap(v2, {
|
|
48526
48618
|
id: "_id",
|
|
@@ -48536,7 +48628,7 @@ var init_fileupload = __esm(() => {
|
|
|
48536
48628
|
});
|
|
48537
48629
|
|
|
48538
48630
|
// src/models/operations/getallprompts.ts
|
|
48539
|
-
var GetAllPromptsObject, GetAllPromptsType, GetAllPromptsModelType, GetAllPromptsFormat, GetAllPromptsResponseFormatPromptsType, GetAllPromptsResponseFormatType, GetAllPromptsPhotoRealVersion, GetAllPromptsEncodingFormat, GetAllPromptsReasoningEffort, GetAllPromptsVerbosity, GetAllPromptsProvider, GetAllPromptsRole, GetAllPrompts2PromptsResponseType, GetAllPrompts2PromptsType, GetAllPrompts2Type, GetAllPromptsPromptsType, GetAllPromptsUseCases, GetAllPromptsLanguage, GetAllPromptsRequest$inboundSchema, GetAllPromptsRequest$outboundSchema, GetAllPromptsRequest$, GetAllPromptsObject$inboundSchema, GetAllPromptsObject$outboundSchema, GetAllPromptsObject$, GetAllPromptsType$inboundSchema, GetAllPromptsType$outboundSchema, GetAllPromptsType$, GetAllPromptsModelType$inboundSchema, GetAllPromptsModelType$outboundSchema, GetAllPromptsModelType$, GetAllPromptsFormat$inboundSchema, GetAllPromptsFormat$outboundSchema, GetAllPromptsFormat$,
|
|
48631
|
+
var GetAllPromptsObject, GetAllPromptsType, GetAllPromptsModelType, GetAllPromptsFormat, GetAllPromptsResponseFormatPromptsResponseType, GetAllPromptsResponseFormatPromptsType, GetAllPromptsResponseFormatType, GetAllPromptsPhotoRealVersion, GetAllPromptsEncodingFormat, GetAllPromptsReasoningEffort, GetAllPromptsVerbosity, GetAllPromptsProvider, GetAllPromptsRole, GetAllPrompts2PromptsResponseType, GetAllPrompts2PromptsType, GetAllPrompts2Type, GetAllPromptsPromptsType, GetAllPromptsUseCases, GetAllPromptsLanguage, GetAllPromptsRequest$inboundSchema, GetAllPromptsRequest$outboundSchema, GetAllPromptsRequest$, GetAllPromptsObject$inboundSchema, GetAllPromptsObject$outboundSchema, GetAllPromptsObject$, GetAllPromptsType$inboundSchema, GetAllPromptsType$outboundSchema, GetAllPromptsType$, GetAllPromptsModelType$inboundSchema, GetAllPromptsModelType$outboundSchema, GetAllPromptsModelType$, GetAllPromptsFormat$inboundSchema, GetAllPromptsFormat$outboundSchema, GetAllPromptsFormat$, GetAllPromptsResponseFormatPromptsResponseType$inboundSchema, GetAllPromptsResponseFormatPromptsResponseType$outboundSchema, GetAllPromptsResponseFormatPromptsResponseType$, GetAllPromptsResponseFormat3$inboundSchema, GetAllPromptsResponseFormat3$outboundSchema, GetAllPromptsResponseFormat3$, GetAllPromptsResponseFormatPromptsType$inboundSchema, GetAllPromptsResponseFormatPromptsType$outboundSchema, GetAllPromptsResponseFormatPromptsType$, GetAllPromptsResponseFormatJsonSchema$inboundSchema, GetAllPromptsResponseFormatJsonSchema$outboundSchema, GetAllPromptsResponseFormatJsonSchema$, GetAllPromptsResponseFormat2$inboundSchema, GetAllPromptsResponseFormat2$outboundSchema, GetAllPromptsResponseFormat2$, GetAllPromptsResponseFormatType$inboundSchema, GetAllPromptsResponseFormatType$outboundSchema, GetAllPromptsResponseFormatType$, GetAllPromptsResponseFormat1$inboundSchema, GetAllPromptsResponseFormat1$outboundSchema, GetAllPromptsResponseFormat1$, GetAllPromptsResponseFormat$inboundSchema, GetAllPromptsResponseFormat$outboundSchema, GetAllPromptsResponseFormat$, GetAllPromptsPhotoRealVersion$inboundSchema, GetAllPromptsPhotoRealVersion$outboundSchema, GetAllPromptsPhotoRealVersion$, GetAllPromptsEncodingFormat$inboundSchema, GetAllPromptsEncodingFormat$outboundSchema, GetAllPromptsEncodingFormat$, GetAllPromptsReasoningEffort$inboundSchema, GetAllPromptsReasoningEffort$outboundSchema, GetAllPromptsReasoningEffort$, GetAllPromptsVerbosity$inboundSchema, GetAllPromptsVerbosity$outboundSchema, GetAllPromptsVerbosity$, GetAllPromptsModelParameters$inboundSchema, GetAllPromptsModelParameters$outboundSchema, GetAllPromptsModelParameters$, GetAllPromptsProvider$inboundSchema, GetAllPromptsProvider$outboundSchema, GetAllPromptsProvider$, GetAllPromptsRole$inboundSchema, GetAllPromptsRole$outboundSchema, GetAllPromptsRole$, GetAllPrompts2PromptsResponseType$inboundSchema, GetAllPrompts2PromptsResponseType$outboundSchema, GetAllPrompts2PromptsResponseType$, GetAllPrompts2File$inboundSchema, GetAllPrompts2File$outboundSchema, GetAllPrompts2File$, GetAllPrompts23$inboundSchema, GetAllPrompts23$outboundSchema, GetAllPrompts23$, GetAllPrompts2PromptsType$inboundSchema, GetAllPrompts2PromptsType$outboundSchema, GetAllPrompts2PromptsType$, GetAllPrompts2ImageUrl$inboundSchema, GetAllPrompts2ImageUrl$outboundSchema, GetAllPrompts2ImageUrl$, GetAllPrompts22$inboundSchema, GetAllPrompts22$outboundSchema, GetAllPrompts22$, GetAllPrompts2Type$inboundSchema, GetAllPrompts2Type$outboundSchema, GetAllPrompts2Type$, GetAllPrompts21$inboundSchema, GetAllPrompts21$outboundSchema, GetAllPrompts21$, GetAllPromptsContent2$inboundSchema, GetAllPromptsContent2$outboundSchema, GetAllPromptsContent2$, GetAllPromptsContent$inboundSchema, GetAllPromptsContent$outboundSchema, GetAllPromptsContent$, GetAllPromptsPromptsType$inboundSchema, GetAllPromptsPromptsType$outboundSchema, GetAllPromptsPromptsType$, GetAllPromptsFunction$inboundSchema, GetAllPromptsFunction$outboundSchema, GetAllPromptsFunction$, GetAllPromptsToolCalls$inboundSchema, GetAllPromptsToolCalls$outboundSchema, GetAllPromptsToolCalls$, GetAllPromptsMessages$inboundSchema, GetAllPromptsMessages$outboundSchema, GetAllPromptsMessages$, GetAllPromptsPromptConfig$inboundSchema, GetAllPromptsPromptConfig$outboundSchema, GetAllPromptsPromptConfig$, GetAllPromptsUseCases$inboundSchema, GetAllPromptsUseCases$outboundSchema, GetAllPromptsUseCases$, GetAllPromptsLanguage$inboundSchema, GetAllPromptsLanguage$outboundSchema, GetAllPromptsLanguage$, GetAllPromptsMetadata$inboundSchema, GetAllPromptsMetadata$outboundSchema, GetAllPromptsMetadata$, GetAllPromptsData$inboundSchema, GetAllPromptsData$outboundSchema, GetAllPromptsData$, GetAllPromptsResponseBody$inboundSchema, GetAllPromptsResponseBody$outboundSchema, GetAllPromptsResponseBody$;
|
|
48540
48632
|
var init_getallprompts = __esm(() => {
|
|
48541
48633
|
init_esm();
|
|
48542
48634
|
init_primitives();
|
|
@@ -48563,12 +48655,15 @@ var init_getallprompts = __esm(() => {
|
|
|
48563
48655
|
Text: "text",
|
|
48564
48656
|
JsonObject: "json_object"
|
|
48565
48657
|
};
|
|
48566
|
-
|
|
48658
|
+
GetAllPromptsResponseFormatPromptsResponseType = {
|
|
48567
48659
|
JsonObject: "json_object"
|
|
48568
48660
|
};
|
|
48569
|
-
|
|
48661
|
+
GetAllPromptsResponseFormatPromptsType = {
|
|
48570
48662
|
JsonSchema: "json_schema"
|
|
48571
48663
|
};
|
|
48664
|
+
GetAllPromptsResponseFormatType = {
|
|
48665
|
+
Text: "text"
|
|
48666
|
+
};
|
|
48572
48667
|
GetAllPromptsPhotoRealVersion = {
|
|
48573
48668
|
V1: "v1",
|
|
48574
48669
|
V2: "v2"
|
|
@@ -48712,28 +48807,28 @@ var init_getallprompts = __esm(() => {
|
|
|
48712
48807
|
GetAllPromptsFormat$.inboundSchema = GetAllPromptsFormat$inboundSchema;
|
|
48713
48808
|
GetAllPromptsFormat$.outboundSchema = GetAllPromptsFormat$outboundSchema;
|
|
48714
48809
|
})(GetAllPromptsFormat$ ||= {});
|
|
48810
|
+
GetAllPromptsResponseFormatPromptsResponseType$inboundSchema = nativeEnumType(GetAllPromptsResponseFormatPromptsResponseType);
|
|
48811
|
+
GetAllPromptsResponseFormatPromptsResponseType$outboundSchema = GetAllPromptsResponseFormatPromptsResponseType$inboundSchema;
|
|
48812
|
+
((GetAllPromptsResponseFormatPromptsResponseType$) => {
|
|
48813
|
+
GetAllPromptsResponseFormatPromptsResponseType$.inboundSchema = GetAllPromptsResponseFormatPromptsResponseType$inboundSchema;
|
|
48814
|
+
GetAllPromptsResponseFormatPromptsResponseType$.outboundSchema = GetAllPromptsResponseFormatPromptsResponseType$outboundSchema;
|
|
48815
|
+
})(GetAllPromptsResponseFormatPromptsResponseType$ ||= {});
|
|
48816
|
+
GetAllPromptsResponseFormat3$inboundSchema = objectType({
|
|
48817
|
+
type: GetAllPromptsResponseFormatPromptsResponseType$inboundSchema
|
|
48818
|
+
});
|
|
48819
|
+
GetAllPromptsResponseFormat3$outboundSchema = objectType({
|
|
48820
|
+
type: GetAllPromptsResponseFormatPromptsResponseType$outboundSchema
|
|
48821
|
+
});
|
|
48822
|
+
((GetAllPromptsResponseFormat3$) => {
|
|
48823
|
+
GetAllPromptsResponseFormat3$.inboundSchema = GetAllPromptsResponseFormat3$inboundSchema;
|
|
48824
|
+
GetAllPromptsResponseFormat3$.outboundSchema = GetAllPromptsResponseFormat3$outboundSchema;
|
|
48825
|
+
})(GetAllPromptsResponseFormat3$ ||= {});
|
|
48715
48826
|
GetAllPromptsResponseFormatPromptsType$inboundSchema = nativeEnumType(GetAllPromptsResponseFormatPromptsType);
|
|
48716
48827
|
GetAllPromptsResponseFormatPromptsType$outboundSchema = GetAllPromptsResponseFormatPromptsType$inboundSchema;
|
|
48717
48828
|
((GetAllPromptsResponseFormatPromptsType$) => {
|
|
48718
48829
|
GetAllPromptsResponseFormatPromptsType$.inboundSchema = GetAllPromptsResponseFormatPromptsType$inboundSchema;
|
|
48719
48830
|
GetAllPromptsResponseFormatPromptsType$.outboundSchema = GetAllPromptsResponseFormatPromptsType$outboundSchema;
|
|
48720
48831
|
})(GetAllPromptsResponseFormatPromptsType$ ||= {});
|
|
48721
|
-
GetAllPromptsResponseFormat2$inboundSchema = objectType({
|
|
48722
|
-
type: GetAllPromptsResponseFormatPromptsType$inboundSchema
|
|
48723
|
-
});
|
|
48724
|
-
GetAllPromptsResponseFormat2$outboundSchema = objectType({
|
|
48725
|
-
type: GetAllPromptsResponseFormatPromptsType$outboundSchema
|
|
48726
|
-
});
|
|
48727
|
-
((GetAllPromptsResponseFormat2$) => {
|
|
48728
|
-
GetAllPromptsResponseFormat2$.inboundSchema = GetAllPromptsResponseFormat2$inboundSchema;
|
|
48729
|
-
GetAllPromptsResponseFormat2$.outboundSchema = GetAllPromptsResponseFormat2$outboundSchema;
|
|
48730
|
-
})(GetAllPromptsResponseFormat2$ ||= {});
|
|
48731
|
-
GetAllPromptsResponseFormatType$inboundSchema = nativeEnumType(GetAllPromptsResponseFormatType);
|
|
48732
|
-
GetAllPromptsResponseFormatType$outboundSchema = GetAllPromptsResponseFormatType$inboundSchema;
|
|
48733
|
-
((GetAllPromptsResponseFormatType$) => {
|
|
48734
|
-
GetAllPromptsResponseFormatType$.inboundSchema = GetAllPromptsResponseFormatType$inboundSchema;
|
|
48735
|
-
GetAllPromptsResponseFormatType$.outboundSchema = GetAllPromptsResponseFormatType$outboundSchema;
|
|
48736
|
-
})(GetAllPromptsResponseFormatType$ ||= {});
|
|
48737
48832
|
GetAllPromptsResponseFormatJsonSchema$inboundSchema = objectType({
|
|
48738
48833
|
name: stringType(),
|
|
48739
48834
|
strict: booleanType().optional(),
|
|
@@ -48748,33 +48843,51 @@ var init_getallprompts = __esm(() => {
|
|
|
48748
48843
|
GetAllPromptsResponseFormatJsonSchema$.inboundSchema = GetAllPromptsResponseFormatJsonSchema$inboundSchema;
|
|
48749
48844
|
GetAllPromptsResponseFormatJsonSchema$.outboundSchema = GetAllPromptsResponseFormatJsonSchema$outboundSchema;
|
|
48750
48845
|
})(GetAllPromptsResponseFormatJsonSchema$ ||= {});
|
|
48751
|
-
|
|
48752
|
-
type:
|
|
48846
|
+
GetAllPromptsResponseFormat2$inboundSchema = objectType({
|
|
48847
|
+
type: GetAllPromptsResponseFormatPromptsType$inboundSchema,
|
|
48753
48848
|
json_schema: lazyType(() => GetAllPromptsResponseFormatJsonSchema$inboundSchema)
|
|
48754
48849
|
}).transform((v2) => {
|
|
48755
48850
|
return remap(v2, {
|
|
48756
48851
|
json_schema: "jsonSchema"
|
|
48757
48852
|
});
|
|
48758
48853
|
});
|
|
48759
|
-
|
|
48760
|
-
type:
|
|
48854
|
+
GetAllPromptsResponseFormat2$outboundSchema = objectType({
|
|
48855
|
+
type: GetAllPromptsResponseFormatPromptsType$outboundSchema,
|
|
48761
48856
|
jsonSchema: lazyType(() => GetAllPromptsResponseFormatJsonSchema$outboundSchema)
|
|
48762
48857
|
}).transform((v2) => {
|
|
48763
48858
|
return remap(v2, {
|
|
48764
48859
|
jsonSchema: "json_schema"
|
|
48765
48860
|
});
|
|
48766
48861
|
});
|
|
48862
|
+
((GetAllPromptsResponseFormat2$) => {
|
|
48863
|
+
GetAllPromptsResponseFormat2$.inboundSchema = GetAllPromptsResponseFormat2$inboundSchema;
|
|
48864
|
+
GetAllPromptsResponseFormat2$.outboundSchema = GetAllPromptsResponseFormat2$outboundSchema;
|
|
48865
|
+
})(GetAllPromptsResponseFormat2$ ||= {});
|
|
48866
|
+
GetAllPromptsResponseFormatType$inboundSchema = nativeEnumType(GetAllPromptsResponseFormatType);
|
|
48867
|
+
GetAllPromptsResponseFormatType$outboundSchema = GetAllPromptsResponseFormatType$inboundSchema;
|
|
48868
|
+
((GetAllPromptsResponseFormatType$) => {
|
|
48869
|
+
GetAllPromptsResponseFormatType$.inboundSchema = GetAllPromptsResponseFormatType$inboundSchema;
|
|
48870
|
+
GetAllPromptsResponseFormatType$.outboundSchema = GetAllPromptsResponseFormatType$outboundSchema;
|
|
48871
|
+
})(GetAllPromptsResponseFormatType$ ||= {});
|
|
48872
|
+
GetAllPromptsResponseFormat1$inboundSchema = objectType({
|
|
48873
|
+
type: GetAllPromptsResponseFormatType$inboundSchema
|
|
48874
|
+
});
|
|
48875
|
+
GetAllPromptsResponseFormat1$outboundSchema = objectType({
|
|
48876
|
+
type: GetAllPromptsResponseFormatType$outboundSchema
|
|
48877
|
+
});
|
|
48767
48878
|
((GetAllPromptsResponseFormat1$) => {
|
|
48768
48879
|
GetAllPromptsResponseFormat1$.inboundSchema = GetAllPromptsResponseFormat1$inboundSchema;
|
|
48769
48880
|
GetAllPromptsResponseFormat1$.outboundSchema = GetAllPromptsResponseFormat1$outboundSchema;
|
|
48770
48881
|
})(GetAllPromptsResponseFormat1$ ||= {});
|
|
48771
48882
|
GetAllPromptsResponseFormat$inboundSchema = unionType([
|
|
48883
|
+
lazyType(() => GetAllPromptsResponseFormat2$inboundSchema),
|
|
48772
48884
|
lazyType(() => GetAllPromptsResponseFormat1$inboundSchema),
|
|
48773
|
-
lazyType(() =>
|
|
48885
|
+
lazyType(() => GetAllPromptsResponseFormat3$inboundSchema)
|
|
48774
48886
|
]);
|
|
48775
48887
|
GetAllPromptsResponseFormat$outboundSchema = unionType([
|
|
48888
|
+
lazyType(() => GetAllPromptsResponseFormat2$outboundSchema),
|
|
48776
48889
|
lazyType(() => GetAllPromptsResponseFormat1$outboundSchema),
|
|
48777
|
-
lazyType(() =>
|
|
48890
|
+
lazyType(() => GetAllPromptsResponseFormat3$outboundSchema)
|
|
48778
48891
|
]);
|
|
48779
48892
|
((GetAllPromptsResponseFormat$) => {
|
|
48780
48893
|
GetAllPromptsResponseFormat$.inboundSchema = GetAllPromptsResponseFormat$inboundSchema;
|
|
@@ -48818,8 +48931,9 @@ var init_getallprompts = __esm(() => {
|
|
|
48818
48931
|
quality: stringType().optional(),
|
|
48819
48932
|
style: stringType().optional(),
|
|
48820
48933
|
responseFormat: nullableType(unionType([
|
|
48934
|
+
lazyType(() => GetAllPromptsResponseFormat2$inboundSchema),
|
|
48821
48935
|
lazyType(() => GetAllPromptsResponseFormat1$inboundSchema),
|
|
48822
|
-
lazyType(() =>
|
|
48936
|
+
lazyType(() => GetAllPromptsResponseFormat3$inboundSchema)
|
|
48823
48937
|
])).optional(),
|
|
48824
48938
|
photoRealVersion: GetAllPromptsPhotoRealVersion$inboundSchema.optional(),
|
|
48825
48939
|
encoding_format: GetAllPromptsEncodingFormat$inboundSchema.optional(),
|
|
@@ -48845,8 +48959,9 @@ var init_getallprompts = __esm(() => {
|
|
|
48845
48959
|
quality: stringType().optional(),
|
|
48846
48960
|
style: stringType().optional(),
|
|
48847
48961
|
responseFormat: nullableType(unionType([
|
|
48962
|
+
lazyType(() => GetAllPromptsResponseFormat2$outboundSchema),
|
|
48848
48963
|
lazyType(() => GetAllPromptsResponseFormat1$outboundSchema),
|
|
48849
|
-
lazyType(() =>
|
|
48964
|
+
lazyType(() => GetAllPromptsResponseFormat3$outboundSchema)
|
|
48850
48965
|
])).optional(),
|
|
48851
48966
|
photoRealVersion: GetAllPromptsPhotoRealVersion$outboundSchema.optional(),
|
|
48852
48967
|
encodingFormat: GetAllPromptsEncodingFormat$outboundSchema.optional(),
|
|
@@ -49573,8 +49688,8 @@ var init_getevals = __esm(() => {
|
|
|
49573
49688
|
Typescript$inboundSchema = objectType({
|
|
49574
49689
|
_id: stringType(),
|
|
49575
49690
|
description: stringType(),
|
|
49576
|
-
created: stringType().default("2025-08-
|
|
49577
|
-
updated: stringType().default("2025-08-
|
|
49691
|
+
created: stringType().default("2025-08-12T10:35:48.407Z"),
|
|
49692
|
+
updated: stringType().default("2025-08-12T10:35:48.407Z"),
|
|
49578
49693
|
guardrail_config: unionType([
|
|
49579
49694
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
49580
49695
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
|
|
@@ -49591,8 +49706,8 @@ var init_getevals = __esm(() => {
|
|
|
49591
49706
|
Typescript$outboundSchema = objectType({
|
|
49592
49707
|
id: stringType(),
|
|
49593
49708
|
description: stringType(),
|
|
49594
|
-
created: stringType().default("2025-08-
|
|
49595
|
-
updated: stringType().default("2025-08-
|
|
49709
|
+
created: stringType().default("2025-08-12T10:35:48.407Z"),
|
|
49710
|
+
updated: stringType().default("2025-08-12T10:35:48.407Z"),
|
|
49596
49711
|
guardrailConfig: unionType([
|
|
49597
49712
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
49598
49713
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
|
|
@@ -49685,8 +49800,8 @@ var init_getevals = __esm(() => {
|
|
|
49685
49800
|
Ragas$inboundSchema = objectType({
|
|
49686
49801
|
_id: stringType(),
|
|
49687
49802
|
description: stringType(),
|
|
49688
|
-
created: stringType().default("2025-08-
|
|
49689
|
-
updated: stringType().default("2025-08-
|
|
49803
|
+
created: stringType().default("2025-08-12T10:35:48.407Z"),
|
|
49804
|
+
updated: stringType().default("2025-08-12T10:35:48.407Z"),
|
|
49690
49805
|
guardrail_config: unionType([
|
|
49691
49806
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
49692
49807
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema)
|
|
@@ -49705,8 +49820,8 @@ var init_getevals = __esm(() => {
|
|
|
49705
49820
|
Ragas$outboundSchema = objectType({
|
|
49706
49821
|
id: stringType(),
|
|
49707
49822
|
description: stringType(),
|
|
49708
|
-
created: stringType().default("2025-08-
|
|
49709
|
-
updated: stringType().default("2025-08-
|
|
49823
|
+
created: stringType().default("2025-08-12T10:35:48.407Z"),
|
|
49824
|
+
updated: stringType().default("2025-08-12T10:35:48.407Z"),
|
|
49710
49825
|
guardrailConfig: unionType([
|
|
49711
49826
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
49712
49827
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema)
|
|
@@ -50459,8 +50574,8 @@ var init_getevals = __esm(() => {
|
|
|
50459
50574
|
DataFunction$inboundSchema = objectType({
|
|
50460
50575
|
_id: stringType(),
|
|
50461
50576
|
description: stringType(),
|
|
50462
|
-
created: stringType().default("2025-08-
|
|
50463
|
-
updated: stringType().default("2025-08-
|
|
50577
|
+
created: stringType().default("2025-08-12T10:35:48.407Z"),
|
|
50578
|
+
updated: stringType().default("2025-08-12T10:35:48.407Z"),
|
|
50464
50579
|
guardrail_config: unionType([
|
|
50465
50580
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
50466
50581
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema)
|
|
@@ -50514,8 +50629,8 @@ var init_getevals = __esm(() => {
|
|
|
50514
50629
|
DataFunction$outboundSchema = objectType({
|
|
50515
50630
|
id: stringType(),
|
|
50516
50631
|
description: stringType(),
|
|
50517
|
-
created: stringType().default("2025-08-
|
|
50518
|
-
updated: stringType().default("2025-08-
|
|
50632
|
+
created: stringType().default("2025-08-12T10:35:48.407Z"),
|
|
50633
|
+
updated: stringType().default("2025-08-12T10:35:48.407Z"),
|
|
50519
50634
|
guardrailConfig: unionType([
|
|
50520
50635
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
50521
50636
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema)
|
|
@@ -50639,8 +50754,8 @@ var init_getevals = __esm(() => {
|
|
|
50639
50754
|
DataPython$inboundSchema = objectType({
|
|
50640
50755
|
_id: stringType(),
|
|
50641
50756
|
description: stringType(),
|
|
50642
|
-
created: stringType().default("2025-08-
|
|
50643
|
-
updated: stringType().default("2025-08-
|
|
50757
|
+
created: stringType().default("2025-08-12T10:35:48.407Z"),
|
|
50758
|
+
updated: stringType().default("2025-08-12T10:35:48.407Z"),
|
|
50644
50759
|
guardrail_config: unionType([
|
|
50645
50760
|
lazyType(() => GetEvalsGuardrailConfigEvalsNumber$inboundSchema),
|
|
50646
50761
|
lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema)
|
|
@@ -50657,8 +50772,8 @@ var init_getevals = __esm(() => {
|
|
|
50657
50772
|
DataPython$outboundSchema = objectType({
|
|
50658
50773
|
id: stringType(),
|
|
50659
50774
|
description: stringType(),
|
|
50660
|
-
created: stringType().default("2025-08-
|
|
50661
|
-
updated: stringType().default("2025-08-
|
|
50775
|
+
created: stringType().default("2025-08-12T10:35:48.407Z"),
|
|
50776
|
+
updated: stringType().default("2025-08-12T10:35:48.407Z"),
|
|
50662
50777
|
guardrailConfig: unionType([
|
|
50663
50778
|
lazyType(() => GetEvalsGuardrailConfigEvalsNumber$outboundSchema),
|
|
50664
50779
|
lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$outboundSchema)
|
|
@@ -50751,8 +50866,8 @@ var init_getevals = __esm(() => {
|
|
|
50751
50866
|
DataHTTP$inboundSchema = objectType({
|
|
50752
50867
|
_id: stringType(),
|
|
50753
50868
|
description: stringType(),
|
|
50754
|
-
created: stringType().default("2025-08-
|
|
50755
|
-
updated: stringType().default("2025-08-
|
|
50869
|
+
created: stringType().default("2025-08-12T10:35:48.407Z"),
|
|
50870
|
+
updated: stringType().default("2025-08-12T10:35:48.407Z"),
|
|
50756
50871
|
guardrail_config: unionType([
|
|
50757
50872
|
lazyType(() => GetEvalsGuardrailConfigNumber$inboundSchema),
|
|
50758
50873
|
lazyType(() => GetEvalsGuardrailConfigBoolean$inboundSchema)
|
|
@@ -50772,8 +50887,8 @@ var init_getevals = __esm(() => {
|
|
|
50772
50887
|
DataHTTP$outboundSchema = objectType({
|
|
50773
50888
|
id: stringType(),
|
|
50774
50889
|
description: stringType(),
|
|
50775
|
-
created: stringType().default("2025-08-
|
|
50776
|
-
updated: stringType().default("2025-08-
|
|
50890
|
+
created: stringType().default("2025-08-12T10:35:48.407Z"),
|
|
50891
|
+
updated: stringType().default("2025-08-12T10:35:48.407Z"),
|
|
50777
50892
|
guardrailConfig: unionType([
|
|
50778
50893
|
lazyType(() => GetEvalsGuardrailConfigNumber$outboundSchema),
|
|
50779
50894
|
lazyType(() => GetEvalsGuardrailConfigBoolean$outboundSchema)
|
|
@@ -50863,8 +50978,8 @@ var init_getevals = __esm(() => {
|
|
|
50863
50978
|
DataJSON$inboundSchema = objectType({
|
|
50864
50979
|
_id: stringType(),
|
|
50865
50980
|
description: stringType(),
|
|
50866
|
-
created: stringType().default("2025-08-
|
|
50867
|
-
updated: stringType().default("2025-08-
|
|
50981
|
+
created: stringType().default("2025-08-12T10:35:48.407Z"),
|
|
50982
|
+
updated: stringType().default("2025-08-12T10:35:48.407Z"),
|
|
50868
50983
|
guardrail_config: unionType([
|
|
50869
50984
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$inboundSchema),
|
|
50870
50985
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$inboundSchema)
|
|
@@ -50881,8 +50996,8 @@ var init_getevals = __esm(() => {
|
|
|
50881
50996
|
DataJSON$outboundSchema = objectType({
|
|
50882
50997
|
id: stringType(),
|
|
50883
50998
|
description: stringType(),
|
|
50884
|
-
created: stringType().default("2025-08-
|
|
50885
|
-
updated: stringType().default("2025-08-
|
|
50999
|
+
created: stringType().default("2025-08-12T10:35:48.407Z"),
|
|
51000
|
+
updated: stringType().default("2025-08-12T10:35:48.407Z"),
|
|
50886
51001
|
guardrailConfig: unionType([
|
|
50887
51002
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$outboundSchema),
|
|
50888
51003
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$outboundSchema)
|
|
@@ -50969,8 +51084,8 @@ var init_getevals = __esm(() => {
|
|
|
50969
51084
|
DataLLM$inboundSchema = objectType({
|
|
50970
51085
|
_id: stringType(),
|
|
50971
51086
|
description: stringType(),
|
|
50972
|
-
created: stringType().default("2025-08-
|
|
50973
|
-
updated: stringType().default("2025-08-
|
|
51087
|
+
created: stringType().default("2025-08-12T10:35:48.407Z"),
|
|
51088
|
+
updated: stringType().default("2025-08-12T10:35:48.407Z"),
|
|
50974
51089
|
guardrail_config: unionType([
|
|
50975
51090
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
50976
51091
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
|
|
@@ -50988,8 +51103,8 @@ var init_getevals = __esm(() => {
|
|
|
50988
51103
|
DataLLM$outboundSchema = objectType({
|
|
50989
51104
|
id: stringType(),
|
|
50990
51105
|
description: stringType(),
|
|
50991
|
-
created: stringType().default("2025-08-
|
|
50992
|
-
updated: stringType().default("2025-08-
|
|
51106
|
+
created: stringType().default("2025-08-12T10:35:48.407Z"),
|
|
51107
|
+
updated: stringType().default("2025-08-12T10:35:48.407Z"),
|
|
50993
51108
|
guardrailConfig: unionType([
|
|
50994
51109
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
50995
51110
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
|
|
@@ -51307,7 +51422,7 @@ var init_getoneknowledge = __esm(() => {
|
|
|
51307
51422
|
});
|
|
51308
51423
|
|
|
51309
51424
|
// src/models/operations/getoneprompt.ts
|
|
51310
|
-
var GetOnePromptType, GetOnePromptModelType, GetOnePromptFormat, GetOnePromptResponseFormatPromptsType, GetOnePromptResponseFormatType, GetOnePromptPhotoRealVersion, GetOnePromptEncodingFormat, GetOnePromptReasoningEffort, GetOnePromptVerbosity, GetOnePromptProvider, GetOnePromptRole, GetOnePrompt2PromptsResponseType, GetOnePrompt2PromptsType, GetOnePrompt2Type, GetOnePromptPromptsType, GetOnePromptUseCases, GetOnePromptLanguage, GetOnePromptRequest$inboundSchema, GetOnePromptRequest$outboundSchema, GetOnePromptRequest$, GetOnePromptType$inboundSchema, GetOnePromptType$outboundSchema, GetOnePromptType$, GetOnePromptModelType$inboundSchema, GetOnePromptModelType$outboundSchema, GetOnePromptModelType$, GetOnePromptFormat$inboundSchema, GetOnePromptFormat$outboundSchema, GetOnePromptFormat$,
|
|
51425
|
+
var GetOnePromptType, GetOnePromptModelType, GetOnePromptFormat, GetOnePromptResponseFormatPromptsResponseType, GetOnePromptResponseFormatPromptsType, GetOnePromptResponseFormatType, GetOnePromptPhotoRealVersion, GetOnePromptEncodingFormat, GetOnePromptReasoningEffort, GetOnePromptVerbosity, GetOnePromptProvider, GetOnePromptRole, GetOnePrompt2PromptsResponseType, GetOnePrompt2PromptsType, GetOnePrompt2Type, GetOnePromptPromptsType, GetOnePromptUseCases, GetOnePromptLanguage, GetOnePromptRequest$inboundSchema, GetOnePromptRequest$outboundSchema, GetOnePromptRequest$, GetOnePromptType$inboundSchema, GetOnePromptType$outboundSchema, GetOnePromptType$, GetOnePromptModelType$inboundSchema, GetOnePromptModelType$outboundSchema, GetOnePromptModelType$, GetOnePromptFormat$inboundSchema, GetOnePromptFormat$outboundSchema, GetOnePromptFormat$, GetOnePromptResponseFormatPromptsResponseType$inboundSchema, GetOnePromptResponseFormatPromptsResponseType$outboundSchema, GetOnePromptResponseFormatPromptsResponseType$, GetOnePromptResponseFormat3$inboundSchema, GetOnePromptResponseFormat3$outboundSchema, GetOnePromptResponseFormat3$, GetOnePromptResponseFormatPromptsType$inboundSchema, GetOnePromptResponseFormatPromptsType$outboundSchema, GetOnePromptResponseFormatPromptsType$, GetOnePromptResponseFormatJsonSchema$inboundSchema, GetOnePromptResponseFormatJsonSchema$outboundSchema, GetOnePromptResponseFormatJsonSchema$, GetOnePromptResponseFormat2$inboundSchema, GetOnePromptResponseFormat2$outboundSchema, GetOnePromptResponseFormat2$, GetOnePromptResponseFormatType$inboundSchema, GetOnePromptResponseFormatType$outboundSchema, GetOnePromptResponseFormatType$, GetOnePromptResponseFormat1$inboundSchema, GetOnePromptResponseFormat1$outboundSchema, GetOnePromptResponseFormat1$, GetOnePromptResponseFormat$inboundSchema, GetOnePromptResponseFormat$outboundSchema, GetOnePromptResponseFormat$, GetOnePromptPhotoRealVersion$inboundSchema, GetOnePromptPhotoRealVersion$outboundSchema, GetOnePromptPhotoRealVersion$, GetOnePromptEncodingFormat$inboundSchema, GetOnePromptEncodingFormat$outboundSchema, GetOnePromptEncodingFormat$, GetOnePromptReasoningEffort$inboundSchema, GetOnePromptReasoningEffort$outboundSchema, GetOnePromptReasoningEffort$, GetOnePromptVerbosity$inboundSchema, GetOnePromptVerbosity$outboundSchema, GetOnePromptVerbosity$, GetOnePromptModelParameters$inboundSchema, GetOnePromptModelParameters$outboundSchema, GetOnePromptModelParameters$, GetOnePromptProvider$inboundSchema, GetOnePromptProvider$outboundSchema, GetOnePromptProvider$, GetOnePromptRole$inboundSchema, GetOnePromptRole$outboundSchema, GetOnePromptRole$, GetOnePrompt2PromptsResponseType$inboundSchema, GetOnePrompt2PromptsResponseType$outboundSchema, GetOnePrompt2PromptsResponseType$, GetOnePrompt2File$inboundSchema, GetOnePrompt2File$outboundSchema, GetOnePrompt2File$, GetOnePrompt23$inboundSchema, GetOnePrompt23$outboundSchema, GetOnePrompt23$, GetOnePrompt2PromptsType$inboundSchema, GetOnePrompt2PromptsType$outboundSchema, GetOnePrompt2PromptsType$, GetOnePrompt2ImageUrl$inboundSchema, GetOnePrompt2ImageUrl$outboundSchema, GetOnePrompt2ImageUrl$, GetOnePrompt22$inboundSchema, GetOnePrompt22$outboundSchema, GetOnePrompt22$, GetOnePrompt2Type$inboundSchema, GetOnePrompt2Type$outboundSchema, GetOnePrompt2Type$, GetOnePrompt21$inboundSchema, GetOnePrompt21$outboundSchema, GetOnePrompt21$, GetOnePromptContent2$inboundSchema, GetOnePromptContent2$outboundSchema, GetOnePromptContent2$, GetOnePromptContent$inboundSchema, GetOnePromptContent$outboundSchema, GetOnePromptContent$, GetOnePromptPromptsType$inboundSchema, GetOnePromptPromptsType$outboundSchema, GetOnePromptPromptsType$, GetOnePromptFunction$inboundSchema, GetOnePromptFunction$outboundSchema, GetOnePromptFunction$, GetOnePromptToolCalls$inboundSchema, GetOnePromptToolCalls$outboundSchema, GetOnePromptToolCalls$, GetOnePromptMessages$inboundSchema, GetOnePromptMessages$outboundSchema, GetOnePromptMessages$, GetOnePromptPromptConfig$inboundSchema, GetOnePromptPromptConfig$outboundSchema, GetOnePromptPromptConfig$, GetOnePromptUseCases$inboundSchema, GetOnePromptUseCases$outboundSchema, GetOnePromptUseCases$, GetOnePromptLanguage$inboundSchema, GetOnePromptLanguage$outboundSchema, GetOnePromptLanguage$, GetOnePromptMetadata$inboundSchema, GetOnePromptMetadata$outboundSchema, GetOnePromptMetadata$, GetOnePromptResponseBody$inboundSchema, GetOnePromptResponseBody$outboundSchema, GetOnePromptResponseBody$;
|
|
51311
51426
|
var init_getoneprompt = __esm(() => {
|
|
51312
51427
|
init_esm();
|
|
51313
51428
|
init_primitives();
|
|
@@ -51331,12 +51446,15 @@ var init_getoneprompt = __esm(() => {
|
|
|
51331
51446
|
Text: "text",
|
|
51332
51447
|
JsonObject: "json_object"
|
|
51333
51448
|
};
|
|
51334
|
-
|
|
51449
|
+
GetOnePromptResponseFormatPromptsResponseType = {
|
|
51335
51450
|
JsonObject: "json_object"
|
|
51336
51451
|
};
|
|
51337
|
-
|
|
51452
|
+
GetOnePromptResponseFormatPromptsType = {
|
|
51338
51453
|
JsonSchema: "json_schema"
|
|
51339
51454
|
};
|
|
51455
|
+
GetOnePromptResponseFormatType = {
|
|
51456
|
+
Text: "text"
|
|
51457
|
+
};
|
|
51340
51458
|
GetOnePromptPhotoRealVersion = {
|
|
51341
51459
|
V1: "v1",
|
|
51342
51460
|
V2: "v2"
|
|
@@ -51460,28 +51578,28 @@ var init_getoneprompt = __esm(() => {
|
|
|
51460
51578
|
GetOnePromptFormat$.inboundSchema = GetOnePromptFormat$inboundSchema;
|
|
51461
51579
|
GetOnePromptFormat$.outboundSchema = GetOnePromptFormat$outboundSchema;
|
|
51462
51580
|
})(GetOnePromptFormat$ ||= {});
|
|
51581
|
+
GetOnePromptResponseFormatPromptsResponseType$inboundSchema = nativeEnumType(GetOnePromptResponseFormatPromptsResponseType);
|
|
51582
|
+
GetOnePromptResponseFormatPromptsResponseType$outboundSchema = GetOnePromptResponseFormatPromptsResponseType$inboundSchema;
|
|
51583
|
+
((GetOnePromptResponseFormatPromptsResponseType$) => {
|
|
51584
|
+
GetOnePromptResponseFormatPromptsResponseType$.inboundSchema = GetOnePromptResponseFormatPromptsResponseType$inboundSchema;
|
|
51585
|
+
GetOnePromptResponseFormatPromptsResponseType$.outboundSchema = GetOnePromptResponseFormatPromptsResponseType$outboundSchema;
|
|
51586
|
+
})(GetOnePromptResponseFormatPromptsResponseType$ ||= {});
|
|
51587
|
+
GetOnePromptResponseFormat3$inboundSchema = objectType({
|
|
51588
|
+
type: GetOnePromptResponseFormatPromptsResponseType$inboundSchema
|
|
51589
|
+
});
|
|
51590
|
+
GetOnePromptResponseFormat3$outboundSchema = objectType({
|
|
51591
|
+
type: GetOnePromptResponseFormatPromptsResponseType$outboundSchema
|
|
51592
|
+
});
|
|
51593
|
+
((GetOnePromptResponseFormat3$) => {
|
|
51594
|
+
GetOnePromptResponseFormat3$.inboundSchema = GetOnePromptResponseFormat3$inboundSchema;
|
|
51595
|
+
GetOnePromptResponseFormat3$.outboundSchema = GetOnePromptResponseFormat3$outboundSchema;
|
|
51596
|
+
})(GetOnePromptResponseFormat3$ ||= {});
|
|
51463
51597
|
GetOnePromptResponseFormatPromptsType$inboundSchema = nativeEnumType(GetOnePromptResponseFormatPromptsType);
|
|
51464
51598
|
GetOnePromptResponseFormatPromptsType$outboundSchema = GetOnePromptResponseFormatPromptsType$inboundSchema;
|
|
51465
51599
|
((GetOnePromptResponseFormatPromptsType$) => {
|
|
51466
51600
|
GetOnePromptResponseFormatPromptsType$.inboundSchema = GetOnePromptResponseFormatPromptsType$inboundSchema;
|
|
51467
51601
|
GetOnePromptResponseFormatPromptsType$.outboundSchema = GetOnePromptResponseFormatPromptsType$outboundSchema;
|
|
51468
51602
|
})(GetOnePromptResponseFormatPromptsType$ ||= {});
|
|
51469
|
-
GetOnePromptResponseFormat2$inboundSchema = objectType({
|
|
51470
|
-
type: GetOnePromptResponseFormatPromptsType$inboundSchema
|
|
51471
|
-
});
|
|
51472
|
-
GetOnePromptResponseFormat2$outboundSchema = objectType({
|
|
51473
|
-
type: GetOnePromptResponseFormatPromptsType$outboundSchema
|
|
51474
|
-
});
|
|
51475
|
-
((GetOnePromptResponseFormat2$) => {
|
|
51476
|
-
GetOnePromptResponseFormat2$.inboundSchema = GetOnePromptResponseFormat2$inboundSchema;
|
|
51477
|
-
GetOnePromptResponseFormat2$.outboundSchema = GetOnePromptResponseFormat2$outboundSchema;
|
|
51478
|
-
})(GetOnePromptResponseFormat2$ ||= {});
|
|
51479
|
-
GetOnePromptResponseFormatType$inboundSchema = nativeEnumType(GetOnePromptResponseFormatType);
|
|
51480
|
-
GetOnePromptResponseFormatType$outboundSchema = GetOnePromptResponseFormatType$inboundSchema;
|
|
51481
|
-
((GetOnePromptResponseFormatType$) => {
|
|
51482
|
-
GetOnePromptResponseFormatType$.inboundSchema = GetOnePromptResponseFormatType$inboundSchema;
|
|
51483
|
-
GetOnePromptResponseFormatType$.outboundSchema = GetOnePromptResponseFormatType$outboundSchema;
|
|
51484
|
-
})(GetOnePromptResponseFormatType$ ||= {});
|
|
51485
51603
|
GetOnePromptResponseFormatJsonSchema$inboundSchema = objectType({
|
|
51486
51604
|
name: stringType(),
|
|
51487
51605
|
strict: booleanType().optional(),
|
|
@@ -51496,33 +51614,51 @@ var init_getoneprompt = __esm(() => {
|
|
|
51496
51614
|
GetOnePromptResponseFormatJsonSchema$.inboundSchema = GetOnePromptResponseFormatJsonSchema$inboundSchema;
|
|
51497
51615
|
GetOnePromptResponseFormatJsonSchema$.outboundSchema = GetOnePromptResponseFormatJsonSchema$outboundSchema;
|
|
51498
51616
|
})(GetOnePromptResponseFormatJsonSchema$ ||= {});
|
|
51499
|
-
|
|
51500
|
-
type:
|
|
51617
|
+
GetOnePromptResponseFormat2$inboundSchema = objectType({
|
|
51618
|
+
type: GetOnePromptResponseFormatPromptsType$inboundSchema,
|
|
51501
51619
|
json_schema: lazyType(() => GetOnePromptResponseFormatJsonSchema$inboundSchema)
|
|
51502
51620
|
}).transform((v2) => {
|
|
51503
51621
|
return remap(v2, {
|
|
51504
51622
|
json_schema: "jsonSchema"
|
|
51505
51623
|
});
|
|
51506
51624
|
});
|
|
51507
|
-
|
|
51508
|
-
type:
|
|
51625
|
+
GetOnePromptResponseFormat2$outboundSchema = objectType({
|
|
51626
|
+
type: GetOnePromptResponseFormatPromptsType$outboundSchema,
|
|
51509
51627
|
jsonSchema: lazyType(() => GetOnePromptResponseFormatJsonSchema$outboundSchema)
|
|
51510
51628
|
}).transform((v2) => {
|
|
51511
51629
|
return remap(v2, {
|
|
51512
51630
|
jsonSchema: "json_schema"
|
|
51513
51631
|
});
|
|
51514
51632
|
});
|
|
51633
|
+
((GetOnePromptResponseFormat2$) => {
|
|
51634
|
+
GetOnePromptResponseFormat2$.inboundSchema = GetOnePromptResponseFormat2$inboundSchema;
|
|
51635
|
+
GetOnePromptResponseFormat2$.outboundSchema = GetOnePromptResponseFormat2$outboundSchema;
|
|
51636
|
+
})(GetOnePromptResponseFormat2$ ||= {});
|
|
51637
|
+
GetOnePromptResponseFormatType$inboundSchema = nativeEnumType(GetOnePromptResponseFormatType);
|
|
51638
|
+
GetOnePromptResponseFormatType$outboundSchema = GetOnePromptResponseFormatType$inboundSchema;
|
|
51639
|
+
((GetOnePromptResponseFormatType$) => {
|
|
51640
|
+
GetOnePromptResponseFormatType$.inboundSchema = GetOnePromptResponseFormatType$inboundSchema;
|
|
51641
|
+
GetOnePromptResponseFormatType$.outboundSchema = GetOnePromptResponseFormatType$outboundSchema;
|
|
51642
|
+
})(GetOnePromptResponseFormatType$ ||= {});
|
|
51643
|
+
GetOnePromptResponseFormat1$inboundSchema = objectType({
|
|
51644
|
+
type: GetOnePromptResponseFormatType$inboundSchema
|
|
51645
|
+
});
|
|
51646
|
+
GetOnePromptResponseFormat1$outboundSchema = objectType({
|
|
51647
|
+
type: GetOnePromptResponseFormatType$outboundSchema
|
|
51648
|
+
});
|
|
51515
51649
|
((GetOnePromptResponseFormat1$) => {
|
|
51516
51650
|
GetOnePromptResponseFormat1$.inboundSchema = GetOnePromptResponseFormat1$inboundSchema;
|
|
51517
51651
|
GetOnePromptResponseFormat1$.outboundSchema = GetOnePromptResponseFormat1$outboundSchema;
|
|
51518
51652
|
})(GetOnePromptResponseFormat1$ ||= {});
|
|
51519
51653
|
GetOnePromptResponseFormat$inboundSchema = unionType([
|
|
51654
|
+
lazyType(() => GetOnePromptResponseFormat2$inboundSchema),
|
|
51520
51655
|
lazyType(() => GetOnePromptResponseFormat1$inboundSchema),
|
|
51521
|
-
lazyType(() =>
|
|
51656
|
+
lazyType(() => GetOnePromptResponseFormat3$inboundSchema)
|
|
51522
51657
|
]);
|
|
51523
51658
|
GetOnePromptResponseFormat$outboundSchema = unionType([
|
|
51659
|
+
lazyType(() => GetOnePromptResponseFormat2$outboundSchema),
|
|
51524
51660
|
lazyType(() => GetOnePromptResponseFormat1$outboundSchema),
|
|
51525
|
-
lazyType(() =>
|
|
51661
|
+
lazyType(() => GetOnePromptResponseFormat3$outboundSchema)
|
|
51526
51662
|
]);
|
|
51527
51663
|
((GetOnePromptResponseFormat$) => {
|
|
51528
51664
|
GetOnePromptResponseFormat$.inboundSchema = GetOnePromptResponseFormat$inboundSchema;
|
|
@@ -51566,8 +51702,9 @@ var init_getoneprompt = __esm(() => {
|
|
|
51566
51702
|
quality: stringType().optional(),
|
|
51567
51703
|
style: stringType().optional(),
|
|
51568
51704
|
responseFormat: nullableType(unionType([
|
|
51705
|
+
lazyType(() => GetOnePromptResponseFormat2$inboundSchema),
|
|
51569
51706
|
lazyType(() => GetOnePromptResponseFormat1$inboundSchema),
|
|
51570
|
-
lazyType(() =>
|
|
51707
|
+
lazyType(() => GetOnePromptResponseFormat3$inboundSchema)
|
|
51571
51708
|
])).optional(),
|
|
51572
51709
|
photoRealVersion: GetOnePromptPhotoRealVersion$inboundSchema.optional(),
|
|
51573
51710
|
encoding_format: GetOnePromptEncodingFormat$inboundSchema.optional(),
|
|
@@ -51593,8 +51730,9 @@ var init_getoneprompt = __esm(() => {
|
|
|
51593
51730
|
quality: stringType().optional(),
|
|
51594
51731
|
style: stringType().optional(),
|
|
51595
51732
|
responseFormat: nullableType(unionType([
|
|
51733
|
+
lazyType(() => GetOnePromptResponseFormat2$outboundSchema),
|
|
51596
51734
|
lazyType(() => GetOnePromptResponseFormat1$outboundSchema),
|
|
51597
|
-
lazyType(() =>
|
|
51735
|
+
lazyType(() => GetOnePromptResponseFormat3$outboundSchema)
|
|
51598
51736
|
])).optional(),
|
|
51599
51737
|
photoRealVersion: GetOnePromptPhotoRealVersion$outboundSchema.optional(),
|
|
51600
51738
|
encodingFormat: GetOnePromptEncodingFormat$outboundSchema.optional(),
|
|
@@ -51951,7 +52089,7 @@ var init_getoneprompt = __esm(() => {
|
|
|
51951
52089
|
});
|
|
51952
52090
|
|
|
51953
52091
|
// src/models/operations/getpromptversion.ts
|
|
51954
|
-
var GetPromptVersionModelType, GetPromptVersionFormat, GetPromptVersionResponseFormatPromptsType, GetPromptVersionResponseFormatType, GetPromptVersionPhotoRealVersion, GetPromptVersionEncodingFormat, GetPromptVersionReasoningEffort, GetPromptVersionVerbosity, GetPromptVersionProvider, GetPromptVersionRole, GetPromptVersion2PromptsResponseType, GetPromptVersion2PromptsType, GetPromptVersion2Type, GetPromptVersionType, GetPromptVersionUseCases, GetPromptVersionLanguage, GetPromptVersionRequest$inboundSchema, GetPromptVersionRequest$outboundSchema, GetPromptVersionRequest$, GetPromptVersionModelType$inboundSchema, GetPromptVersionModelType$outboundSchema, GetPromptVersionModelType$, GetPromptVersionFormat$inboundSchema, GetPromptVersionFormat$outboundSchema, GetPromptVersionFormat$,
|
|
52092
|
+
var GetPromptVersionModelType, GetPromptVersionFormat, GetPromptVersionResponseFormatPromptsResponseType, GetPromptVersionResponseFormatPromptsType, GetPromptVersionResponseFormatType, GetPromptVersionPhotoRealVersion, GetPromptVersionEncodingFormat, GetPromptVersionReasoningEffort, GetPromptVersionVerbosity, GetPromptVersionProvider, GetPromptVersionRole, GetPromptVersion2PromptsResponseType, GetPromptVersion2PromptsType, GetPromptVersion2Type, GetPromptVersionType, GetPromptVersionUseCases, GetPromptVersionLanguage, GetPromptVersionRequest$inboundSchema, GetPromptVersionRequest$outboundSchema, GetPromptVersionRequest$, GetPromptVersionModelType$inboundSchema, GetPromptVersionModelType$outboundSchema, GetPromptVersionModelType$, GetPromptVersionFormat$inboundSchema, GetPromptVersionFormat$outboundSchema, GetPromptVersionFormat$, GetPromptVersionResponseFormatPromptsResponseType$inboundSchema, GetPromptVersionResponseFormatPromptsResponseType$outboundSchema, GetPromptVersionResponseFormatPromptsResponseType$, GetPromptVersionResponseFormat3$inboundSchema, GetPromptVersionResponseFormat3$outboundSchema, GetPromptVersionResponseFormat3$, GetPromptVersionResponseFormatPromptsType$inboundSchema, GetPromptVersionResponseFormatPromptsType$outboundSchema, GetPromptVersionResponseFormatPromptsType$, GetPromptVersionResponseFormatJsonSchema$inboundSchema, GetPromptVersionResponseFormatJsonSchema$outboundSchema, GetPromptVersionResponseFormatJsonSchema$, GetPromptVersionResponseFormat2$inboundSchema, GetPromptVersionResponseFormat2$outboundSchema, GetPromptVersionResponseFormat2$, GetPromptVersionResponseFormatType$inboundSchema, GetPromptVersionResponseFormatType$outboundSchema, GetPromptVersionResponseFormatType$, GetPromptVersionResponseFormat1$inboundSchema, GetPromptVersionResponseFormat1$outboundSchema, GetPromptVersionResponseFormat1$, GetPromptVersionResponseFormat$inboundSchema, GetPromptVersionResponseFormat$outboundSchema, GetPromptVersionResponseFormat$, GetPromptVersionPhotoRealVersion$inboundSchema, GetPromptVersionPhotoRealVersion$outboundSchema, GetPromptVersionPhotoRealVersion$, GetPromptVersionEncodingFormat$inboundSchema, GetPromptVersionEncodingFormat$outboundSchema, GetPromptVersionEncodingFormat$, GetPromptVersionReasoningEffort$inboundSchema, GetPromptVersionReasoningEffort$outboundSchema, GetPromptVersionReasoningEffort$, GetPromptVersionVerbosity$inboundSchema, GetPromptVersionVerbosity$outboundSchema, GetPromptVersionVerbosity$, GetPromptVersionModelParameters$inboundSchema, GetPromptVersionModelParameters$outboundSchema, GetPromptVersionModelParameters$, GetPromptVersionProvider$inboundSchema, GetPromptVersionProvider$outboundSchema, GetPromptVersionProvider$, GetPromptVersionRole$inboundSchema, GetPromptVersionRole$outboundSchema, GetPromptVersionRole$, GetPromptVersion2PromptsResponseType$inboundSchema, GetPromptVersion2PromptsResponseType$outboundSchema, GetPromptVersion2PromptsResponseType$, GetPromptVersion2File$inboundSchema, GetPromptVersion2File$outboundSchema, GetPromptVersion2File$, GetPromptVersion23$inboundSchema, GetPromptVersion23$outboundSchema, GetPromptVersion23$, GetPromptVersion2PromptsType$inboundSchema, GetPromptVersion2PromptsType$outboundSchema, GetPromptVersion2PromptsType$, GetPromptVersion2ImageUrl$inboundSchema, GetPromptVersion2ImageUrl$outboundSchema, GetPromptVersion2ImageUrl$, GetPromptVersion22$inboundSchema, GetPromptVersion22$outboundSchema, GetPromptVersion22$, GetPromptVersion2Type$inboundSchema, GetPromptVersion2Type$outboundSchema, GetPromptVersion2Type$, GetPromptVersion21$inboundSchema, GetPromptVersion21$outboundSchema, GetPromptVersion21$, GetPromptVersionContent2$inboundSchema, GetPromptVersionContent2$outboundSchema, GetPromptVersionContent2$, GetPromptVersionContent$inboundSchema, GetPromptVersionContent$outboundSchema, GetPromptVersionContent$, GetPromptVersionType$inboundSchema, GetPromptVersionType$outboundSchema, GetPromptVersionType$, GetPromptVersionFunction$inboundSchema, GetPromptVersionFunction$outboundSchema, GetPromptVersionFunction$, GetPromptVersionToolCalls$inboundSchema, GetPromptVersionToolCalls$outboundSchema, GetPromptVersionToolCalls$, GetPromptVersionMessages$inboundSchema, GetPromptVersionMessages$outboundSchema, GetPromptVersionMessages$, GetPromptVersionPromptConfig$inboundSchema, GetPromptVersionPromptConfig$outboundSchema, GetPromptVersionPromptConfig$, GetPromptVersionUseCases$inboundSchema, GetPromptVersionUseCases$outboundSchema, GetPromptVersionUseCases$, GetPromptVersionLanguage$inboundSchema, GetPromptVersionLanguage$outboundSchema, GetPromptVersionLanguage$, GetPromptVersionMetadata$inboundSchema, GetPromptVersionMetadata$outboundSchema, GetPromptVersionMetadata$, GetPromptVersionResponseBody$inboundSchema, GetPromptVersionResponseBody$outboundSchema, GetPromptVersionResponseBody$;
|
|
51955
52093
|
var init_getpromptversion = __esm(() => {
|
|
51956
52094
|
init_esm();
|
|
51957
52095
|
init_primitives();
|
|
@@ -51972,12 +52110,15 @@ var init_getpromptversion = __esm(() => {
|
|
|
51972
52110
|
Text: "text",
|
|
51973
52111
|
JsonObject: "json_object"
|
|
51974
52112
|
};
|
|
51975
|
-
|
|
52113
|
+
GetPromptVersionResponseFormatPromptsResponseType = {
|
|
51976
52114
|
JsonObject: "json_object"
|
|
51977
52115
|
};
|
|
51978
|
-
|
|
52116
|
+
GetPromptVersionResponseFormatPromptsType = {
|
|
51979
52117
|
JsonSchema: "json_schema"
|
|
51980
52118
|
};
|
|
52119
|
+
GetPromptVersionResponseFormatType = {
|
|
52120
|
+
Text: "text"
|
|
52121
|
+
};
|
|
51981
52122
|
GetPromptVersionPhotoRealVersion = {
|
|
51982
52123
|
V1: "v1",
|
|
51983
52124
|
V2: "v2"
|
|
@@ -52107,28 +52248,28 @@ var init_getpromptversion = __esm(() => {
|
|
|
52107
52248
|
GetPromptVersionFormat$.inboundSchema = GetPromptVersionFormat$inboundSchema;
|
|
52108
52249
|
GetPromptVersionFormat$.outboundSchema = GetPromptVersionFormat$outboundSchema;
|
|
52109
52250
|
})(GetPromptVersionFormat$ ||= {});
|
|
52251
|
+
GetPromptVersionResponseFormatPromptsResponseType$inboundSchema = nativeEnumType(GetPromptVersionResponseFormatPromptsResponseType);
|
|
52252
|
+
GetPromptVersionResponseFormatPromptsResponseType$outboundSchema = GetPromptVersionResponseFormatPromptsResponseType$inboundSchema;
|
|
52253
|
+
((GetPromptVersionResponseFormatPromptsResponseType$) => {
|
|
52254
|
+
GetPromptVersionResponseFormatPromptsResponseType$.inboundSchema = GetPromptVersionResponseFormatPromptsResponseType$inboundSchema;
|
|
52255
|
+
GetPromptVersionResponseFormatPromptsResponseType$.outboundSchema = GetPromptVersionResponseFormatPromptsResponseType$outboundSchema;
|
|
52256
|
+
})(GetPromptVersionResponseFormatPromptsResponseType$ ||= {});
|
|
52257
|
+
GetPromptVersionResponseFormat3$inboundSchema = objectType({
|
|
52258
|
+
type: GetPromptVersionResponseFormatPromptsResponseType$inboundSchema
|
|
52259
|
+
});
|
|
52260
|
+
GetPromptVersionResponseFormat3$outboundSchema = objectType({
|
|
52261
|
+
type: GetPromptVersionResponseFormatPromptsResponseType$outboundSchema
|
|
52262
|
+
});
|
|
52263
|
+
((GetPromptVersionResponseFormat3$) => {
|
|
52264
|
+
GetPromptVersionResponseFormat3$.inboundSchema = GetPromptVersionResponseFormat3$inboundSchema;
|
|
52265
|
+
GetPromptVersionResponseFormat3$.outboundSchema = GetPromptVersionResponseFormat3$outboundSchema;
|
|
52266
|
+
})(GetPromptVersionResponseFormat3$ ||= {});
|
|
52110
52267
|
GetPromptVersionResponseFormatPromptsType$inboundSchema = nativeEnumType(GetPromptVersionResponseFormatPromptsType);
|
|
52111
52268
|
GetPromptVersionResponseFormatPromptsType$outboundSchema = GetPromptVersionResponseFormatPromptsType$inboundSchema;
|
|
52112
52269
|
((GetPromptVersionResponseFormatPromptsType$) => {
|
|
52113
52270
|
GetPromptVersionResponseFormatPromptsType$.inboundSchema = GetPromptVersionResponseFormatPromptsType$inboundSchema;
|
|
52114
52271
|
GetPromptVersionResponseFormatPromptsType$.outboundSchema = GetPromptVersionResponseFormatPromptsType$outboundSchema;
|
|
52115
52272
|
})(GetPromptVersionResponseFormatPromptsType$ ||= {});
|
|
52116
|
-
GetPromptVersionResponseFormat2$inboundSchema = objectType({
|
|
52117
|
-
type: GetPromptVersionResponseFormatPromptsType$inboundSchema
|
|
52118
|
-
});
|
|
52119
|
-
GetPromptVersionResponseFormat2$outboundSchema = objectType({
|
|
52120
|
-
type: GetPromptVersionResponseFormatPromptsType$outboundSchema
|
|
52121
|
-
});
|
|
52122
|
-
((GetPromptVersionResponseFormat2$) => {
|
|
52123
|
-
GetPromptVersionResponseFormat2$.inboundSchema = GetPromptVersionResponseFormat2$inboundSchema;
|
|
52124
|
-
GetPromptVersionResponseFormat2$.outboundSchema = GetPromptVersionResponseFormat2$outboundSchema;
|
|
52125
|
-
})(GetPromptVersionResponseFormat2$ ||= {});
|
|
52126
|
-
GetPromptVersionResponseFormatType$inboundSchema = nativeEnumType(GetPromptVersionResponseFormatType);
|
|
52127
|
-
GetPromptVersionResponseFormatType$outboundSchema = GetPromptVersionResponseFormatType$inboundSchema;
|
|
52128
|
-
((GetPromptVersionResponseFormatType$) => {
|
|
52129
|
-
GetPromptVersionResponseFormatType$.inboundSchema = GetPromptVersionResponseFormatType$inboundSchema;
|
|
52130
|
-
GetPromptVersionResponseFormatType$.outboundSchema = GetPromptVersionResponseFormatType$outboundSchema;
|
|
52131
|
-
})(GetPromptVersionResponseFormatType$ ||= {});
|
|
52132
52273
|
GetPromptVersionResponseFormatJsonSchema$inboundSchema = objectType({
|
|
52133
52274
|
name: stringType(),
|
|
52134
52275
|
strict: booleanType().optional(),
|
|
@@ -52143,33 +52284,51 @@ var init_getpromptversion = __esm(() => {
|
|
|
52143
52284
|
GetPromptVersionResponseFormatJsonSchema$.inboundSchema = GetPromptVersionResponseFormatJsonSchema$inboundSchema;
|
|
52144
52285
|
GetPromptVersionResponseFormatJsonSchema$.outboundSchema = GetPromptVersionResponseFormatJsonSchema$outboundSchema;
|
|
52145
52286
|
})(GetPromptVersionResponseFormatJsonSchema$ ||= {});
|
|
52146
|
-
|
|
52147
|
-
type:
|
|
52287
|
+
GetPromptVersionResponseFormat2$inboundSchema = objectType({
|
|
52288
|
+
type: GetPromptVersionResponseFormatPromptsType$inboundSchema,
|
|
52148
52289
|
json_schema: lazyType(() => GetPromptVersionResponseFormatJsonSchema$inboundSchema)
|
|
52149
52290
|
}).transform((v2) => {
|
|
52150
52291
|
return remap(v2, {
|
|
52151
52292
|
json_schema: "jsonSchema"
|
|
52152
52293
|
});
|
|
52153
52294
|
});
|
|
52154
|
-
|
|
52155
|
-
type:
|
|
52295
|
+
GetPromptVersionResponseFormat2$outboundSchema = objectType({
|
|
52296
|
+
type: GetPromptVersionResponseFormatPromptsType$outboundSchema,
|
|
52156
52297
|
jsonSchema: lazyType(() => GetPromptVersionResponseFormatJsonSchema$outboundSchema)
|
|
52157
52298
|
}).transform((v2) => {
|
|
52158
52299
|
return remap(v2, {
|
|
52159
52300
|
jsonSchema: "json_schema"
|
|
52160
52301
|
});
|
|
52161
52302
|
});
|
|
52303
|
+
((GetPromptVersionResponseFormat2$) => {
|
|
52304
|
+
GetPromptVersionResponseFormat2$.inboundSchema = GetPromptVersionResponseFormat2$inboundSchema;
|
|
52305
|
+
GetPromptVersionResponseFormat2$.outboundSchema = GetPromptVersionResponseFormat2$outboundSchema;
|
|
52306
|
+
})(GetPromptVersionResponseFormat2$ ||= {});
|
|
52307
|
+
GetPromptVersionResponseFormatType$inboundSchema = nativeEnumType(GetPromptVersionResponseFormatType);
|
|
52308
|
+
GetPromptVersionResponseFormatType$outboundSchema = GetPromptVersionResponseFormatType$inboundSchema;
|
|
52309
|
+
((GetPromptVersionResponseFormatType$) => {
|
|
52310
|
+
GetPromptVersionResponseFormatType$.inboundSchema = GetPromptVersionResponseFormatType$inboundSchema;
|
|
52311
|
+
GetPromptVersionResponseFormatType$.outboundSchema = GetPromptVersionResponseFormatType$outboundSchema;
|
|
52312
|
+
})(GetPromptVersionResponseFormatType$ ||= {});
|
|
52313
|
+
GetPromptVersionResponseFormat1$inboundSchema = objectType({
|
|
52314
|
+
type: GetPromptVersionResponseFormatType$inboundSchema
|
|
52315
|
+
});
|
|
52316
|
+
GetPromptVersionResponseFormat1$outboundSchema = objectType({
|
|
52317
|
+
type: GetPromptVersionResponseFormatType$outboundSchema
|
|
52318
|
+
});
|
|
52162
52319
|
((GetPromptVersionResponseFormat1$) => {
|
|
52163
52320
|
GetPromptVersionResponseFormat1$.inboundSchema = GetPromptVersionResponseFormat1$inboundSchema;
|
|
52164
52321
|
GetPromptVersionResponseFormat1$.outboundSchema = GetPromptVersionResponseFormat1$outboundSchema;
|
|
52165
52322
|
})(GetPromptVersionResponseFormat1$ ||= {});
|
|
52166
52323
|
GetPromptVersionResponseFormat$inboundSchema = unionType([
|
|
52324
|
+
lazyType(() => GetPromptVersionResponseFormat2$inboundSchema),
|
|
52167
52325
|
lazyType(() => GetPromptVersionResponseFormat1$inboundSchema),
|
|
52168
|
-
lazyType(() =>
|
|
52326
|
+
lazyType(() => GetPromptVersionResponseFormat3$inboundSchema)
|
|
52169
52327
|
]);
|
|
52170
52328
|
GetPromptVersionResponseFormat$outboundSchema = unionType([
|
|
52329
|
+
lazyType(() => GetPromptVersionResponseFormat2$outboundSchema),
|
|
52171
52330
|
lazyType(() => GetPromptVersionResponseFormat1$outboundSchema),
|
|
52172
|
-
lazyType(() =>
|
|
52331
|
+
lazyType(() => GetPromptVersionResponseFormat3$outboundSchema)
|
|
52173
52332
|
]);
|
|
52174
52333
|
((GetPromptVersionResponseFormat$) => {
|
|
52175
52334
|
GetPromptVersionResponseFormat$.inboundSchema = GetPromptVersionResponseFormat$inboundSchema;
|
|
@@ -52213,8 +52372,9 @@ var init_getpromptversion = __esm(() => {
|
|
|
52213
52372
|
quality: stringType().optional(),
|
|
52214
52373
|
style: stringType().optional(),
|
|
52215
52374
|
responseFormat: nullableType(unionType([
|
|
52375
|
+
lazyType(() => GetPromptVersionResponseFormat2$inboundSchema),
|
|
52216
52376
|
lazyType(() => GetPromptVersionResponseFormat1$inboundSchema),
|
|
52217
|
-
lazyType(() =>
|
|
52377
|
+
lazyType(() => GetPromptVersionResponseFormat3$inboundSchema)
|
|
52218
52378
|
])).optional(),
|
|
52219
52379
|
photoRealVersion: GetPromptVersionPhotoRealVersion$inboundSchema.optional(),
|
|
52220
52380
|
encoding_format: GetPromptVersionEncodingFormat$inboundSchema.optional(),
|
|
@@ -52240,8 +52400,9 @@ var init_getpromptversion = __esm(() => {
|
|
|
52240
52400
|
quality: stringType().optional(),
|
|
52241
52401
|
style: stringType().optional(),
|
|
52242
52402
|
responseFormat: nullableType(unionType([
|
|
52403
|
+
lazyType(() => GetPromptVersionResponseFormat2$outboundSchema),
|
|
52243
52404
|
lazyType(() => GetPromptVersionResponseFormat1$outboundSchema),
|
|
52244
|
-
lazyType(() =>
|
|
52405
|
+
lazyType(() => GetPromptVersionResponseFormat3$outboundSchema)
|
|
52245
52406
|
])).optional(),
|
|
52246
52407
|
photoRealVersion: GetPromptVersionPhotoRealVersion$outboundSchema.optional(),
|
|
52247
52408
|
encodingFormat: GetPromptVersionEncodingFormat$outboundSchema.optional(),
|
|
@@ -53416,7 +53577,7 @@ var init_listcontacts = __esm(() => {
|
|
|
53416
53577
|
tags: arrayType(stringType()).optional(),
|
|
53417
53578
|
metadata: recordType(anyType()).optional(),
|
|
53418
53579
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
53419
|
-
updated: stringType().datetime({ offset: true }).default("2025-08-
|
|
53580
|
+
updated: stringType().datetime({ offset: true }).default("2025-08-12T10:35:45.801Z").transform((v2) => new Date(v2)),
|
|
53420
53581
|
metrics: lazyType(() => Metrics$inboundSchema)
|
|
53421
53582
|
}).transform((v2) => {
|
|
53422
53583
|
return remap(v2, {
|
|
@@ -53435,7 +53596,7 @@ var init_listcontacts = __esm(() => {
|
|
|
53435
53596
|
tags: arrayType(stringType()).optional(),
|
|
53436
53597
|
metadata: recordType(anyType()).optional(),
|
|
53437
53598
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
53438
|
-
updated: dateType().default(() => new Date("2025-08-
|
|
53599
|
+
updated: dateType().default(() => new Date("2025-08-12T10:35:45.801Z")).transform((v2) => v2.toISOString()),
|
|
53439
53600
|
metrics: lazyType(() => Metrics$outboundSchema)
|
|
53440
53601
|
}).transform((v2) => {
|
|
53441
53602
|
return remap(v2, {
|
|
@@ -54050,7 +54211,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
54050
54211
|
created_by_id: stringType().optional(),
|
|
54051
54212
|
updated_by_id: stringType().optional(),
|
|
54052
54213
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
54053
|
-
updated: stringType().datetime({ offset: true }).default("2025-08-
|
|
54214
|
+
updated: stringType().datetime({ offset: true }).default("2025-08-12T10:35:45.801Z").transform((v2) => new Date(v2))
|
|
54054
54215
|
}).transform((v2) => {
|
|
54055
54216
|
return remap(v2, {
|
|
54056
54217
|
_id: "id",
|
|
@@ -54077,7 +54238,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
54077
54238
|
createdById: stringType().optional(),
|
|
54078
54239
|
updatedById: stringType().optional(),
|
|
54079
54240
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
54080
|
-
updated: dateType().default(() => new Date("2025-08-
|
|
54241
|
+
updated: dateType().default(() => new Date("2025-08-12T10:35:45.801Z")).transform((v2) => v2.toISOString())
|
|
54081
54242
|
}).transform((v2) => {
|
|
54082
54243
|
return remap(v2, {
|
|
54083
54244
|
id: "_id",
|
|
@@ -54185,7 +54346,7 @@ var init_listdatasets = __esm(() => {
|
|
|
54185
54346
|
updated_by_id: stringType().optional(),
|
|
54186
54347
|
metadata: lazyType(() => ListDatasetsMetadata$inboundSchema),
|
|
54187
54348
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
54188
|
-
updated: stringType().datetime({ offset: true }).default("2025-08-
|
|
54349
|
+
updated: stringType().datetime({ offset: true }).default("2025-08-12T10:35:45.801Z").transform((v2) => new Date(v2))
|
|
54189
54350
|
}).transform((v2) => {
|
|
54190
54351
|
return remap(v2, {
|
|
54191
54352
|
_id: "id",
|
|
@@ -54205,7 +54366,7 @@ var init_listdatasets = __esm(() => {
|
|
|
54205
54366
|
updatedById: stringType().optional(),
|
|
54206
54367
|
metadata: lazyType(() => ListDatasetsMetadata$outboundSchema),
|
|
54207
54368
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
54208
|
-
updated: dateType().default(() => new Date("2025-08-
|
|
54369
|
+
updated: dateType().default(() => new Date("2025-08-12T10:35:45.801Z")).transform((v2) => v2.toISOString())
|
|
54209
54370
|
}).transform((v2) => {
|
|
54210
54371
|
return remap(v2, {
|
|
54211
54372
|
id: "_id",
|
|
@@ -54310,7 +54471,7 @@ var init_listdatasources = __esm(() => {
|
|
|
54310
54471
|
ListDatasourcesStatus$.outboundSchema = ListDatasourcesStatus$outboundSchema;
|
|
54311
54472
|
})(ListDatasourcesStatus$ ||= {});
|
|
54312
54473
|
ListDatasourcesData$inboundSchema = objectType({
|
|
54313
|
-
_id: stringType().default("
|
|
54474
|
+
_id: stringType().default("01K2EXKNBAC6YFEQK3JBTVC98C"),
|
|
54314
54475
|
display_name: stringType(),
|
|
54315
54476
|
description: stringType().optional(),
|
|
54316
54477
|
status: ListDatasourcesStatus$inboundSchema,
|
|
@@ -54333,7 +54494,7 @@ var init_listdatasources = __esm(() => {
|
|
|
54333
54494
|
});
|
|
54334
54495
|
});
|
|
54335
54496
|
ListDatasourcesData$outboundSchema = objectType({
|
|
54336
|
-
id: stringType().default("
|
|
54497
|
+
id: stringType().default("01K2EXKNBAC6YFEQK3JBTVC98C"),
|
|
54337
54498
|
displayName: stringType(),
|
|
54338
54499
|
description: stringType().optional(),
|
|
54339
54500
|
status: ListDatasourcesStatus$outboundSchema,
|
|
@@ -54656,7 +54817,7 @@ var init_listmodels = __esm(() => {
|
|
|
54656
54817
|
});
|
|
54657
54818
|
|
|
54658
54819
|
// src/models/operations/listpromptversions.ts
|
|
54659
|
-
var ListPromptVersionsObject, ListPromptVersionsModelType, ListPromptVersionsFormat, ListPromptVersionsResponseFormatPromptsType, ListPromptVersionsResponseFormatType, ListPromptVersionsPhotoRealVersion, ListPromptVersionsEncodingFormat, ListPromptVersionsReasoningEffort, ListPromptVersionsVerbosity, ListPromptVersionsProvider, ListPromptVersionsRole, ListPromptVersions2PromptsResponseType, ListPromptVersions2PromptsType, ListPromptVersions2Type, ListPromptVersionsType, ListPromptVersionsUseCases, ListPromptVersionsLanguage, ListPromptVersionsRequest$inboundSchema, ListPromptVersionsRequest$outboundSchema, ListPromptVersionsRequest$, ListPromptVersionsObject$inboundSchema, ListPromptVersionsObject$outboundSchema, ListPromptVersionsObject$, ListPromptVersionsModelType$inboundSchema, ListPromptVersionsModelType$outboundSchema, ListPromptVersionsModelType$, ListPromptVersionsFormat$inboundSchema, ListPromptVersionsFormat$outboundSchema, ListPromptVersionsFormat$,
|
|
54820
|
+
var ListPromptVersionsObject, ListPromptVersionsModelType, ListPromptVersionsFormat, ListPromptVersionsResponseFormatPromptsResponseType, ListPromptVersionsResponseFormatPromptsType, ListPromptVersionsResponseFormatType, ListPromptVersionsPhotoRealVersion, ListPromptVersionsEncodingFormat, ListPromptVersionsReasoningEffort, ListPromptVersionsVerbosity, ListPromptVersionsProvider, ListPromptVersionsRole, ListPromptVersions2PromptsResponseType, ListPromptVersions2PromptsType, ListPromptVersions2Type, ListPromptVersionsType, ListPromptVersionsUseCases, ListPromptVersionsLanguage, ListPromptVersionsRequest$inboundSchema, ListPromptVersionsRequest$outboundSchema, ListPromptVersionsRequest$, ListPromptVersionsObject$inboundSchema, ListPromptVersionsObject$outboundSchema, ListPromptVersionsObject$, ListPromptVersionsModelType$inboundSchema, ListPromptVersionsModelType$outboundSchema, ListPromptVersionsModelType$, ListPromptVersionsFormat$inboundSchema, ListPromptVersionsFormat$outboundSchema, ListPromptVersionsFormat$, ListPromptVersionsResponseFormatPromptsResponseType$inboundSchema, ListPromptVersionsResponseFormatPromptsResponseType$outboundSchema, ListPromptVersionsResponseFormatPromptsResponseType$, ListPromptVersionsResponseFormat3$inboundSchema, ListPromptVersionsResponseFormat3$outboundSchema, ListPromptVersionsResponseFormat3$, ListPromptVersionsResponseFormatPromptsType$inboundSchema, ListPromptVersionsResponseFormatPromptsType$outboundSchema, ListPromptVersionsResponseFormatPromptsType$, ListPromptVersionsResponseFormatJsonSchema$inboundSchema, ListPromptVersionsResponseFormatJsonSchema$outboundSchema, ListPromptVersionsResponseFormatJsonSchema$, ListPromptVersionsResponseFormat2$inboundSchema, ListPromptVersionsResponseFormat2$outboundSchema, ListPromptVersionsResponseFormat2$, ListPromptVersionsResponseFormatType$inboundSchema, ListPromptVersionsResponseFormatType$outboundSchema, ListPromptVersionsResponseFormatType$, ListPromptVersionsResponseFormat1$inboundSchema, ListPromptVersionsResponseFormat1$outboundSchema, ListPromptVersionsResponseFormat1$, ListPromptVersionsResponseFormat$inboundSchema, ListPromptVersionsResponseFormat$outboundSchema, ListPromptVersionsResponseFormat$, ListPromptVersionsPhotoRealVersion$inboundSchema, ListPromptVersionsPhotoRealVersion$outboundSchema, ListPromptVersionsPhotoRealVersion$, ListPromptVersionsEncodingFormat$inboundSchema, ListPromptVersionsEncodingFormat$outboundSchema, ListPromptVersionsEncodingFormat$, ListPromptVersionsReasoningEffort$inboundSchema, ListPromptVersionsReasoningEffort$outboundSchema, ListPromptVersionsReasoningEffort$, ListPromptVersionsVerbosity$inboundSchema, ListPromptVersionsVerbosity$outboundSchema, ListPromptVersionsVerbosity$, ListPromptVersionsModelParameters$inboundSchema, ListPromptVersionsModelParameters$outboundSchema, ListPromptVersionsModelParameters$, ListPromptVersionsProvider$inboundSchema, ListPromptVersionsProvider$outboundSchema, ListPromptVersionsProvider$, ListPromptVersionsRole$inboundSchema, ListPromptVersionsRole$outboundSchema, ListPromptVersionsRole$, ListPromptVersions2PromptsResponseType$inboundSchema, ListPromptVersions2PromptsResponseType$outboundSchema, ListPromptVersions2PromptsResponseType$, ListPromptVersions2File$inboundSchema, ListPromptVersions2File$outboundSchema, ListPromptVersions2File$, ListPromptVersions23$inboundSchema, ListPromptVersions23$outboundSchema, ListPromptVersions23$, ListPromptVersions2PromptsType$inboundSchema, ListPromptVersions2PromptsType$outboundSchema, ListPromptVersions2PromptsType$, ListPromptVersions2ImageUrl$inboundSchema, ListPromptVersions2ImageUrl$outboundSchema, ListPromptVersions2ImageUrl$, ListPromptVersions22$inboundSchema, ListPromptVersions22$outboundSchema, ListPromptVersions22$, ListPromptVersions2Type$inboundSchema, ListPromptVersions2Type$outboundSchema, ListPromptVersions2Type$, ListPromptVersions21$inboundSchema, ListPromptVersions21$outboundSchema, ListPromptVersions21$, ListPromptVersionsContent2$inboundSchema, ListPromptVersionsContent2$outboundSchema, ListPromptVersionsContent2$, ListPromptVersionsContent$inboundSchema, ListPromptVersionsContent$outboundSchema, ListPromptVersionsContent$, ListPromptVersionsType$inboundSchema, ListPromptVersionsType$outboundSchema, ListPromptVersionsType$, ListPromptVersionsFunction$inboundSchema, ListPromptVersionsFunction$outboundSchema, ListPromptVersionsFunction$, ListPromptVersionsToolCalls$inboundSchema, ListPromptVersionsToolCalls$outboundSchema, ListPromptVersionsToolCalls$, ListPromptVersionsMessages$inboundSchema, ListPromptVersionsMessages$outboundSchema, ListPromptVersionsMessages$, ListPromptVersionsPromptConfig$inboundSchema, ListPromptVersionsPromptConfig$outboundSchema, ListPromptVersionsPromptConfig$, ListPromptVersionsUseCases$inboundSchema, ListPromptVersionsUseCases$outboundSchema, ListPromptVersionsUseCases$, ListPromptVersionsLanguage$inboundSchema, ListPromptVersionsLanguage$outboundSchema, ListPromptVersionsLanguage$, ListPromptVersionsMetadata$inboundSchema, ListPromptVersionsMetadata$outboundSchema, ListPromptVersionsMetadata$, ListPromptVersionsData$inboundSchema, ListPromptVersionsData$outboundSchema, ListPromptVersionsData$, ListPromptVersionsResponseBody$inboundSchema, ListPromptVersionsResponseBody$outboundSchema, ListPromptVersionsResponseBody$;
|
|
54660
54821
|
var init_listpromptversions = __esm(() => {
|
|
54661
54822
|
init_esm();
|
|
54662
54823
|
init_primitives();
|
|
@@ -54680,12 +54841,15 @@ var init_listpromptversions = __esm(() => {
|
|
|
54680
54841
|
Text: "text",
|
|
54681
54842
|
JsonObject: "json_object"
|
|
54682
54843
|
};
|
|
54683
|
-
|
|
54844
|
+
ListPromptVersionsResponseFormatPromptsResponseType = {
|
|
54684
54845
|
JsonObject: "json_object"
|
|
54685
54846
|
};
|
|
54686
|
-
|
|
54847
|
+
ListPromptVersionsResponseFormatPromptsType = {
|
|
54687
54848
|
JsonSchema: "json_schema"
|
|
54688
54849
|
};
|
|
54850
|
+
ListPromptVersionsResponseFormatType = {
|
|
54851
|
+
Text: "text"
|
|
54852
|
+
};
|
|
54689
54853
|
ListPromptVersionsPhotoRealVersion = {
|
|
54690
54854
|
V1: "v1",
|
|
54691
54855
|
V2: "v2"
|
|
@@ -54827,28 +54991,28 @@ var init_listpromptversions = __esm(() => {
|
|
|
54827
54991
|
ListPromptVersionsFormat$.inboundSchema = ListPromptVersionsFormat$inboundSchema;
|
|
54828
54992
|
ListPromptVersionsFormat$.outboundSchema = ListPromptVersionsFormat$outboundSchema;
|
|
54829
54993
|
})(ListPromptVersionsFormat$ ||= {});
|
|
54994
|
+
ListPromptVersionsResponseFormatPromptsResponseType$inboundSchema = nativeEnumType(ListPromptVersionsResponseFormatPromptsResponseType);
|
|
54995
|
+
ListPromptVersionsResponseFormatPromptsResponseType$outboundSchema = ListPromptVersionsResponseFormatPromptsResponseType$inboundSchema;
|
|
54996
|
+
((ListPromptVersionsResponseFormatPromptsResponseType$) => {
|
|
54997
|
+
ListPromptVersionsResponseFormatPromptsResponseType$.inboundSchema = ListPromptVersionsResponseFormatPromptsResponseType$inboundSchema;
|
|
54998
|
+
ListPromptVersionsResponseFormatPromptsResponseType$.outboundSchema = ListPromptVersionsResponseFormatPromptsResponseType$outboundSchema;
|
|
54999
|
+
})(ListPromptVersionsResponseFormatPromptsResponseType$ ||= {});
|
|
55000
|
+
ListPromptVersionsResponseFormat3$inboundSchema = objectType({
|
|
55001
|
+
type: ListPromptVersionsResponseFormatPromptsResponseType$inboundSchema
|
|
55002
|
+
});
|
|
55003
|
+
ListPromptVersionsResponseFormat3$outboundSchema = objectType({
|
|
55004
|
+
type: ListPromptVersionsResponseFormatPromptsResponseType$outboundSchema
|
|
55005
|
+
});
|
|
55006
|
+
((ListPromptVersionsResponseFormat3$) => {
|
|
55007
|
+
ListPromptVersionsResponseFormat3$.inboundSchema = ListPromptVersionsResponseFormat3$inboundSchema;
|
|
55008
|
+
ListPromptVersionsResponseFormat3$.outboundSchema = ListPromptVersionsResponseFormat3$outboundSchema;
|
|
55009
|
+
})(ListPromptVersionsResponseFormat3$ ||= {});
|
|
54830
55010
|
ListPromptVersionsResponseFormatPromptsType$inboundSchema = nativeEnumType(ListPromptVersionsResponseFormatPromptsType);
|
|
54831
55011
|
ListPromptVersionsResponseFormatPromptsType$outboundSchema = ListPromptVersionsResponseFormatPromptsType$inboundSchema;
|
|
54832
55012
|
((ListPromptVersionsResponseFormatPromptsType$) => {
|
|
54833
55013
|
ListPromptVersionsResponseFormatPromptsType$.inboundSchema = ListPromptVersionsResponseFormatPromptsType$inboundSchema;
|
|
54834
55014
|
ListPromptVersionsResponseFormatPromptsType$.outboundSchema = ListPromptVersionsResponseFormatPromptsType$outboundSchema;
|
|
54835
55015
|
})(ListPromptVersionsResponseFormatPromptsType$ ||= {});
|
|
54836
|
-
ListPromptVersionsResponseFormat2$inboundSchema = objectType({
|
|
54837
|
-
type: ListPromptVersionsResponseFormatPromptsType$inboundSchema
|
|
54838
|
-
});
|
|
54839
|
-
ListPromptVersionsResponseFormat2$outboundSchema = objectType({
|
|
54840
|
-
type: ListPromptVersionsResponseFormatPromptsType$outboundSchema
|
|
54841
|
-
});
|
|
54842
|
-
((ListPromptVersionsResponseFormat2$) => {
|
|
54843
|
-
ListPromptVersionsResponseFormat2$.inboundSchema = ListPromptVersionsResponseFormat2$inboundSchema;
|
|
54844
|
-
ListPromptVersionsResponseFormat2$.outboundSchema = ListPromptVersionsResponseFormat2$outboundSchema;
|
|
54845
|
-
})(ListPromptVersionsResponseFormat2$ ||= {});
|
|
54846
|
-
ListPromptVersionsResponseFormatType$inboundSchema = nativeEnumType(ListPromptVersionsResponseFormatType);
|
|
54847
|
-
ListPromptVersionsResponseFormatType$outboundSchema = ListPromptVersionsResponseFormatType$inboundSchema;
|
|
54848
|
-
((ListPromptVersionsResponseFormatType$) => {
|
|
54849
|
-
ListPromptVersionsResponseFormatType$.inboundSchema = ListPromptVersionsResponseFormatType$inboundSchema;
|
|
54850
|
-
ListPromptVersionsResponseFormatType$.outboundSchema = ListPromptVersionsResponseFormatType$outboundSchema;
|
|
54851
|
-
})(ListPromptVersionsResponseFormatType$ ||= {});
|
|
54852
55016
|
ListPromptVersionsResponseFormatJsonSchema$inboundSchema = objectType({
|
|
54853
55017
|
name: stringType(),
|
|
54854
55018
|
strict: booleanType().optional(),
|
|
@@ -54863,33 +55027,51 @@ var init_listpromptversions = __esm(() => {
|
|
|
54863
55027
|
ListPromptVersionsResponseFormatJsonSchema$.inboundSchema = ListPromptVersionsResponseFormatJsonSchema$inboundSchema;
|
|
54864
55028
|
ListPromptVersionsResponseFormatJsonSchema$.outboundSchema = ListPromptVersionsResponseFormatJsonSchema$outboundSchema;
|
|
54865
55029
|
})(ListPromptVersionsResponseFormatJsonSchema$ ||= {});
|
|
54866
|
-
|
|
54867
|
-
type:
|
|
55030
|
+
ListPromptVersionsResponseFormat2$inboundSchema = objectType({
|
|
55031
|
+
type: ListPromptVersionsResponseFormatPromptsType$inboundSchema,
|
|
54868
55032
|
json_schema: lazyType(() => ListPromptVersionsResponseFormatJsonSchema$inboundSchema)
|
|
54869
55033
|
}).transform((v2) => {
|
|
54870
55034
|
return remap(v2, {
|
|
54871
55035
|
json_schema: "jsonSchema"
|
|
54872
55036
|
});
|
|
54873
55037
|
});
|
|
54874
|
-
|
|
54875
|
-
type:
|
|
55038
|
+
ListPromptVersionsResponseFormat2$outboundSchema = objectType({
|
|
55039
|
+
type: ListPromptVersionsResponseFormatPromptsType$outboundSchema,
|
|
54876
55040
|
jsonSchema: lazyType(() => ListPromptVersionsResponseFormatJsonSchema$outboundSchema)
|
|
54877
55041
|
}).transform((v2) => {
|
|
54878
55042
|
return remap(v2, {
|
|
54879
55043
|
jsonSchema: "json_schema"
|
|
54880
55044
|
});
|
|
54881
55045
|
});
|
|
55046
|
+
((ListPromptVersionsResponseFormat2$) => {
|
|
55047
|
+
ListPromptVersionsResponseFormat2$.inboundSchema = ListPromptVersionsResponseFormat2$inboundSchema;
|
|
55048
|
+
ListPromptVersionsResponseFormat2$.outboundSchema = ListPromptVersionsResponseFormat2$outboundSchema;
|
|
55049
|
+
})(ListPromptVersionsResponseFormat2$ ||= {});
|
|
55050
|
+
ListPromptVersionsResponseFormatType$inboundSchema = nativeEnumType(ListPromptVersionsResponseFormatType);
|
|
55051
|
+
ListPromptVersionsResponseFormatType$outboundSchema = ListPromptVersionsResponseFormatType$inboundSchema;
|
|
55052
|
+
((ListPromptVersionsResponseFormatType$) => {
|
|
55053
|
+
ListPromptVersionsResponseFormatType$.inboundSchema = ListPromptVersionsResponseFormatType$inboundSchema;
|
|
55054
|
+
ListPromptVersionsResponseFormatType$.outboundSchema = ListPromptVersionsResponseFormatType$outboundSchema;
|
|
55055
|
+
})(ListPromptVersionsResponseFormatType$ ||= {});
|
|
55056
|
+
ListPromptVersionsResponseFormat1$inboundSchema = objectType({
|
|
55057
|
+
type: ListPromptVersionsResponseFormatType$inboundSchema
|
|
55058
|
+
});
|
|
55059
|
+
ListPromptVersionsResponseFormat1$outboundSchema = objectType({
|
|
55060
|
+
type: ListPromptVersionsResponseFormatType$outboundSchema
|
|
55061
|
+
});
|
|
54882
55062
|
((ListPromptVersionsResponseFormat1$) => {
|
|
54883
55063
|
ListPromptVersionsResponseFormat1$.inboundSchema = ListPromptVersionsResponseFormat1$inboundSchema;
|
|
54884
55064
|
ListPromptVersionsResponseFormat1$.outboundSchema = ListPromptVersionsResponseFormat1$outboundSchema;
|
|
54885
55065
|
})(ListPromptVersionsResponseFormat1$ ||= {});
|
|
54886
55066
|
ListPromptVersionsResponseFormat$inboundSchema = unionType([
|
|
55067
|
+
lazyType(() => ListPromptVersionsResponseFormat2$inboundSchema),
|
|
54887
55068
|
lazyType(() => ListPromptVersionsResponseFormat1$inboundSchema),
|
|
54888
|
-
lazyType(() =>
|
|
55069
|
+
lazyType(() => ListPromptVersionsResponseFormat3$inboundSchema)
|
|
54889
55070
|
]);
|
|
54890
55071
|
ListPromptVersionsResponseFormat$outboundSchema = unionType([
|
|
55072
|
+
lazyType(() => ListPromptVersionsResponseFormat2$outboundSchema),
|
|
54891
55073
|
lazyType(() => ListPromptVersionsResponseFormat1$outboundSchema),
|
|
54892
|
-
lazyType(() =>
|
|
55074
|
+
lazyType(() => ListPromptVersionsResponseFormat3$outboundSchema)
|
|
54893
55075
|
]);
|
|
54894
55076
|
((ListPromptVersionsResponseFormat$) => {
|
|
54895
55077
|
ListPromptVersionsResponseFormat$.inboundSchema = ListPromptVersionsResponseFormat$inboundSchema;
|
|
@@ -54933,8 +55115,9 @@ var init_listpromptversions = __esm(() => {
|
|
|
54933
55115
|
quality: stringType().optional(),
|
|
54934
55116
|
style: stringType().optional(),
|
|
54935
55117
|
responseFormat: nullableType(unionType([
|
|
55118
|
+
lazyType(() => ListPromptVersionsResponseFormat2$inboundSchema),
|
|
54936
55119
|
lazyType(() => ListPromptVersionsResponseFormat1$inboundSchema),
|
|
54937
|
-
lazyType(() =>
|
|
55120
|
+
lazyType(() => ListPromptVersionsResponseFormat3$inboundSchema)
|
|
54938
55121
|
])).optional(),
|
|
54939
55122
|
photoRealVersion: ListPromptVersionsPhotoRealVersion$inboundSchema.optional(),
|
|
54940
55123
|
encoding_format: ListPromptVersionsEncodingFormat$inboundSchema.optional(),
|
|
@@ -54960,8 +55143,9 @@ var init_listpromptversions = __esm(() => {
|
|
|
54960
55143
|
quality: stringType().optional(),
|
|
54961
55144
|
style: stringType().optional(),
|
|
54962
55145
|
responseFormat: nullableType(unionType([
|
|
55146
|
+
lazyType(() => ListPromptVersionsResponseFormat2$outboundSchema),
|
|
54963
55147
|
lazyType(() => ListPromptVersionsResponseFormat1$outboundSchema),
|
|
54964
|
-
lazyType(() =>
|
|
55148
|
+
lazyType(() => ListPromptVersionsResponseFormat3$outboundSchema)
|
|
54965
55149
|
])).optional(),
|
|
54966
55150
|
photoRealVersion: ListPromptVersionsPhotoRealVersion$outboundSchema.optional(),
|
|
54967
55151
|
encodingFormat: ListPromptVersionsEncodingFormat$outboundSchema.optional(),
|
|
@@ -55857,7 +56041,7 @@ var init_retrievecontact = __esm(() => {
|
|
|
55857
56041
|
tags: arrayType(stringType()).optional(),
|
|
55858
56042
|
metadata: recordType(anyType()).optional(),
|
|
55859
56043
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
55860
|
-
updated: stringType().datetime({ offset: true }).default("2025-08-
|
|
56044
|
+
updated: stringType().datetime({ offset: true }).default("2025-08-12T10:35:45.801Z").transform((v2) => new Date(v2))
|
|
55861
56045
|
}).transform((v2) => {
|
|
55862
56046
|
return remap(v2, {
|
|
55863
56047
|
_id: "id",
|
|
@@ -55875,7 +56059,7 @@ var init_retrievecontact = __esm(() => {
|
|
|
55875
56059
|
tags: arrayType(stringType()).optional(),
|
|
55876
56060
|
metadata: recordType(anyType()).optional(),
|
|
55877
56061
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
55878
|
-
updated: dateType().default(() => new Date("2025-08-
|
|
56062
|
+
updated: dateType().default(() => new Date("2025-08-12T10:35:45.801Z")).transform((v2) => v2.toISOString())
|
|
55879
56063
|
}).transform((v2) => {
|
|
55880
56064
|
return remap(v2, {
|
|
55881
56065
|
id: "_id",
|
|
@@ -56452,7 +56636,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
56452
56636
|
created_by_id: stringType().optional(),
|
|
56453
56637
|
updated_by_id: stringType().optional(),
|
|
56454
56638
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
56455
|
-
updated: stringType().datetime({ offset: true }).default("2025-08-
|
|
56639
|
+
updated: stringType().datetime({ offset: true }).default("2025-08-12T10:35:45.801Z").transform((v2) => new Date(v2))
|
|
56456
56640
|
}).transform((v2) => {
|
|
56457
56641
|
return remap(v2, {
|
|
56458
56642
|
_id: "id",
|
|
@@ -56479,7 +56663,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
56479
56663
|
createdById: stringType().optional(),
|
|
56480
56664
|
updatedById: stringType().optional(),
|
|
56481
56665
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
56482
|
-
updated: dateType().default(() => new Date("2025-08-
|
|
56666
|
+
updated: dateType().default(() => new Date("2025-08-12T10:35:45.801Z")).transform((v2) => v2.toISOString())
|
|
56483
56667
|
}).transform((v2) => {
|
|
56484
56668
|
return remap(v2, {
|
|
56485
56669
|
id: "_id",
|
|
@@ -56550,7 +56734,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
56550
56734
|
updated_by_id: stringType().optional(),
|
|
56551
56735
|
metadata: lazyType(() => RetrieveDatasetMetadata$inboundSchema),
|
|
56552
56736
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
56553
|
-
updated: stringType().datetime({ offset: true }).default("2025-08-
|
|
56737
|
+
updated: stringType().datetime({ offset: true }).default("2025-08-12T10:35:45.801Z").transform((v2) => new Date(v2))
|
|
56554
56738
|
}).transform((v2) => {
|
|
56555
56739
|
return remap(v2, {
|
|
56556
56740
|
_id: "id",
|
|
@@ -56570,7 +56754,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
56570
56754
|
updatedById: stringType().optional(),
|
|
56571
56755
|
metadata: lazyType(() => RetrieveDatasetMetadata$outboundSchema),
|
|
56572
56756
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
56573
|
-
updated: dateType().default(() => new Date("2025-08-
|
|
56757
|
+
updated: dateType().default(() => new Date("2025-08-12T10:35:45.801Z")).transform((v2) => v2.toISOString())
|
|
56574
56758
|
}).transform((v2) => {
|
|
56575
56759
|
return remap(v2, {
|
|
56576
56760
|
id: "_id",
|
|
@@ -56628,7 +56812,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
56628
56812
|
RetrieveDatasourceStatus$.outboundSchema = RetrieveDatasourceStatus$outboundSchema;
|
|
56629
56813
|
})(RetrieveDatasourceStatus$ ||= {});
|
|
56630
56814
|
RetrieveDatasourceResponseBody$inboundSchema = objectType({
|
|
56631
|
-
_id: stringType().default("
|
|
56815
|
+
_id: stringType().default("01K2EXKNBB488J57WPGH5TM8TA"),
|
|
56632
56816
|
display_name: stringType(),
|
|
56633
56817
|
description: stringType().optional(),
|
|
56634
56818
|
status: RetrieveDatasourceStatus$inboundSchema,
|
|
@@ -56651,7 +56835,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
56651
56835
|
});
|
|
56652
56836
|
});
|
|
56653
56837
|
RetrieveDatasourceResponseBody$outboundSchema = objectType({
|
|
56654
|
-
id: stringType().default("
|
|
56838
|
+
id: stringType().default("01K2EXKNBB488J57WPGH5TM8TA"),
|
|
56655
56839
|
displayName: stringType(),
|
|
56656
56840
|
description: stringType().optional(),
|
|
56657
56841
|
status: RetrieveDatasourceStatus$outboundSchema,
|
|
@@ -57547,7 +57731,7 @@ var init_updatecontact = __esm(() => {
|
|
|
57547
57731
|
tags: arrayType(stringType()).optional(),
|
|
57548
57732
|
metadata: recordType(anyType()).optional(),
|
|
57549
57733
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
57550
|
-
updated: stringType().datetime({ offset: true }).default("2025-08-
|
|
57734
|
+
updated: stringType().datetime({ offset: true }).default("2025-08-12T10:35:45.801Z").transform((v2) => new Date(v2))
|
|
57551
57735
|
}).transform((v2) => {
|
|
57552
57736
|
return remap(v2, {
|
|
57553
57737
|
_id: "id",
|
|
@@ -57565,7 +57749,7 @@ var init_updatecontact = __esm(() => {
|
|
|
57565
57749
|
tags: arrayType(stringType()).optional(),
|
|
57566
57750
|
metadata: recordType(anyType()).optional(),
|
|
57567
57751
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
57568
|
-
updated: dateType().default(() => new Date("2025-08-
|
|
57752
|
+
updated: dateType().default(() => new Date("2025-08-12T10:35:45.801Z")).transform((v2) => v2.toISOString())
|
|
57569
57753
|
}).transform((v2) => {
|
|
57570
57754
|
return remap(v2, {
|
|
57571
57755
|
id: "_id",
|
|
@@ -58699,7 +58883,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
58699
58883
|
created_by_id: stringType().optional(),
|
|
58700
58884
|
updated_by_id: stringType().optional(),
|
|
58701
58885
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
58702
|
-
updated: stringType().datetime({ offset: true }).default("2025-08-
|
|
58886
|
+
updated: stringType().datetime({ offset: true }).default("2025-08-12T10:35:45.801Z").transform((v2) => new Date(v2))
|
|
58703
58887
|
}).transform((v2) => {
|
|
58704
58888
|
return remap(v2, {
|
|
58705
58889
|
_id: "id",
|
|
@@ -58726,7 +58910,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
58726
58910
|
createdById: stringType().optional(),
|
|
58727
58911
|
updatedById: stringType().optional(),
|
|
58728
58912
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
58729
|
-
updated: dateType().default(() => new Date("2025-08-
|
|
58913
|
+
updated: dateType().default(() => new Date("2025-08-12T10:35:45.801Z")).transform((v2) => v2.toISOString())
|
|
58730
58914
|
}).transform((v2) => {
|
|
58731
58915
|
return remap(v2, {
|
|
58732
58916
|
id: "_id",
|
|
@@ -58827,7 +59011,7 @@ var init_updatedataset = __esm(() => {
|
|
|
58827
59011
|
parent_id: stringType().optional(),
|
|
58828
59012
|
version: stringType().optional(),
|
|
58829
59013
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
58830
|
-
updated: stringType().datetime({ offset: true }).default("2025-08-
|
|
59014
|
+
updated: stringType().datetime({ offset: true }).default("2025-08-12T10:35:45.801Z").transform((v2) => new Date(v2))
|
|
58831
59015
|
}).transform((v2) => {
|
|
58832
59016
|
return remap(v2, {
|
|
58833
59017
|
_id: "id",
|
|
@@ -58850,7 +59034,7 @@ var init_updatedataset = __esm(() => {
|
|
|
58850
59034
|
parentId: stringType().optional(),
|
|
58851
59035
|
version: stringType().optional(),
|
|
58852
59036
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
58853
|
-
updated: dateType().default(() => new Date("2025-08-
|
|
59037
|
+
updated: dateType().default(() => new Date("2025-08-12T10:35:45.801Z")).transform((v2) => v2.toISOString())
|
|
58854
59038
|
}).transform((v2) => {
|
|
58855
59039
|
return remap(v2, {
|
|
58856
59040
|
id: "_id",
|
|
@@ -58931,7 +59115,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
58931
59115
|
UpdateDatasourceStatus$.outboundSchema = UpdateDatasourceStatus$outboundSchema;
|
|
58932
59116
|
})(UpdateDatasourceStatus$ ||= {});
|
|
58933
59117
|
UpdateDatasourceResponseBody$inboundSchema = objectType({
|
|
58934
|
-
_id: stringType().default("
|
|
59118
|
+
_id: stringType().default("01K2EXKNBDVHZTG3RRSVCKT3FC"),
|
|
58935
59119
|
display_name: stringType(),
|
|
58936
59120
|
description: stringType().optional(),
|
|
58937
59121
|
status: UpdateDatasourceStatus$inboundSchema,
|
|
@@ -58954,7 +59138,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
58954
59138
|
});
|
|
58955
59139
|
});
|
|
58956
59140
|
UpdateDatasourceResponseBody$outboundSchema = objectType({
|
|
58957
|
-
id: stringType().default("
|
|
59141
|
+
id: stringType().default("01K2EXKNBDVHZTG3RRSVCKT3FC"),
|
|
58958
59142
|
displayName: stringType(),
|
|
58959
59143
|
description: stringType().optional(),
|
|
58960
59144
|
status: UpdateDatasourceStatus$outboundSchema,
|
|
@@ -59660,8 +59844,8 @@ var init_updateeval = __esm(() => {
|
|
|
59660
59844
|
UpdateEvalResponseBodyPython$inboundSchema = objectType({
|
|
59661
59845
|
_id: stringType(),
|
|
59662
59846
|
description: stringType(),
|
|
59663
|
-
created: stringType().default("2025-08-
|
|
59664
|
-
updated: stringType().default("2025-08-
|
|
59847
|
+
created: stringType().default("2025-08-12T10:35:48.407Z"),
|
|
59848
|
+
updated: stringType().default("2025-08-12T10:35:48.407Z"),
|
|
59665
59849
|
guardrail_config: unionType([
|
|
59666
59850
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
59667
59851
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
|
|
@@ -59678,8 +59862,8 @@ var init_updateeval = __esm(() => {
|
|
|
59678
59862
|
UpdateEvalResponseBodyPython$outboundSchema = objectType({
|
|
59679
59863
|
id: stringType(),
|
|
59680
59864
|
description: stringType(),
|
|
59681
|
-
created: stringType().default("2025-08-
|
|
59682
|
-
updated: stringType().default("2025-08-
|
|
59865
|
+
created: stringType().default("2025-08-12T10:35:48.407Z"),
|
|
59866
|
+
updated: stringType().default("2025-08-12T10:35:48.407Z"),
|
|
59683
59867
|
guardrailConfig: unionType([
|
|
59684
59868
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
59685
59869
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
|
|
@@ -59772,8 +59956,8 @@ var init_updateeval = __esm(() => {
|
|
|
59772
59956
|
UpdateEvalResponseBodyHTTP$inboundSchema = objectType({
|
|
59773
59957
|
_id: stringType(),
|
|
59774
59958
|
description: stringType(),
|
|
59775
|
-
created: stringType().default("2025-08-
|
|
59776
|
-
updated: stringType().default("2025-08-
|
|
59959
|
+
created: stringType().default("2025-08-12T10:35:48.407Z"),
|
|
59960
|
+
updated: stringType().default("2025-08-12T10:35:48.407Z"),
|
|
59777
59961
|
guardrail_config: unionType([
|
|
59778
59962
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
59779
59963
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
|
|
@@ -59793,8 +59977,8 @@ var init_updateeval = __esm(() => {
|
|
|
59793
59977
|
UpdateEvalResponseBodyHTTP$outboundSchema = objectType({
|
|
59794
59978
|
id: stringType(),
|
|
59795
59979
|
description: stringType(),
|
|
59796
|
-
created: stringType().default("2025-08-
|
|
59797
|
-
updated: stringType().default("2025-08-
|
|
59980
|
+
created: stringType().default("2025-08-12T10:35:48.407Z"),
|
|
59981
|
+
updated: stringType().default("2025-08-12T10:35:48.407Z"),
|
|
59798
59982
|
guardrailConfig: unionType([
|
|
59799
59983
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
59800
59984
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
|
|
@@ -59884,8 +60068,8 @@ var init_updateeval = __esm(() => {
|
|
|
59884
60068
|
UpdateEvalResponseBodyJSON$inboundSchema = objectType({
|
|
59885
60069
|
_id: stringType(),
|
|
59886
60070
|
description: stringType(),
|
|
59887
|
-
created: stringType().default("2025-08-
|
|
59888
|
-
updated: stringType().default("2025-08-
|
|
60071
|
+
created: stringType().default("2025-08-12T10:35:48.407Z"),
|
|
60072
|
+
updated: stringType().default("2025-08-12T10:35:48.407Z"),
|
|
59889
60073
|
guardrail_config: unionType([
|
|
59890
60074
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
59891
60075
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema)
|
|
@@ -59902,8 +60086,8 @@ var init_updateeval = __esm(() => {
|
|
|
59902
60086
|
UpdateEvalResponseBodyJSON$outboundSchema = objectType({
|
|
59903
60087
|
id: stringType(),
|
|
59904
60088
|
description: stringType(),
|
|
59905
|
-
created: stringType().default("2025-08-
|
|
59906
|
-
updated: stringType().default("2025-08-
|
|
60089
|
+
created: stringType().default("2025-08-12T10:35:48.407Z"),
|
|
60090
|
+
updated: stringType().default("2025-08-12T10:35:48.407Z"),
|
|
59907
60091
|
guardrailConfig: unionType([
|
|
59908
60092
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
59909
60093
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema)
|
|
@@ -59990,8 +60174,8 @@ var init_updateeval = __esm(() => {
|
|
|
59990
60174
|
UpdateEvalResponseBodyLLM$inboundSchema = objectType({
|
|
59991
60175
|
_id: stringType(),
|
|
59992
60176
|
description: stringType(),
|
|
59993
|
-
created: stringType().default("2025-08-
|
|
59994
|
-
updated: stringType().default("2025-08-
|
|
60177
|
+
created: stringType().default("2025-08-12T10:35:48.407Z"),
|
|
60178
|
+
updated: stringType().default("2025-08-12T10:35:48.407Z"),
|
|
59995
60179
|
guardrail_config: unionType([
|
|
59996
60180
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
59997
60181
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema)
|
|
@@ -60009,8 +60193,8 @@ var init_updateeval = __esm(() => {
|
|
|
60009
60193
|
UpdateEvalResponseBodyLLM$outboundSchema = objectType({
|
|
60010
60194
|
id: stringType(),
|
|
60011
60195
|
description: stringType(),
|
|
60012
|
-
created: stringType().default("2025-08-
|
|
60013
|
-
updated: stringType().default("2025-08-
|
|
60196
|
+
created: stringType().default("2025-08-12T10:35:48.407Z"),
|
|
60197
|
+
updated: stringType().default("2025-08-12T10:35:48.407Z"),
|
|
60014
60198
|
guardrailConfig: unionType([
|
|
60015
60199
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
60016
60200
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema)
|
|
@@ -60299,7 +60483,7 @@ var init_updateknowledge = __esm(() => {
|
|
|
60299
60483
|
});
|
|
60300
60484
|
|
|
60301
60485
|
// src/models/operations/updateprompt.ts
|
|
60302
|
-
var UpdatePromptFormat, UpdatePromptResponseFormatPromptsType, UpdatePromptResponseFormatType, UpdatePromptPhotoRealVersion, UpdatePromptEncodingFormat, UpdatePromptReasoningEffort, UpdatePromptVerbosity, UpdatePromptProvider, UpdatePromptRole, UpdatePrompt2PromptsRequestType, UpdatePrompt2PromptsType, UpdatePrompt2Type, UpdatePromptType, UpdatePromptUseCases, UpdatePromptLanguage, UpdatePromptPromptsType, UpdatePromptModelType, UpdatePromptPromptsFormat, UpdatePromptResponseFormatPromptsResponse200Type, UpdatePromptResponseFormatPromptsResponseType, UpdatePromptPromptsPhotoRealVersion, UpdatePromptPromptsEncodingFormat, UpdatePromptPromptsReasoningEffort, UpdatePromptPromptsVerbosity, UpdatePromptPromptsProvider, UpdatePromptPromptsRole, UpdatePrompt2PromptsResponse200ApplicationJSONType, UpdatePrompt2PromptsResponse200Type, UpdatePrompt2PromptsResponseType, UpdatePromptPromptsResponseType, UpdatePromptPromptsUseCases, UpdatePromptPromptsLanguage, UpdatePromptFormat$inboundSchema, UpdatePromptFormat$outboundSchema, UpdatePromptFormat$,
|
|
60486
|
+
var UpdatePromptFormat, UpdatePromptResponseFormatPromptsRequestType, UpdatePromptResponseFormatPromptsType, UpdatePromptResponseFormatType, UpdatePromptPhotoRealVersion, UpdatePromptEncodingFormat, UpdatePromptReasoningEffort, UpdatePromptVerbosity, UpdatePromptProvider, UpdatePromptRole, UpdatePrompt2PromptsRequestType, UpdatePrompt2PromptsType, UpdatePrompt2Type, UpdatePromptType, UpdatePromptUseCases, UpdatePromptLanguage, UpdatePromptPromptsType, UpdatePromptModelType, UpdatePromptPromptsFormat, UpdatePromptResponseFormatPromptsResponse200ApplicationJSONType, UpdatePromptResponseFormatPromptsResponse200Type, UpdatePromptResponseFormatPromptsResponseType, UpdatePromptPromptsPhotoRealVersion, UpdatePromptPromptsEncodingFormat, UpdatePromptPromptsReasoningEffort, UpdatePromptPromptsVerbosity, UpdatePromptPromptsProvider, UpdatePromptPromptsRole, UpdatePrompt2PromptsResponse200ApplicationJSONType, UpdatePrompt2PromptsResponse200Type, UpdatePrompt2PromptsResponseType, UpdatePromptPromptsResponseType, UpdatePromptPromptsUseCases, UpdatePromptPromptsLanguage, UpdatePromptFormat$inboundSchema, UpdatePromptFormat$outboundSchema, UpdatePromptFormat$, UpdatePromptResponseFormatPromptsRequestType$inboundSchema, UpdatePromptResponseFormatPromptsRequestType$outboundSchema, UpdatePromptResponseFormatPromptsRequestType$, UpdatePromptResponseFormat3$inboundSchema, UpdatePromptResponseFormat3$outboundSchema, UpdatePromptResponseFormat3$, UpdatePromptResponseFormatPromptsType$inboundSchema, UpdatePromptResponseFormatPromptsType$outboundSchema, UpdatePromptResponseFormatPromptsType$, ResponseFormatJsonSchema$inboundSchema, ResponseFormatJsonSchema$outboundSchema, ResponseFormatJsonSchema$, UpdatePromptResponseFormat2$inboundSchema, UpdatePromptResponseFormat2$outboundSchema, UpdatePromptResponseFormat2$, UpdatePromptResponseFormatType$inboundSchema, UpdatePromptResponseFormatType$outboundSchema, UpdatePromptResponseFormatType$, UpdatePromptResponseFormat1$inboundSchema, UpdatePromptResponseFormat1$outboundSchema, UpdatePromptResponseFormat1$, UpdatePromptResponseFormat$inboundSchema, UpdatePromptResponseFormat$outboundSchema, UpdatePromptResponseFormat$, UpdatePromptPhotoRealVersion$inboundSchema, UpdatePromptPhotoRealVersion$outboundSchema, UpdatePromptPhotoRealVersion$, UpdatePromptEncodingFormat$inboundSchema, UpdatePromptEncodingFormat$outboundSchema, UpdatePromptEncodingFormat$, UpdatePromptReasoningEffort$inboundSchema, UpdatePromptReasoningEffort$outboundSchema, UpdatePromptReasoningEffort$, UpdatePromptVerbosity$inboundSchema, UpdatePromptVerbosity$outboundSchema, UpdatePromptVerbosity$, UpdatePromptModelParameters$inboundSchema, UpdatePromptModelParameters$outboundSchema, UpdatePromptModelParameters$, UpdatePromptProvider$inboundSchema, UpdatePromptProvider$outboundSchema, UpdatePromptProvider$, UpdatePromptRole$inboundSchema, UpdatePromptRole$outboundSchema, UpdatePromptRole$, UpdatePrompt2PromptsRequestType$inboundSchema, UpdatePrompt2PromptsRequestType$outboundSchema, UpdatePrompt2PromptsRequestType$, UpdatePrompt2File$inboundSchema, UpdatePrompt2File$outboundSchema, UpdatePrompt2File$, UpdatePrompt23$inboundSchema, UpdatePrompt23$outboundSchema, UpdatePrompt23$, UpdatePrompt2PromptsType$inboundSchema, UpdatePrompt2PromptsType$outboundSchema, UpdatePrompt2PromptsType$, UpdatePrompt2ImageUrl$inboundSchema, UpdatePrompt2ImageUrl$outboundSchema, UpdatePrompt2ImageUrl$, UpdatePrompt22$inboundSchema, UpdatePrompt22$outboundSchema, UpdatePrompt22$, UpdatePrompt2Type$inboundSchema, UpdatePrompt2Type$outboundSchema, UpdatePrompt2Type$, UpdatePrompt21$inboundSchema, UpdatePrompt21$outboundSchema, UpdatePrompt21$, UpdatePromptContent2$inboundSchema, UpdatePromptContent2$outboundSchema, UpdatePromptContent2$, UpdatePromptContent$inboundSchema, UpdatePromptContent$outboundSchema, UpdatePromptContent$, UpdatePromptType$inboundSchema, UpdatePromptType$outboundSchema, UpdatePromptType$, UpdatePromptFunction$inboundSchema, UpdatePromptFunction$outboundSchema, UpdatePromptFunction$, UpdatePromptToolCalls$inboundSchema, UpdatePromptToolCalls$outboundSchema, UpdatePromptToolCalls$, UpdatePromptMessages$inboundSchema, UpdatePromptMessages$outboundSchema, UpdatePromptMessages$, UpdatePromptPromptConfig$inboundSchema, UpdatePromptPromptConfig$outboundSchema, UpdatePromptPromptConfig$, UpdatePromptUseCases$inboundSchema, UpdatePromptUseCases$outboundSchema, UpdatePromptUseCases$, UpdatePromptLanguage$inboundSchema, UpdatePromptLanguage$outboundSchema, UpdatePromptLanguage$, UpdatePromptMetadata$inboundSchema, UpdatePromptMetadata$outboundSchema, UpdatePromptMetadata$, UpdatePromptRequestBody$inboundSchema, UpdatePromptRequestBody$outboundSchema, UpdatePromptRequestBody$, UpdatePromptRequest$inboundSchema, UpdatePromptRequest$outboundSchema, UpdatePromptRequest$, UpdatePromptPromptsType$inboundSchema, UpdatePromptPromptsType$outboundSchema, UpdatePromptPromptsType$, UpdatePromptModelType$inboundSchema, UpdatePromptModelType$outboundSchema, UpdatePromptModelType$, UpdatePromptPromptsFormat$inboundSchema, UpdatePromptPromptsFormat$outboundSchema, UpdatePromptPromptsFormat$, UpdatePromptResponseFormatPromptsResponse200ApplicationJSONType$inboundSchema, UpdatePromptResponseFormatPromptsResponse200ApplicationJSONType$outboundSchema, UpdatePromptResponseFormatPromptsResponse200ApplicationJSONType$, UpdatePromptResponseFormatPrompts3$inboundSchema, UpdatePromptResponseFormatPrompts3$outboundSchema, UpdatePromptResponseFormatPrompts3$, UpdatePromptResponseFormatPromptsResponse200Type$inboundSchema, UpdatePromptResponseFormatPromptsResponse200Type$outboundSchema, UpdatePromptResponseFormatPromptsResponse200Type$, UpdatePromptResponseFormatJsonSchema$inboundSchema, UpdatePromptResponseFormatJsonSchema$outboundSchema, UpdatePromptResponseFormatJsonSchema$, UpdatePromptResponseFormatPrompts2$inboundSchema, UpdatePromptResponseFormatPrompts2$outboundSchema, UpdatePromptResponseFormatPrompts2$, UpdatePromptResponseFormatPromptsResponseType$inboundSchema, UpdatePromptResponseFormatPromptsResponseType$outboundSchema, UpdatePromptResponseFormatPromptsResponseType$, UpdatePromptResponseFormatPrompts1$inboundSchema, UpdatePromptResponseFormatPrompts1$outboundSchema, UpdatePromptResponseFormatPrompts1$, UpdatePromptPromptsResponseFormat$inboundSchema, UpdatePromptPromptsResponseFormat$outboundSchema, UpdatePromptPromptsResponseFormat$, UpdatePromptPromptsPhotoRealVersion$inboundSchema, UpdatePromptPromptsPhotoRealVersion$outboundSchema, UpdatePromptPromptsPhotoRealVersion$, UpdatePromptPromptsEncodingFormat$inboundSchema, UpdatePromptPromptsEncodingFormat$outboundSchema, UpdatePromptPromptsEncodingFormat$, UpdatePromptPromptsReasoningEffort$inboundSchema, UpdatePromptPromptsReasoningEffort$outboundSchema, UpdatePromptPromptsReasoningEffort$, UpdatePromptPromptsVerbosity$inboundSchema, UpdatePromptPromptsVerbosity$outboundSchema, UpdatePromptPromptsVerbosity$, UpdatePromptPromptsModelParameters$inboundSchema, UpdatePromptPromptsModelParameters$outboundSchema, UpdatePromptPromptsModelParameters$, UpdatePromptPromptsProvider$inboundSchema, UpdatePromptPromptsProvider$outboundSchema, UpdatePromptPromptsProvider$, UpdatePromptPromptsRole$inboundSchema, UpdatePromptPromptsRole$outboundSchema, UpdatePromptPromptsRole$, UpdatePrompt2PromptsResponse200ApplicationJSONType$inboundSchema, UpdatePrompt2PromptsResponse200ApplicationJSONType$outboundSchema, UpdatePrompt2PromptsResponse200ApplicationJSONType$, UpdatePrompt2PromptsFile$inboundSchema, UpdatePrompt2PromptsFile$outboundSchema, UpdatePrompt2PromptsFile$, UpdatePrompt2Prompts3$inboundSchema, UpdatePrompt2Prompts3$outboundSchema, UpdatePrompt2Prompts3$, UpdatePrompt2PromptsResponse200Type$inboundSchema, UpdatePrompt2PromptsResponse200Type$outboundSchema, UpdatePrompt2PromptsResponse200Type$, UpdatePrompt2PromptsImageUrl$inboundSchema, UpdatePrompt2PromptsImageUrl$outboundSchema, UpdatePrompt2PromptsImageUrl$, UpdatePrompt2Prompts2$inboundSchema, UpdatePrompt2Prompts2$outboundSchema, UpdatePrompt2Prompts2$, UpdatePrompt2PromptsResponseType$inboundSchema, UpdatePrompt2PromptsResponseType$outboundSchema, UpdatePrompt2PromptsResponseType$, UpdatePrompt2Prompts1$inboundSchema, UpdatePrompt2Prompts1$outboundSchema, UpdatePrompt2Prompts1$, UpdatePromptContentPrompts2$inboundSchema, UpdatePromptContentPrompts2$outboundSchema, UpdatePromptContentPrompts2$, UpdatePromptPromptsContent$inboundSchema, UpdatePromptPromptsContent$outboundSchema, UpdatePromptPromptsContent$, UpdatePromptPromptsResponseType$inboundSchema, UpdatePromptPromptsResponseType$outboundSchema, UpdatePromptPromptsResponseType$, UpdatePromptPromptsFunction$inboundSchema, UpdatePromptPromptsFunction$outboundSchema, UpdatePromptPromptsFunction$, UpdatePromptPromptsToolCalls$inboundSchema, UpdatePromptPromptsToolCalls$outboundSchema, UpdatePromptPromptsToolCalls$, UpdatePromptPromptsMessages$inboundSchema, UpdatePromptPromptsMessages$outboundSchema, UpdatePromptPromptsMessages$, UpdatePromptPromptsPromptConfig$inboundSchema, UpdatePromptPromptsPromptConfig$outboundSchema, UpdatePromptPromptsPromptConfig$, UpdatePromptPromptsUseCases$inboundSchema, UpdatePromptPromptsUseCases$outboundSchema, UpdatePromptPromptsUseCases$, UpdatePromptPromptsLanguage$inboundSchema, UpdatePromptPromptsLanguage$outboundSchema, UpdatePromptPromptsLanguage$, UpdatePromptPromptsMetadata$inboundSchema, UpdatePromptPromptsMetadata$outboundSchema, UpdatePromptPromptsMetadata$, UpdatePromptResponseBody$inboundSchema, UpdatePromptResponseBody$outboundSchema, UpdatePromptResponseBody$;
|
|
60303
60487
|
var init_updateprompt = __esm(() => {
|
|
60304
60488
|
init_esm();
|
|
60305
60489
|
init_primitives();
|
|
@@ -60309,12 +60493,15 @@ var init_updateprompt = __esm(() => {
|
|
|
60309
60493
|
Text: "text",
|
|
60310
60494
|
JsonObject: "json_object"
|
|
60311
60495
|
};
|
|
60312
|
-
|
|
60496
|
+
UpdatePromptResponseFormatPromptsRequestType = {
|
|
60313
60497
|
JsonObject: "json_object"
|
|
60314
60498
|
};
|
|
60315
|
-
|
|
60499
|
+
UpdatePromptResponseFormatPromptsType = {
|
|
60316
60500
|
JsonSchema: "json_schema"
|
|
60317
60501
|
};
|
|
60502
|
+
UpdatePromptResponseFormatType = {
|
|
60503
|
+
Text: "text"
|
|
60504
|
+
};
|
|
60318
60505
|
UpdatePromptPhotoRealVersion = {
|
|
60319
60506
|
V1: "v1",
|
|
60320
60507
|
V2: "v2"
|
|
@@ -60430,12 +60617,15 @@ var init_updateprompt = __esm(() => {
|
|
|
60430
60617
|
Text: "text",
|
|
60431
60618
|
JsonObject: "json_object"
|
|
60432
60619
|
};
|
|
60433
|
-
|
|
60620
|
+
UpdatePromptResponseFormatPromptsResponse200ApplicationJSONType = {
|
|
60434
60621
|
JsonObject: "json_object"
|
|
60435
60622
|
};
|
|
60436
|
-
|
|
60623
|
+
UpdatePromptResponseFormatPromptsResponse200Type = {
|
|
60437
60624
|
JsonSchema: "json_schema"
|
|
60438
60625
|
};
|
|
60626
|
+
UpdatePromptResponseFormatPromptsResponseType = {
|
|
60627
|
+
Text: "text"
|
|
60628
|
+
};
|
|
60439
60629
|
UpdatePromptPromptsPhotoRealVersion = {
|
|
60440
60630
|
V1: "v1",
|
|
60441
60631
|
V2: "v2"
|
|
@@ -60537,28 +60727,28 @@ var init_updateprompt = __esm(() => {
|
|
|
60537
60727
|
UpdatePromptFormat$.inboundSchema = UpdatePromptFormat$inboundSchema;
|
|
60538
60728
|
UpdatePromptFormat$.outboundSchema = UpdatePromptFormat$outboundSchema;
|
|
60539
60729
|
})(UpdatePromptFormat$ ||= {});
|
|
60730
|
+
UpdatePromptResponseFormatPromptsRequestType$inboundSchema = nativeEnumType(UpdatePromptResponseFormatPromptsRequestType);
|
|
60731
|
+
UpdatePromptResponseFormatPromptsRequestType$outboundSchema = UpdatePromptResponseFormatPromptsRequestType$inboundSchema;
|
|
60732
|
+
((UpdatePromptResponseFormatPromptsRequestType$) => {
|
|
60733
|
+
UpdatePromptResponseFormatPromptsRequestType$.inboundSchema = UpdatePromptResponseFormatPromptsRequestType$inboundSchema;
|
|
60734
|
+
UpdatePromptResponseFormatPromptsRequestType$.outboundSchema = UpdatePromptResponseFormatPromptsRequestType$outboundSchema;
|
|
60735
|
+
})(UpdatePromptResponseFormatPromptsRequestType$ ||= {});
|
|
60736
|
+
UpdatePromptResponseFormat3$inboundSchema = objectType({
|
|
60737
|
+
type: UpdatePromptResponseFormatPromptsRequestType$inboundSchema
|
|
60738
|
+
});
|
|
60739
|
+
UpdatePromptResponseFormat3$outboundSchema = objectType({
|
|
60740
|
+
type: UpdatePromptResponseFormatPromptsRequestType$outboundSchema
|
|
60741
|
+
});
|
|
60742
|
+
((UpdatePromptResponseFormat3$) => {
|
|
60743
|
+
UpdatePromptResponseFormat3$.inboundSchema = UpdatePromptResponseFormat3$inboundSchema;
|
|
60744
|
+
UpdatePromptResponseFormat3$.outboundSchema = UpdatePromptResponseFormat3$outboundSchema;
|
|
60745
|
+
})(UpdatePromptResponseFormat3$ ||= {});
|
|
60540
60746
|
UpdatePromptResponseFormatPromptsType$inboundSchema = nativeEnumType(UpdatePromptResponseFormatPromptsType);
|
|
60541
60747
|
UpdatePromptResponseFormatPromptsType$outboundSchema = UpdatePromptResponseFormatPromptsType$inboundSchema;
|
|
60542
60748
|
((UpdatePromptResponseFormatPromptsType$) => {
|
|
60543
60749
|
UpdatePromptResponseFormatPromptsType$.inboundSchema = UpdatePromptResponseFormatPromptsType$inboundSchema;
|
|
60544
60750
|
UpdatePromptResponseFormatPromptsType$.outboundSchema = UpdatePromptResponseFormatPromptsType$outboundSchema;
|
|
60545
60751
|
})(UpdatePromptResponseFormatPromptsType$ ||= {});
|
|
60546
|
-
UpdatePromptResponseFormat2$inboundSchema = objectType({
|
|
60547
|
-
type: UpdatePromptResponseFormatPromptsType$inboundSchema
|
|
60548
|
-
});
|
|
60549
|
-
UpdatePromptResponseFormat2$outboundSchema = objectType({
|
|
60550
|
-
type: UpdatePromptResponseFormatPromptsType$outboundSchema
|
|
60551
|
-
});
|
|
60552
|
-
((UpdatePromptResponseFormat2$) => {
|
|
60553
|
-
UpdatePromptResponseFormat2$.inboundSchema = UpdatePromptResponseFormat2$inboundSchema;
|
|
60554
|
-
UpdatePromptResponseFormat2$.outboundSchema = UpdatePromptResponseFormat2$outboundSchema;
|
|
60555
|
-
})(UpdatePromptResponseFormat2$ ||= {});
|
|
60556
|
-
UpdatePromptResponseFormatType$inboundSchema = nativeEnumType(UpdatePromptResponseFormatType);
|
|
60557
|
-
UpdatePromptResponseFormatType$outboundSchema = UpdatePromptResponseFormatType$inboundSchema;
|
|
60558
|
-
((UpdatePromptResponseFormatType$) => {
|
|
60559
|
-
UpdatePromptResponseFormatType$.inboundSchema = UpdatePromptResponseFormatType$inboundSchema;
|
|
60560
|
-
UpdatePromptResponseFormatType$.outboundSchema = UpdatePromptResponseFormatType$outboundSchema;
|
|
60561
|
-
})(UpdatePromptResponseFormatType$ ||= {});
|
|
60562
60752
|
ResponseFormatJsonSchema$inboundSchema = objectType({
|
|
60563
60753
|
name: stringType(),
|
|
60564
60754
|
strict: booleanType().optional(),
|
|
@@ -60573,33 +60763,51 @@ var init_updateprompt = __esm(() => {
|
|
|
60573
60763
|
ResponseFormatJsonSchema$.inboundSchema = ResponseFormatJsonSchema$inboundSchema;
|
|
60574
60764
|
ResponseFormatJsonSchema$.outboundSchema = ResponseFormatJsonSchema$outboundSchema;
|
|
60575
60765
|
})(ResponseFormatJsonSchema$ ||= {});
|
|
60576
|
-
|
|
60577
|
-
type:
|
|
60766
|
+
UpdatePromptResponseFormat2$inboundSchema = objectType({
|
|
60767
|
+
type: UpdatePromptResponseFormatPromptsType$inboundSchema,
|
|
60578
60768
|
json_schema: lazyType(() => ResponseFormatJsonSchema$inboundSchema)
|
|
60579
60769
|
}).transform((v2) => {
|
|
60580
60770
|
return remap(v2, {
|
|
60581
60771
|
json_schema: "jsonSchema"
|
|
60582
60772
|
});
|
|
60583
60773
|
});
|
|
60584
|
-
|
|
60585
|
-
type:
|
|
60774
|
+
UpdatePromptResponseFormat2$outboundSchema = objectType({
|
|
60775
|
+
type: UpdatePromptResponseFormatPromptsType$outboundSchema,
|
|
60586
60776
|
jsonSchema: lazyType(() => ResponseFormatJsonSchema$outboundSchema)
|
|
60587
60777
|
}).transform((v2) => {
|
|
60588
60778
|
return remap(v2, {
|
|
60589
60779
|
jsonSchema: "json_schema"
|
|
60590
60780
|
});
|
|
60591
60781
|
});
|
|
60782
|
+
((UpdatePromptResponseFormat2$) => {
|
|
60783
|
+
UpdatePromptResponseFormat2$.inboundSchema = UpdatePromptResponseFormat2$inboundSchema;
|
|
60784
|
+
UpdatePromptResponseFormat2$.outboundSchema = UpdatePromptResponseFormat2$outboundSchema;
|
|
60785
|
+
})(UpdatePromptResponseFormat2$ ||= {});
|
|
60786
|
+
UpdatePromptResponseFormatType$inboundSchema = nativeEnumType(UpdatePromptResponseFormatType);
|
|
60787
|
+
UpdatePromptResponseFormatType$outboundSchema = UpdatePromptResponseFormatType$inboundSchema;
|
|
60788
|
+
((UpdatePromptResponseFormatType$) => {
|
|
60789
|
+
UpdatePromptResponseFormatType$.inboundSchema = UpdatePromptResponseFormatType$inboundSchema;
|
|
60790
|
+
UpdatePromptResponseFormatType$.outboundSchema = UpdatePromptResponseFormatType$outboundSchema;
|
|
60791
|
+
})(UpdatePromptResponseFormatType$ ||= {});
|
|
60792
|
+
UpdatePromptResponseFormat1$inboundSchema = objectType({
|
|
60793
|
+
type: UpdatePromptResponseFormatType$inboundSchema
|
|
60794
|
+
});
|
|
60795
|
+
UpdatePromptResponseFormat1$outboundSchema = objectType({
|
|
60796
|
+
type: UpdatePromptResponseFormatType$outboundSchema
|
|
60797
|
+
});
|
|
60592
60798
|
((UpdatePromptResponseFormat1$) => {
|
|
60593
60799
|
UpdatePromptResponseFormat1$.inboundSchema = UpdatePromptResponseFormat1$inboundSchema;
|
|
60594
60800
|
UpdatePromptResponseFormat1$.outboundSchema = UpdatePromptResponseFormat1$outboundSchema;
|
|
60595
60801
|
})(UpdatePromptResponseFormat1$ ||= {});
|
|
60596
60802
|
UpdatePromptResponseFormat$inboundSchema = unionType([
|
|
60803
|
+
lazyType(() => UpdatePromptResponseFormat2$inboundSchema),
|
|
60597
60804
|
lazyType(() => UpdatePromptResponseFormat1$inboundSchema),
|
|
60598
|
-
lazyType(() =>
|
|
60805
|
+
lazyType(() => UpdatePromptResponseFormat3$inboundSchema)
|
|
60599
60806
|
]);
|
|
60600
60807
|
UpdatePromptResponseFormat$outboundSchema = unionType([
|
|
60808
|
+
lazyType(() => UpdatePromptResponseFormat2$outboundSchema),
|
|
60601
60809
|
lazyType(() => UpdatePromptResponseFormat1$outboundSchema),
|
|
60602
|
-
lazyType(() =>
|
|
60810
|
+
lazyType(() => UpdatePromptResponseFormat3$outboundSchema)
|
|
60603
60811
|
]);
|
|
60604
60812
|
((UpdatePromptResponseFormat$) => {
|
|
60605
60813
|
UpdatePromptResponseFormat$.inboundSchema = UpdatePromptResponseFormat$inboundSchema;
|
|
@@ -60643,8 +60851,9 @@ var init_updateprompt = __esm(() => {
|
|
|
60643
60851
|
quality: stringType().optional(),
|
|
60644
60852
|
style: stringType().optional(),
|
|
60645
60853
|
responseFormat: nullableType(unionType([
|
|
60854
|
+
lazyType(() => UpdatePromptResponseFormat2$inboundSchema),
|
|
60646
60855
|
lazyType(() => UpdatePromptResponseFormat1$inboundSchema),
|
|
60647
|
-
lazyType(() =>
|
|
60856
|
+
lazyType(() => UpdatePromptResponseFormat3$inboundSchema)
|
|
60648
60857
|
])).optional(),
|
|
60649
60858
|
photoRealVersion: UpdatePromptPhotoRealVersion$inboundSchema.optional(),
|
|
60650
60859
|
encoding_format: UpdatePromptEncodingFormat$inboundSchema.optional(),
|
|
@@ -60670,8 +60879,9 @@ var init_updateprompt = __esm(() => {
|
|
|
60670
60879
|
quality: stringType().optional(),
|
|
60671
60880
|
style: stringType().optional(),
|
|
60672
60881
|
responseFormat: nullableType(unionType([
|
|
60882
|
+
lazyType(() => UpdatePromptResponseFormat2$outboundSchema),
|
|
60673
60883
|
lazyType(() => UpdatePromptResponseFormat1$outboundSchema),
|
|
60674
|
-
lazyType(() =>
|
|
60884
|
+
lazyType(() => UpdatePromptResponseFormat3$outboundSchema)
|
|
60675
60885
|
])).optional(),
|
|
60676
60886
|
photoRealVersion: UpdatePromptPhotoRealVersion$outboundSchema.optional(),
|
|
60677
60887
|
encodingFormat: UpdatePromptEncodingFormat$outboundSchema.optional(),
|
|
@@ -61053,28 +61263,28 @@ var init_updateprompt = __esm(() => {
|
|
|
61053
61263
|
UpdatePromptPromptsFormat$.inboundSchema = UpdatePromptPromptsFormat$inboundSchema;
|
|
61054
61264
|
UpdatePromptPromptsFormat$.outboundSchema = UpdatePromptPromptsFormat$outboundSchema;
|
|
61055
61265
|
})(UpdatePromptPromptsFormat$ ||= {});
|
|
61266
|
+
UpdatePromptResponseFormatPromptsResponse200ApplicationJSONType$inboundSchema = nativeEnumType(UpdatePromptResponseFormatPromptsResponse200ApplicationJSONType);
|
|
61267
|
+
UpdatePromptResponseFormatPromptsResponse200ApplicationJSONType$outboundSchema = UpdatePromptResponseFormatPromptsResponse200ApplicationJSONType$inboundSchema;
|
|
61268
|
+
((UpdatePromptResponseFormatPromptsResponse200ApplicationJSONType$) => {
|
|
61269
|
+
UpdatePromptResponseFormatPromptsResponse200ApplicationJSONType$.inboundSchema = UpdatePromptResponseFormatPromptsResponse200ApplicationJSONType$inboundSchema;
|
|
61270
|
+
UpdatePromptResponseFormatPromptsResponse200ApplicationJSONType$.outboundSchema = UpdatePromptResponseFormatPromptsResponse200ApplicationJSONType$outboundSchema;
|
|
61271
|
+
})(UpdatePromptResponseFormatPromptsResponse200ApplicationJSONType$ ||= {});
|
|
61272
|
+
UpdatePromptResponseFormatPrompts3$inboundSchema = objectType({
|
|
61273
|
+
type: UpdatePromptResponseFormatPromptsResponse200ApplicationJSONType$inboundSchema
|
|
61274
|
+
});
|
|
61275
|
+
UpdatePromptResponseFormatPrompts3$outboundSchema = objectType({
|
|
61276
|
+
type: UpdatePromptResponseFormatPromptsResponse200ApplicationJSONType$outboundSchema
|
|
61277
|
+
});
|
|
61278
|
+
((UpdatePromptResponseFormatPrompts3$) => {
|
|
61279
|
+
UpdatePromptResponseFormatPrompts3$.inboundSchema = UpdatePromptResponseFormatPrompts3$inboundSchema;
|
|
61280
|
+
UpdatePromptResponseFormatPrompts3$.outboundSchema = UpdatePromptResponseFormatPrompts3$outboundSchema;
|
|
61281
|
+
})(UpdatePromptResponseFormatPrompts3$ ||= {});
|
|
61056
61282
|
UpdatePromptResponseFormatPromptsResponse200Type$inboundSchema = nativeEnumType(UpdatePromptResponseFormatPromptsResponse200Type);
|
|
61057
61283
|
UpdatePromptResponseFormatPromptsResponse200Type$outboundSchema = UpdatePromptResponseFormatPromptsResponse200Type$inboundSchema;
|
|
61058
61284
|
((UpdatePromptResponseFormatPromptsResponse200Type$) => {
|
|
61059
61285
|
UpdatePromptResponseFormatPromptsResponse200Type$.inboundSchema = UpdatePromptResponseFormatPromptsResponse200Type$inboundSchema;
|
|
61060
61286
|
UpdatePromptResponseFormatPromptsResponse200Type$.outboundSchema = UpdatePromptResponseFormatPromptsResponse200Type$outboundSchema;
|
|
61061
61287
|
})(UpdatePromptResponseFormatPromptsResponse200Type$ ||= {});
|
|
61062
|
-
UpdatePromptResponseFormatPrompts2$inboundSchema = objectType({
|
|
61063
|
-
type: UpdatePromptResponseFormatPromptsResponse200Type$inboundSchema
|
|
61064
|
-
});
|
|
61065
|
-
UpdatePromptResponseFormatPrompts2$outboundSchema = objectType({
|
|
61066
|
-
type: UpdatePromptResponseFormatPromptsResponse200Type$outboundSchema
|
|
61067
|
-
});
|
|
61068
|
-
((UpdatePromptResponseFormatPrompts2$) => {
|
|
61069
|
-
UpdatePromptResponseFormatPrompts2$.inboundSchema = UpdatePromptResponseFormatPrompts2$inboundSchema;
|
|
61070
|
-
UpdatePromptResponseFormatPrompts2$.outboundSchema = UpdatePromptResponseFormatPrompts2$outboundSchema;
|
|
61071
|
-
})(UpdatePromptResponseFormatPrompts2$ ||= {});
|
|
61072
|
-
UpdatePromptResponseFormatPromptsResponseType$inboundSchema = nativeEnumType(UpdatePromptResponseFormatPromptsResponseType);
|
|
61073
|
-
UpdatePromptResponseFormatPromptsResponseType$outboundSchema = UpdatePromptResponseFormatPromptsResponseType$inboundSchema;
|
|
61074
|
-
((UpdatePromptResponseFormatPromptsResponseType$) => {
|
|
61075
|
-
UpdatePromptResponseFormatPromptsResponseType$.inboundSchema = UpdatePromptResponseFormatPromptsResponseType$inboundSchema;
|
|
61076
|
-
UpdatePromptResponseFormatPromptsResponseType$.outboundSchema = UpdatePromptResponseFormatPromptsResponseType$outboundSchema;
|
|
61077
|
-
})(UpdatePromptResponseFormatPromptsResponseType$ ||= {});
|
|
61078
61288
|
UpdatePromptResponseFormatJsonSchema$inboundSchema = objectType({
|
|
61079
61289
|
name: stringType(),
|
|
61080
61290
|
strict: booleanType().optional(),
|
|
@@ -61089,33 +61299,51 @@ var init_updateprompt = __esm(() => {
|
|
|
61089
61299
|
UpdatePromptResponseFormatJsonSchema$.inboundSchema = UpdatePromptResponseFormatJsonSchema$inboundSchema;
|
|
61090
61300
|
UpdatePromptResponseFormatJsonSchema$.outboundSchema = UpdatePromptResponseFormatJsonSchema$outboundSchema;
|
|
61091
61301
|
})(UpdatePromptResponseFormatJsonSchema$ ||= {});
|
|
61092
|
-
|
|
61093
|
-
type:
|
|
61302
|
+
UpdatePromptResponseFormatPrompts2$inboundSchema = objectType({
|
|
61303
|
+
type: UpdatePromptResponseFormatPromptsResponse200Type$inboundSchema,
|
|
61094
61304
|
json_schema: lazyType(() => UpdatePromptResponseFormatJsonSchema$inboundSchema)
|
|
61095
61305
|
}).transform((v2) => {
|
|
61096
61306
|
return remap(v2, {
|
|
61097
61307
|
json_schema: "jsonSchema"
|
|
61098
61308
|
});
|
|
61099
61309
|
});
|
|
61100
|
-
|
|
61101
|
-
type:
|
|
61310
|
+
UpdatePromptResponseFormatPrompts2$outboundSchema = objectType({
|
|
61311
|
+
type: UpdatePromptResponseFormatPromptsResponse200Type$outboundSchema,
|
|
61102
61312
|
jsonSchema: lazyType(() => UpdatePromptResponseFormatJsonSchema$outboundSchema)
|
|
61103
61313
|
}).transform((v2) => {
|
|
61104
61314
|
return remap(v2, {
|
|
61105
61315
|
jsonSchema: "json_schema"
|
|
61106
61316
|
});
|
|
61107
61317
|
});
|
|
61318
|
+
((UpdatePromptResponseFormatPrompts2$) => {
|
|
61319
|
+
UpdatePromptResponseFormatPrompts2$.inboundSchema = UpdatePromptResponseFormatPrompts2$inboundSchema;
|
|
61320
|
+
UpdatePromptResponseFormatPrompts2$.outboundSchema = UpdatePromptResponseFormatPrompts2$outboundSchema;
|
|
61321
|
+
})(UpdatePromptResponseFormatPrompts2$ ||= {});
|
|
61322
|
+
UpdatePromptResponseFormatPromptsResponseType$inboundSchema = nativeEnumType(UpdatePromptResponseFormatPromptsResponseType);
|
|
61323
|
+
UpdatePromptResponseFormatPromptsResponseType$outboundSchema = UpdatePromptResponseFormatPromptsResponseType$inboundSchema;
|
|
61324
|
+
((UpdatePromptResponseFormatPromptsResponseType$) => {
|
|
61325
|
+
UpdatePromptResponseFormatPromptsResponseType$.inboundSchema = UpdatePromptResponseFormatPromptsResponseType$inboundSchema;
|
|
61326
|
+
UpdatePromptResponseFormatPromptsResponseType$.outboundSchema = UpdatePromptResponseFormatPromptsResponseType$outboundSchema;
|
|
61327
|
+
})(UpdatePromptResponseFormatPromptsResponseType$ ||= {});
|
|
61328
|
+
UpdatePromptResponseFormatPrompts1$inboundSchema = objectType({
|
|
61329
|
+
type: UpdatePromptResponseFormatPromptsResponseType$inboundSchema
|
|
61330
|
+
});
|
|
61331
|
+
UpdatePromptResponseFormatPrompts1$outboundSchema = objectType({
|
|
61332
|
+
type: UpdatePromptResponseFormatPromptsResponseType$outboundSchema
|
|
61333
|
+
});
|
|
61108
61334
|
((UpdatePromptResponseFormatPrompts1$) => {
|
|
61109
61335
|
UpdatePromptResponseFormatPrompts1$.inboundSchema = UpdatePromptResponseFormatPrompts1$inboundSchema;
|
|
61110
61336
|
UpdatePromptResponseFormatPrompts1$.outboundSchema = UpdatePromptResponseFormatPrompts1$outboundSchema;
|
|
61111
61337
|
})(UpdatePromptResponseFormatPrompts1$ ||= {});
|
|
61112
61338
|
UpdatePromptPromptsResponseFormat$inboundSchema = unionType([
|
|
61339
|
+
lazyType(() => UpdatePromptResponseFormatPrompts2$inboundSchema),
|
|
61113
61340
|
lazyType(() => UpdatePromptResponseFormatPrompts1$inboundSchema),
|
|
61114
|
-
lazyType(() =>
|
|
61341
|
+
lazyType(() => UpdatePromptResponseFormatPrompts3$inboundSchema)
|
|
61115
61342
|
]);
|
|
61116
61343
|
UpdatePromptPromptsResponseFormat$outboundSchema = unionType([
|
|
61344
|
+
lazyType(() => UpdatePromptResponseFormatPrompts2$outboundSchema),
|
|
61117
61345
|
lazyType(() => UpdatePromptResponseFormatPrompts1$outboundSchema),
|
|
61118
|
-
lazyType(() =>
|
|
61346
|
+
lazyType(() => UpdatePromptResponseFormatPrompts3$outboundSchema)
|
|
61119
61347
|
]);
|
|
61120
61348
|
((UpdatePromptPromptsResponseFormat$) => {
|
|
61121
61349
|
UpdatePromptPromptsResponseFormat$.inboundSchema = UpdatePromptPromptsResponseFormat$inboundSchema;
|
|
@@ -61159,8 +61387,9 @@ var init_updateprompt = __esm(() => {
|
|
|
61159
61387
|
quality: stringType().optional(),
|
|
61160
61388
|
style: stringType().optional(),
|
|
61161
61389
|
responseFormat: nullableType(unionType([
|
|
61390
|
+
lazyType(() => UpdatePromptResponseFormatPrompts2$inboundSchema),
|
|
61162
61391
|
lazyType(() => UpdatePromptResponseFormatPrompts1$inboundSchema),
|
|
61163
|
-
lazyType(() =>
|
|
61392
|
+
lazyType(() => UpdatePromptResponseFormatPrompts3$inboundSchema)
|
|
61164
61393
|
])).optional(),
|
|
61165
61394
|
photoRealVersion: UpdatePromptPromptsPhotoRealVersion$inboundSchema.optional(),
|
|
61166
61395
|
encoding_format: UpdatePromptPromptsEncodingFormat$inboundSchema.optional(),
|
|
@@ -61186,8 +61415,9 @@ var init_updateprompt = __esm(() => {
|
|
|
61186
61415
|
quality: stringType().optional(),
|
|
61187
61416
|
style: stringType().optional(),
|
|
61188
61417
|
responseFormat: nullableType(unionType([
|
|
61418
|
+
lazyType(() => UpdatePromptResponseFormatPrompts2$outboundSchema),
|
|
61189
61419
|
lazyType(() => UpdatePromptResponseFormatPrompts1$outboundSchema),
|
|
61190
|
-
lazyType(() =>
|
|
61420
|
+
lazyType(() => UpdatePromptResponseFormatPrompts3$outboundSchema)
|
|
61191
61421
|
])).optional(),
|
|
61192
61422
|
photoRealVersion: UpdatePromptPromptsPhotoRealVersion$outboundSchema.optional(),
|
|
61193
61423
|
encodingFormat: UpdatePromptPromptsEncodingFormat$outboundSchema.optional(),
|
|
@@ -76197,7 +76427,7 @@ var init_remoteconfigsRetrieve2 = __esm(() => {
|
|
|
76197
76427
|
function createMCPServer(deps) {
|
|
76198
76428
|
const server = new McpServer({
|
|
76199
76429
|
name: "Orq",
|
|
76200
|
-
version: "3.10.
|
|
76430
|
+
version: "3.10.17"
|
|
76201
76431
|
});
|
|
76202
76432
|
const client = new OrqCore({
|
|
76203
76433
|
apiKey: deps.apiKey,
|
|
@@ -77605,7 +77835,7 @@ var routes = rn({
|
|
|
77605
77835
|
var app = Ve(routes, {
|
|
77606
77836
|
name: "mcp",
|
|
77607
77837
|
versionInfo: {
|
|
77608
|
-
currentVersion: "3.10.
|
|
77838
|
+
currentVersion: "3.10.17"
|
|
77609
77839
|
}
|
|
77610
77840
|
});
|
|
77611
77841
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -77613,5 +77843,5 @@ export {
|
|
|
77613
77843
|
app
|
|
77614
77844
|
};
|
|
77615
77845
|
|
|
77616
|
-
//# debugId=
|
|
77846
|
+
//# debugId=1DF6E775CF04A3F564756E2164756E21
|
|
77617
77847
|
//# sourceMappingURL=mcp-server.js.map
|