@orq-ai/node 3.10.17 → 3.10.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/mcp-server.js +382 -382
- package/bin/mcp-server.js.map +35 -35
- package/examples/contactsCreate.example.ts +1 -1
- 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 +94 -94
- package/models/operations/createprompt.d.ts.map +1 -1
- package/models/operations/createprompt.js +98 -98
- package/models/operations/createprompt.js.map +1 -1
- package/models/operations/deploymentgetconfig.d.ts +47 -47
- package/models/operations/deploymentgetconfig.d.ts.map +1 -1
- package/models/operations/deploymentgetconfig.js +49 -49
- package/models/operations/deploymentgetconfig.js.map +1 -1
- package/models/operations/deployments.d.ts +47 -47
- package/models/operations/deployments.d.ts.map +1 -1
- package/models/operations/deployments.js +49 -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 +47 -47
- package/models/operations/getallprompts.d.ts.map +1 -1
- package/models/operations/getallprompts.js +50 -50
- package/models/operations/getallprompts.js.map +1 -1
- package/models/operations/getevals.js +28 -28
- package/models/operations/getoneprompt.d.ts +47 -47
- package/models/operations/getoneprompt.d.ts.map +1 -1
- package/models/operations/getoneprompt.js +49 -49
- package/models/operations/getoneprompt.js.map +1 -1
- package/models/operations/getpromptversion.d.ts +47 -47
- package/models/operations/getpromptversion.d.ts.map +1 -1
- package/models/operations/getpromptversion.js +49 -49
- 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 +47 -47
- package/models/operations/listpromptversions.d.ts.map +1 -1
- package/models/operations/listpromptversions.js +49 -49
- 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 +94 -94
- package/models/operations/updateprompt.d.ts.map +1 -1
- package/models/operations/updateprompt.js +99 -99
- package/models/operations/updateprompt.js.map +1 -1
- package/package.json +1 -1
- package/packages/orq-rc/docs/sdks/contacts/README.md +1 -1
- package/packages/orq-rc/examples/contactsCreate.example.ts +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/contactsCreate.ts +1 -1
- 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/mcp-server/tools/contactsCreate.ts +1 -1
- 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 +2 -2
- 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/createprompt.ts +246 -40
- package/packages/orq-rc/src/models/operations/deploymentgetconfig.ts +121 -20
- package/packages/orq-rc/src/models/operations/deployments.ts +115 -19
- 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/getallprompts.ts +100 -2
- package/packages/orq-rc/src/models/operations/getevals.ts +28 -28
- package/packages/orq-rc/src/models/operations/getoneprompt.ts +100 -2
- package/packages/orq-rc/src/models/operations/getpromptversion.ts +100 -2
- 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/listpromptversions.ts +101 -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/models/operations/updateprompt.ts +210 -4
- package/packages/orq-rc/src/sdk/contacts.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 +179 -179
- package/src/models/operations/deploymentgetconfig.ts +106 -106
- package/src/models/operations/deployments.ts +94 -94
- 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 +98 -98
- package/src/models/operations/getevals.ts +28 -28
- package/src/models/operations/getoneprompt.ts +94 -94
- package/src/models/operations/getpromptversion.ts +104 -104
- 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 +103 -103
- 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 +183 -183
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.19",
|
|
34210
|
+
genVersion: "2.681.1",
|
|
34211
|
+
userAgent: "speakeasy-sdk/typescript 3.10.19 2.681.1 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-13T12:53:43.771Z").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-13T12:53:43.771Z")).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-13T12:53:43.771Z").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-13T12:53:43.771Z")).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-13T12:53:43.771Z").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-13T12:53:43.771Z")).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("01K2HQWZ169M1E37F0773SAY1F"),
|
|
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("01K2HQWZ169M1E37F0773SAY1F"),
|
|
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-13T12:53:46.195Z"),
|
|
38077
|
+
updated: stringType().default("2025-08-13T12:53:46.195Z"),
|
|
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-13T12:53:46.195Z"),
|
|
38095
|
+
updated: stringType().default("2025-08-13T12:53:46.195Z"),
|
|
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-13T12:53:46.195Z"),
|
|
38189
|
+
updated: stringType().default("2025-08-13T12:53:46.195Z"),
|
|
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-13T12:53:46.195Z"),
|
|
38210
|
+
updated: stringType().default("2025-08-13T12:53:46.195Z"),
|
|
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-13T12:53:46.195Z"),
|
|
38301
|
+
updated: stringType().default("2025-08-13T12:53:46.195Z"),
|
|
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-13T12:53:46.195Z"),
|
|
38319
|
+
updated: stringType().default("2025-08-13T12:53:46.195Z"),
|
|
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-13T12:53:46.195Z"),
|
|
38407
|
+
updated: stringType().default("2025-08-13T12:53:46.195Z"),
|
|
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-13T12:53:46.195Z"),
|
|
38426
|
+
updated: stringType().default("2025-08-13T12:53:46.195Z"),
|
|
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, 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$,
|
|
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$, ResponseFormat2$inboundSchema, ResponseFormat2$outboundSchema, ResponseFormat2$, ResponseFormatType$inboundSchema, ResponseFormatType$outboundSchema, ResponseFormatType$, JsonSchema$inboundSchema, JsonSchema$outboundSchema, JsonSchema$, 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$, CreatePromptResponseFormat2$inboundSchema, CreatePromptResponseFormat2$outboundSchema, CreatePromptResponseFormat2$, CreatePromptResponseFormatPromptsResponseType$inboundSchema, CreatePromptResponseFormatPromptsResponseType$outboundSchema, CreatePromptResponseFormatPromptsResponseType$, CreatePromptResponseFormatJsonSchema$inboundSchema, CreatePromptResponseFormatJsonSchema$outboundSchema, CreatePromptResponseFormatJsonSchema$, 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();
|
|
@@ -38781,13 +38781,13 @@ var init_createprompt = __esm(() => {
|
|
|
38781
38781
|
JsonObject: "json_object"
|
|
38782
38782
|
};
|
|
38783
38783
|
CreatePromptResponseFormatPromptsType = {
|
|
38784
|
-
|
|
38784
|
+
Text: "text"
|
|
38785
38785
|
};
|
|
38786
38786
|
CreatePromptResponseFormatType = {
|
|
38787
|
-
|
|
38787
|
+
JsonObject: "json_object"
|
|
38788
38788
|
};
|
|
38789
38789
|
ResponseFormatType = {
|
|
38790
|
-
|
|
38790
|
+
JsonSchema: "json_schema"
|
|
38791
38791
|
};
|
|
38792
38792
|
PhotoRealVersion = {
|
|
38793
38793
|
V1: "v1",
|
|
@@ -38905,13 +38905,13 @@ var init_createprompt = __esm(() => {
|
|
|
38905
38905
|
JsonObject: "json_object"
|
|
38906
38906
|
};
|
|
38907
38907
|
CreatePromptResponseFormatPromptsResponse200ApplicationJSONType = {
|
|
38908
|
-
|
|
38908
|
+
Text: "text"
|
|
38909
38909
|
};
|
|
38910
38910
|
CreatePromptResponseFormatPromptsResponse200Type = {
|
|
38911
|
-
|
|
38911
|
+
JsonObject: "json_object"
|
|
38912
38912
|
};
|
|
38913
38913
|
CreatePromptResponseFormatPromptsResponseType = {
|
|
38914
|
-
|
|
38914
|
+
JsonSchema: "json_schema"
|
|
38915
38915
|
};
|
|
38916
38916
|
CreatePromptPhotoRealVersion = {
|
|
38917
38917
|
V1: "v1",
|
|
@@ -39042,6 +39042,22 @@ var init_createprompt = __esm(() => {
|
|
|
39042
39042
|
CreatePromptResponseFormatType$.inboundSchema = CreatePromptResponseFormatType$inboundSchema;
|
|
39043
39043
|
CreatePromptResponseFormatType$.outboundSchema = CreatePromptResponseFormatType$outboundSchema;
|
|
39044
39044
|
})(CreatePromptResponseFormatType$ ||= {});
|
|
39045
|
+
ResponseFormat2$inboundSchema = objectType({
|
|
39046
|
+
type: CreatePromptResponseFormatType$inboundSchema
|
|
39047
|
+
});
|
|
39048
|
+
ResponseFormat2$outboundSchema = objectType({
|
|
39049
|
+
type: CreatePromptResponseFormatType$outboundSchema
|
|
39050
|
+
});
|
|
39051
|
+
((ResponseFormat2$) => {
|
|
39052
|
+
ResponseFormat2$.inboundSchema = ResponseFormat2$inboundSchema;
|
|
39053
|
+
ResponseFormat2$.outboundSchema = ResponseFormat2$outboundSchema;
|
|
39054
|
+
})(ResponseFormat2$ ||= {});
|
|
39055
|
+
ResponseFormatType$inboundSchema = nativeEnumType(ResponseFormatType);
|
|
39056
|
+
ResponseFormatType$outboundSchema = ResponseFormatType$inboundSchema;
|
|
39057
|
+
((ResponseFormatType$) => {
|
|
39058
|
+
ResponseFormatType$.inboundSchema = ResponseFormatType$inboundSchema;
|
|
39059
|
+
ResponseFormatType$.outboundSchema = ResponseFormatType$outboundSchema;
|
|
39060
|
+
})(ResponseFormatType$ ||= {});
|
|
39045
39061
|
JsonSchema$inboundSchema = objectType({
|
|
39046
39062
|
name: stringType(),
|
|
39047
39063
|
strict: booleanType().optional(),
|
|
@@ -39056,50 +39072,34 @@ var init_createprompt = __esm(() => {
|
|
|
39056
39072
|
JsonSchema$.inboundSchema = JsonSchema$inboundSchema;
|
|
39057
39073
|
JsonSchema$.outboundSchema = JsonSchema$outboundSchema;
|
|
39058
39074
|
})(JsonSchema$ ||= {});
|
|
39059
|
-
|
|
39060
|
-
type:
|
|
39075
|
+
ResponseFormat1$inboundSchema = objectType({
|
|
39076
|
+
type: ResponseFormatType$inboundSchema,
|
|
39061
39077
|
json_schema: lazyType(() => JsonSchema$inboundSchema)
|
|
39062
39078
|
}).transform((v2) => {
|
|
39063
39079
|
return remap(v2, {
|
|
39064
39080
|
json_schema: "jsonSchema"
|
|
39065
39081
|
});
|
|
39066
39082
|
});
|
|
39067
|
-
|
|
39068
|
-
type:
|
|
39083
|
+
ResponseFormat1$outboundSchema = objectType({
|
|
39084
|
+
type: ResponseFormatType$outboundSchema,
|
|
39069
39085
|
jsonSchema: lazyType(() => JsonSchema$outboundSchema)
|
|
39070
39086
|
}).transform((v2) => {
|
|
39071
39087
|
return remap(v2, {
|
|
39072
39088
|
jsonSchema: "json_schema"
|
|
39073
39089
|
});
|
|
39074
39090
|
});
|
|
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
|
-
});
|
|
39091
39091
|
((ResponseFormat1$) => {
|
|
39092
39092
|
ResponseFormat1$.inboundSchema = ResponseFormat1$inboundSchema;
|
|
39093
39093
|
ResponseFormat1$.outboundSchema = ResponseFormat1$outboundSchema;
|
|
39094
39094
|
})(ResponseFormat1$ ||= {});
|
|
39095
39095
|
ResponseFormat$inboundSchema = unionType([
|
|
39096
|
-
lazyType(() => ResponseFormat2$inboundSchema),
|
|
39097
39096
|
lazyType(() => ResponseFormat1$inboundSchema),
|
|
39097
|
+
lazyType(() => ResponseFormat2$inboundSchema),
|
|
39098
39098
|
lazyType(() => ResponseFormat3$inboundSchema)
|
|
39099
39099
|
]);
|
|
39100
39100
|
ResponseFormat$outboundSchema = unionType([
|
|
39101
|
-
lazyType(() => ResponseFormat2$outboundSchema),
|
|
39102
39101
|
lazyType(() => ResponseFormat1$outboundSchema),
|
|
39102
|
+
lazyType(() => ResponseFormat2$outboundSchema),
|
|
39103
39103
|
lazyType(() => ResponseFormat3$outboundSchema)
|
|
39104
39104
|
]);
|
|
39105
39105
|
((ResponseFormat$) => {
|
|
@@ -39144,8 +39144,8 @@ var init_createprompt = __esm(() => {
|
|
|
39144
39144
|
quality: stringType().optional(),
|
|
39145
39145
|
style: stringType().optional(),
|
|
39146
39146
|
responseFormat: nullableType(unionType([
|
|
39147
|
-
lazyType(() => ResponseFormat2$inboundSchema),
|
|
39148
39147
|
lazyType(() => ResponseFormat1$inboundSchema),
|
|
39148
|
+
lazyType(() => ResponseFormat2$inboundSchema),
|
|
39149
39149
|
lazyType(() => ResponseFormat3$inboundSchema)
|
|
39150
39150
|
])).optional(),
|
|
39151
39151
|
photoRealVersion: PhotoRealVersion$inboundSchema.optional(),
|
|
@@ -39172,8 +39172,8 @@ var init_createprompt = __esm(() => {
|
|
|
39172
39172
|
quality: stringType().optional(),
|
|
39173
39173
|
style: stringType().optional(),
|
|
39174
39174
|
responseFormat: nullableType(unionType([
|
|
39175
|
-
lazyType(() => ResponseFormat2$outboundSchema),
|
|
39176
39175
|
lazyType(() => ResponseFormat1$outboundSchema),
|
|
39176
|
+
lazyType(() => ResponseFormat2$outboundSchema),
|
|
39177
39177
|
lazyType(() => ResponseFormat3$outboundSchema)
|
|
39178
39178
|
])).optional(),
|
|
39179
39179
|
photoRealVersion: PhotoRealVersion$outboundSchema.optional(),
|
|
@@ -39536,6 +39536,22 @@ var init_createprompt = __esm(() => {
|
|
|
39536
39536
|
CreatePromptResponseFormatPromptsResponse200Type$.inboundSchema = CreatePromptResponseFormatPromptsResponse200Type$inboundSchema;
|
|
39537
39537
|
CreatePromptResponseFormatPromptsResponse200Type$.outboundSchema = CreatePromptResponseFormatPromptsResponse200Type$outboundSchema;
|
|
39538
39538
|
})(CreatePromptResponseFormatPromptsResponse200Type$ ||= {});
|
|
39539
|
+
CreatePromptResponseFormat2$inboundSchema = objectType({
|
|
39540
|
+
type: CreatePromptResponseFormatPromptsResponse200Type$inboundSchema
|
|
39541
|
+
});
|
|
39542
|
+
CreatePromptResponseFormat2$outboundSchema = objectType({
|
|
39543
|
+
type: CreatePromptResponseFormatPromptsResponse200Type$outboundSchema
|
|
39544
|
+
});
|
|
39545
|
+
((CreatePromptResponseFormat2$) => {
|
|
39546
|
+
CreatePromptResponseFormat2$.inboundSchema = CreatePromptResponseFormat2$inboundSchema;
|
|
39547
|
+
CreatePromptResponseFormat2$.outboundSchema = CreatePromptResponseFormat2$outboundSchema;
|
|
39548
|
+
})(CreatePromptResponseFormat2$ ||= {});
|
|
39549
|
+
CreatePromptResponseFormatPromptsResponseType$inboundSchema = nativeEnumType(CreatePromptResponseFormatPromptsResponseType);
|
|
39550
|
+
CreatePromptResponseFormatPromptsResponseType$outboundSchema = CreatePromptResponseFormatPromptsResponseType$inboundSchema;
|
|
39551
|
+
((CreatePromptResponseFormatPromptsResponseType$) => {
|
|
39552
|
+
CreatePromptResponseFormatPromptsResponseType$.inboundSchema = CreatePromptResponseFormatPromptsResponseType$inboundSchema;
|
|
39553
|
+
CreatePromptResponseFormatPromptsResponseType$.outboundSchema = CreatePromptResponseFormatPromptsResponseType$outboundSchema;
|
|
39554
|
+
})(CreatePromptResponseFormatPromptsResponseType$ ||= {});
|
|
39539
39555
|
CreatePromptResponseFormatJsonSchema$inboundSchema = objectType({
|
|
39540
39556
|
name: stringType(),
|
|
39541
39557
|
strict: booleanType().optional(),
|
|
@@ -39550,50 +39566,34 @@ var init_createprompt = __esm(() => {
|
|
|
39550
39566
|
CreatePromptResponseFormatJsonSchema$.inboundSchema = CreatePromptResponseFormatJsonSchema$inboundSchema;
|
|
39551
39567
|
CreatePromptResponseFormatJsonSchema$.outboundSchema = CreatePromptResponseFormatJsonSchema$outboundSchema;
|
|
39552
39568
|
})(CreatePromptResponseFormatJsonSchema$ ||= {});
|
|
39553
|
-
|
|
39554
|
-
type:
|
|
39569
|
+
CreatePromptResponseFormat1$inboundSchema = objectType({
|
|
39570
|
+
type: CreatePromptResponseFormatPromptsResponseType$inboundSchema,
|
|
39555
39571
|
json_schema: lazyType(() => CreatePromptResponseFormatJsonSchema$inboundSchema)
|
|
39556
39572
|
}).transform((v2) => {
|
|
39557
39573
|
return remap(v2, {
|
|
39558
39574
|
json_schema: "jsonSchema"
|
|
39559
39575
|
});
|
|
39560
39576
|
});
|
|
39561
|
-
|
|
39562
|
-
type:
|
|
39577
|
+
CreatePromptResponseFormat1$outboundSchema = objectType({
|
|
39578
|
+
type: CreatePromptResponseFormatPromptsResponseType$outboundSchema,
|
|
39563
39579
|
jsonSchema: lazyType(() => CreatePromptResponseFormatJsonSchema$outboundSchema)
|
|
39564
39580
|
}).transform((v2) => {
|
|
39565
39581
|
return remap(v2, {
|
|
39566
39582
|
jsonSchema: "json_schema"
|
|
39567
39583
|
});
|
|
39568
39584
|
});
|
|
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
|
-
});
|
|
39585
39585
|
((CreatePromptResponseFormat1$) => {
|
|
39586
39586
|
CreatePromptResponseFormat1$.inboundSchema = CreatePromptResponseFormat1$inboundSchema;
|
|
39587
39587
|
CreatePromptResponseFormat1$.outboundSchema = CreatePromptResponseFormat1$outboundSchema;
|
|
39588
39588
|
})(CreatePromptResponseFormat1$ ||= {});
|
|
39589
39589
|
CreatePromptResponseFormat$inboundSchema = unionType([
|
|
39590
|
-
lazyType(() => CreatePromptResponseFormat2$inboundSchema),
|
|
39591
39590
|
lazyType(() => CreatePromptResponseFormat1$inboundSchema),
|
|
39591
|
+
lazyType(() => CreatePromptResponseFormat2$inboundSchema),
|
|
39592
39592
|
lazyType(() => CreatePromptResponseFormat3$inboundSchema)
|
|
39593
39593
|
]);
|
|
39594
39594
|
CreatePromptResponseFormat$outboundSchema = unionType([
|
|
39595
|
-
lazyType(() => CreatePromptResponseFormat2$outboundSchema),
|
|
39596
39595
|
lazyType(() => CreatePromptResponseFormat1$outboundSchema),
|
|
39596
|
+
lazyType(() => CreatePromptResponseFormat2$outboundSchema),
|
|
39597
39597
|
lazyType(() => CreatePromptResponseFormat3$outboundSchema)
|
|
39598
39598
|
]);
|
|
39599
39599
|
((CreatePromptResponseFormat$) => {
|
|
@@ -39638,8 +39638,8 @@ var init_createprompt = __esm(() => {
|
|
|
39638
39638
|
quality: stringType().optional(),
|
|
39639
39639
|
style: stringType().optional(),
|
|
39640
39640
|
responseFormat: nullableType(unionType([
|
|
39641
|
-
lazyType(() => CreatePromptResponseFormat2$inboundSchema),
|
|
39642
39641
|
lazyType(() => CreatePromptResponseFormat1$inboundSchema),
|
|
39642
|
+
lazyType(() => CreatePromptResponseFormat2$inboundSchema),
|
|
39643
39643
|
lazyType(() => CreatePromptResponseFormat3$inboundSchema)
|
|
39644
39644
|
])).optional(),
|
|
39645
39645
|
photoRealVersion: CreatePromptPhotoRealVersion$inboundSchema.optional(),
|
|
@@ -39666,8 +39666,8 @@ var init_createprompt = __esm(() => {
|
|
|
39666
39666
|
quality: stringType().optional(),
|
|
39667
39667
|
style: stringType().optional(),
|
|
39668
39668
|
responseFormat: nullableType(unionType([
|
|
39669
|
-
lazyType(() => CreatePromptResponseFormat2$outboundSchema),
|
|
39670
39669
|
lazyType(() => CreatePromptResponseFormat1$outboundSchema),
|
|
39670
|
+
lazyType(() => CreatePromptResponseFormat2$outboundSchema),
|
|
39671
39671
|
lazyType(() => CreatePromptResponseFormat3$outboundSchema)
|
|
39672
39672
|
])).optional(),
|
|
39673
39673
|
photoRealVersion: CreatePromptPhotoRealVersion$outboundSchema.optional(),
|
|
@@ -41389,7 +41389,7 @@ var init_deploymentcreatemetric = __esm(() => {
|
|
|
41389
41389
|
});
|
|
41390
41390
|
|
|
41391
41391
|
// src/models/operations/deploymentgetconfig.ts
|
|
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$;
|
|
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$, DeploymentGetConfigResponseFormat2$inboundSchema, DeploymentGetConfigResponseFormat2$outboundSchema, DeploymentGetConfigResponseFormat2$, DeploymentGetConfigResponseFormatDeploymentsResponseType$inboundSchema, DeploymentGetConfigResponseFormatDeploymentsResponseType$outboundSchema, DeploymentGetConfigResponseFormatDeploymentsResponseType$, 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$;
|
|
41393
41393
|
var init_deploymentgetconfig = __esm(() => {
|
|
41394
41394
|
init_esm();
|
|
41395
41395
|
init_primitives();
|
|
@@ -41523,13 +41523,13 @@ var init_deploymentgetconfig = __esm(() => {
|
|
|
41523
41523
|
JsonObject: "json_object"
|
|
41524
41524
|
};
|
|
41525
41525
|
DeploymentGetConfigResponseFormatDeploymentsType = {
|
|
41526
|
-
|
|
41526
|
+
Text: "text"
|
|
41527
41527
|
};
|
|
41528
41528
|
DeploymentGetConfigResponseFormatType = {
|
|
41529
|
-
|
|
41529
|
+
JsonObject: "json_object"
|
|
41530
41530
|
};
|
|
41531
41531
|
DeploymentGetConfigResponseFormatDeploymentsResponseType = {
|
|
41532
|
-
|
|
41532
|
+
JsonSchema: "json_schema"
|
|
41533
41533
|
};
|
|
41534
41534
|
DeploymentGetConfigPhotoRealVersion = {
|
|
41535
41535
|
V1: "v1",
|
|
@@ -43431,6 +43431,22 @@ var init_deploymentgetconfig = __esm(() => {
|
|
|
43431
43431
|
DeploymentGetConfigResponseFormatType$.inboundSchema = DeploymentGetConfigResponseFormatType$inboundSchema;
|
|
43432
43432
|
DeploymentGetConfigResponseFormatType$.outboundSchema = DeploymentGetConfigResponseFormatType$outboundSchema;
|
|
43433
43433
|
})(DeploymentGetConfigResponseFormatType$ ||= {});
|
|
43434
|
+
DeploymentGetConfigResponseFormat2$inboundSchema = objectType({
|
|
43435
|
+
type: DeploymentGetConfigResponseFormatType$inboundSchema
|
|
43436
|
+
});
|
|
43437
|
+
DeploymentGetConfigResponseFormat2$outboundSchema = objectType({
|
|
43438
|
+
type: DeploymentGetConfigResponseFormatType$outboundSchema
|
|
43439
|
+
});
|
|
43440
|
+
((DeploymentGetConfigResponseFormat2$) => {
|
|
43441
|
+
DeploymentGetConfigResponseFormat2$.inboundSchema = DeploymentGetConfigResponseFormat2$inboundSchema;
|
|
43442
|
+
DeploymentGetConfigResponseFormat2$.outboundSchema = DeploymentGetConfigResponseFormat2$outboundSchema;
|
|
43443
|
+
})(DeploymentGetConfigResponseFormat2$ ||= {});
|
|
43444
|
+
DeploymentGetConfigResponseFormatDeploymentsResponseType$inboundSchema = nativeEnumType(DeploymentGetConfigResponseFormatDeploymentsResponseType);
|
|
43445
|
+
DeploymentGetConfigResponseFormatDeploymentsResponseType$outboundSchema = DeploymentGetConfigResponseFormatDeploymentsResponseType$inboundSchema;
|
|
43446
|
+
((DeploymentGetConfigResponseFormatDeploymentsResponseType$) => {
|
|
43447
|
+
DeploymentGetConfigResponseFormatDeploymentsResponseType$.inboundSchema = DeploymentGetConfigResponseFormatDeploymentsResponseType$inboundSchema;
|
|
43448
|
+
DeploymentGetConfigResponseFormatDeploymentsResponseType$.outboundSchema = DeploymentGetConfigResponseFormatDeploymentsResponseType$outboundSchema;
|
|
43449
|
+
})(DeploymentGetConfigResponseFormatDeploymentsResponseType$ ||= {});
|
|
43434
43450
|
DeploymentGetConfigResponseFormatJsonSchema$inboundSchema = objectType({
|
|
43435
43451
|
name: stringType(),
|
|
43436
43452
|
strict: booleanType().optional(),
|
|
@@ -43445,50 +43461,34 @@ var init_deploymentgetconfig = __esm(() => {
|
|
|
43445
43461
|
DeploymentGetConfigResponseFormatJsonSchema$.inboundSchema = DeploymentGetConfigResponseFormatJsonSchema$inboundSchema;
|
|
43446
43462
|
DeploymentGetConfigResponseFormatJsonSchema$.outboundSchema = DeploymentGetConfigResponseFormatJsonSchema$outboundSchema;
|
|
43447
43463
|
})(DeploymentGetConfigResponseFormatJsonSchema$ ||= {});
|
|
43448
|
-
|
|
43449
|
-
type:
|
|
43464
|
+
DeploymentGetConfigResponseFormat1$inboundSchema = objectType({
|
|
43465
|
+
type: DeploymentGetConfigResponseFormatDeploymentsResponseType$inboundSchema,
|
|
43450
43466
|
json_schema: lazyType(() => DeploymentGetConfigResponseFormatJsonSchema$inboundSchema)
|
|
43451
43467
|
}).transform((v2) => {
|
|
43452
43468
|
return remap(v2, {
|
|
43453
43469
|
json_schema: "jsonSchema"
|
|
43454
43470
|
});
|
|
43455
43471
|
});
|
|
43456
|
-
|
|
43457
|
-
type:
|
|
43472
|
+
DeploymentGetConfigResponseFormat1$outboundSchema = objectType({
|
|
43473
|
+
type: DeploymentGetConfigResponseFormatDeploymentsResponseType$outboundSchema,
|
|
43458
43474
|
jsonSchema: lazyType(() => DeploymentGetConfigResponseFormatJsonSchema$outboundSchema)
|
|
43459
43475
|
}).transform((v2) => {
|
|
43460
43476
|
return remap(v2, {
|
|
43461
43477
|
jsonSchema: "json_schema"
|
|
43462
43478
|
});
|
|
43463
43479
|
});
|
|
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
|
-
});
|
|
43480
43480
|
((DeploymentGetConfigResponseFormat1$) => {
|
|
43481
43481
|
DeploymentGetConfigResponseFormat1$.inboundSchema = DeploymentGetConfigResponseFormat1$inboundSchema;
|
|
43482
43482
|
DeploymentGetConfigResponseFormat1$.outboundSchema = DeploymentGetConfigResponseFormat1$outboundSchema;
|
|
43483
43483
|
})(DeploymentGetConfigResponseFormat1$ ||= {});
|
|
43484
43484
|
DeploymentGetConfigResponseFormat$inboundSchema = unionType([
|
|
43485
|
-
lazyType(() => DeploymentGetConfigResponseFormat2$inboundSchema),
|
|
43486
43485
|
lazyType(() => DeploymentGetConfigResponseFormat1$inboundSchema),
|
|
43486
|
+
lazyType(() => DeploymentGetConfigResponseFormat2$inboundSchema),
|
|
43487
43487
|
lazyType(() => DeploymentGetConfigResponseFormat3$inboundSchema)
|
|
43488
43488
|
]);
|
|
43489
43489
|
DeploymentGetConfigResponseFormat$outboundSchema = unionType([
|
|
43490
|
-
lazyType(() => DeploymentGetConfigResponseFormat2$outboundSchema),
|
|
43491
43490
|
lazyType(() => DeploymentGetConfigResponseFormat1$outboundSchema),
|
|
43491
|
+
lazyType(() => DeploymentGetConfigResponseFormat2$outboundSchema),
|
|
43492
43492
|
lazyType(() => DeploymentGetConfigResponseFormat3$outboundSchema)
|
|
43493
43493
|
]);
|
|
43494
43494
|
((DeploymentGetConfigResponseFormat$) => {
|
|
@@ -43533,8 +43533,8 @@ var init_deploymentgetconfig = __esm(() => {
|
|
|
43533
43533
|
quality: stringType().optional(),
|
|
43534
43534
|
style: stringType().optional(),
|
|
43535
43535
|
responseFormat: nullableType(unionType([
|
|
43536
|
-
lazyType(() => DeploymentGetConfigResponseFormat2$inboundSchema),
|
|
43537
43536
|
lazyType(() => DeploymentGetConfigResponseFormat1$inboundSchema),
|
|
43537
|
+
lazyType(() => DeploymentGetConfigResponseFormat2$inboundSchema),
|
|
43538
43538
|
lazyType(() => DeploymentGetConfigResponseFormat3$inboundSchema)
|
|
43539
43539
|
])).optional(),
|
|
43540
43540
|
photoRealVersion: DeploymentGetConfigPhotoRealVersion$inboundSchema.optional(),
|
|
@@ -43561,8 +43561,8 @@ var init_deploymentgetconfig = __esm(() => {
|
|
|
43561
43561
|
quality: stringType().optional(),
|
|
43562
43562
|
style: stringType().optional(),
|
|
43563
43563
|
responseFormat: nullableType(unionType([
|
|
43564
|
-
lazyType(() => DeploymentGetConfigResponseFormat2$outboundSchema),
|
|
43565
43564
|
lazyType(() => DeploymentGetConfigResponseFormat1$outboundSchema),
|
|
43565
|
+
lazyType(() => DeploymentGetConfigResponseFormat2$outboundSchema),
|
|
43566
43566
|
lazyType(() => DeploymentGetConfigResponseFormat3$outboundSchema)
|
|
43567
43567
|
])).optional(),
|
|
43568
43568
|
photoRealVersion: DeploymentGetConfigPhotoRealVersion$outboundSchema.optional(),
|
|
@@ -44024,7 +44024,7 @@ var init_deploymentinvoke = __esm(() => {
|
|
|
44024
44024
|
});
|
|
44025
44025
|
|
|
44026
44026
|
// src/models/operations/deployments.ts
|
|
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$,
|
|
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$, DeploymentsResponseFormat2$inboundSchema, DeploymentsResponseFormat2$outboundSchema, DeploymentsResponseFormat2$, DeploymentsResponseFormatDeploymentsResponseType$inboundSchema, DeploymentsResponseFormatDeploymentsResponseType$outboundSchema, DeploymentsResponseFormatDeploymentsResponseType$, DeploymentsResponseFormatJsonSchema$inboundSchema, DeploymentsResponseFormatJsonSchema$outboundSchema, DeploymentsResponseFormatJsonSchema$, 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$;
|
|
44028
44028
|
var init_deployments = __esm(() => {
|
|
44029
44029
|
init_esm();
|
|
44030
44030
|
init_primitives();
|
|
@@ -44055,13 +44055,13 @@ var init_deployments = __esm(() => {
|
|
|
44055
44055
|
JsonObject: "json_object"
|
|
44056
44056
|
};
|
|
44057
44057
|
DeploymentsResponseFormatDeploymentsType = {
|
|
44058
|
-
|
|
44058
|
+
Text: "text"
|
|
44059
44059
|
};
|
|
44060
44060
|
DeploymentsResponseFormatType = {
|
|
44061
|
-
|
|
44061
|
+
JsonObject: "json_object"
|
|
44062
44062
|
};
|
|
44063
44063
|
DeploymentsResponseFormatDeploymentsResponseType = {
|
|
44064
|
-
|
|
44064
|
+
JsonSchema: "json_schema"
|
|
44065
44065
|
};
|
|
44066
44066
|
DeploymentsPhotoRealVersion = {
|
|
44067
44067
|
V1: "v1",
|
|
@@ -44249,6 +44249,22 @@ var init_deployments = __esm(() => {
|
|
|
44249
44249
|
DeploymentsResponseFormatType$.inboundSchema = DeploymentsResponseFormatType$inboundSchema;
|
|
44250
44250
|
DeploymentsResponseFormatType$.outboundSchema = DeploymentsResponseFormatType$outboundSchema;
|
|
44251
44251
|
})(DeploymentsResponseFormatType$ ||= {});
|
|
44252
|
+
DeploymentsResponseFormat2$inboundSchema = objectType({
|
|
44253
|
+
type: DeploymentsResponseFormatType$inboundSchema
|
|
44254
|
+
});
|
|
44255
|
+
DeploymentsResponseFormat2$outboundSchema = objectType({
|
|
44256
|
+
type: DeploymentsResponseFormatType$outboundSchema
|
|
44257
|
+
});
|
|
44258
|
+
((DeploymentsResponseFormat2$) => {
|
|
44259
|
+
DeploymentsResponseFormat2$.inboundSchema = DeploymentsResponseFormat2$inboundSchema;
|
|
44260
|
+
DeploymentsResponseFormat2$.outboundSchema = DeploymentsResponseFormat2$outboundSchema;
|
|
44261
|
+
})(DeploymentsResponseFormat2$ ||= {});
|
|
44262
|
+
DeploymentsResponseFormatDeploymentsResponseType$inboundSchema = nativeEnumType(DeploymentsResponseFormatDeploymentsResponseType);
|
|
44263
|
+
DeploymentsResponseFormatDeploymentsResponseType$outboundSchema = DeploymentsResponseFormatDeploymentsResponseType$inboundSchema;
|
|
44264
|
+
((DeploymentsResponseFormatDeploymentsResponseType$) => {
|
|
44265
|
+
DeploymentsResponseFormatDeploymentsResponseType$.inboundSchema = DeploymentsResponseFormatDeploymentsResponseType$inboundSchema;
|
|
44266
|
+
DeploymentsResponseFormatDeploymentsResponseType$.outboundSchema = DeploymentsResponseFormatDeploymentsResponseType$outboundSchema;
|
|
44267
|
+
})(DeploymentsResponseFormatDeploymentsResponseType$ ||= {});
|
|
44252
44268
|
DeploymentsResponseFormatJsonSchema$inboundSchema = objectType({
|
|
44253
44269
|
name: stringType(),
|
|
44254
44270
|
strict: booleanType().optional(),
|
|
@@ -44263,50 +44279,34 @@ var init_deployments = __esm(() => {
|
|
|
44263
44279
|
DeploymentsResponseFormatJsonSchema$.inboundSchema = DeploymentsResponseFormatJsonSchema$inboundSchema;
|
|
44264
44280
|
DeploymentsResponseFormatJsonSchema$.outboundSchema = DeploymentsResponseFormatJsonSchema$outboundSchema;
|
|
44265
44281
|
})(DeploymentsResponseFormatJsonSchema$ ||= {});
|
|
44266
|
-
|
|
44267
|
-
type:
|
|
44282
|
+
DeploymentsResponseFormat1$inboundSchema = objectType({
|
|
44283
|
+
type: DeploymentsResponseFormatDeploymentsResponseType$inboundSchema,
|
|
44268
44284
|
json_schema: lazyType(() => DeploymentsResponseFormatJsonSchema$inboundSchema)
|
|
44269
44285
|
}).transform((v2) => {
|
|
44270
44286
|
return remap(v2, {
|
|
44271
44287
|
json_schema: "jsonSchema"
|
|
44272
44288
|
});
|
|
44273
44289
|
});
|
|
44274
|
-
|
|
44275
|
-
type:
|
|
44290
|
+
DeploymentsResponseFormat1$outboundSchema = objectType({
|
|
44291
|
+
type: DeploymentsResponseFormatDeploymentsResponseType$outboundSchema,
|
|
44276
44292
|
jsonSchema: lazyType(() => DeploymentsResponseFormatJsonSchema$outboundSchema)
|
|
44277
44293
|
}).transform((v2) => {
|
|
44278
44294
|
return remap(v2, {
|
|
44279
44295
|
jsonSchema: "json_schema"
|
|
44280
44296
|
});
|
|
44281
44297
|
});
|
|
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
|
-
});
|
|
44298
44298
|
((DeploymentsResponseFormat1$) => {
|
|
44299
44299
|
DeploymentsResponseFormat1$.inboundSchema = DeploymentsResponseFormat1$inboundSchema;
|
|
44300
44300
|
DeploymentsResponseFormat1$.outboundSchema = DeploymentsResponseFormat1$outboundSchema;
|
|
44301
44301
|
})(DeploymentsResponseFormat1$ ||= {});
|
|
44302
44302
|
DeploymentsResponseFormat$inboundSchema = unionType([
|
|
44303
|
-
lazyType(() => DeploymentsResponseFormat2$inboundSchema),
|
|
44304
44303
|
lazyType(() => DeploymentsResponseFormat1$inboundSchema),
|
|
44304
|
+
lazyType(() => DeploymentsResponseFormat2$inboundSchema),
|
|
44305
44305
|
lazyType(() => DeploymentsResponseFormat3$inboundSchema)
|
|
44306
44306
|
]);
|
|
44307
44307
|
DeploymentsResponseFormat$outboundSchema = unionType([
|
|
44308
|
-
lazyType(() => DeploymentsResponseFormat2$outboundSchema),
|
|
44309
44308
|
lazyType(() => DeploymentsResponseFormat1$outboundSchema),
|
|
44309
|
+
lazyType(() => DeploymentsResponseFormat2$outboundSchema),
|
|
44310
44310
|
lazyType(() => DeploymentsResponseFormat3$outboundSchema)
|
|
44311
44311
|
]);
|
|
44312
44312
|
((DeploymentsResponseFormat$) => {
|
|
@@ -44351,8 +44351,8 @@ var init_deployments = __esm(() => {
|
|
|
44351
44351
|
quality: stringType().optional(),
|
|
44352
44352
|
style: stringType().optional(),
|
|
44353
44353
|
responseFormat: nullableType(unionType([
|
|
44354
|
-
lazyType(() => DeploymentsResponseFormat2$inboundSchema),
|
|
44355
44354
|
lazyType(() => DeploymentsResponseFormat1$inboundSchema),
|
|
44355
|
+
lazyType(() => DeploymentsResponseFormat2$inboundSchema),
|
|
44356
44356
|
lazyType(() => DeploymentsResponseFormat3$inboundSchema)
|
|
44357
44357
|
])).optional(),
|
|
44358
44358
|
photoRealVersion: DeploymentsPhotoRealVersion$inboundSchema.optional(),
|
|
@@ -44379,8 +44379,8 @@ var init_deployments = __esm(() => {
|
|
|
44379
44379
|
quality: stringType().optional(),
|
|
44380
44380
|
style: stringType().optional(),
|
|
44381
44381
|
responseFormat: nullableType(unionType([
|
|
44382
|
-
lazyType(() => DeploymentsResponseFormat2$outboundSchema),
|
|
44383
44382
|
lazyType(() => DeploymentsResponseFormat1$outboundSchema),
|
|
44383
|
+
lazyType(() => DeploymentsResponseFormat2$outboundSchema),
|
|
44384
44384
|
lazyType(() => DeploymentsResponseFormat3$outboundSchema)
|
|
44385
44385
|
])).optional(),
|
|
44386
44386
|
photoRealVersion: DeploymentsPhotoRealVersion$outboundSchema.optional(),
|
|
@@ -48361,7 +48361,7 @@ var init_fileget = __esm(() => {
|
|
|
48361
48361
|
bytes: numberType(),
|
|
48362
48362
|
file_name: stringType(),
|
|
48363
48363
|
workspace_id: stringType(),
|
|
48364
|
-
created: stringType().datetime({ offset: true }).default("2025-08-
|
|
48364
|
+
created: stringType().datetime({ offset: true }).default("2025-08-13T12:53:47.042Z").transform((v2) => new Date(v2))
|
|
48365
48365
|
}).transform((v2) => {
|
|
48366
48366
|
return remap(v2, {
|
|
48367
48367
|
_id: "id",
|
|
@@ -48377,7 +48377,7 @@ var init_fileget = __esm(() => {
|
|
|
48377
48377
|
bytes: numberType(),
|
|
48378
48378
|
fileName: stringType(),
|
|
48379
48379
|
workspaceId: stringType(),
|
|
48380
|
-
created: dateType().default(() => new Date("2025-08-
|
|
48380
|
+
created: dateType().default(() => new Date("2025-08-13T12:53:47.042Z")).transform((v2) => v2.toISOString())
|
|
48381
48381
|
}).transform((v2) => {
|
|
48382
48382
|
return remap(v2, {
|
|
48383
48383
|
id: "_id",
|
|
@@ -48448,7 +48448,7 @@ var init_filelist = __esm(() => {
|
|
|
48448
48448
|
bytes: numberType(),
|
|
48449
48449
|
file_name: stringType(),
|
|
48450
48450
|
workspace_id: stringType(),
|
|
48451
|
-
created: stringType().datetime({ offset: true }).default("2025-08-
|
|
48451
|
+
created: stringType().datetime({ offset: true }).default("2025-08-13T12:53:47.042Z").transform((v2) => new Date(v2))
|
|
48452
48452
|
}).transform((v2) => {
|
|
48453
48453
|
return remap(v2, {
|
|
48454
48454
|
_id: "id",
|
|
@@ -48464,7 +48464,7 @@ var init_filelist = __esm(() => {
|
|
|
48464
48464
|
bytes: numberType(),
|
|
48465
48465
|
fileName: stringType(),
|
|
48466
48466
|
workspaceId: stringType(),
|
|
48467
|
-
created: dateType().default(() => new Date("2025-08-
|
|
48467
|
+
created: dateType().default(() => new Date("2025-08-13T12:53:47.042Z")).transform((v2) => v2.toISOString())
|
|
48468
48468
|
}).transform((v2) => {
|
|
48469
48469
|
return remap(v2, {
|
|
48470
48470
|
id: "_id",
|
|
@@ -48596,7 +48596,7 @@ var init_fileupload = __esm(() => {
|
|
|
48596
48596
|
bytes: numberType(),
|
|
48597
48597
|
file_name: stringType(),
|
|
48598
48598
|
workspace_id: stringType(),
|
|
48599
|
-
created: stringType().datetime({ offset: true }).default("2025-08-
|
|
48599
|
+
created: stringType().datetime({ offset: true }).default("2025-08-13T12:53:47.042Z").transform((v2) => new Date(v2))
|
|
48600
48600
|
}).transform((v2) => {
|
|
48601
48601
|
return remap(v2, {
|
|
48602
48602
|
_id: "id",
|
|
@@ -48612,7 +48612,7 @@ var init_fileupload = __esm(() => {
|
|
|
48612
48612
|
bytes: numberType(),
|
|
48613
48613
|
fileName: stringType(),
|
|
48614
48614
|
workspaceId: stringType(),
|
|
48615
|
-
created: dateType().default(() => new Date("2025-08-
|
|
48615
|
+
created: dateType().default(() => new Date("2025-08-13T12:53:47.042Z")).transform((v2) => v2.toISOString())
|
|
48616
48616
|
}).transform((v2) => {
|
|
48617
48617
|
return remap(v2, {
|
|
48618
48618
|
id: "_id",
|
|
@@ -48628,7 +48628,7 @@ var init_fileupload = __esm(() => {
|
|
|
48628
48628
|
});
|
|
48629
48629
|
|
|
48630
48630
|
// src/models/operations/getallprompts.ts
|
|
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$,
|
|
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$, GetAllPromptsResponseFormat2$inboundSchema, GetAllPromptsResponseFormat2$outboundSchema, GetAllPromptsResponseFormat2$, GetAllPromptsResponseFormatType$inboundSchema, GetAllPromptsResponseFormatType$outboundSchema, GetAllPromptsResponseFormatType$, GetAllPromptsResponseFormatJsonSchema$inboundSchema, GetAllPromptsResponseFormatJsonSchema$outboundSchema, GetAllPromptsResponseFormatJsonSchema$, 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$;
|
|
48632
48632
|
var init_getallprompts = __esm(() => {
|
|
48633
48633
|
init_esm();
|
|
48634
48634
|
init_primitives();
|
|
@@ -48656,13 +48656,13 @@ var init_getallprompts = __esm(() => {
|
|
|
48656
48656
|
JsonObject: "json_object"
|
|
48657
48657
|
};
|
|
48658
48658
|
GetAllPromptsResponseFormatPromptsResponseType = {
|
|
48659
|
-
|
|
48659
|
+
Text: "text"
|
|
48660
48660
|
};
|
|
48661
48661
|
GetAllPromptsResponseFormatPromptsType = {
|
|
48662
|
-
|
|
48662
|
+
JsonObject: "json_object"
|
|
48663
48663
|
};
|
|
48664
48664
|
GetAllPromptsResponseFormatType = {
|
|
48665
|
-
|
|
48665
|
+
JsonSchema: "json_schema"
|
|
48666
48666
|
};
|
|
48667
48667
|
GetAllPromptsPhotoRealVersion = {
|
|
48668
48668
|
V1: "v1",
|
|
@@ -48829,6 +48829,22 @@ var init_getallprompts = __esm(() => {
|
|
|
48829
48829
|
GetAllPromptsResponseFormatPromptsType$.inboundSchema = GetAllPromptsResponseFormatPromptsType$inboundSchema;
|
|
48830
48830
|
GetAllPromptsResponseFormatPromptsType$.outboundSchema = GetAllPromptsResponseFormatPromptsType$outboundSchema;
|
|
48831
48831
|
})(GetAllPromptsResponseFormatPromptsType$ ||= {});
|
|
48832
|
+
GetAllPromptsResponseFormat2$inboundSchema = objectType({
|
|
48833
|
+
type: GetAllPromptsResponseFormatPromptsType$inboundSchema
|
|
48834
|
+
});
|
|
48835
|
+
GetAllPromptsResponseFormat2$outboundSchema = objectType({
|
|
48836
|
+
type: GetAllPromptsResponseFormatPromptsType$outboundSchema
|
|
48837
|
+
});
|
|
48838
|
+
((GetAllPromptsResponseFormat2$) => {
|
|
48839
|
+
GetAllPromptsResponseFormat2$.inboundSchema = GetAllPromptsResponseFormat2$inboundSchema;
|
|
48840
|
+
GetAllPromptsResponseFormat2$.outboundSchema = GetAllPromptsResponseFormat2$outboundSchema;
|
|
48841
|
+
})(GetAllPromptsResponseFormat2$ ||= {});
|
|
48842
|
+
GetAllPromptsResponseFormatType$inboundSchema = nativeEnumType(GetAllPromptsResponseFormatType);
|
|
48843
|
+
GetAllPromptsResponseFormatType$outboundSchema = GetAllPromptsResponseFormatType$inboundSchema;
|
|
48844
|
+
((GetAllPromptsResponseFormatType$) => {
|
|
48845
|
+
GetAllPromptsResponseFormatType$.inboundSchema = GetAllPromptsResponseFormatType$inboundSchema;
|
|
48846
|
+
GetAllPromptsResponseFormatType$.outboundSchema = GetAllPromptsResponseFormatType$outboundSchema;
|
|
48847
|
+
})(GetAllPromptsResponseFormatType$ ||= {});
|
|
48832
48848
|
GetAllPromptsResponseFormatJsonSchema$inboundSchema = objectType({
|
|
48833
48849
|
name: stringType(),
|
|
48834
48850
|
strict: booleanType().optional(),
|
|
@@ -48843,50 +48859,34 @@ var init_getallprompts = __esm(() => {
|
|
|
48843
48859
|
GetAllPromptsResponseFormatJsonSchema$.inboundSchema = GetAllPromptsResponseFormatJsonSchema$inboundSchema;
|
|
48844
48860
|
GetAllPromptsResponseFormatJsonSchema$.outboundSchema = GetAllPromptsResponseFormatJsonSchema$outboundSchema;
|
|
48845
48861
|
})(GetAllPromptsResponseFormatJsonSchema$ ||= {});
|
|
48846
|
-
|
|
48847
|
-
type:
|
|
48862
|
+
GetAllPromptsResponseFormat1$inboundSchema = objectType({
|
|
48863
|
+
type: GetAllPromptsResponseFormatType$inboundSchema,
|
|
48848
48864
|
json_schema: lazyType(() => GetAllPromptsResponseFormatJsonSchema$inboundSchema)
|
|
48849
48865
|
}).transform((v2) => {
|
|
48850
48866
|
return remap(v2, {
|
|
48851
48867
|
json_schema: "jsonSchema"
|
|
48852
48868
|
});
|
|
48853
48869
|
});
|
|
48854
|
-
|
|
48855
|
-
type:
|
|
48870
|
+
GetAllPromptsResponseFormat1$outboundSchema = objectType({
|
|
48871
|
+
type: GetAllPromptsResponseFormatType$outboundSchema,
|
|
48856
48872
|
jsonSchema: lazyType(() => GetAllPromptsResponseFormatJsonSchema$outboundSchema)
|
|
48857
48873
|
}).transform((v2) => {
|
|
48858
48874
|
return remap(v2, {
|
|
48859
48875
|
jsonSchema: "json_schema"
|
|
48860
48876
|
});
|
|
48861
48877
|
});
|
|
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
|
-
});
|
|
48878
48878
|
((GetAllPromptsResponseFormat1$) => {
|
|
48879
48879
|
GetAllPromptsResponseFormat1$.inboundSchema = GetAllPromptsResponseFormat1$inboundSchema;
|
|
48880
48880
|
GetAllPromptsResponseFormat1$.outboundSchema = GetAllPromptsResponseFormat1$outboundSchema;
|
|
48881
48881
|
})(GetAllPromptsResponseFormat1$ ||= {});
|
|
48882
48882
|
GetAllPromptsResponseFormat$inboundSchema = unionType([
|
|
48883
|
-
lazyType(() => GetAllPromptsResponseFormat2$inboundSchema),
|
|
48884
48883
|
lazyType(() => GetAllPromptsResponseFormat1$inboundSchema),
|
|
48884
|
+
lazyType(() => GetAllPromptsResponseFormat2$inboundSchema),
|
|
48885
48885
|
lazyType(() => GetAllPromptsResponseFormat3$inboundSchema)
|
|
48886
48886
|
]);
|
|
48887
48887
|
GetAllPromptsResponseFormat$outboundSchema = unionType([
|
|
48888
|
-
lazyType(() => GetAllPromptsResponseFormat2$outboundSchema),
|
|
48889
48888
|
lazyType(() => GetAllPromptsResponseFormat1$outboundSchema),
|
|
48889
|
+
lazyType(() => GetAllPromptsResponseFormat2$outboundSchema),
|
|
48890
48890
|
lazyType(() => GetAllPromptsResponseFormat3$outboundSchema)
|
|
48891
48891
|
]);
|
|
48892
48892
|
((GetAllPromptsResponseFormat$) => {
|
|
@@ -48931,8 +48931,8 @@ var init_getallprompts = __esm(() => {
|
|
|
48931
48931
|
quality: stringType().optional(),
|
|
48932
48932
|
style: stringType().optional(),
|
|
48933
48933
|
responseFormat: nullableType(unionType([
|
|
48934
|
-
lazyType(() => GetAllPromptsResponseFormat2$inboundSchema),
|
|
48935
48934
|
lazyType(() => GetAllPromptsResponseFormat1$inboundSchema),
|
|
48935
|
+
lazyType(() => GetAllPromptsResponseFormat2$inboundSchema),
|
|
48936
48936
|
lazyType(() => GetAllPromptsResponseFormat3$inboundSchema)
|
|
48937
48937
|
])).optional(),
|
|
48938
48938
|
photoRealVersion: GetAllPromptsPhotoRealVersion$inboundSchema.optional(),
|
|
@@ -48959,8 +48959,8 @@ var init_getallprompts = __esm(() => {
|
|
|
48959
48959
|
quality: stringType().optional(),
|
|
48960
48960
|
style: stringType().optional(),
|
|
48961
48961
|
responseFormat: nullableType(unionType([
|
|
48962
|
-
lazyType(() => GetAllPromptsResponseFormat2$outboundSchema),
|
|
48963
48962
|
lazyType(() => GetAllPromptsResponseFormat1$outboundSchema),
|
|
48963
|
+
lazyType(() => GetAllPromptsResponseFormat2$outboundSchema),
|
|
48964
48964
|
lazyType(() => GetAllPromptsResponseFormat3$outboundSchema)
|
|
48965
48965
|
])).optional(),
|
|
48966
48966
|
photoRealVersion: GetAllPromptsPhotoRealVersion$outboundSchema.optional(),
|
|
@@ -49688,8 +49688,8 @@ var init_getevals = __esm(() => {
|
|
|
49688
49688
|
Typescript$inboundSchema = objectType({
|
|
49689
49689
|
_id: stringType(),
|
|
49690
49690
|
description: stringType(),
|
|
49691
|
-
created: stringType().default("2025-08-
|
|
49692
|
-
updated: stringType().default("2025-08-
|
|
49691
|
+
created: stringType().default("2025-08-13T12:53:46.195Z"),
|
|
49692
|
+
updated: stringType().default("2025-08-13T12:53:46.195Z"),
|
|
49693
49693
|
guardrail_config: unionType([
|
|
49694
49694
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
49695
49695
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
|
|
@@ -49706,8 +49706,8 @@ var init_getevals = __esm(() => {
|
|
|
49706
49706
|
Typescript$outboundSchema = objectType({
|
|
49707
49707
|
id: stringType(),
|
|
49708
49708
|
description: stringType(),
|
|
49709
|
-
created: stringType().default("2025-08-
|
|
49710
|
-
updated: stringType().default("2025-08-
|
|
49709
|
+
created: stringType().default("2025-08-13T12:53:46.195Z"),
|
|
49710
|
+
updated: stringType().default("2025-08-13T12:53:46.195Z"),
|
|
49711
49711
|
guardrailConfig: unionType([
|
|
49712
49712
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
49713
49713
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
|
|
@@ -49800,8 +49800,8 @@ var init_getevals = __esm(() => {
|
|
|
49800
49800
|
Ragas$inboundSchema = objectType({
|
|
49801
49801
|
_id: stringType(),
|
|
49802
49802
|
description: stringType(),
|
|
49803
|
-
created: stringType().default("2025-08-
|
|
49804
|
-
updated: stringType().default("2025-08-
|
|
49803
|
+
created: stringType().default("2025-08-13T12:53:46.195Z"),
|
|
49804
|
+
updated: stringType().default("2025-08-13T12:53:46.195Z"),
|
|
49805
49805
|
guardrail_config: unionType([
|
|
49806
49806
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
49807
49807
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema)
|
|
@@ -49820,8 +49820,8 @@ var init_getevals = __esm(() => {
|
|
|
49820
49820
|
Ragas$outboundSchema = objectType({
|
|
49821
49821
|
id: stringType(),
|
|
49822
49822
|
description: stringType(),
|
|
49823
|
-
created: stringType().default("2025-08-
|
|
49824
|
-
updated: stringType().default("2025-08-
|
|
49823
|
+
created: stringType().default("2025-08-13T12:53:46.195Z"),
|
|
49824
|
+
updated: stringType().default("2025-08-13T12:53:46.195Z"),
|
|
49825
49825
|
guardrailConfig: unionType([
|
|
49826
49826
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
49827
49827
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema)
|
|
@@ -50574,8 +50574,8 @@ var init_getevals = __esm(() => {
|
|
|
50574
50574
|
DataFunction$inboundSchema = objectType({
|
|
50575
50575
|
_id: stringType(),
|
|
50576
50576
|
description: stringType(),
|
|
50577
|
-
created: stringType().default("2025-08-
|
|
50578
|
-
updated: stringType().default("2025-08-
|
|
50577
|
+
created: stringType().default("2025-08-13T12:53:46.195Z"),
|
|
50578
|
+
updated: stringType().default("2025-08-13T12:53:46.195Z"),
|
|
50579
50579
|
guardrail_config: unionType([
|
|
50580
50580
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
50581
50581
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema)
|
|
@@ -50629,8 +50629,8 @@ var init_getevals = __esm(() => {
|
|
|
50629
50629
|
DataFunction$outboundSchema = objectType({
|
|
50630
50630
|
id: stringType(),
|
|
50631
50631
|
description: stringType(),
|
|
50632
|
-
created: stringType().default("2025-08-
|
|
50633
|
-
updated: stringType().default("2025-08-
|
|
50632
|
+
created: stringType().default("2025-08-13T12:53:46.195Z"),
|
|
50633
|
+
updated: stringType().default("2025-08-13T12:53:46.195Z"),
|
|
50634
50634
|
guardrailConfig: unionType([
|
|
50635
50635
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
50636
50636
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema)
|
|
@@ -50754,8 +50754,8 @@ var init_getevals = __esm(() => {
|
|
|
50754
50754
|
DataPython$inboundSchema = objectType({
|
|
50755
50755
|
_id: stringType(),
|
|
50756
50756
|
description: stringType(),
|
|
50757
|
-
created: stringType().default("2025-08-
|
|
50758
|
-
updated: stringType().default("2025-08-
|
|
50757
|
+
created: stringType().default("2025-08-13T12:53:46.195Z"),
|
|
50758
|
+
updated: stringType().default("2025-08-13T12:53:46.195Z"),
|
|
50759
50759
|
guardrail_config: unionType([
|
|
50760
50760
|
lazyType(() => GetEvalsGuardrailConfigEvalsNumber$inboundSchema),
|
|
50761
50761
|
lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema)
|
|
@@ -50772,8 +50772,8 @@ var init_getevals = __esm(() => {
|
|
|
50772
50772
|
DataPython$outboundSchema = objectType({
|
|
50773
50773
|
id: stringType(),
|
|
50774
50774
|
description: stringType(),
|
|
50775
|
-
created: stringType().default("2025-08-
|
|
50776
|
-
updated: stringType().default("2025-08-
|
|
50775
|
+
created: stringType().default("2025-08-13T12:53:46.195Z"),
|
|
50776
|
+
updated: stringType().default("2025-08-13T12:53:46.195Z"),
|
|
50777
50777
|
guardrailConfig: unionType([
|
|
50778
50778
|
lazyType(() => GetEvalsGuardrailConfigEvalsNumber$outboundSchema),
|
|
50779
50779
|
lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$outboundSchema)
|
|
@@ -50866,8 +50866,8 @@ var init_getevals = __esm(() => {
|
|
|
50866
50866
|
DataHTTP$inboundSchema = objectType({
|
|
50867
50867
|
_id: stringType(),
|
|
50868
50868
|
description: stringType(),
|
|
50869
|
-
created: stringType().default("2025-08-
|
|
50870
|
-
updated: stringType().default("2025-08-
|
|
50869
|
+
created: stringType().default("2025-08-13T12:53:46.195Z"),
|
|
50870
|
+
updated: stringType().default("2025-08-13T12:53:46.195Z"),
|
|
50871
50871
|
guardrail_config: unionType([
|
|
50872
50872
|
lazyType(() => GetEvalsGuardrailConfigNumber$inboundSchema),
|
|
50873
50873
|
lazyType(() => GetEvalsGuardrailConfigBoolean$inboundSchema)
|
|
@@ -50887,8 +50887,8 @@ var init_getevals = __esm(() => {
|
|
|
50887
50887
|
DataHTTP$outboundSchema = objectType({
|
|
50888
50888
|
id: stringType(),
|
|
50889
50889
|
description: stringType(),
|
|
50890
|
-
created: stringType().default("2025-08-
|
|
50891
|
-
updated: stringType().default("2025-08-
|
|
50890
|
+
created: stringType().default("2025-08-13T12:53:46.195Z"),
|
|
50891
|
+
updated: stringType().default("2025-08-13T12:53:46.195Z"),
|
|
50892
50892
|
guardrailConfig: unionType([
|
|
50893
50893
|
lazyType(() => GetEvalsGuardrailConfigNumber$outboundSchema),
|
|
50894
50894
|
lazyType(() => GetEvalsGuardrailConfigBoolean$outboundSchema)
|
|
@@ -50978,8 +50978,8 @@ var init_getevals = __esm(() => {
|
|
|
50978
50978
|
DataJSON$inboundSchema = objectType({
|
|
50979
50979
|
_id: stringType(),
|
|
50980
50980
|
description: stringType(),
|
|
50981
|
-
created: stringType().default("2025-08-
|
|
50982
|
-
updated: stringType().default("2025-08-
|
|
50981
|
+
created: stringType().default("2025-08-13T12:53:46.195Z"),
|
|
50982
|
+
updated: stringType().default("2025-08-13T12:53:46.195Z"),
|
|
50983
50983
|
guardrail_config: unionType([
|
|
50984
50984
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$inboundSchema),
|
|
50985
50985
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$inboundSchema)
|
|
@@ -50996,8 +50996,8 @@ var init_getevals = __esm(() => {
|
|
|
50996
50996
|
DataJSON$outboundSchema = objectType({
|
|
50997
50997
|
id: stringType(),
|
|
50998
50998
|
description: stringType(),
|
|
50999
|
-
created: stringType().default("2025-08-
|
|
51000
|
-
updated: stringType().default("2025-08-
|
|
50999
|
+
created: stringType().default("2025-08-13T12:53:46.195Z"),
|
|
51000
|
+
updated: stringType().default("2025-08-13T12:53:46.195Z"),
|
|
51001
51001
|
guardrailConfig: unionType([
|
|
51002
51002
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$outboundSchema),
|
|
51003
51003
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$outboundSchema)
|
|
@@ -51084,8 +51084,8 @@ var init_getevals = __esm(() => {
|
|
|
51084
51084
|
DataLLM$inboundSchema = objectType({
|
|
51085
51085
|
_id: stringType(),
|
|
51086
51086
|
description: stringType(),
|
|
51087
|
-
created: stringType().default("2025-08-
|
|
51088
|
-
updated: stringType().default("2025-08-
|
|
51087
|
+
created: stringType().default("2025-08-13T12:53:46.195Z"),
|
|
51088
|
+
updated: stringType().default("2025-08-13T12:53:46.195Z"),
|
|
51089
51089
|
guardrail_config: unionType([
|
|
51090
51090
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
51091
51091
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
|
|
@@ -51103,8 +51103,8 @@ var init_getevals = __esm(() => {
|
|
|
51103
51103
|
DataLLM$outboundSchema = objectType({
|
|
51104
51104
|
id: stringType(),
|
|
51105
51105
|
description: stringType(),
|
|
51106
|
-
created: stringType().default("2025-08-
|
|
51107
|
-
updated: stringType().default("2025-08-
|
|
51106
|
+
created: stringType().default("2025-08-13T12:53:46.195Z"),
|
|
51107
|
+
updated: stringType().default("2025-08-13T12:53:46.195Z"),
|
|
51108
51108
|
guardrailConfig: unionType([
|
|
51109
51109
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
51110
51110
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
|
|
@@ -51422,7 +51422,7 @@ var init_getoneknowledge = __esm(() => {
|
|
|
51422
51422
|
});
|
|
51423
51423
|
|
|
51424
51424
|
// src/models/operations/getoneprompt.ts
|
|
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$,
|
|
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$, GetOnePromptResponseFormat2$inboundSchema, GetOnePromptResponseFormat2$outboundSchema, GetOnePromptResponseFormat2$, GetOnePromptResponseFormatType$inboundSchema, GetOnePromptResponseFormatType$outboundSchema, GetOnePromptResponseFormatType$, GetOnePromptResponseFormatJsonSchema$inboundSchema, GetOnePromptResponseFormatJsonSchema$outboundSchema, GetOnePromptResponseFormatJsonSchema$, 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$;
|
|
51426
51426
|
var init_getoneprompt = __esm(() => {
|
|
51427
51427
|
init_esm();
|
|
51428
51428
|
init_primitives();
|
|
@@ -51447,13 +51447,13 @@ var init_getoneprompt = __esm(() => {
|
|
|
51447
51447
|
JsonObject: "json_object"
|
|
51448
51448
|
};
|
|
51449
51449
|
GetOnePromptResponseFormatPromptsResponseType = {
|
|
51450
|
-
|
|
51450
|
+
Text: "text"
|
|
51451
51451
|
};
|
|
51452
51452
|
GetOnePromptResponseFormatPromptsType = {
|
|
51453
|
-
|
|
51453
|
+
JsonObject: "json_object"
|
|
51454
51454
|
};
|
|
51455
51455
|
GetOnePromptResponseFormatType = {
|
|
51456
|
-
|
|
51456
|
+
JsonSchema: "json_schema"
|
|
51457
51457
|
};
|
|
51458
51458
|
GetOnePromptPhotoRealVersion = {
|
|
51459
51459
|
V1: "v1",
|
|
@@ -51600,6 +51600,22 @@ var init_getoneprompt = __esm(() => {
|
|
|
51600
51600
|
GetOnePromptResponseFormatPromptsType$.inboundSchema = GetOnePromptResponseFormatPromptsType$inboundSchema;
|
|
51601
51601
|
GetOnePromptResponseFormatPromptsType$.outboundSchema = GetOnePromptResponseFormatPromptsType$outboundSchema;
|
|
51602
51602
|
})(GetOnePromptResponseFormatPromptsType$ ||= {});
|
|
51603
|
+
GetOnePromptResponseFormat2$inboundSchema = objectType({
|
|
51604
|
+
type: GetOnePromptResponseFormatPromptsType$inboundSchema
|
|
51605
|
+
});
|
|
51606
|
+
GetOnePromptResponseFormat2$outboundSchema = objectType({
|
|
51607
|
+
type: GetOnePromptResponseFormatPromptsType$outboundSchema
|
|
51608
|
+
});
|
|
51609
|
+
((GetOnePromptResponseFormat2$) => {
|
|
51610
|
+
GetOnePromptResponseFormat2$.inboundSchema = GetOnePromptResponseFormat2$inboundSchema;
|
|
51611
|
+
GetOnePromptResponseFormat2$.outboundSchema = GetOnePromptResponseFormat2$outboundSchema;
|
|
51612
|
+
})(GetOnePromptResponseFormat2$ ||= {});
|
|
51613
|
+
GetOnePromptResponseFormatType$inboundSchema = nativeEnumType(GetOnePromptResponseFormatType);
|
|
51614
|
+
GetOnePromptResponseFormatType$outboundSchema = GetOnePromptResponseFormatType$inboundSchema;
|
|
51615
|
+
((GetOnePromptResponseFormatType$) => {
|
|
51616
|
+
GetOnePromptResponseFormatType$.inboundSchema = GetOnePromptResponseFormatType$inboundSchema;
|
|
51617
|
+
GetOnePromptResponseFormatType$.outboundSchema = GetOnePromptResponseFormatType$outboundSchema;
|
|
51618
|
+
})(GetOnePromptResponseFormatType$ ||= {});
|
|
51603
51619
|
GetOnePromptResponseFormatJsonSchema$inboundSchema = objectType({
|
|
51604
51620
|
name: stringType(),
|
|
51605
51621
|
strict: booleanType().optional(),
|
|
@@ -51614,50 +51630,34 @@ var init_getoneprompt = __esm(() => {
|
|
|
51614
51630
|
GetOnePromptResponseFormatJsonSchema$.inboundSchema = GetOnePromptResponseFormatJsonSchema$inboundSchema;
|
|
51615
51631
|
GetOnePromptResponseFormatJsonSchema$.outboundSchema = GetOnePromptResponseFormatJsonSchema$outboundSchema;
|
|
51616
51632
|
})(GetOnePromptResponseFormatJsonSchema$ ||= {});
|
|
51617
|
-
|
|
51618
|
-
type:
|
|
51633
|
+
GetOnePromptResponseFormat1$inboundSchema = objectType({
|
|
51634
|
+
type: GetOnePromptResponseFormatType$inboundSchema,
|
|
51619
51635
|
json_schema: lazyType(() => GetOnePromptResponseFormatJsonSchema$inboundSchema)
|
|
51620
51636
|
}).transform((v2) => {
|
|
51621
51637
|
return remap(v2, {
|
|
51622
51638
|
json_schema: "jsonSchema"
|
|
51623
51639
|
});
|
|
51624
51640
|
});
|
|
51625
|
-
|
|
51626
|
-
type:
|
|
51641
|
+
GetOnePromptResponseFormat1$outboundSchema = objectType({
|
|
51642
|
+
type: GetOnePromptResponseFormatType$outboundSchema,
|
|
51627
51643
|
jsonSchema: lazyType(() => GetOnePromptResponseFormatJsonSchema$outboundSchema)
|
|
51628
51644
|
}).transform((v2) => {
|
|
51629
51645
|
return remap(v2, {
|
|
51630
51646
|
jsonSchema: "json_schema"
|
|
51631
51647
|
});
|
|
51632
51648
|
});
|
|
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
|
-
});
|
|
51649
51649
|
((GetOnePromptResponseFormat1$) => {
|
|
51650
51650
|
GetOnePromptResponseFormat1$.inboundSchema = GetOnePromptResponseFormat1$inboundSchema;
|
|
51651
51651
|
GetOnePromptResponseFormat1$.outboundSchema = GetOnePromptResponseFormat1$outboundSchema;
|
|
51652
51652
|
})(GetOnePromptResponseFormat1$ ||= {});
|
|
51653
51653
|
GetOnePromptResponseFormat$inboundSchema = unionType([
|
|
51654
|
-
lazyType(() => GetOnePromptResponseFormat2$inboundSchema),
|
|
51655
51654
|
lazyType(() => GetOnePromptResponseFormat1$inboundSchema),
|
|
51655
|
+
lazyType(() => GetOnePromptResponseFormat2$inboundSchema),
|
|
51656
51656
|
lazyType(() => GetOnePromptResponseFormat3$inboundSchema)
|
|
51657
51657
|
]);
|
|
51658
51658
|
GetOnePromptResponseFormat$outboundSchema = unionType([
|
|
51659
|
-
lazyType(() => GetOnePromptResponseFormat2$outboundSchema),
|
|
51660
51659
|
lazyType(() => GetOnePromptResponseFormat1$outboundSchema),
|
|
51660
|
+
lazyType(() => GetOnePromptResponseFormat2$outboundSchema),
|
|
51661
51661
|
lazyType(() => GetOnePromptResponseFormat3$outboundSchema)
|
|
51662
51662
|
]);
|
|
51663
51663
|
((GetOnePromptResponseFormat$) => {
|
|
@@ -51702,8 +51702,8 @@ var init_getoneprompt = __esm(() => {
|
|
|
51702
51702
|
quality: stringType().optional(),
|
|
51703
51703
|
style: stringType().optional(),
|
|
51704
51704
|
responseFormat: nullableType(unionType([
|
|
51705
|
-
lazyType(() => GetOnePromptResponseFormat2$inboundSchema),
|
|
51706
51705
|
lazyType(() => GetOnePromptResponseFormat1$inboundSchema),
|
|
51706
|
+
lazyType(() => GetOnePromptResponseFormat2$inboundSchema),
|
|
51707
51707
|
lazyType(() => GetOnePromptResponseFormat3$inboundSchema)
|
|
51708
51708
|
])).optional(),
|
|
51709
51709
|
photoRealVersion: GetOnePromptPhotoRealVersion$inboundSchema.optional(),
|
|
@@ -51730,8 +51730,8 @@ var init_getoneprompt = __esm(() => {
|
|
|
51730
51730
|
quality: stringType().optional(),
|
|
51731
51731
|
style: stringType().optional(),
|
|
51732
51732
|
responseFormat: nullableType(unionType([
|
|
51733
|
-
lazyType(() => GetOnePromptResponseFormat2$outboundSchema),
|
|
51734
51733
|
lazyType(() => GetOnePromptResponseFormat1$outboundSchema),
|
|
51734
|
+
lazyType(() => GetOnePromptResponseFormat2$outboundSchema),
|
|
51735
51735
|
lazyType(() => GetOnePromptResponseFormat3$outboundSchema)
|
|
51736
51736
|
])).optional(),
|
|
51737
51737
|
photoRealVersion: GetOnePromptPhotoRealVersion$outboundSchema.optional(),
|
|
@@ -52089,7 +52089,7 @@ var init_getoneprompt = __esm(() => {
|
|
|
52089
52089
|
});
|
|
52090
52090
|
|
|
52091
52091
|
// src/models/operations/getpromptversion.ts
|
|
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$,
|
|
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$, GetPromptVersionResponseFormat2$inboundSchema, GetPromptVersionResponseFormat2$outboundSchema, GetPromptVersionResponseFormat2$, GetPromptVersionResponseFormatType$inboundSchema, GetPromptVersionResponseFormatType$outboundSchema, GetPromptVersionResponseFormatType$, GetPromptVersionResponseFormatJsonSchema$inboundSchema, GetPromptVersionResponseFormatJsonSchema$outboundSchema, GetPromptVersionResponseFormatJsonSchema$, 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$;
|
|
52093
52093
|
var init_getpromptversion = __esm(() => {
|
|
52094
52094
|
init_esm();
|
|
52095
52095
|
init_primitives();
|
|
@@ -52111,13 +52111,13 @@ var init_getpromptversion = __esm(() => {
|
|
|
52111
52111
|
JsonObject: "json_object"
|
|
52112
52112
|
};
|
|
52113
52113
|
GetPromptVersionResponseFormatPromptsResponseType = {
|
|
52114
|
-
|
|
52114
|
+
Text: "text"
|
|
52115
52115
|
};
|
|
52116
52116
|
GetPromptVersionResponseFormatPromptsType = {
|
|
52117
|
-
|
|
52117
|
+
JsonObject: "json_object"
|
|
52118
52118
|
};
|
|
52119
52119
|
GetPromptVersionResponseFormatType = {
|
|
52120
|
-
|
|
52120
|
+
JsonSchema: "json_schema"
|
|
52121
52121
|
};
|
|
52122
52122
|
GetPromptVersionPhotoRealVersion = {
|
|
52123
52123
|
V1: "v1",
|
|
@@ -52270,6 +52270,22 @@ var init_getpromptversion = __esm(() => {
|
|
|
52270
52270
|
GetPromptVersionResponseFormatPromptsType$.inboundSchema = GetPromptVersionResponseFormatPromptsType$inboundSchema;
|
|
52271
52271
|
GetPromptVersionResponseFormatPromptsType$.outboundSchema = GetPromptVersionResponseFormatPromptsType$outboundSchema;
|
|
52272
52272
|
})(GetPromptVersionResponseFormatPromptsType$ ||= {});
|
|
52273
|
+
GetPromptVersionResponseFormat2$inboundSchema = objectType({
|
|
52274
|
+
type: GetPromptVersionResponseFormatPromptsType$inboundSchema
|
|
52275
|
+
});
|
|
52276
|
+
GetPromptVersionResponseFormat2$outboundSchema = objectType({
|
|
52277
|
+
type: GetPromptVersionResponseFormatPromptsType$outboundSchema
|
|
52278
|
+
});
|
|
52279
|
+
((GetPromptVersionResponseFormat2$) => {
|
|
52280
|
+
GetPromptVersionResponseFormat2$.inboundSchema = GetPromptVersionResponseFormat2$inboundSchema;
|
|
52281
|
+
GetPromptVersionResponseFormat2$.outboundSchema = GetPromptVersionResponseFormat2$outboundSchema;
|
|
52282
|
+
})(GetPromptVersionResponseFormat2$ ||= {});
|
|
52283
|
+
GetPromptVersionResponseFormatType$inboundSchema = nativeEnumType(GetPromptVersionResponseFormatType);
|
|
52284
|
+
GetPromptVersionResponseFormatType$outboundSchema = GetPromptVersionResponseFormatType$inboundSchema;
|
|
52285
|
+
((GetPromptVersionResponseFormatType$) => {
|
|
52286
|
+
GetPromptVersionResponseFormatType$.inboundSchema = GetPromptVersionResponseFormatType$inboundSchema;
|
|
52287
|
+
GetPromptVersionResponseFormatType$.outboundSchema = GetPromptVersionResponseFormatType$outboundSchema;
|
|
52288
|
+
})(GetPromptVersionResponseFormatType$ ||= {});
|
|
52273
52289
|
GetPromptVersionResponseFormatJsonSchema$inboundSchema = objectType({
|
|
52274
52290
|
name: stringType(),
|
|
52275
52291
|
strict: booleanType().optional(),
|
|
@@ -52284,50 +52300,34 @@ var init_getpromptversion = __esm(() => {
|
|
|
52284
52300
|
GetPromptVersionResponseFormatJsonSchema$.inboundSchema = GetPromptVersionResponseFormatJsonSchema$inboundSchema;
|
|
52285
52301
|
GetPromptVersionResponseFormatJsonSchema$.outboundSchema = GetPromptVersionResponseFormatJsonSchema$outboundSchema;
|
|
52286
52302
|
})(GetPromptVersionResponseFormatJsonSchema$ ||= {});
|
|
52287
|
-
|
|
52288
|
-
type:
|
|
52303
|
+
GetPromptVersionResponseFormat1$inboundSchema = objectType({
|
|
52304
|
+
type: GetPromptVersionResponseFormatType$inboundSchema,
|
|
52289
52305
|
json_schema: lazyType(() => GetPromptVersionResponseFormatJsonSchema$inboundSchema)
|
|
52290
52306
|
}).transform((v2) => {
|
|
52291
52307
|
return remap(v2, {
|
|
52292
52308
|
json_schema: "jsonSchema"
|
|
52293
52309
|
});
|
|
52294
52310
|
});
|
|
52295
|
-
|
|
52296
|
-
type:
|
|
52311
|
+
GetPromptVersionResponseFormat1$outboundSchema = objectType({
|
|
52312
|
+
type: GetPromptVersionResponseFormatType$outboundSchema,
|
|
52297
52313
|
jsonSchema: lazyType(() => GetPromptVersionResponseFormatJsonSchema$outboundSchema)
|
|
52298
52314
|
}).transform((v2) => {
|
|
52299
52315
|
return remap(v2, {
|
|
52300
52316
|
jsonSchema: "json_schema"
|
|
52301
52317
|
});
|
|
52302
52318
|
});
|
|
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
|
-
});
|
|
52319
52319
|
((GetPromptVersionResponseFormat1$) => {
|
|
52320
52320
|
GetPromptVersionResponseFormat1$.inboundSchema = GetPromptVersionResponseFormat1$inboundSchema;
|
|
52321
52321
|
GetPromptVersionResponseFormat1$.outboundSchema = GetPromptVersionResponseFormat1$outboundSchema;
|
|
52322
52322
|
})(GetPromptVersionResponseFormat1$ ||= {});
|
|
52323
52323
|
GetPromptVersionResponseFormat$inboundSchema = unionType([
|
|
52324
|
-
lazyType(() => GetPromptVersionResponseFormat2$inboundSchema),
|
|
52325
52324
|
lazyType(() => GetPromptVersionResponseFormat1$inboundSchema),
|
|
52325
|
+
lazyType(() => GetPromptVersionResponseFormat2$inboundSchema),
|
|
52326
52326
|
lazyType(() => GetPromptVersionResponseFormat3$inboundSchema)
|
|
52327
52327
|
]);
|
|
52328
52328
|
GetPromptVersionResponseFormat$outboundSchema = unionType([
|
|
52329
|
-
lazyType(() => GetPromptVersionResponseFormat2$outboundSchema),
|
|
52330
52329
|
lazyType(() => GetPromptVersionResponseFormat1$outboundSchema),
|
|
52330
|
+
lazyType(() => GetPromptVersionResponseFormat2$outboundSchema),
|
|
52331
52331
|
lazyType(() => GetPromptVersionResponseFormat3$outboundSchema)
|
|
52332
52332
|
]);
|
|
52333
52333
|
((GetPromptVersionResponseFormat$) => {
|
|
@@ -52372,8 +52372,8 @@ var init_getpromptversion = __esm(() => {
|
|
|
52372
52372
|
quality: stringType().optional(),
|
|
52373
52373
|
style: stringType().optional(),
|
|
52374
52374
|
responseFormat: nullableType(unionType([
|
|
52375
|
-
lazyType(() => GetPromptVersionResponseFormat2$inboundSchema),
|
|
52376
52375
|
lazyType(() => GetPromptVersionResponseFormat1$inboundSchema),
|
|
52376
|
+
lazyType(() => GetPromptVersionResponseFormat2$inboundSchema),
|
|
52377
52377
|
lazyType(() => GetPromptVersionResponseFormat3$inboundSchema)
|
|
52378
52378
|
])).optional(),
|
|
52379
52379
|
photoRealVersion: GetPromptVersionPhotoRealVersion$inboundSchema.optional(),
|
|
@@ -52400,8 +52400,8 @@ var init_getpromptversion = __esm(() => {
|
|
|
52400
52400
|
quality: stringType().optional(),
|
|
52401
52401
|
style: stringType().optional(),
|
|
52402
52402
|
responseFormat: nullableType(unionType([
|
|
52403
|
-
lazyType(() => GetPromptVersionResponseFormat2$outboundSchema),
|
|
52404
52403
|
lazyType(() => GetPromptVersionResponseFormat1$outboundSchema),
|
|
52404
|
+
lazyType(() => GetPromptVersionResponseFormat2$outboundSchema),
|
|
52405
52405
|
lazyType(() => GetPromptVersionResponseFormat3$outboundSchema)
|
|
52406
52406
|
])).optional(),
|
|
52407
52407
|
photoRealVersion: GetPromptVersionPhotoRealVersion$outboundSchema.optional(),
|
|
@@ -53577,7 +53577,7 @@ var init_listcontacts = __esm(() => {
|
|
|
53577
53577
|
tags: arrayType(stringType()).optional(),
|
|
53578
53578
|
metadata: recordType(anyType()).optional(),
|
|
53579
53579
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
53580
|
-
updated: stringType().datetime({ offset: true }).default("2025-08-
|
|
53580
|
+
updated: stringType().datetime({ offset: true }).default("2025-08-13T12:53:43.771Z").transform((v2) => new Date(v2)),
|
|
53581
53581
|
metrics: lazyType(() => Metrics$inboundSchema)
|
|
53582
53582
|
}).transform((v2) => {
|
|
53583
53583
|
return remap(v2, {
|
|
@@ -53596,7 +53596,7 @@ var init_listcontacts = __esm(() => {
|
|
|
53596
53596
|
tags: arrayType(stringType()).optional(),
|
|
53597
53597
|
metadata: recordType(anyType()).optional(),
|
|
53598
53598
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
53599
|
-
updated: dateType().default(() => new Date("2025-08-
|
|
53599
|
+
updated: dateType().default(() => new Date("2025-08-13T12:53:43.771Z")).transform((v2) => v2.toISOString()),
|
|
53600
53600
|
metrics: lazyType(() => Metrics$outboundSchema)
|
|
53601
53601
|
}).transform((v2) => {
|
|
53602
53602
|
return remap(v2, {
|
|
@@ -54211,7 +54211,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
54211
54211
|
created_by_id: stringType().optional(),
|
|
54212
54212
|
updated_by_id: stringType().optional(),
|
|
54213
54213
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
54214
|
-
updated: stringType().datetime({ offset: true }).default("2025-08-
|
|
54214
|
+
updated: stringType().datetime({ offset: true }).default("2025-08-13T12:53:43.771Z").transform((v2) => new Date(v2))
|
|
54215
54215
|
}).transform((v2) => {
|
|
54216
54216
|
return remap(v2, {
|
|
54217
54217
|
_id: "id",
|
|
@@ -54238,7 +54238,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
54238
54238
|
createdById: stringType().optional(),
|
|
54239
54239
|
updatedById: stringType().optional(),
|
|
54240
54240
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
54241
|
-
updated: dateType().default(() => new Date("2025-08-
|
|
54241
|
+
updated: dateType().default(() => new Date("2025-08-13T12:53:43.771Z")).transform((v2) => v2.toISOString())
|
|
54242
54242
|
}).transform((v2) => {
|
|
54243
54243
|
return remap(v2, {
|
|
54244
54244
|
id: "_id",
|
|
@@ -54346,7 +54346,7 @@ var init_listdatasets = __esm(() => {
|
|
|
54346
54346
|
updated_by_id: stringType().optional(),
|
|
54347
54347
|
metadata: lazyType(() => ListDatasetsMetadata$inboundSchema),
|
|
54348
54348
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
54349
|
-
updated: stringType().datetime({ offset: true }).default("2025-08-
|
|
54349
|
+
updated: stringType().datetime({ offset: true }).default("2025-08-13T12:53:43.771Z").transform((v2) => new Date(v2))
|
|
54350
54350
|
}).transform((v2) => {
|
|
54351
54351
|
return remap(v2, {
|
|
54352
54352
|
_id: "id",
|
|
@@ -54366,7 +54366,7 @@ var init_listdatasets = __esm(() => {
|
|
|
54366
54366
|
updatedById: stringType().optional(),
|
|
54367
54367
|
metadata: lazyType(() => ListDatasetsMetadata$outboundSchema),
|
|
54368
54368
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
54369
|
-
updated: dateType().default(() => new Date("2025-08-
|
|
54369
|
+
updated: dateType().default(() => new Date("2025-08-13T12:53:43.771Z")).transform((v2) => v2.toISOString())
|
|
54370
54370
|
}).transform((v2) => {
|
|
54371
54371
|
return remap(v2, {
|
|
54372
54372
|
id: "_id",
|
|
@@ -54471,7 +54471,7 @@ var init_listdatasources = __esm(() => {
|
|
|
54471
54471
|
ListDatasourcesStatus$.outboundSchema = ListDatasourcesStatus$outboundSchema;
|
|
54472
54472
|
})(ListDatasourcesStatus$ ||= {});
|
|
54473
54473
|
ListDatasourcesData$inboundSchema = objectType({
|
|
54474
|
-
_id: stringType().default("
|
|
54474
|
+
_id: stringType().default("01K2HQWZ154DEJSSQSCNA7AYS6"),
|
|
54475
54475
|
display_name: stringType(),
|
|
54476
54476
|
description: stringType().optional(),
|
|
54477
54477
|
status: ListDatasourcesStatus$inboundSchema,
|
|
@@ -54494,7 +54494,7 @@ var init_listdatasources = __esm(() => {
|
|
|
54494
54494
|
});
|
|
54495
54495
|
});
|
|
54496
54496
|
ListDatasourcesData$outboundSchema = objectType({
|
|
54497
|
-
id: stringType().default("
|
|
54497
|
+
id: stringType().default("01K2HQWZ154DEJSSQSCNA7AYS6"),
|
|
54498
54498
|
displayName: stringType(),
|
|
54499
54499
|
description: stringType().optional(),
|
|
54500
54500
|
status: ListDatasourcesStatus$outboundSchema,
|
|
@@ -54817,7 +54817,7 @@ var init_listmodels = __esm(() => {
|
|
|
54817
54817
|
});
|
|
54818
54818
|
|
|
54819
54819
|
// src/models/operations/listpromptversions.ts
|
|
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$,
|
|
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$, ListPromptVersionsResponseFormat2$inboundSchema, ListPromptVersionsResponseFormat2$outboundSchema, ListPromptVersionsResponseFormat2$, ListPromptVersionsResponseFormatType$inboundSchema, ListPromptVersionsResponseFormatType$outboundSchema, ListPromptVersionsResponseFormatType$, ListPromptVersionsResponseFormatJsonSchema$inboundSchema, ListPromptVersionsResponseFormatJsonSchema$outboundSchema, ListPromptVersionsResponseFormatJsonSchema$, 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$;
|
|
54821
54821
|
var init_listpromptversions = __esm(() => {
|
|
54822
54822
|
init_esm();
|
|
54823
54823
|
init_primitives();
|
|
@@ -54842,13 +54842,13 @@ var init_listpromptversions = __esm(() => {
|
|
|
54842
54842
|
JsonObject: "json_object"
|
|
54843
54843
|
};
|
|
54844
54844
|
ListPromptVersionsResponseFormatPromptsResponseType = {
|
|
54845
|
-
|
|
54845
|
+
Text: "text"
|
|
54846
54846
|
};
|
|
54847
54847
|
ListPromptVersionsResponseFormatPromptsType = {
|
|
54848
|
-
|
|
54848
|
+
JsonObject: "json_object"
|
|
54849
54849
|
};
|
|
54850
54850
|
ListPromptVersionsResponseFormatType = {
|
|
54851
|
-
|
|
54851
|
+
JsonSchema: "json_schema"
|
|
54852
54852
|
};
|
|
54853
54853
|
ListPromptVersionsPhotoRealVersion = {
|
|
54854
54854
|
V1: "v1",
|
|
@@ -55013,6 +55013,22 @@ var init_listpromptversions = __esm(() => {
|
|
|
55013
55013
|
ListPromptVersionsResponseFormatPromptsType$.inboundSchema = ListPromptVersionsResponseFormatPromptsType$inboundSchema;
|
|
55014
55014
|
ListPromptVersionsResponseFormatPromptsType$.outboundSchema = ListPromptVersionsResponseFormatPromptsType$outboundSchema;
|
|
55015
55015
|
})(ListPromptVersionsResponseFormatPromptsType$ ||= {});
|
|
55016
|
+
ListPromptVersionsResponseFormat2$inboundSchema = objectType({
|
|
55017
|
+
type: ListPromptVersionsResponseFormatPromptsType$inboundSchema
|
|
55018
|
+
});
|
|
55019
|
+
ListPromptVersionsResponseFormat2$outboundSchema = objectType({
|
|
55020
|
+
type: ListPromptVersionsResponseFormatPromptsType$outboundSchema
|
|
55021
|
+
});
|
|
55022
|
+
((ListPromptVersionsResponseFormat2$) => {
|
|
55023
|
+
ListPromptVersionsResponseFormat2$.inboundSchema = ListPromptVersionsResponseFormat2$inboundSchema;
|
|
55024
|
+
ListPromptVersionsResponseFormat2$.outboundSchema = ListPromptVersionsResponseFormat2$outboundSchema;
|
|
55025
|
+
})(ListPromptVersionsResponseFormat2$ ||= {});
|
|
55026
|
+
ListPromptVersionsResponseFormatType$inboundSchema = nativeEnumType(ListPromptVersionsResponseFormatType);
|
|
55027
|
+
ListPromptVersionsResponseFormatType$outboundSchema = ListPromptVersionsResponseFormatType$inboundSchema;
|
|
55028
|
+
((ListPromptVersionsResponseFormatType$) => {
|
|
55029
|
+
ListPromptVersionsResponseFormatType$.inboundSchema = ListPromptVersionsResponseFormatType$inboundSchema;
|
|
55030
|
+
ListPromptVersionsResponseFormatType$.outboundSchema = ListPromptVersionsResponseFormatType$outboundSchema;
|
|
55031
|
+
})(ListPromptVersionsResponseFormatType$ ||= {});
|
|
55016
55032
|
ListPromptVersionsResponseFormatJsonSchema$inboundSchema = objectType({
|
|
55017
55033
|
name: stringType(),
|
|
55018
55034
|
strict: booleanType().optional(),
|
|
@@ -55027,50 +55043,34 @@ var init_listpromptversions = __esm(() => {
|
|
|
55027
55043
|
ListPromptVersionsResponseFormatJsonSchema$.inboundSchema = ListPromptVersionsResponseFormatJsonSchema$inboundSchema;
|
|
55028
55044
|
ListPromptVersionsResponseFormatJsonSchema$.outboundSchema = ListPromptVersionsResponseFormatJsonSchema$outboundSchema;
|
|
55029
55045
|
})(ListPromptVersionsResponseFormatJsonSchema$ ||= {});
|
|
55030
|
-
|
|
55031
|
-
type:
|
|
55046
|
+
ListPromptVersionsResponseFormat1$inboundSchema = objectType({
|
|
55047
|
+
type: ListPromptVersionsResponseFormatType$inboundSchema,
|
|
55032
55048
|
json_schema: lazyType(() => ListPromptVersionsResponseFormatJsonSchema$inboundSchema)
|
|
55033
55049
|
}).transform((v2) => {
|
|
55034
55050
|
return remap(v2, {
|
|
55035
55051
|
json_schema: "jsonSchema"
|
|
55036
55052
|
});
|
|
55037
55053
|
});
|
|
55038
|
-
|
|
55039
|
-
type:
|
|
55054
|
+
ListPromptVersionsResponseFormat1$outboundSchema = objectType({
|
|
55055
|
+
type: ListPromptVersionsResponseFormatType$outboundSchema,
|
|
55040
55056
|
jsonSchema: lazyType(() => ListPromptVersionsResponseFormatJsonSchema$outboundSchema)
|
|
55041
55057
|
}).transform((v2) => {
|
|
55042
55058
|
return remap(v2, {
|
|
55043
55059
|
jsonSchema: "json_schema"
|
|
55044
55060
|
});
|
|
55045
55061
|
});
|
|
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
|
-
});
|
|
55062
55062
|
((ListPromptVersionsResponseFormat1$) => {
|
|
55063
55063
|
ListPromptVersionsResponseFormat1$.inboundSchema = ListPromptVersionsResponseFormat1$inboundSchema;
|
|
55064
55064
|
ListPromptVersionsResponseFormat1$.outboundSchema = ListPromptVersionsResponseFormat1$outboundSchema;
|
|
55065
55065
|
})(ListPromptVersionsResponseFormat1$ ||= {});
|
|
55066
55066
|
ListPromptVersionsResponseFormat$inboundSchema = unionType([
|
|
55067
|
-
lazyType(() => ListPromptVersionsResponseFormat2$inboundSchema),
|
|
55068
55067
|
lazyType(() => ListPromptVersionsResponseFormat1$inboundSchema),
|
|
55068
|
+
lazyType(() => ListPromptVersionsResponseFormat2$inboundSchema),
|
|
55069
55069
|
lazyType(() => ListPromptVersionsResponseFormat3$inboundSchema)
|
|
55070
55070
|
]);
|
|
55071
55071
|
ListPromptVersionsResponseFormat$outboundSchema = unionType([
|
|
55072
|
-
lazyType(() => ListPromptVersionsResponseFormat2$outboundSchema),
|
|
55073
55072
|
lazyType(() => ListPromptVersionsResponseFormat1$outboundSchema),
|
|
55073
|
+
lazyType(() => ListPromptVersionsResponseFormat2$outboundSchema),
|
|
55074
55074
|
lazyType(() => ListPromptVersionsResponseFormat3$outboundSchema)
|
|
55075
55075
|
]);
|
|
55076
55076
|
((ListPromptVersionsResponseFormat$) => {
|
|
@@ -55115,8 +55115,8 @@ var init_listpromptversions = __esm(() => {
|
|
|
55115
55115
|
quality: stringType().optional(),
|
|
55116
55116
|
style: stringType().optional(),
|
|
55117
55117
|
responseFormat: nullableType(unionType([
|
|
55118
|
-
lazyType(() => ListPromptVersionsResponseFormat2$inboundSchema),
|
|
55119
55118
|
lazyType(() => ListPromptVersionsResponseFormat1$inboundSchema),
|
|
55119
|
+
lazyType(() => ListPromptVersionsResponseFormat2$inboundSchema),
|
|
55120
55120
|
lazyType(() => ListPromptVersionsResponseFormat3$inboundSchema)
|
|
55121
55121
|
])).optional(),
|
|
55122
55122
|
photoRealVersion: ListPromptVersionsPhotoRealVersion$inboundSchema.optional(),
|
|
@@ -55143,8 +55143,8 @@ var init_listpromptversions = __esm(() => {
|
|
|
55143
55143
|
quality: stringType().optional(),
|
|
55144
55144
|
style: stringType().optional(),
|
|
55145
55145
|
responseFormat: nullableType(unionType([
|
|
55146
|
-
lazyType(() => ListPromptVersionsResponseFormat2$outboundSchema),
|
|
55147
55146
|
lazyType(() => ListPromptVersionsResponseFormat1$outboundSchema),
|
|
55147
|
+
lazyType(() => ListPromptVersionsResponseFormat2$outboundSchema),
|
|
55148
55148
|
lazyType(() => ListPromptVersionsResponseFormat3$outboundSchema)
|
|
55149
55149
|
])).optional(),
|
|
55150
55150
|
photoRealVersion: ListPromptVersionsPhotoRealVersion$outboundSchema.optional(),
|
|
@@ -56041,7 +56041,7 @@ var init_retrievecontact = __esm(() => {
|
|
|
56041
56041
|
tags: arrayType(stringType()).optional(),
|
|
56042
56042
|
metadata: recordType(anyType()).optional(),
|
|
56043
56043
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
56044
|
-
updated: stringType().datetime({ offset: true }).default("2025-08-
|
|
56044
|
+
updated: stringType().datetime({ offset: true }).default("2025-08-13T12:53:43.771Z").transform((v2) => new Date(v2))
|
|
56045
56045
|
}).transform((v2) => {
|
|
56046
56046
|
return remap(v2, {
|
|
56047
56047
|
_id: "id",
|
|
@@ -56059,7 +56059,7 @@ var init_retrievecontact = __esm(() => {
|
|
|
56059
56059
|
tags: arrayType(stringType()).optional(),
|
|
56060
56060
|
metadata: recordType(anyType()).optional(),
|
|
56061
56061
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
56062
|
-
updated: dateType().default(() => new Date("2025-08-
|
|
56062
|
+
updated: dateType().default(() => new Date("2025-08-13T12:53:43.771Z")).transform((v2) => v2.toISOString())
|
|
56063
56063
|
}).transform((v2) => {
|
|
56064
56064
|
return remap(v2, {
|
|
56065
56065
|
id: "_id",
|
|
@@ -56636,7 +56636,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
56636
56636
|
created_by_id: stringType().optional(),
|
|
56637
56637
|
updated_by_id: stringType().optional(),
|
|
56638
56638
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
56639
|
-
updated: stringType().datetime({ offset: true }).default("2025-08-
|
|
56639
|
+
updated: stringType().datetime({ offset: true }).default("2025-08-13T12:53:43.771Z").transform((v2) => new Date(v2))
|
|
56640
56640
|
}).transform((v2) => {
|
|
56641
56641
|
return remap(v2, {
|
|
56642
56642
|
_id: "id",
|
|
@@ -56663,7 +56663,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
56663
56663
|
createdById: stringType().optional(),
|
|
56664
56664
|
updatedById: stringType().optional(),
|
|
56665
56665
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
56666
|
-
updated: dateType().default(() => new Date("2025-08-
|
|
56666
|
+
updated: dateType().default(() => new Date("2025-08-13T12:53:43.771Z")).transform((v2) => v2.toISOString())
|
|
56667
56667
|
}).transform((v2) => {
|
|
56668
56668
|
return remap(v2, {
|
|
56669
56669
|
id: "_id",
|
|
@@ -56734,7 +56734,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
56734
56734
|
updated_by_id: stringType().optional(),
|
|
56735
56735
|
metadata: lazyType(() => RetrieveDatasetMetadata$inboundSchema),
|
|
56736
56736
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
56737
|
-
updated: stringType().datetime({ offset: true }).default("2025-08-
|
|
56737
|
+
updated: stringType().datetime({ offset: true }).default("2025-08-13T12:53:43.771Z").transform((v2) => new Date(v2))
|
|
56738
56738
|
}).transform((v2) => {
|
|
56739
56739
|
return remap(v2, {
|
|
56740
56740
|
_id: "id",
|
|
@@ -56754,7 +56754,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
56754
56754
|
updatedById: stringType().optional(),
|
|
56755
56755
|
metadata: lazyType(() => RetrieveDatasetMetadata$outboundSchema),
|
|
56756
56756
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
56757
|
-
updated: dateType().default(() => new Date("2025-08-
|
|
56757
|
+
updated: dateType().default(() => new Date("2025-08-13T12:53:43.771Z")).transform((v2) => v2.toISOString())
|
|
56758
56758
|
}).transform((v2) => {
|
|
56759
56759
|
return remap(v2, {
|
|
56760
56760
|
id: "_id",
|
|
@@ -56812,7 +56812,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
56812
56812
|
RetrieveDatasourceStatus$.outboundSchema = RetrieveDatasourceStatus$outboundSchema;
|
|
56813
56813
|
})(RetrieveDatasourceStatus$ ||= {});
|
|
56814
56814
|
RetrieveDatasourceResponseBody$inboundSchema = objectType({
|
|
56815
|
-
_id: stringType().default("
|
|
56815
|
+
_id: stringType().default("01K2HQWZ16TV5NW7YQ3P99FX3D"),
|
|
56816
56816
|
display_name: stringType(),
|
|
56817
56817
|
description: stringType().optional(),
|
|
56818
56818
|
status: RetrieveDatasourceStatus$inboundSchema,
|
|
@@ -56835,7 +56835,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
56835
56835
|
});
|
|
56836
56836
|
});
|
|
56837
56837
|
RetrieveDatasourceResponseBody$outboundSchema = objectType({
|
|
56838
|
-
id: stringType().default("
|
|
56838
|
+
id: stringType().default("01K2HQWZ16TV5NW7YQ3P99FX3D"),
|
|
56839
56839
|
displayName: stringType(),
|
|
56840
56840
|
description: stringType().optional(),
|
|
56841
56841
|
status: RetrieveDatasourceStatus$outboundSchema,
|
|
@@ -57731,7 +57731,7 @@ var init_updatecontact = __esm(() => {
|
|
|
57731
57731
|
tags: arrayType(stringType()).optional(),
|
|
57732
57732
|
metadata: recordType(anyType()).optional(),
|
|
57733
57733
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
57734
|
-
updated: stringType().datetime({ offset: true }).default("2025-08-
|
|
57734
|
+
updated: stringType().datetime({ offset: true }).default("2025-08-13T12:53:43.771Z").transform((v2) => new Date(v2))
|
|
57735
57735
|
}).transform((v2) => {
|
|
57736
57736
|
return remap(v2, {
|
|
57737
57737
|
_id: "id",
|
|
@@ -57749,7 +57749,7 @@ var init_updatecontact = __esm(() => {
|
|
|
57749
57749
|
tags: arrayType(stringType()).optional(),
|
|
57750
57750
|
metadata: recordType(anyType()).optional(),
|
|
57751
57751
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
57752
|
-
updated: dateType().default(() => new Date("2025-08-
|
|
57752
|
+
updated: dateType().default(() => new Date("2025-08-13T12:53:43.771Z")).transform((v2) => v2.toISOString())
|
|
57753
57753
|
}).transform((v2) => {
|
|
57754
57754
|
return remap(v2, {
|
|
57755
57755
|
id: "_id",
|
|
@@ -58883,7 +58883,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
58883
58883
|
created_by_id: stringType().optional(),
|
|
58884
58884
|
updated_by_id: stringType().optional(),
|
|
58885
58885
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
58886
|
-
updated: stringType().datetime({ offset: true }).default("2025-08-
|
|
58886
|
+
updated: stringType().datetime({ offset: true }).default("2025-08-13T12:53:43.771Z").transform((v2) => new Date(v2))
|
|
58887
58887
|
}).transform((v2) => {
|
|
58888
58888
|
return remap(v2, {
|
|
58889
58889
|
_id: "id",
|
|
@@ -58910,7 +58910,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
58910
58910
|
createdById: stringType().optional(),
|
|
58911
58911
|
updatedById: stringType().optional(),
|
|
58912
58912
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
58913
|
-
updated: dateType().default(() => new Date("2025-08-
|
|
58913
|
+
updated: dateType().default(() => new Date("2025-08-13T12:53:43.771Z")).transform((v2) => v2.toISOString())
|
|
58914
58914
|
}).transform((v2) => {
|
|
58915
58915
|
return remap(v2, {
|
|
58916
58916
|
id: "_id",
|
|
@@ -59011,7 +59011,7 @@ var init_updatedataset = __esm(() => {
|
|
|
59011
59011
|
parent_id: stringType().optional(),
|
|
59012
59012
|
version: stringType().optional(),
|
|
59013
59013
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
59014
|
-
updated: stringType().datetime({ offset: true }).default("2025-08-
|
|
59014
|
+
updated: stringType().datetime({ offset: true }).default("2025-08-13T12:53:43.771Z").transform((v2) => new Date(v2))
|
|
59015
59015
|
}).transform((v2) => {
|
|
59016
59016
|
return remap(v2, {
|
|
59017
59017
|
_id: "id",
|
|
@@ -59034,7 +59034,7 @@ var init_updatedataset = __esm(() => {
|
|
|
59034
59034
|
parentId: stringType().optional(),
|
|
59035
59035
|
version: stringType().optional(),
|
|
59036
59036
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
59037
|
-
updated: dateType().default(() => new Date("2025-08-
|
|
59037
|
+
updated: dateType().default(() => new Date("2025-08-13T12:53:43.771Z")).transform((v2) => v2.toISOString())
|
|
59038
59038
|
}).transform((v2) => {
|
|
59039
59039
|
return remap(v2, {
|
|
59040
59040
|
id: "_id",
|
|
@@ -59115,7 +59115,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
59115
59115
|
UpdateDatasourceStatus$.outboundSchema = UpdateDatasourceStatus$outboundSchema;
|
|
59116
59116
|
})(UpdateDatasourceStatus$ ||= {});
|
|
59117
59117
|
UpdateDatasourceResponseBody$inboundSchema = objectType({
|
|
59118
|
-
_id: stringType().default("
|
|
59118
|
+
_id: stringType().default("01K2HQWZ17XZCMWT11R82C7DDD"),
|
|
59119
59119
|
display_name: stringType(),
|
|
59120
59120
|
description: stringType().optional(),
|
|
59121
59121
|
status: UpdateDatasourceStatus$inboundSchema,
|
|
@@ -59138,7 +59138,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
59138
59138
|
});
|
|
59139
59139
|
});
|
|
59140
59140
|
UpdateDatasourceResponseBody$outboundSchema = objectType({
|
|
59141
|
-
id: stringType().default("
|
|
59141
|
+
id: stringType().default("01K2HQWZ17XZCMWT11R82C7DDD"),
|
|
59142
59142
|
displayName: stringType(),
|
|
59143
59143
|
description: stringType().optional(),
|
|
59144
59144
|
status: UpdateDatasourceStatus$outboundSchema,
|
|
@@ -59844,8 +59844,8 @@ var init_updateeval = __esm(() => {
|
|
|
59844
59844
|
UpdateEvalResponseBodyPython$inboundSchema = objectType({
|
|
59845
59845
|
_id: stringType(),
|
|
59846
59846
|
description: stringType(),
|
|
59847
|
-
created: stringType().default("2025-08-
|
|
59848
|
-
updated: stringType().default("2025-08-
|
|
59847
|
+
created: stringType().default("2025-08-13T12:53:46.195Z"),
|
|
59848
|
+
updated: stringType().default("2025-08-13T12:53:46.195Z"),
|
|
59849
59849
|
guardrail_config: unionType([
|
|
59850
59850
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
59851
59851
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
|
|
@@ -59862,8 +59862,8 @@ var init_updateeval = __esm(() => {
|
|
|
59862
59862
|
UpdateEvalResponseBodyPython$outboundSchema = objectType({
|
|
59863
59863
|
id: stringType(),
|
|
59864
59864
|
description: stringType(),
|
|
59865
|
-
created: stringType().default("2025-08-
|
|
59866
|
-
updated: stringType().default("2025-08-
|
|
59865
|
+
created: stringType().default("2025-08-13T12:53:46.195Z"),
|
|
59866
|
+
updated: stringType().default("2025-08-13T12:53:46.195Z"),
|
|
59867
59867
|
guardrailConfig: unionType([
|
|
59868
59868
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
59869
59869
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
|
|
@@ -59956,8 +59956,8 @@ var init_updateeval = __esm(() => {
|
|
|
59956
59956
|
UpdateEvalResponseBodyHTTP$inboundSchema = objectType({
|
|
59957
59957
|
_id: stringType(),
|
|
59958
59958
|
description: stringType(),
|
|
59959
|
-
created: stringType().default("2025-08-
|
|
59960
|
-
updated: stringType().default("2025-08-
|
|
59959
|
+
created: stringType().default("2025-08-13T12:53:46.195Z"),
|
|
59960
|
+
updated: stringType().default("2025-08-13T12:53:46.195Z"),
|
|
59961
59961
|
guardrail_config: unionType([
|
|
59962
59962
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
59963
59963
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
|
|
@@ -59977,8 +59977,8 @@ var init_updateeval = __esm(() => {
|
|
|
59977
59977
|
UpdateEvalResponseBodyHTTP$outboundSchema = objectType({
|
|
59978
59978
|
id: stringType(),
|
|
59979
59979
|
description: stringType(),
|
|
59980
|
-
created: stringType().default("2025-08-
|
|
59981
|
-
updated: stringType().default("2025-08-
|
|
59980
|
+
created: stringType().default("2025-08-13T12:53:46.195Z"),
|
|
59981
|
+
updated: stringType().default("2025-08-13T12:53:46.195Z"),
|
|
59982
59982
|
guardrailConfig: unionType([
|
|
59983
59983
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
59984
59984
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
|
|
@@ -60068,8 +60068,8 @@ var init_updateeval = __esm(() => {
|
|
|
60068
60068
|
UpdateEvalResponseBodyJSON$inboundSchema = objectType({
|
|
60069
60069
|
_id: stringType(),
|
|
60070
60070
|
description: stringType(),
|
|
60071
|
-
created: stringType().default("2025-08-
|
|
60072
|
-
updated: stringType().default("2025-08-
|
|
60071
|
+
created: stringType().default("2025-08-13T12:53:46.195Z"),
|
|
60072
|
+
updated: stringType().default("2025-08-13T12:53:46.195Z"),
|
|
60073
60073
|
guardrail_config: unionType([
|
|
60074
60074
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
60075
60075
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema)
|
|
@@ -60086,8 +60086,8 @@ var init_updateeval = __esm(() => {
|
|
|
60086
60086
|
UpdateEvalResponseBodyJSON$outboundSchema = objectType({
|
|
60087
60087
|
id: stringType(),
|
|
60088
60088
|
description: stringType(),
|
|
60089
|
-
created: stringType().default("2025-08-
|
|
60090
|
-
updated: stringType().default("2025-08-
|
|
60089
|
+
created: stringType().default("2025-08-13T12:53:46.195Z"),
|
|
60090
|
+
updated: stringType().default("2025-08-13T12:53:46.195Z"),
|
|
60091
60091
|
guardrailConfig: unionType([
|
|
60092
60092
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
60093
60093
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema)
|
|
@@ -60174,8 +60174,8 @@ var init_updateeval = __esm(() => {
|
|
|
60174
60174
|
UpdateEvalResponseBodyLLM$inboundSchema = objectType({
|
|
60175
60175
|
_id: stringType(),
|
|
60176
60176
|
description: stringType(),
|
|
60177
|
-
created: stringType().default("2025-08-
|
|
60178
|
-
updated: stringType().default("2025-08-
|
|
60177
|
+
created: stringType().default("2025-08-13T12:53:46.195Z"),
|
|
60178
|
+
updated: stringType().default("2025-08-13T12:53:46.195Z"),
|
|
60179
60179
|
guardrail_config: unionType([
|
|
60180
60180
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
60181
60181
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema)
|
|
@@ -60193,8 +60193,8 @@ var init_updateeval = __esm(() => {
|
|
|
60193
60193
|
UpdateEvalResponseBodyLLM$outboundSchema = objectType({
|
|
60194
60194
|
id: stringType(),
|
|
60195
60195
|
description: stringType(),
|
|
60196
|
-
created: stringType().default("2025-08-
|
|
60197
|
-
updated: stringType().default("2025-08-
|
|
60196
|
+
created: stringType().default("2025-08-13T12:53:46.195Z"),
|
|
60197
|
+
updated: stringType().default("2025-08-13T12:53:46.195Z"),
|
|
60198
60198
|
guardrailConfig: unionType([
|
|
60199
60199
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
60200
60200
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema)
|
|
@@ -60483,7 +60483,7 @@ var init_updateknowledge = __esm(() => {
|
|
|
60483
60483
|
});
|
|
60484
60484
|
|
|
60485
60485
|
// src/models/operations/updateprompt.ts
|
|
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$,
|
|
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$, UpdatePromptResponseFormat2$inboundSchema, UpdatePromptResponseFormat2$outboundSchema, UpdatePromptResponseFormat2$, UpdatePromptResponseFormatType$inboundSchema, UpdatePromptResponseFormatType$outboundSchema, UpdatePromptResponseFormatType$, ResponseFormatJsonSchema$inboundSchema, ResponseFormatJsonSchema$outboundSchema, ResponseFormatJsonSchema$, 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$, UpdatePromptResponseFormatPrompts2$inboundSchema, UpdatePromptResponseFormatPrompts2$outboundSchema, UpdatePromptResponseFormatPrompts2$, UpdatePromptResponseFormatPromptsResponseType$inboundSchema, UpdatePromptResponseFormatPromptsResponseType$outboundSchema, UpdatePromptResponseFormatPromptsResponseType$, UpdatePromptResponseFormatJsonSchema$inboundSchema, UpdatePromptResponseFormatJsonSchema$outboundSchema, UpdatePromptResponseFormatJsonSchema$, 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$;
|
|
60487
60487
|
var init_updateprompt = __esm(() => {
|
|
60488
60488
|
init_esm();
|
|
60489
60489
|
init_primitives();
|
|
@@ -60494,13 +60494,13 @@ var init_updateprompt = __esm(() => {
|
|
|
60494
60494
|
JsonObject: "json_object"
|
|
60495
60495
|
};
|
|
60496
60496
|
UpdatePromptResponseFormatPromptsRequestType = {
|
|
60497
|
-
|
|
60497
|
+
Text: "text"
|
|
60498
60498
|
};
|
|
60499
60499
|
UpdatePromptResponseFormatPromptsType = {
|
|
60500
|
-
|
|
60500
|
+
JsonObject: "json_object"
|
|
60501
60501
|
};
|
|
60502
60502
|
UpdatePromptResponseFormatType = {
|
|
60503
|
-
|
|
60503
|
+
JsonSchema: "json_schema"
|
|
60504
60504
|
};
|
|
60505
60505
|
UpdatePromptPhotoRealVersion = {
|
|
60506
60506
|
V1: "v1",
|
|
@@ -60618,13 +60618,13 @@ var init_updateprompt = __esm(() => {
|
|
|
60618
60618
|
JsonObject: "json_object"
|
|
60619
60619
|
};
|
|
60620
60620
|
UpdatePromptResponseFormatPromptsResponse200ApplicationJSONType = {
|
|
60621
|
-
|
|
60621
|
+
Text: "text"
|
|
60622
60622
|
};
|
|
60623
60623
|
UpdatePromptResponseFormatPromptsResponse200Type = {
|
|
60624
|
-
|
|
60624
|
+
JsonObject: "json_object"
|
|
60625
60625
|
};
|
|
60626
60626
|
UpdatePromptResponseFormatPromptsResponseType = {
|
|
60627
|
-
|
|
60627
|
+
JsonSchema: "json_schema"
|
|
60628
60628
|
};
|
|
60629
60629
|
UpdatePromptPromptsPhotoRealVersion = {
|
|
60630
60630
|
V1: "v1",
|
|
@@ -60749,6 +60749,22 @@ var init_updateprompt = __esm(() => {
|
|
|
60749
60749
|
UpdatePromptResponseFormatPromptsType$.inboundSchema = UpdatePromptResponseFormatPromptsType$inboundSchema;
|
|
60750
60750
|
UpdatePromptResponseFormatPromptsType$.outboundSchema = UpdatePromptResponseFormatPromptsType$outboundSchema;
|
|
60751
60751
|
})(UpdatePromptResponseFormatPromptsType$ ||= {});
|
|
60752
|
+
UpdatePromptResponseFormat2$inboundSchema = objectType({
|
|
60753
|
+
type: UpdatePromptResponseFormatPromptsType$inboundSchema
|
|
60754
|
+
});
|
|
60755
|
+
UpdatePromptResponseFormat2$outboundSchema = objectType({
|
|
60756
|
+
type: UpdatePromptResponseFormatPromptsType$outboundSchema
|
|
60757
|
+
});
|
|
60758
|
+
((UpdatePromptResponseFormat2$) => {
|
|
60759
|
+
UpdatePromptResponseFormat2$.inboundSchema = UpdatePromptResponseFormat2$inboundSchema;
|
|
60760
|
+
UpdatePromptResponseFormat2$.outboundSchema = UpdatePromptResponseFormat2$outboundSchema;
|
|
60761
|
+
})(UpdatePromptResponseFormat2$ ||= {});
|
|
60762
|
+
UpdatePromptResponseFormatType$inboundSchema = nativeEnumType(UpdatePromptResponseFormatType);
|
|
60763
|
+
UpdatePromptResponseFormatType$outboundSchema = UpdatePromptResponseFormatType$inboundSchema;
|
|
60764
|
+
((UpdatePromptResponseFormatType$) => {
|
|
60765
|
+
UpdatePromptResponseFormatType$.inboundSchema = UpdatePromptResponseFormatType$inboundSchema;
|
|
60766
|
+
UpdatePromptResponseFormatType$.outboundSchema = UpdatePromptResponseFormatType$outboundSchema;
|
|
60767
|
+
})(UpdatePromptResponseFormatType$ ||= {});
|
|
60752
60768
|
ResponseFormatJsonSchema$inboundSchema = objectType({
|
|
60753
60769
|
name: stringType(),
|
|
60754
60770
|
strict: booleanType().optional(),
|
|
@@ -60763,50 +60779,34 @@ var init_updateprompt = __esm(() => {
|
|
|
60763
60779
|
ResponseFormatJsonSchema$.inboundSchema = ResponseFormatJsonSchema$inboundSchema;
|
|
60764
60780
|
ResponseFormatJsonSchema$.outboundSchema = ResponseFormatJsonSchema$outboundSchema;
|
|
60765
60781
|
})(ResponseFormatJsonSchema$ ||= {});
|
|
60766
|
-
|
|
60767
|
-
type:
|
|
60782
|
+
UpdatePromptResponseFormat1$inboundSchema = objectType({
|
|
60783
|
+
type: UpdatePromptResponseFormatType$inboundSchema,
|
|
60768
60784
|
json_schema: lazyType(() => ResponseFormatJsonSchema$inboundSchema)
|
|
60769
60785
|
}).transform((v2) => {
|
|
60770
60786
|
return remap(v2, {
|
|
60771
60787
|
json_schema: "jsonSchema"
|
|
60772
60788
|
});
|
|
60773
60789
|
});
|
|
60774
|
-
|
|
60775
|
-
type:
|
|
60790
|
+
UpdatePromptResponseFormat1$outboundSchema = objectType({
|
|
60791
|
+
type: UpdatePromptResponseFormatType$outboundSchema,
|
|
60776
60792
|
jsonSchema: lazyType(() => ResponseFormatJsonSchema$outboundSchema)
|
|
60777
60793
|
}).transform((v2) => {
|
|
60778
60794
|
return remap(v2, {
|
|
60779
60795
|
jsonSchema: "json_schema"
|
|
60780
60796
|
});
|
|
60781
60797
|
});
|
|
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
|
-
});
|
|
60798
60798
|
((UpdatePromptResponseFormat1$) => {
|
|
60799
60799
|
UpdatePromptResponseFormat1$.inboundSchema = UpdatePromptResponseFormat1$inboundSchema;
|
|
60800
60800
|
UpdatePromptResponseFormat1$.outboundSchema = UpdatePromptResponseFormat1$outboundSchema;
|
|
60801
60801
|
})(UpdatePromptResponseFormat1$ ||= {});
|
|
60802
60802
|
UpdatePromptResponseFormat$inboundSchema = unionType([
|
|
60803
|
-
lazyType(() => UpdatePromptResponseFormat2$inboundSchema),
|
|
60804
60803
|
lazyType(() => UpdatePromptResponseFormat1$inboundSchema),
|
|
60804
|
+
lazyType(() => UpdatePromptResponseFormat2$inboundSchema),
|
|
60805
60805
|
lazyType(() => UpdatePromptResponseFormat3$inboundSchema)
|
|
60806
60806
|
]);
|
|
60807
60807
|
UpdatePromptResponseFormat$outboundSchema = unionType([
|
|
60808
|
-
lazyType(() => UpdatePromptResponseFormat2$outboundSchema),
|
|
60809
60808
|
lazyType(() => UpdatePromptResponseFormat1$outboundSchema),
|
|
60809
|
+
lazyType(() => UpdatePromptResponseFormat2$outboundSchema),
|
|
60810
60810
|
lazyType(() => UpdatePromptResponseFormat3$outboundSchema)
|
|
60811
60811
|
]);
|
|
60812
60812
|
((UpdatePromptResponseFormat$) => {
|
|
@@ -60851,8 +60851,8 @@ var init_updateprompt = __esm(() => {
|
|
|
60851
60851
|
quality: stringType().optional(),
|
|
60852
60852
|
style: stringType().optional(),
|
|
60853
60853
|
responseFormat: nullableType(unionType([
|
|
60854
|
-
lazyType(() => UpdatePromptResponseFormat2$inboundSchema),
|
|
60855
60854
|
lazyType(() => UpdatePromptResponseFormat1$inboundSchema),
|
|
60855
|
+
lazyType(() => UpdatePromptResponseFormat2$inboundSchema),
|
|
60856
60856
|
lazyType(() => UpdatePromptResponseFormat3$inboundSchema)
|
|
60857
60857
|
])).optional(),
|
|
60858
60858
|
photoRealVersion: UpdatePromptPhotoRealVersion$inboundSchema.optional(),
|
|
@@ -60879,8 +60879,8 @@ var init_updateprompt = __esm(() => {
|
|
|
60879
60879
|
quality: stringType().optional(),
|
|
60880
60880
|
style: stringType().optional(),
|
|
60881
60881
|
responseFormat: nullableType(unionType([
|
|
60882
|
-
lazyType(() => UpdatePromptResponseFormat2$outboundSchema),
|
|
60883
60882
|
lazyType(() => UpdatePromptResponseFormat1$outboundSchema),
|
|
60883
|
+
lazyType(() => UpdatePromptResponseFormat2$outboundSchema),
|
|
60884
60884
|
lazyType(() => UpdatePromptResponseFormat3$outboundSchema)
|
|
60885
60885
|
])).optional(),
|
|
60886
60886
|
photoRealVersion: UpdatePromptPhotoRealVersion$outboundSchema.optional(),
|
|
@@ -61285,6 +61285,22 @@ var init_updateprompt = __esm(() => {
|
|
|
61285
61285
|
UpdatePromptResponseFormatPromptsResponse200Type$.inboundSchema = UpdatePromptResponseFormatPromptsResponse200Type$inboundSchema;
|
|
61286
61286
|
UpdatePromptResponseFormatPromptsResponse200Type$.outboundSchema = UpdatePromptResponseFormatPromptsResponse200Type$outboundSchema;
|
|
61287
61287
|
})(UpdatePromptResponseFormatPromptsResponse200Type$ ||= {});
|
|
61288
|
+
UpdatePromptResponseFormatPrompts2$inboundSchema = objectType({
|
|
61289
|
+
type: UpdatePromptResponseFormatPromptsResponse200Type$inboundSchema
|
|
61290
|
+
});
|
|
61291
|
+
UpdatePromptResponseFormatPrompts2$outboundSchema = objectType({
|
|
61292
|
+
type: UpdatePromptResponseFormatPromptsResponse200Type$outboundSchema
|
|
61293
|
+
});
|
|
61294
|
+
((UpdatePromptResponseFormatPrompts2$) => {
|
|
61295
|
+
UpdatePromptResponseFormatPrompts2$.inboundSchema = UpdatePromptResponseFormatPrompts2$inboundSchema;
|
|
61296
|
+
UpdatePromptResponseFormatPrompts2$.outboundSchema = UpdatePromptResponseFormatPrompts2$outboundSchema;
|
|
61297
|
+
})(UpdatePromptResponseFormatPrompts2$ ||= {});
|
|
61298
|
+
UpdatePromptResponseFormatPromptsResponseType$inboundSchema = nativeEnumType(UpdatePromptResponseFormatPromptsResponseType);
|
|
61299
|
+
UpdatePromptResponseFormatPromptsResponseType$outboundSchema = UpdatePromptResponseFormatPromptsResponseType$inboundSchema;
|
|
61300
|
+
((UpdatePromptResponseFormatPromptsResponseType$) => {
|
|
61301
|
+
UpdatePromptResponseFormatPromptsResponseType$.inboundSchema = UpdatePromptResponseFormatPromptsResponseType$inboundSchema;
|
|
61302
|
+
UpdatePromptResponseFormatPromptsResponseType$.outboundSchema = UpdatePromptResponseFormatPromptsResponseType$outboundSchema;
|
|
61303
|
+
})(UpdatePromptResponseFormatPromptsResponseType$ ||= {});
|
|
61288
61304
|
UpdatePromptResponseFormatJsonSchema$inboundSchema = objectType({
|
|
61289
61305
|
name: stringType(),
|
|
61290
61306
|
strict: booleanType().optional(),
|
|
@@ -61299,50 +61315,34 @@ var init_updateprompt = __esm(() => {
|
|
|
61299
61315
|
UpdatePromptResponseFormatJsonSchema$.inboundSchema = UpdatePromptResponseFormatJsonSchema$inboundSchema;
|
|
61300
61316
|
UpdatePromptResponseFormatJsonSchema$.outboundSchema = UpdatePromptResponseFormatJsonSchema$outboundSchema;
|
|
61301
61317
|
})(UpdatePromptResponseFormatJsonSchema$ ||= {});
|
|
61302
|
-
|
|
61303
|
-
type:
|
|
61318
|
+
UpdatePromptResponseFormatPrompts1$inboundSchema = objectType({
|
|
61319
|
+
type: UpdatePromptResponseFormatPromptsResponseType$inboundSchema,
|
|
61304
61320
|
json_schema: lazyType(() => UpdatePromptResponseFormatJsonSchema$inboundSchema)
|
|
61305
61321
|
}).transform((v2) => {
|
|
61306
61322
|
return remap(v2, {
|
|
61307
61323
|
json_schema: "jsonSchema"
|
|
61308
61324
|
});
|
|
61309
61325
|
});
|
|
61310
|
-
|
|
61311
|
-
type:
|
|
61326
|
+
UpdatePromptResponseFormatPrompts1$outboundSchema = objectType({
|
|
61327
|
+
type: UpdatePromptResponseFormatPromptsResponseType$outboundSchema,
|
|
61312
61328
|
jsonSchema: lazyType(() => UpdatePromptResponseFormatJsonSchema$outboundSchema)
|
|
61313
61329
|
}).transform((v2) => {
|
|
61314
61330
|
return remap(v2, {
|
|
61315
61331
|
jsonSchema: "json_schema"
|
|
61316
61332
|
});
|
|
61317
61333
|
});
|
|
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
|
-
});
|
|
61334
61334
|
((UpdatePromptResponseFormatPrompts1$) => {
|
|
61335
61335
|
UpdatePromptResponseFormatPrompts1$.inboundSchema = UpdatePromptResponseFormatPrompts1$inboundSchema;
|
|
61336
61336
|
UpdatePromptResponseFormatPrompts1$.outboundSchema = UpdatePromptResponseFormatPrompts1$outboundSchema;
|
|
61337
61337
|
})(UpdatePromptResponseFormatPrompts1$ ||= {});
|
|
61338
61338
|
UpdatePromptPromptsResponseFormat$inboundSchema = unionType([
|
|
61339
|
-
lazyType(() => UpdatePromptResponseFormatPrompts2$inboundSchema),
|
|
61340
61339
|
lazyType(() => UpdatePromptResponseFormatPrompts1$inboundSchema),
|
|
61340
|
+
lazyType(() => UpdatePromptResponseFormatPrompts2$inboundSchema),
|
|
61341
61341
|
lazyType(() => UpdatePromptResponseFormatPrompts3$inboundSchema)
|
|
61342
61342
|
]);
|
|
61343
61343
|
UpdatePromptPromptsResponseFormat$outboundSchema = unionType([
|
|
61344
|
-
lazyType(() => UpdatePromptResponseFormatPrompts2$outboundSchema),
|
|
61345
61344
|
lazyType(() => UpdatePromptResponseFormatPrompts1$outboundSchema),
|
|
61345
|
+
lazyType(() => UpdatePromptResponseFormatPrompts2$outboundSchema),
|
|
61346
61346
|
lazyType(() => UpdatePromptResponseFormatPrompts3$outboundSchema)
|
|
61347
61347
|
]);
|
|
61348
61348
|
((UpdatePromptPromptsResponseFormat$) => {
|
|
@@ -61387,8 +61387,8 @@ var init_updateprompt = __esm(() => {
|
|
|
61387
61387
|
quality: stringType().optional(),
|
|
61388
61388
|
style: stringType().optional(),
|
|
61389
61389
|
responseFormat: nullableType(unionType([
|
|
61390
|
-
lazyType(() => UpdatePromptResponseFormatPrompts2$inboundSchema),
|
|
61391
61390
|
lazyType(() => UpdatePromptResponseFormatPrompts1$inboundSchema),
|
|
61391
|
+
lazyType(() => UpdatePromptResponseFormatPrompts2$inboundSchema),
|
|
61392
61392
|
lazyType(() => UpdatePromptResponseFormatPrompts3$inboundSchema)
|
|
61393
61393
|
])).optional(),
|
|
61394
61394
|
photoRealVersion: UpdatePromptPromptsPhotoRealVersion$inboundSchema.optional(),
|
|
@@ -61415,8 +61415,8 @@ var init_updateprompt = __esm(() => {
|
|
|
61415
61415
|
quality: stringType().optional(),
|
|
61416
61416
|
style: stringType().optional(),
|
|
61417
61417
|
responseFormat: nullableType(unionType([
|
|
61418
|
-
lazyType(() => UpdatePromptResponseFormatPrompts2$outboundSchema),
|
|
61419
61418
|
lazyType(() => UpdatePromptResponseFormatPrompts1$outboundSchema),
|
|
61419
|
+
lazyType(() => UpdatePromptResponseFormatPrompts2$outboundSchema),
|
|
61420
61420
|
lazyType(() => UpdatePromptResponseFormatPrompts3$outboundSchema)
|
|
61421
61421
|
])).optional(),
|
|
61422
61422
|
photoRealVersion: UpdatePromptPromptsPhotoRealVersion$outboundSchema.optional(),
|
|
@@ -76427,7 +76427,7 @@ var init_remoteconfigsRetrieve2 = __esm(() => {
|
|
|
76427
76427
|
function createMCPServer(deps) {
|
|
76428
76428
|
const server = new McpServer({
|
|
76429
76429
|
name: "Orq",
|
|
76430
|
-
version: "3.10.
|
|
76430
|
+
version: "3.10.19"
|
|
76431
76431
|
});
|
|
76432
76432
|
const client = new OrqCore({
|
|
76433
76433
|
apiKey: deps.apiKey,
|
|
@@ -77835,7 +77835,7 @@ var routes = rn({
|
|
|
77835
77835
|
var app = Ve(routes, {
|
|
77836
77836
|
name: "mcp",
|
|
77837
77837
|
versionInfo: {
|
|
77838
|
-
currentVersion: "3.10.
|
|
77838
|
+
currentVersion: "3.10.19"
|
|
77839
77839
|
}
|
|
77840
77840
|
});
|
|
77841
77841
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -77843,5 +77843,5 @@ export {
|
|
|
77843
77843
|
app
|
|
77844
77844
|
};
|
|
77845
77845
|
|
|
77846
|
-
//# debugId=
|
|
77846
|
+
//# debugId=3D6A5DF510617B0164756E2164756E21
|
|
77847
77847
|
//# sourceMappingURL=mcp-server.js.map
|