@orq-ai/node 3.11.0-rc.5 → 3.11.0-rc.7
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 +419 -189
- package/bin/mcp-server.js.map +37 -37
- package/docs/sdks/contacts/README.md +1 -1
- package/examples/contactsCreate.example.ts +1 -1
- package/examples/package-lock.json +1 -1
- package/funcs/contactsCreate.d.ts +1 -1
- package/funcs/contactsCreate.js +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/mcp-server/tools/contactsCreate.js +1 -1
- package/mcp-server/tools/contactsCreate.js.map +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 +118 -24
- package/models/operations/createprompt.d.ts.map +1 -1
- package/models/operations/createprompt.js +130 -30
- package/models/operations/createprompt.js.map +1 -1
- package/models/operations/deploymentgetconfig.d.ts +59 -12
- package/models/operations/deploymentgetconfig.d.ts.map +1 -1
- package/models/operations/deploymentgetconfig.js +73 -24
- package/models/operations/deploymentgetconfig.js.map +1 -1
- package/models/operations/deployments.d.ts +59 -12
- package/models/operations/deployments.d.ts.map +1 -1
- package/models/operations/deployments.js +66 -16
- 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 +51 -4
- package/models/operations/getallprompts.d.ts.map +1 -1
- package/models/operations/getallprompts.js +53 -3
- package/models/operations/getallprompts.js.map +1 -1
- package/models/operations/getevals.js +28 -28
- package/models/operations/getoneprompt.d.ts +51 -4
- package/models/operations/getoneprompt.d.ts.map +1 -1
- package/models/operations/getoneprompt.js +53 -3
- package/models/operations/getoneprompt.js.map +1 -1
- package/models/operations/getpromptversion.d.ts +51 -4
- package/models/operations/getpromptversion.d.ts.map +1 -1
- package/models/operations/getpromptversion.js +53 -3
- 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 +51 -4
- package/models/operations/listpromptversions.d.ts.map +1 -1
- package/models/operations/listpromptversions.js +52 -3
- 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 +102 -8
- package/models/operations/updateprompt.d.ts.map +1 -1
- package/models/operations/updateprompt.js +105 -5
- package/models/operations/updateprompt.js.map +1 -1
- package/package.json +1 -1
- package/sdk/contacts.d.ts +1 -1
- package/sdk/contacts.js +1 -1
- package/src/funcs/contactsCreate.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/mcp-server/tools/contactsCreate.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 +246 -40
- package/src/models/operations/deploymentgetconfig.ts +121 -20
- package/src/models/operations/deployments.ts +115 -19
- 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 +100 -2
- package/src/models/operations/getevals.ts +28 -28
- package/src/models/operations/getoneprompt.ts +100 -2
- package/src/models/operations/getpromptversion.ts +100 -2
- package/src/models/operations/listcontacts.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +2 -2
- package/src/models/operations/listdatasets.ts +2 -2
- package/src/models/operations/listdatasources.ts +2 -2
- package/src/models/operations/listpromptversions.ts +101 -2
- package/src/models/operations/retrievecontact.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +2 -2
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/retrievedatasource.ts +2 -2
- package/src/models/operations/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 +210 -4
- package/src/sdk/contacts.ts +1 -1
package/bin/mcp-server.js
CHANGED
|
@@ -34203,9 +34203,9 @@ var init_config = __esm(() => {
|
|
|
34203
34203
|
SDK_METADATA = {
|
|
34204
34204
|
language: "typescript",
|
|
34205
34205
|
openapiDocVersion: "2.0",
|
|
34206
|
-
sdkVersion: "3.11.0-rc.
|
|
34207
|
-
genVersion: "2.
|
|
34208
|
-
userAgent: "speakeasy-sdk/typescript 3.11.0-rc.
|
|
34206
|
+
sdkVersion: "3.11.0-rc.7",
|
|
34207
|
+
genVersion: "2.681.1",
|
|
34208
|
+
userAgent: "speakeasy-sdk/typescript 3.11.0-rc.7 2.681.1 2.0 @orq-ai/node"
|
|
34209
34209
|
};
|
|
34210
34210
|
});
|
|
34211
34211
|
|
|
@@ -35878,7 +35878,7 @@ var init_createcontact = __esm(() => {
|
|
|
35878
35878
|
tags: arrayType(stringType()).optional(),
|
|
35879
35879
|
metadata: recordType(anyType()).optional(),
|
|
35880
35880
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
35881
|
-
updated: stringType().datetime({ offset: true }).default("2025-08-
|
|
35881
|
+
updated: stringType().datetime({ offset: true }).default("2025-08-12T12:59:35.165Z").transform((v2) => new Date(v2))
|
|
35882
35882
|
}).transform((v2) => {
|
|
35883
35883
|
return remap(v2, {
|
|
35884
35884
|
_id: "id",
|
|
@@ -35898,7 +35898,7 @@ var init_createcontact = __esm(() => {
|
|
|
35898
35898
|
tags: arrayType(stringType()).optional(),
|
|
35899
35899
|
metadata: recordType(anyType()).optional(),
|
|
35900
35900
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
35901
|
-
updated: dateType().default(() => new Date("2025-08-
|
|
35901
|
+
updated: dateType().default(() => new Date("2025-08-12T12:59:35.165Z")).transform((v2) => v2.toISOString())
|
|
35902
35902
|
}).transform((v2) => {
|
|
35903
35903
|
return remap(v2, {
|
|
35904
35904
|
id: "_id",
|
|
@@ -35970,7 +35970,7 @@ var init_createdataset = __esm(() => {
|
|
|
35970
35970
|
updated_by_id: stringType().optional(),
|
|
35971
35971
|
metadata: lazyType(() => CreateDatasetMetadata$inboundSchema),
|
|
35972
35972
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
35973
|
-
updated: stringType().datetime({ offset: true }).default("2025-08-
|
|
35973
|
+
updated: stringType().datetime({ offset: true }).default("2025-08-12T12:59:35.165Z").transform((v2) => new Date(v2))
|
|
35974
35974
|
}).transform((v2) => {
|
|
35975
35975
|
return remap(v2, {
|
|
35976
35976
|
_id: "id",
|
|
@@ -35990,7 +35990,7 @@ var init_createdataset = __esm(() => {
|
|
|
35990
35990
|
updatedById: stringType().optional(),
|
|
35991
35991
|
metadata: lazyType(() => CreateDatasetMetadata$outboundSchema),
|
|
35992
35992
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
35993
|
-
updated: dateType().default(() => new Date("2025-08-
|
|
35993
|
+
updated: dateType().default(() => new Date("2025-08-12T12:59:35.165Z")).transform((v2) => v2.toISOString())
|
|
35994
35994
|
}).transform((v2) => {
|
|
35995
35995
|
return remap(v2, {
|
|
35996
35996
|
id: "_id",
|
|
@@ -37122,7 +37122,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
37122
37122
|
created_by_id: stringType().optional(),
|
|
37123
37123
|
updated_by_id: stringType().optional(),
|
|
37124
37124
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
37125
|
-
updated: stringType().datetime({ offset: true }).default("2025-08-
|
|
37125
|
+
updated: stringType().datetime({ offset: true }).default("2025-08-12T12:59:35.165Z").transform((v2) => new Date(v2))
|
|
37126
37126
|
}).transform((v2) => {
|
|
37127
37127
|
return remap(v2, {
|
|
37128
37128
|
_id: "id",
|
|
@@ -37149,7 +37149,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
37149
37149
|
createdById: stringType().optional(),
|
|
37150
37150
|
updatedById: stringType().optional(),
|
|
37151
37151
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
37152
|
-
updated: dateType().default(() => new Date("2025-08-
|
|
37152
|
+
updated: dateType().default(() => new Date("2025-08-12T12:59:35.165Z")).transform((v2) => v2.toISOString())
|
|
37153
37153
|
}).transform((v2) => {
|
|
37154
37154
|
return remap(v2, {
|
|
37155
37155
|
id: "_id",
|
|
@@ -37371,7 +37371,7 @@ var init_createdatasource = __esm(() => {
|
|
|
37371
37371
|
CreateDatasourceStatus$.outboundSchema = CreateDatasourceStatus$outboundSchema;
|
|
37372
37372
|
})(CreateDatasourceStatus$ ||= {});
|
|
37373
37373
|
CreateDatasourceResponseBody$inboundSchema = objectType({
|
|
37374
|
-
_id: stringType().default("
|
|
37374
|
+
_id: stringType().default("01K2F5TZF9MKB8Q97J7KYA1Y6D"),
|
|
37375
37375
|
display_name: stringType(),
|
|
37376
37376
|
description: stringType().optional(),
|
|
37377
37377
|
status: CreateDatasourceStatus$inboundSchema,
|
|
@@ -37394,7 +37394,7 @@ var init_createdatasource = __esm(() => {
|
|
|
37394
37394
|
});
|
|
37395
37395
|
});
|
|
37396
37396
|
CreateDatasourceResponseBody$outboundSchema = objectType({
|
|
37397
|
-
id: stringType().default("
|
|
37397
|
+
id: stringType().default("01K2F5TZF9MKB8Q97J7KYA1Y6D"),
|
|
37398
37398
|
displayName: stringType(),
|
|
37399
37399
|
description: stringType().optional(),
|
|
37400
37400
|
status: CreateDatasourceStatus$outboundSchema,
|
|
@@ -38070,8 +38070,8 @@ var init_createeval = __esm(() => {
|
|
|
38070
38070
|
ResponseBodyPython$inboundSchema = objectType({
|
|
38071
38071
|
_id: stringType(),
|
|
38072
38072
|
description: stringType(),
|
|
38073
|
-
created: stringType().default("2025-08-
|
|
38074
|
-
updated: stringType().default("2025-08-
|
|
38073
|
+
created: stringType().default("2025-08-12T12:59:37.688Z"),
|
|
38074
|
+
updated: stringType().default("2025-08-12T12:59:37.688Z"),
|
|
38075
38075
|
guardrail_config: unionType([
|
|
38076
38076
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
38077
38077
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
|
|
@@ -38088,8 +38088,8 @@ var init_createeval = __esm(() => {
|
|
|
38088
38088
|
ResponseBodyPython$outboundSchema = objectType({
|
|
38089
38089
|
id: stringType(),
|
|
38090
38090
|
description: stringType(),
|
|
38091
|
-
created: stringType().default("2025-08-
|
|
38092
|
-
updated: stringType().default("2025-08-
|
|
38091
|
+
created: stringType().default("2025-08-12T12:59:37.688Z"),
|
|
38092
|
+
updated: stringType().default("2025-08-12T12:59:37.688Z"),
|
|
38093
38093
|
guardrailConfig: unionType([
|
|
38094
38094
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
38095
38095
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
|
|
@@ -38182,8 +38182,8 @@ var init_createeval = __esm(() => {
|
|
|
38182
38182
|
ResponseBodyHTTP$inboundSchema = objectType({
|
|
38183
38183
|
_id: stringType(),
|
|
38184
38184
|
description: stringType(),
|
|
38185
|
-
created: stringType().default("2025-08-
|
|
38186
|
-
updated: stringType().default("2025-08-
|
|
38185
|
+
created: stringType().default("2025-08-12T12:59:37.688Z"),
|
|
38186
|
+
updated: stringType().default("2025-08-12T12:59:37.688Z"),
|
|
38187
38187
|
guardrail_config: unionType([
|
|
38188
38188
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
38189
38189
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
|
|
@@ -38203,8 +38203,8 @@ var init_createeval = __esm(() => {
|
|
|
38203
38203
|
ResponseBodyHTTP$outboundSchema = objectType({
|
|
38204
38204
|
id: stringType(),
|
|
38205
38205
|
description: stringType(),
|
|
38206
|
-
created: stringType().default("2025-08-
|
|
38207
|
-
updated: stringType().default("2025-08-
|
|
38206
|
+
created: stringType().default("2025-08-12T12:59:37.688Z"),
|
|
38207
|
+
updated: stringType().default("2025-08-12T12:59:37.688Z"),
|
|
38208
38208
|
guardrailConfig: unionType([
|
|
38209
38209
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
38210
38210
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
|
|
@@ -38294,8 +38294,8 @@ var init_createeval = __esm(() => {
|
|
|
38294
38294
|
ResponseBodyJSON$inboundSchema = objectType({
|
|
38295
38295
|
_id: stringType(),
|
|
38296
38296
|
description: stringType(),
|
|
38297
|
-
created: stringType().default("2025-08-
|
|
38298
|
-
updated: stringType().default("2025-08-
|
|
38297
|
+
created: stringType().default("2025-08-12T12:59:37.688Z"),
|
|
38298
|
+
updated: stringType().default("2025-08-12T12:59:37.688Z"),
|
|
38299
38299
|
guardrail_config: unionType([
|
|
38300
38300
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
38301
38301
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema)
|
|
@@ -38312,8 +38312,8 @@ var init_createeval = __esm(() => {
|
|
|
38312
38312
|
ResponseBodyJSON$outboundSchema = objectType({
|
|
38313
38313
|
id: stringType(),
|
|
38314
38314
|
description: stringType(),
|
|
38315
|
-
created: stringType().default("2025-08-
|
|
38316
|
-
updated: stringType().default("2025-08-
|
|
38315
|
+
created: stringType().default("2025-08-12T12:59:37.688Z"),
|
|
38316
|
+
updated: stringType().default("2025-08-12T12:59:37.688Z"),
|
|
38317
38317
|
guardrailConfig: unionType([
|
|
38318
38318
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
38319
38319
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema)
|
|
@@ -38400,8 +38400,8 @@ var init_createeval = __esm(() => {
|
|
|
38400
38400
|
ResponseBodyLLM$inboundSchema = objectType({
|
|
38401
38401
|
_id: stringType(),
|
|
38402
38402
|
description: stringType(),
|
|
38403
|
-
created: stringType().default("2025-08-
|
|
38404
|
-
updated: stringType().default("2025-08-
|
|
38403
|
+
created: stringType().default("2025-08-12T12:59:37.688Z"),
|
|
38404
|
+
updated: stringType().default("2025-08-12T12:59:37.688Z"),
|
|
38405
38405
|
guardrail_config: unionType([
|
|
38406
38406
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
38407
38407
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema)
|
|
@@ -38419,8 +38419,8 @@ var init_createeval = __esm(() => {
|
|
|
38419
38419
|
ResponseBodyLLM$outboundSchema = objectType({
|
|
38420
38420
|
id: stringType(),
|
|
38421
38421
|
description: stringType(),
|
|
38422
|
-
created: stringType().default("2025-08-
|
|
38423
|
-
updated: stringType().default("2025-08-
|
|
38422
|
+
created: stringType().default("2025-08-12T12:59:37.688Z"),
|
|
38423
|
+
updated: stringType().default("2025-08-12T12:59:37.688Z"),
|
|
38424
38424
|
guardrailConfig: unionType([
|
|
38425
38425
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
38426
38426
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema)
|
|
@@ -38756,7 +38756,7 @@ var init_createknowledge = __esm(() => {
|
|
|
38756
38756
|
});
|
|
38757
38757
|
|
|
38758
38758
|
// src/models/operations/createprompt.ts
|
|
38759
|
-
var ModelType, CreatePromptFormat, CreatePromptResponseFormatType, ResponseFormatType, PhotoRealVersion, EncodingFormat, ReasoningEffort, Verbosity, Provider, CreatePromptRole, CreatePrompt2PromptsRequestType, CreatePrompt2PromptsType, CreatePrompt2Type, CreatePromptType, UseCases, Language, CreatePromptPromptsType, CreatePromptModelType, CreatePromptPromptsFormat,
|
|
38759
|
+
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$;
|
|
38760
38760
|
var init_createprompt = __esm(() => {
|
|
38761
38761
|
init_esm();
|
|
38762
38762
|
init_primitives();
|
|
@@ -38777,6 +38777,9 @@ var init_createprompt = __esm(() => {
|
|
|
38777
38777
|
Text: "text",
|
|
38778
38778
|
JsonObject: "json_object"
|
|
38779
38779
|
};
|
|
38780
|
+
CreatePromptResponseFormatPromptsType = {
|
|
38781
|
+
Text: "text"
|
|
38782
|
+
};
|
|
38780
38783
|
CreatePromptResponseFormatType = {
|
|
38781
38784
|
JsonObject: "json_object"
|
|
38782
38785
|
};
|
|
@@ -38898,10 +38901,13 @@ var init_createprompt = __esm(() => {
|
|
|
38898
38901
|
Text: "text",
|
|
38899
38902
|
JsonObject: "json_object"
|
|
38900
38903
|
};
|
|
38901
|
-
|
|
38904
|
+
CreatePromptResponseFormatPromptsResponse200ApplicationJSONType = {
|
|
38905
|
+
Text: "text"
|
|
38906
|
+
};
|
|
38907
|
+
CreatePromptResponseFormatPromptsResponse200Type = {
|
|
38902
38908
|
JsonObject: "json_object"
|
|
38903
38909
|
};
|
|
38904
|
-
|
|
38910
|
+
CreatePromptResponseFormatPromptsResponseType = {
|
|
38905
38911
|
JsonSchema: "json_schema"
|
|
38906
38912
|
};
|
|
38907
38913
|
CreatePromptPhotoRealVersion = {
|
|
@@ -39011,6 +39017,22 @@ var init_createprompt = __esm(() => {
|
|
|
39011
39017
|
CreatePromptFormat$.inboundSchema = CreatePromptFormat$inboundSchema;
|
|
39012
39018
|
CreatePromptFormat$.outboundSchema = CreatePromptFormat$outboundSchema;
|
|
39013
39019
|
})(CreatePromptFormat$ ||= {});
|
|
39020
|
+
CreatePromptResponseFormatPromptsType$inboundSchema = nativeEnumType(CreatePromptResponseFormatPromptsType);
|
|
39021
|
+
CreatePromptResponseFormatPromptsType$outboundSchema = CreatePromptResponseFormatPromptsType$inboundSchema;
|
|
39022
|
+
((CreatePromptResponseFormatPromptsType$) => {
|
|
39023
|
+
CreatePromptResponseFormatPromptsType$.inboundSchema = CreatePromptResponseFormatPromptsType$inboundSchema;
|
|
39024
|
+
CreatePromptResponseFormatPromptsType$.outboundSchema = CreatePromptResponseFormatPromptsType$outboundSchema;
|
|
39025
|
+
})(CreatePromptResponseFormatPromptsType$ ||= {});
|
|
39026
|
+
ResponseFormat3$inboundSchema = objectType({
|
|
39027
|
+
type: CreatePromptResponseFormatPromptsType$inboundSchema
|
|
39028
|
+
});
|
|
39029
|
+
ResponseFormat3$outboundSchema = objectType({
|
|
39030
|
+
type: CreatePromptResponseFormatPromptsType$outboundSchema
|
|
39031
|
+
});
|
|
39032
|
+
((ResponseFormat3$) => {
|
|
39033
|
+
ResponseFormat3$.inboundSchema = ResponseFormat3$inboundSchema;
|
|
39034
|
+
ResponseFormat3$.outboundSchema = ResponseFormat3$outboundSchema;
|
|
39035
|
+
})(ResponseFormat3$ ||= {});
|
|
39014
39036
|
CreatePromptResponseFormatType$inboundSchema = nativeEnumType(CreatePromptResponseFormatType);
|
|
39015
39037
|
CreatePromptResponseFormatType$outboundSchema = CreatePromptResponseFormatType$inboundSchema;
|
|
39016
39038
|
((CreatePromptResponseFormatType$) => {
|
|
@@ -39069,11 +39091,13 @@ var init_createprompt = __esm(() => {
|
|
|
39069
39091
|
})(ResponseFormat1$ ||= {});
|
|
39070
39092
|
ResponseFormat$inboundSchema = unionType([
|
|
39071
39093
|
lazyType(() => ResponseFormat1$inboundSchema),
|
|
39072
|
-
lazyType(() => ResponseFormat2$inboundSchema)
|
|
39094
|
+
lazyType(() => ResponseFormat2$inboundSchema),
|
|
39095
|
+
lazyType(() => ResponseFormat3$inboundSchema)
|
|
39073
39096
|
]);
|
|
39074
39097
|
ResponseFormat$outboundSchema = unionType([
|
|
39075
39098
|
lazyType(() => ResponseFormat1$outboundSchema),
|
|
39076
|
-
lazyType(() => ResponseFormat2$outboundSchema)
|
|
39099
|
+
lazyType(() => ResponseFormat2$outboundSchema),
|
|
39100
|
+
lazyType(() => ResponseFormat3$outboundSchema)
|
|
39077
39101
|
]);
|
|
39078
39102
|
((ResponseFormat$) => {
|
|
39079
39103
|
ResponseFormat$.inboundSchema = ResponseFormat$inboundSchema;
|
|
@@ -39118,7 +39142,8 @@ var init_createprompt = __esm(() => {
|
|
|
39118
39142
|
style: stringType().optional(),
|
|
39119
39143
|
responseFormat: nullableType(unionType([
|
|
39120
39144
|
lazyType(() => ResponseFormat1$inboundSchema),
|
|
39121
|
-
lazyType(() => ResponseFormat2$inboundSchema)
|
|
39145
|
+
lazyType(() => ResponseFormat2$inboundSchema),
|
|
39146
|
+
lazyType(() => ResponseFormat3$inboundSchema)
|
|
39122
39147
|
])).optional(),
|
|
39123
39148
|
photoRealVersion: PhotoRealVersion$inboundSchema.optional(),
|
|
39124
39149
|
encoding_format: EncodingFormat$inboundSchema.optional(),
|
|
@@ -39145,7 +39170,8 @@ var init_createprompt = __esm(() => {
|
|
|
39145
39170
|
style: stringType().optional(),
|
|
39146
39171
|
responseFormat: nullableType(unionType([
|
|
39147
39172
|
lazyType(() => ResponseFormat1$outboundSchema),
|
|
39148
|
-
lazyType(() => ResponseFormat2$outboundSchema)
|
|
39173
|
+
lazyType(() => ResponseFormat2$outboundSchema),
|
|
39174
|
+
lazyType(() => ResponseFormat3$outboundSchema)
|
|
39149
39175
|
])).optional(),
|
|
39150
39176
|
photoRealVersion: PhotoRealVersion$outboundSchema.optional(),
|
|
39151
39177
|
encodingFormat: EncodingFormat$outboundSchema.optional(),
|
|
@@ -39485,28 +39511,44 @@ var init_createprompt = __esm(() => {
|
|
|
39485
39511
|
CreatePromptPromptsFormat$.inboundSchema = CreatePromptPromptsFormat$inboundSchema;
|
|
39486
39512
|
CreatePromptPromptsFormat$.outboundSchema = CreatePromptPromptsFormat$outboundSchema;
|
|
39487
39513
|
})(CreatePromptPromptsFormat$ ||= {});
|
|
39488
|
-
|
|
39489
|
-
|
|
39490
|
-
((
|
|
39491
|
-
|
|
39492
|
-
|
|
39493
|
-
})(
|
|
39514
|
+
CreatePromptResponseFormatPromptsResponse200ApplicationJSONType$inboundSchema = nativeEnumType(CreatePromptResponseFormatPromptsResponse200ApplicationJSONType);
|
|
39515
|
+
CreatePromptResponseFormatPromptsResponse200ApplicationJSONType$outboundSchema = CreatePromptResponseFormatPromptsResponse200ApplicationJSONType$inboundSchema;
|
|
39516
|
+
((CreatePromptResponseFormatPromptsResponse200ApplicationJSONType$) => {
|
|
39517
|
+
CreatePromptResponseFormatPromptsResponse200ApplicationJSONType$.inboundSchema = CreatePromptResponseFormatPromptsResponse200ApplicationJSONType$inboundSchema;
|
|
39518
|
+
CreatePromptResponseFormatPromptsResponse200ApplicationJSONType$.outboundSchema = CreatePromptResponseFormatPromptsResponse200ApplicationJSONType$outboundSchema;
|
|
39519
|
+
})(CreatePromptResponseFormatPromptsResponse200ApplicationJSONType$ ||= {});
|
|
39520
|
+
CreatePromptResponseFormat3$inboundSchema = objectType({
|
|
39521
|
+
type: CreatePromptResponseFormatPromptsResponse200ApplicationJSONType$inboundSchema
|
|
39522
|
+
});
|
|
39523
|
+
CreatePromptResponseFormat3$outboundSchema = objectType({
|
|
39524
|
+
type: CreatePromptResponseFormatPromptsResponse200ApplicationJSONType$outboundSchema
|
|
39525
|
+
});
|
|
39526
|
+
((CreatePromptResponseFormat3$) => {
|
|
39527
|
+
CreatePromptResponseFormat3$.inboundSchema = CreatePromptResponseFormat3$inboundSchema;
|
|
39528
|
+
CreatePromptResponseFormat3$.outboundSchema = CreatePromptResponseFormat3$outboundSchema;
|
|
39529
|
+
})(CreatePromptResponseFormat3$ ||= {});
|
|
39530
|
+
CreatePromptResponseFormatPromptsResponse200Type$inboundSchema = nativeEnumType(CreatePromptResponseFormatPromptsResponse200Type);
|
|
39531
|
+
CreatePromptResponseFormatPromptsResponse200Type$outboundSchema = CreatePromptResponseFormatPromptsResponse200Type$inboundSchema;
|
|
39532
|
+
((CreatePromptResponseFormatPromptsResponse200Type$) => {
|
|
39533
|
+
CreatePromptResponseFormatPromptsResponse200Type$.inboundSchema = CreatePromptResponseFormatPromptsResponse200Type$inboundSchema;
|
|
39534
|
+
CreatePromptResponseFormatPromptsResponse200Type$.outboundSchema = CreatePromptResponseFormatPromptsResponse200Type$outboundSchema;
|
|
39535
|
+
})(CreatePromptResponseFormatPromptsResponse200Type$ ||= {});
|
|
39494
39536
|
CreatePromptResponseFormat2$inboundSchema = objectType({
|
|
39495
|
-
type:
|
|
39537
|
+
type: CreatePromptResponseFormatPromptsResponse200Type$inboundSchema
|
|
39496
39538
|
});
|
|
39497
39539
|
CreatePromptResponseFormat2$outboundSchema = objectType({
|
|
39498
|
-
type:
|
|
39540
|
+
type: CreatePromptResponseFormatPromptsResponse200Type$outboundSchema
|
|
39499
39541
|
});
|
|
39500
39542
|
((CreatePromptResponseFormat2$) => {
|
|
39501
39543
|
CreatePromptResponseFormat2$.inboundSchema = CreatePromptResponseFormat2$inboundSchema;
|
|
39502
39544
|
CreatePromptResponseFormat2$.outboundSchema = CreatePromptResponseFormat2$outboundSchema;
|
|
39503
39545
|
})(CreatePromptResponseFormat2$ ||= {});
|
|
39504
|
-
|
|
39505
|
-
|
|
39506
|
-
((
|
|
39507
|
-
|
|
39508
|
-
|
|
39509
|
-
})(
|
|
39546
|
+
CreatePromptResponseFormatPromptsResponseType$inboundSchema = nativeEnumType(CreatePromptResponseFormatPromptsResponseType);
|
|
39547
|
+
CreatePromptResponseFormatPromptsResponseType$outboundSchema = CreatePromptResponseFormatPromptsResponseType$inboundSchema;
|
|
39548
|
+
((CreatePromptResponseFormatPromptsResponseType$) => {
|
|
39549
|
+
CreatePromptResponseFormatPromptsResponseType$.inboundSchema = CreatePromptResponseFormatPromptsResponseType$inboundSchema;
|
|
39550
|
+
CreatePromptResponseFormatPromptsResponseType$.outboundSchema = CreatePromptResponseFormatPromptsResponseType$outboundSchema;
|
|
39551
|
+
})(CreatePromptResponseFormatPromptsResponseType$ ||= {});
|
|
39510
39552
|
CreatePromptResponseFormatJsonSchema$inboundSchema = objectType({
|
|
39511
39553
|
name: stringType(),
|
|
39512
39554
|
strict: booleanType().optional(),
|
|
@@ -39522,7 +39564,7 @@ var init_createprompt = __esm(() => {
|
|
|
39522
39564
|
CreatePromptResponseFormatJsonSchema$.outboundSchema = CreatePromptResponseFormatJsonSchema$outboundSchema;
|
|
39523
39565
|
})(CreatePromptResponseFormatJsonSchema$ ||= {});
|
|
39524
39566
|
CreatePromptResponseFormat1$inboundSchema = objectType({
|
|
39525
|
-
type:
|
|
39567
|
+
type: CreatePromptResponseFormatPromptsResponseType$inboundSchema,
|
|
39526
39568
|
json_schema: lazyType(() => CreatePromptResponseFormatJsonSchema$inboundSchema)
|
|
39527
39569
|
}).transform((v2) => {
|
|
39528
39570
|
return remap(v2, {
|
|
@@ -39530,7 +39572,7 @@ var init_createprompt = __esm(() => {
|
|
|
39530
39572
|
});
|
|
39531
39573
|
});
|
|
39532
39574
|
CreatePromptResponseFormat1$outboundSchema = objectType({
|
|
39533
|
-
type:
|
|
39575
|
+
type: CreatePromptResponseFormatPromptsResponseType$outboundSchema,
|
|
39534
39576
|
jsonSchema: lazyType(() => CreatePromptResponseFormatJsonSchema$outboundSchema)
|
|
39535
39577
|
}).transform((v2) => {
|
|
39536
39578
|
return remap(v2, {
|
|
@@ -39543,11 +39585,13 @@ var init_createprompt = __esm(() => {
|
|
|
39543
39585
|
})(CreatePromptResponseFormat1$ ||= {});
|
|
39544
39586
|
CreatePromptResponseFormat$inboundSchema = unionType([
|
|
39545
39587
|
lazyType(() => CreatePromptResponseFormat1$inboundSchema),
|
|
39546
|
-
lazyType(() => CreatePromptResponseFormat2$inboundSchema)
|
|
39588
|
+
lazyType(() => CreatePromptResponseFormat2$inboundSchema),
|
|
39589
|
+
lazyType(() => CreatePromptResponseFormat3$inboundSchema)
|
|
39547
39590
|
]);
|
|
39548
39591
|
CreatePromptResponseFormat$outboundSchema = unionType([
|
|
39549
39592
|
lazyType(() => CreatePromptResponseFormat1$outboundSchema),
|
|
39550
|
-
lazyType(() => CreatePromptResponseFormat2$outboundSchema)
|
|
39593
|
+
lazyType(() => CreatePromptResponseFormat2$outboundSchema),
|
|
39594
|
+
lazyType(() => CreatePromptResponseFormat3$outboundSchema)
|
|
39551
39595
|
]);
|
|
39552
39596
|
((CreatePromptResponseFormat$) => {
|
|
39553
39597
|
CreatePromptResponseFormat$.inboundSchema = CreatePromptResponseFormat$inboundSchema;
|
|
@@ -39592,7 +39636,8 @@ var init_createprompt = __esm(() => {
|
|
|
39592
39636
|
style: stringType().optional(),
|
|
39593
39637
|
responseFormat: nullableType(unionType([
|
|
39594
39638
|
lazyType(() => CreatePromptResponseFormat1$inboundSchema),
|
|
39595
|
-
lazyType(() => CreatePromptResponseFormat2$inboundSchema)
|
|
39639
|
+
lazyType(() => CreatePromptResponseFormat2$inboundSchema),
|
|
39640
|
+
lazyType(() => CreatePromptResponseFormat3$inboundSchema)
|
|
39596
39641
|
])).optional(),
|
|
39597
39642
|
photoRealVersion: CreatePromptPhotoRealVersion$inboundSchema.optional(),
|
|
39598
39643
|
encoding_format: CreatePromptEncodingFormat$inboundSchema.optional(),
|
|
@@ -39619,7 +39664,8 @@ var init_createprompt = __esm(() => {
|
|
|
39619
39664
|
style: stringType().optional(),
|
|
39620
39665
|
responseFormat: nullableType(unionType([
|
|
39621
39666
|
lazyType(() => CreatePromptResponseFormat1$outboundSchema),
|
|
39622
|
-
lazyType(() => CreatePromptResponseFormat2$outboundSchema)
|
|
39667
|
+
lazyType(() => CreatePromptResponseFormat2$outboundSchema),
|
|
39668
|
+
lazyType(() => CreatePromptResponseFormat3$outboundSchema)
|
|
39623
39669
|
])).optional(),
|
|
39624
39670
|
photoRealVersion: CreatePromptPhotoRealVersion$outboundSchema.optional(),
|
|
39625
39671
|
encodingFormat: CreatePromptEncodingFormat$outboundSchema.optional(),
|
|
@@ -41340,7 +41386,7 @@ var init_deploymentcreatemetric = __esm(() => {
|
|
|
41340
41386
|
});
|
|
41341
41387
|
|
|
41342
41388
|
// src/models/operations/deploymentgetconfig.ts
|
|
41343
|
-
var DeploymentGetConfigPrefixMessagesDeploymentsRequestRole, DeploymentGetConfig2DeploymentsRequestRequestBodyType, DeploymentGetConfig2DeploymentsRequestType, DeploymentGetConfigPrefixMessagesDeploymentsRole, PrefixMessagesType, DeploymentGetConfigPrefixMessagesRole, DeploymentGetConfig2DeploymentsType, DeploymentGetConfig2Type, Format, TwoType, Detail, Type, PrefixMessagesRole, Role, DeploymentGetConfigMessagesDeploymentsRequestRequestBodyRole, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages4ContentType, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages4Type, DeploymentGetConfigMessagesDeploymentsRequestRole, MessagesType, DeploymentGetConfigMessagesDeploymentsRole, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages3Content4Type, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages3ContentType, TwoFormat, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages3Type, TwoDetail, DeploymentGetConfig2DeploymentsRequestRequestBodyMessagesType, DeploymentGetConfigMessagesRole, MessagesRole, DeploymentGetConfigType, DeploymentGetConfigRole, DeploymentGetConfig2DeploymentsResponse200ApplicationJSONType, DeploymentGetConfig2DeploymentsResponse200Type, DeploymentGetConfig2DeploymentsResponseType, DeploymentGetConfigDeploymentsResponseType, DeploymentGetConfigFormat, DeploymentGetConfigResponseFormatType, DeploymentGetConfigResponseFormatDeploymentsType, DeploymentGetConfigPhotoRealVersion, DeploymentGetConfigEncodingFormat, DeploymentGetConfigReasoningEffort, DeploymentGetConfigVerbosity, DeploymentGetConfigDeploymentsType, DeploymentGetConfigPrefixMessagesDeploymentsRequestRole$inboundSchema, DeploymentGetConfigPrefixMessagesDeploymentsRequestRole$outboundSchema, DeploymentGetConfigPrefixMessagesDeploymentsRequestRole$, DeploymentGetConfigPrefixMessagesContent$inboundSchema, DeploymentGetConfigPrefixMessagesContent$outboundSchema, DeploymentGetConfigPrefixMessagesContent$, ToolMessage$inboundSchema, ToolMessage$outboundSchema, ToolMessage$, DeploymentGetConfig2DeploymentsRequestRequestBodyType$inboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyType$outboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyType$, RefusalContentPart$inboundSchema, RefusalContentPart$outboundSchema, RefusalContentPart$, DeploymentGetConfig2DeploymentsRequestType$inboundSchema, DeploymentGetConfig2DeploymentsRequestType$outboundSchema, DeploymentGetConfig2DeploymentsRequestType$, TextContentPart$inboundSchema, TextContentPart$outboundSchema, TextContentPart$, Content2$inboundSchema, Content2$outboundSchema, Content2$, PrefixMessagesContent$inboundSchema, PrefixMessagesContent$outboundSchema, PrefixMessagesContent$, DeploymentGetConfigPrefixMessagesDeploymentsRole$inboundSchema, DeploymentGetConfigPrefixMessagesDeploymentsRole$outboundSchema, DeploymentGetConfigPrefixMessagesDeploymentsRole$, Audio$inboundSchema, Audio$outboundSchema, Audio$, PrefixMessagesType$inboundSchema, PrefixMessagesType$outboundSchema, PrefixMessagesType$, FunctionT$inboundSchema, FunctionT$outboundSchema, FunctionT$, ToolCalls$inboundSchema, ToolCalls$outboundSchema, ToolCalls$, AssistantMessage$inboundSchema, AssistantMessage$outboundSchema, AssistantMessage$, DeploymentGetConfigPrefixMessagesRole$inboundSchema, DeploymentGetConfigPrefixMessagesRole$outboundSchema, DeploymentGetConfigPrefixMessagesRole$, DeploymentGetConfig2DeploymentsType$inboundSchema, DeploymentGetConfig2DeploymentsType$outboundSchema, DeploymentGetConfig2DeploymentsType$, FileT$inboundSchema, FileT$outboundSchema, FileT$, Four$inboundSchema, Four$outboundSchema, Four$, DeploymentGetConfig2Type$inboundSchema, DeploymentGetConfig2Type$outboundSchema, DeploymentGetConfig2Type$, Format$inboundSchema, Format$outboundSchema, Format$, InputAudio$inboundSchema, InputAudio$outboundSchema, InputAudio$, Three$inboundSchema, Three$outboundSchema, Three$, TwoType$inboundSchema, TwoType$outboundSchema, TwoType$, Detail$inboundSchema, Detail$outboundSchema, Detail$, ImageUrl$inboundSchema, ImageUrl$outboundSchema, ImageUrl$, Two2$inboundSchema, Two2$outboundSchema, Two2$, Type$inboundSchema, Type$outboundSchema, Type$, One$inboundSchema, One$outboundSchema, One$, Two$inboundSchema, Two$outboundSchema, Two$, Content$inboundSchema, Content$outboundSchema, Content$, UserMessage$inboundSchema, UserMessage$outboundSchema, UserMessage$, PrefixMessagesRole$inboundSchema, PrefixMessagesRole$outboundSchema, PrefixMessagesRole$, SystemMessage$inboundSchema, SystemMessage$outboundSchema, SystemMessage$, Role$inboundSchema, Role$outboundSchema, Role$, DeveloperMessage$inboundSchema, DeveloperMessage$outboundSchema, DeveloperMessage$, PrefixMessages$inboundSchema, PrefixMessages$outboundSchema, PrefixMessages$, DeploymentGetConfigMessagesDeploymentsRequestRequestBodyRole$inboundSchema, DeploymentGetConfigMessagesDeploymentsRequestRequestBodyRole$outboundSchema, DeploymentGetConfigMessagesDeploymentsRequestRequestBodyRole$, DeploymentGetConfigMessagesDeploymentsContent$inboundSchema, DeploymentGetConfigMessagesDeploymentsContent$outboundSchema, DeploymentGetConfigMessagesDeploymentsContent$, MessagesToolMessage$inboundSchema, MessagesToolMessage$outboundSchema, MessagesToolMessage$, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages4ContentType$inboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages4ContentType$outboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages4ContentType$, TwoRefusalContentPart$inboundSchema, TwoRefusalContentPart$outboundSchema, TwoRefusalContentPart$, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages4Type$inboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages4Type$outboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages4Type$, TwoTextContentPart$inboundSchema, TwoTextContentPart$outboundSchema, TwoTextContentPart$, DeploymentGetConfigContentDeployments2$inboundSchema, DeploymentGetConfigContentDeployments2$outboundSchema, DeploymentGetConfigContentDeployments2$, DeploymentGetConfigMessagesContent$inboundSchema, DeploymentGetConfigMessagesContent$outboundSchema, DeploymentGetConfigMessagesContent$, DeploymentGetConfigMessagesDeploymentsRequestRole$inboundSchema, DeploymentGetConfigMessagesDeploymentsRequestRole$outboundSchema, DeploymentGetConfigMessagesDeploymentsRequestRole$, MessagesAudio$inboundSchema, MessagesAudio$outboundSchema, MessagesAudio$, MessagesType$inboundSchema, MessagesType$outboundSchema, MessagesType$, MessagesFunction$inboundSchema, MessagesFunction$outboundSchema, MessagesFunction$, MessagesToolCalls$inboundSchema, MessagesToolCalls$outboundSchema, MessagesToolCalls$, MessagesAssistantMessage$inboundSchema, MessagesAssistantMessage$outboundSchema, MessagesAssistantMessage$, DeploymentGetConfigMessagesDeploymentsRole$inboundSchema, DeploymentGetConfigMessagesDeploymentsRole$outboundSchema, DeploymentGetConfigMessagesDeploymentsRole$, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages3Content4Type$inboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages3Content4Type$outboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages3Content4Type$, TwoFile$inboundSchema, TwoFile$outboundSchema, TwoFile$, Two4$inboundSchema, Two4$outboundSchema, Two4$, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages3ContentType$inboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages3ContentType$outboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages3ContentType$, TwoFormat$inboundSchema, TwoFormat$outboundSchema, TwoFormat$, TwoInputAudio$inboundSchema, TwoInputAudio$outboundSchema, TwoInputAudio$, Two3$inboundSchema, Two3$outboundSchema, Two3$, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages3Type$inboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages3Type$outboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages3Type$, TwoDetail$inboundSchema, TwoDetail$outboundSchema, TwoDetail$, TwoImageUrl$inboundSchema, TwoImageUrl$outboundSchema, TwoImageUrl$, DeploymentGetConfig22$inboundSchema, DeploymentGetConfig22$outboundSchema, DeploymentGetConfig22$, DeploymentGetConfig2DeploymentsRequestRequestBodyMessagesType$inboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyMessagesType$outboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyMessagesType$, Two1$inboundSchema, Two1$outboundSchema, Two1$, DeploymentGetConfigContent2$inboundSchema, DeploymentGetConfigContent2$outboundSchema, DeploymentGetConfigContent2$, MessagesContent$inboundSchema, MessagesContent$outboundSchema, MessagesContent$, MessagesUserMessage$inboundSchema, MessagesUserMessage$outboundSchema, MessagesUserMessage$, DeploymentGetConfigMessagesRole$inboundSchema, DeploymentGetConfigMessagesRole$outboundSchema, DeploymentGetConfigMessagesRole$, MessagesSystemMessage$inboundSchema, MessagesSystemMessage$outboundSchema, MessagesSystemMessage$, MessagesRole$inboundSchema, MessagesRole$outboundSchema, MessagesRole$, MessagesDeveloperMessage$inboundSchema, MessagesDeveloperMessage$outboundSchema, MessagesDeveloperMessage$, Messages$inboundSchema, Messages$outboundSchema, Messages$, Metadata$inboundSchema, Metadata$outboundSchema, Metadata$, Documents$inboundSchema, Documents$outboundSchema, Documents$, InvokeOptions$inboundSchema, InvokeOptions$outboundSchema, InvokeOptions$, Thread$inboundSchema, Thread$outboundSchema, Thread$, OrExists$inboundSchema, OrExists$outboundSchema, OrExists$, DeploymentGetConfigOrNin$inboundSchema, DeploymentGetConfigOrNin$outboundSchema, DeploymentGetConfigOrNin$, OrNin$inboundSchema, OrNin$outboundSchema, OrNin$, DeploymentGetConfigOrIn$inboundSchema, DeploymentGetConfigOrIn$outboundSchema, DeploymentGetConfigOrIn$, OrIn$inboundSchema, OrIn$outboundSchema, OrIn$, OrLte$inboundSchema, OrLte$outboundSchema, OrLte$, OrLt$inboundSchema, OrLt$outboundSchema, OrLt$, OrGte$inboundSchema, OrGte$outboundSchema, OrGte$, Or3$inboundSchema, Or3$outboundSchema, Or3$, DeploymentGetConfigOrNe$inboundSchema, DeploymentGetConfigOrNe$outboundSchema, DeploymentGetConfigOrNe$, OrNe$inboundSchema, OrNe$outboundSchema, OrNe$, DeploymentGetConfigOrEq$inboundSchema, DeploymentGetConfigOrEq$outboundSchema, DeploymentGetConfigOrEq$, OrEq$inboundSchema, OrEq$outboundSchema, OrEq$, KnowledgeFilterOr$inboundSchema, KnowledgeFilterOr$outboundSchema, KnowledgeFilterOr$, Or$inboundSchema, Or$outboundSchema, Or$, AndExists$inboundSchema, AndExists$outboundSchema, AndExists$, DeploymentGetConfigAndNin$inboundSchema, DeploymentGetConfigAndNin$outboundSchema, DeploymentGetConfigAndNin$, AndNin$inboundSchema, AndNin$outboundSchema, AndNin$, DeploymentGetConfigAndIn$inboundSchema, DeploymentGetConfigAndIn$outboundSchema, DeploymentGetConfigAndIn$, AndIn$inboundSchema, AndIn$outboundSchema, AndIn$, AndLte$inboundSchema, AndLte$outboundSchema, AndLte$, AndLt$inboundSchema, AndLt$outboundSchema, AndLt$, AndGte$inboundSchema, AndGte$outboundSchema, AndGte$, And3$inboundSchema, And3$outboundSchema, And3$, DeploymentGetConfigAndNe$inboundSchema, DeploymentGetConfigAndNe$outboundSchema, DeploymentGetConfigAndNe$, AndNe$inboundSchema, AndNe$outboundSchema, AndNe$, DeploymentGetConfigAndEq$inboundSchema, DeploymentGetConfigAndEq$outboundSchema, DeploymentGetConfigAndEq$, AndEq$inboundSchema, AndEq$outboundSchema, AndEq$, KnowledgeFilterAnd$inboundSchema, KnowledgeFilterAnd$outboundSchema, KnowledgeFilterAnd$, And$inboundSchema, And$outboundSchema, And$, Exists$inboundSchema, Exists$outboundSchema, Exists$, OneNin$inboundSchema, OneNin$outboundSchema, OneNin$, Nin$inboundSchema, Nin$outboundSchema, Nin$, OneIn$inboundSchema, OneIn$outboundSchema, OneIn$, In$inboundSchema, In$outboundSchema, In$, Lte$inboundSchema, Lte$outboundSchema, Lte$, Lt$inboundSchema, Lt$outboundSchema, Lt$, Gte$inboundSchema, Gte$outboundSchema, Gte$, One3$inboundSchema, One3$outboundSchema, One3$, OneNe$inboundSchema, OneNe$outboundSchema, OneNe$, Ne$inboundSchema, Ne$outboundSchema, Ne$, OneEq$inboundSchema, OneEq$outboundSchema, OneEq$, Eq$inboundSchema, Eq$outboundSchema, Eq$, KnowledgeFilter1$inboundSchema, KnowledgeFilter1$outboundSchema, KnowledgeFilter1$, KnowledgeFilter$inboundSchema, KnowledgeFilter$outboundSchema, KnowledgeFilter$, DeploymentGetConfigRequestBody$inboundSchema, DeploymentGetConfigRequestBody$outboundSchema, DeploymentGetConfigRequestBody$, DeploymentGetConfigType$inboundSchema, DeploymentGetConfigType$outboundSchema, DeploymentGetConfigType$, DeploymentGetConfigRole$inboundSchema, DeploymentGetConfigRole$outboundSchema, DeploymentGetConfigRole$, DeploymentGetConfig2DeploymentsResponse200ApplicationJSONType$inboundSchema, DeploymentGetConfig2DeploymentsResponse200ApplicationJSONType$outboundSchema, DeploymentGetConfig2DeploymentsResponse200ApplicationJSONType$, DeploymentGetConfig2File$inboundSchema, DeploymentGetConfig2File$outboundSchema, DeploymentGetConfig2File$, DeploymentGetConfig23$inboundSchema, DeploymentGetConfig23$outboundSchema, DeploymentGetConfig23$, DeploymentGetConfig2DeploymentsResponse200Type$inboundSchema, DeploymentGetConfig2DeploymentsResponse200Type$outboundSchema, DeploymentGetConfig2DeploymentsResponse200Type$, DeploymentGetConfig2ImageUrl$inboundSchema, DeploymentGetConfig2ImageUrl$outboundSchema, DeploymentGetConfig2ImageUrl$, DeploymentGetConfig2Deployments2$inboundSchema, DeploymentGetConfig2Deployments2$outboundSchema, DeploymentGetConfig2Deployments2$, DeploymentGetConfig2DeploymentsResponseType$inboundSchema, DeploymentGetConfig2DeploymentsResponseType$outboundSchema, DeploymentGetConfig2DeploymentsResponseType$, DeploymentGetConfig21$inboundSchema, DeploymentGetConfig21$outboundSchema, DeploymentGetConfig21$, DeploymentGetConfigContentDeploymentsResponse2$inboundSchema, DeploymentGetConfigContentDeploymentsResponse2$outboundSchema, DeploymentGetConfigContentDeploymentsResponse2$, DeploymentGetConfigContent$inboundSchema, DeploymentGetConfigContent$outboundSchema, DeploymentGetConfigContent$, DeploymentGetConfigDeploymentsResponseType$inboundSchema, DeploymentGetConfigDeploymentsResponseType$outboundSchema, DeploymentGetConfigDeploymentsResponseType$, DeploymentGetConfigDeploymentsFunction$inboundSchema, DeploymentGetConfigDeploymentsFunction$outboundSchema, DeploymentGetConfigDeploymentsFunction$, DeploymentGetConfigToolCalls$inboundSchema, DeploymentGetConfigToolCalls$outboundSchema, DeploymentGetConfigToolCalls$, DeploymentGetConfigMessages$inboundSchema, DeploymentGetConfigMessages$outboundSchema, DeploymentGetConfigMessages$, DeploymentGetConfigFormat$inboundSchema, DeploymentGetConfigFormat$outboundSchema, DeploymentGetConfigFormat$, DeploymentGetConfigResponseFormatType$inboundSchema, DeploymentGetConfigResponseFormatType$outboundSchema, DeploymentGetConfigResponseFormatType$, DeploymentGetConfigResponseFormat2$inboundSchema, DeploymentGetConfigResponseFormat2$outboundSchema, DeploymentGetConfigResponseFormat2$, DeploymentGetConfigResponseFormatDeploymentsType$inboundSchema, DeploymentGetConfigResponseFormatDeploymentsType$outboundSchema, DeploymentGetConfigResponseFormatDeploymentsType$, DeploymentGetConfigResponseFormatJsonSchema$inboundSchema, DeploymentGetConfigResponseFormatJsonSchema$outboundSchema, DeploymentGetConfigResponseFormatJsonSchema$, DeploymentGetConfigResponseFormat1$inboundSchema, DeploymentGetConfigResponseFormat1$outboundSchema, DeploymentGetConfigResponseFormat1$, DeploymentGetConfigResponseFormat$inboundSchema, DeploymentGetConfigResponseFormat$outboundSchema, DeploymentGetConfigResponseFormat$, DeploymentGetConfigPhotoRealVersion$inboundSchema, DeploymentGetConfigPhotoRealVersion$outboundSchema, DeploymentGetConfigPhotoRealVersion$, DeploymentGetConfigEncodingFormat$inboundSchema, DeploymentGetConfigEncodingFormat$outboundSchema, DeploymentGetConfigEncodingFormat$, DeploymentGetConfigReasoningEffort$inboundSchema, DeploymentGetConfigReasoningEffort$outboundSchema, DeploymentGetConfigReasoningEffort$, DeploymentGetConfigVerbosity$inboundSchema, DeploymentGetConfigVerbosity$outboundSchema, DeploymentGetConfigVerbosity$, ParametersT$inboundSchema, ParametersT$outboundSchema, ParametersT$, DeploymentGetConfigDeploymentsType$inboundSchema, DeploymentGetConfigDeploymentsType$outboundSchema, DeploymentGetConfigDeploymentsType$, DeploymentGetConfigFunction$inboundSchema, DeploymentGetConfigFunction$outboundSchema, DeploymentGetConfigFunction$, Tools$inboundSchema, Tools$outboundSchema, Tools$, DeploymentGetConfigResponseBody$inboundSchema, DeploymentGetConfigResponseBody$outboundSchema, DeploymentGetConfigResponseBody$;
|
|
41389
|
+
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$;
|
|
41344
41390
|
var init_deploymentgetconfig = __esm(() => {
|
|
41345
41391
|
init_esm();
|
|
41346
41392
|
init_primitives();
|
|
@@ -41473,10 +41519,13 @@ var init_deploymentgetconfig = __esm(() => {
|
|
|
41473
41519
|
Text: "text",
|
|
41474
41520
|
JsonObject: "json_object"
|
|
41475
41521
|
};
|
|
41522
|
+
DeploymentGetConfigResponseFormatDeploymentsType = {
|
|
41523
|
+
Text: "text"
|
|
41524
|
+
};
|
|
41476
41525
|
DeploymentGetConfigResponseFormatType = {
|
|
41477
41526
|
JsonObject: "json_object"
|
|
41478
41527
|
};
|
|
41479
|
-
|
|
41528
|
+
DeploymentGetConfigResponseFormatDeploymentsResponseType = {
|
|
41480
41529
|
JsonSchema: "json_schema"
|
|
41481
41530
|
};
|
|
41482
41531
|
DeploymentGetConfigPhotoRealVersion = {
|
|
@@ -43357,6 +43406,22 @@ var init_deploymentgetconfig = __esm(() => {
|
|
|
43357
43406
|
DeploymentGetConfigFormat$.inboundSchema = DeploymentGetConfigFormat$inboundSchema;
|
|
43358
43407
|
DeploymentGetConfigFormat$.outboundSchema = DeploymentGetConfigFormat$outboundSchema;
|
|
43359
43408
|
})(DeploymentGetConfigFormat$ ||= {});
|
|
43409
|
+
DeploymentGetConfigResponseFormatDeploymentsType$inboundSchema = nativeEnumType(DeploymentGetConfigResponseFormatDeploymentsType);
|
|
43410
|
+
DeploymentGetConfigResponseFormatDeploymentsType$outboundSchema = DeploymentGetConfigResponseFormatDeploymentsType$inboundSchema;
|
|
43411
|
+
((DeploymentGetConfigResponseFormatDeploymentsType$) => {
|
|
43412
|
+
DeploymentGetConfigResponseFormatDeploymentsType$.inboundSchema = DeploymentGetConfigResponseFormatDeploymentsType$inboundSchema;
|
|
43413
|
+
DeploymentGetConfigResponseFormatDeploymentsType$.outboundSchema = DeploymentGetConfigResponseFormatDeploymentsType$outboundSchema;
|
|
43414
|
+
})(DeploymentGetConfigResponseFormatDeploymentsType$ ||= {});
|
|
43415
|
+
DeploymentGetConfigResponseFormat3$inboundSchema = objectType({
|
|
43416
|
+
type: DeploymentGetConfigResponseFormatDeploymentsType$inboundSchema
|
|
43417
|
+
});
|
|
43418
|
+
DeploymentGetConfigResponseFormat3$outboundSchema = objectType({
|
|
43419
|
+
type: DeploymentGetConfigResponseFormatDeploymentsType$outboundSchema
|
|
43420
|
+
});
|
|
43421
|
+
((DeploymentGetConfigResponseFormat3$) => {
|
|
43422
|
+
DeploymentGetConfigResponseFormat3$.inboundSchema = DeploymentGetConfigResponseFormat3$inboundSchema;
|
|
43423
|
+
DeploymentGetConfigResponseFormat3$.outboundSchema = DeploymentGetConfigResponseFormat3$outboundSchema;
|
|
43424
|
+
})(DeploymentGetConfigResponseFormat3$ ||= {});
|
|
43360
43425
|
DeploymentGetConfigResponseFormatType$inboundSchema = nativeEnumType(DeploymentGetConfigResponseFormatType);
|
|
43361
43426
|
DeploymentGetConfigResponseFormatType$outboundSchema = DeploymentGetConfigResponseFormatType$inboundSchema;
|
|
43362
43427
|
((DeploymentGetConfigResponseFormatType$) => {
|
|
@@ -43373,12 +43438,12 @@ var init_deploymentgetconfig = __esm(() => {
|
|
|
43373
43438
|
DeploymentGetConfigResponseFormat2$.inboundSchema = DeploymentGetConfigResponseFormat2$inboundSchema;
|
|
43374
43439
|
DeploymentGetConfigResponseFormat2$.outboundSchema = DeploymentGetConfigResponseFormat2$outboundSchema;
|
|
43375
43440
|
})(DeploymentGetConfigResponseFormat2$ ||= {});
|
|
43376
|
-
|
|
43377
|
-
|
|
43378
|
-
((
|
|
43379
|
-
|
|
43380
|
-
|
|
43381
|
-
})(
|
|
43441
|
+
DeploymentGetConfigResponseFormatDeploymentsResponseType$inboundSchema = nativeEnumType(DeploymentGetConfigResponseFormatDeploymentsResponseType);
|
|
43442
|
+
DeploymentGetConfigResponseFormatDeploymentsResponseType$outboundSchema = DeploymentGetConfigResponseFormatDeploymentsResponseType$inboundSchema;
|
|
43443
|
+
((DeploymentGetConfigResponseFormatDeploymentsResponseType$) => {
|
|
43444
|
+
DeploymentGetConfigResponseFormatDeploymentsResponseType$.inboundSchema = DeploymentGetConfigResponseFormatDeploymentsResponseType$inboundSchema;
|
|
43445
|
+
DeploymentGetConfigResponseFormatDeploymentsResponseType$.outboundSchema = DeploymentGetConfigResponseFormatDeploymentsResponseType$outboundSchema;
|
|
43446
|
+
})(DeploymentGetConfigResponseFormatDeploymentsResponseType$ ||= {});
|
|
43382
43447
|
DeploymentGetConfigResponseFormatJsonSchema$inboundSchema = objectType({
|
|
43383
43448
|
name: stringType(),
|
|
43384
43449
|
strict: booleanType().optional(),
|
|
@@ -43394,7 +43459,7 @@ var init_deploymentgetconfig = __esm(() => {
|
|
|
43394
43459
|
DeploymentGetConfigResponseFormatJsonSchema$.outboundSchema = DeploymentGetConfigResponseFormatJsonSchema$outboundSchema;
|
|
43395
43460
|
})(DeploymentGetConfigResponseFormatJsonSchema$ ||= {});
|
|
43396
43461
|
DeploymentGetConfigResponseFormat1$inboundSchema = objectType({
|
|
43397
|
-
type:
|
|
43462
|
+
type: DeploymentGetConfigResponseFormatDeploymentsResponseType$inboundSchema,
|
|
43398
43463
|
json_schema: lazyType(() => DeploymentGetConfigResponseFormatJsonSchema$inboundSchema)
|
|
43399
43464
|
}).transform((v2) => {
|
|
43400
43465
|
return remap(v2, {
|
|
@@ -43402,7 +43467,7 @@ var init_deploymentgetconfig = __esm(() => {
|
|
|
43402
43467
|
});
|
|
43403
43468
|
});
|
|
43404
43469
|
DeploymentGetConfigResponseFormat1$outboundSchema = objectType({
|
|
43405
|
-
type:
|
|
43470
|
+
type: DeploymentGetConfigResponseFormatDeploymentsResponseType$outboundSchema,
|
|
43406
43471
|
jsonSchema: lazyType(() => DeploymentGetConfigResponseFormatJsonSchema$outboundSchema)
|
|
43407
43472
|
}).transform((v2) => {
|
|
43408
43473
|
return remap(v2, {
|
|
@@ -43415,11 +43480,13 @@ var init_deploymentgetconfig = __esm(() => {
|
|
|
43415
43480
|
})(DeploymentGetConfigResponseFormat1$ ||= {});
|
|
43416
43481
|
DeploymentGetConfigResponseFormat$inboundSchema = unionType([
|
|
43417
43482
|
lazyType(() => DeploymentGetConfigResponseFormat1$inboundSchema),
|
|
43418
|
-
lazyType(() => DeploymentGetConfigResponseFormat2$inboundSchema)
|
|
43483
|
+
lazyType(() => DeploymentGetConfigResponseFormat2$inboundSchema),
|
|
43484
|
+
lazyType(() => DeploymentGetConfigResponseFormat3$inboundSchema)
|
|
43419
43485
|
]);
|
|
43420
43486
|
DeploymentGetConfigResponseFormat$outboundSchema = unionType([
|
|
43421
43487
|
lazyType(() => DeploymentGetConfigResponseFormat1$outboundSchema),
|
|
43422
|
-
lazyType(() => DeploymentGetConfigResponseFormat2$outboundSchema)
|
|
43488
|
+
lazyType(() => DeploymentGetConfigResponseFormat2$outboundSchema),
|
|
43489
|
+
lazyType(() => DeploymentGetConfigResponseFormat3$outboundSchema)
|
|
43423
43490
|
]);
|
|
43424
43491
|
((DeploymentGetConfigResponseFormat$) => {
|
|
43425
43492
|
DeploymentGetConfigResponseFormat$.inboundSchema = DeploymentGetConfigResponseFormat$inboundSchema;
|
|
@@ -43464,7 +43531,8 @@ var init_deploymentgetconfig = __esm(() => {
|
|
|
43464
43531
|
style: stringType().optional(),
|
|
43465
43532
|
responseFormat: nullableType(unionType([
|
|
43466
43533
|
lazyType(() => DeploymentGetConfigResponseFormat1$inboundSchema),
|
|
43467
|
-
lazyType(() => DeploymentGetConfigResponseFormat2$inboundSchema)
|
|
43534
|
+
lazyType(() => DeploymentGetConfigResponseFormat2$inboundSchema),
|
|
43535
|
+
lazyType(() => DeploymentGetConfigResponseFormat3$inboundSchema)
|
|
43468
43536
|
])).optional(),
|
|
43469
43537
|
photoRealVersion: DeploymentGetConfigPhotoRealVersion$inboundSchema.optional(),
|
|
43470
43538
|
encoding_format: DeploymentGetConfigEncodingFormat$inboundSchema.optional(),
|
|
@@ -43491,7 +43559,8 @@ var init_deploymentgetconfig = __esm(() => {
|
|
|
43491
43559
|
style: stringType().optional(),
|
|
43492
43560
|
responseFormat: nullableType(unionType([
|
|
43493
43561
|
lazyType(() => DeploymentGetConfigResponseFormat1$outboundSchema),
|
|
43494
|
-
lazyType(() => DeploymentGetConfigResponseFormat2$outboundSchema)
|
|
43562
|
+
lazyType(() => DeploymentGetConfigResponseFormat2$outboundSchema),
|
|
43563
|
+
lazyType(() => DeploymentGetConfigResponseFormat3$outboundSchema)
|
|
43495
43564
|
])).optional(),
|
|
43496
43565
|
photoRealVersion: DeploymentGetConfigPhotoRealVersion$outboundSchema.optional(),
|
|
43497
43566
|
encodingFormat: DeploymentGetConfigEncodingFormat$outboundSchema.optional(),
|
|
@@ -43952,7 +44021,7 @@ var init_deploymentinvoke = __esm(() => {
|
|
|
43952
44021
|
});
|
|
43953
44022
|
|
|
43954
44023
|
// src/models/operations/deployments.ts
|
|
43955
|
-
var DeploymentsObject, DeploymentsType, DeploymentsDeploymentsResponseType, DeploymentsModelType, DeploymentsFormat, DeploymentsResponseFormatType,
|
|
44024
|
+
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$;
|
|
43956
44025
|
var init_deployments = __esm(() => {
|
|
43957
44026
|
init_esm();
|
|
43958
44027
|
init_primitives();
|
|
@@ -43982,10 +44051,13 @@ var init_deployments = __esm(() => {
|
|
|
43982
44051
|
Text: "text",
|
|
43983
44052
|
JsonObject: "json_object"
|
|
43984
44053
|
};
|
|
44054
|
+
DeploymentsResponseFormatDeploymentsType = {
|
|
44055
|
+
Text: "text"
|
|
44056
|
+
};
|
|
43985
44057
|
DeploymentsResponseFormatType = {
|
|
43986
44058
|
JsonObject: "json_object"
|
|
43987
44059
|
};
|
|
43988
|
-
|
|
44060
|
+
DeploymentsResponseFormatDeploymentsResponseType = {
|
|
43989
44061
|
JsonSchema: "json_schema"
|
|
43990
44062
|
};
|
|
43991
44063
|
DeploymentsPhotoRealVersion = {
|
|
@@ -44152,6 +44224,22 @@ var init_deployments = __esm(() => {
|
|
|
44152
44224
|
DeploymentsFormat$.inboundSchema = DeploymentsFormat$inboundSchema;
|
|
44153
44225
|
DeploymentsFormat$.outboundSchema = DeploymentsFormat$outboundSchema;
|
|
44154
44226
|
})(DeploymentsFormat$ ||= {});
|
|
44227
|
+
DeploymentsResponseFormatDeploymentsType$inboundSchema = nativeEnumType(DeploymentsResponseFormatDeploymentsType);
|
|
44228
|
+
DeploymentsResponseFormatDeploymentsType$outboundSchema = DeploymentsResponseFormatDeploymentsType$inboundSchema;
|
|
44229
|
+
((DeploymentsResponseFormatDeploymentsType$) => {
|
|
44230
|
+
DeploymentsResponseFormatDeploymentsType$.inboundSchema = DeploymentsResponseFormatDeploymentsType$inboundSchema;
|
|
44231
|
+
DeploymentsResponseFormatDeploymentsType$.outboundSchema = DeploymentsResponseFormatDeploymentsType$outboundSchema;
|
|
44232
|
+
})(DeploymentsResponseFormatDeploymentsType$ ||= {});
|
|
44233
|
+
DeploymentsResponseFormat3$inboundSchema = objectType({
|
|
44234
|
+
type: DeploymentsResponseFormatDeploymentsType$inboundSchema
|
|
44235
|
+
});
|
|
44236
|
+
DeploymentsResponseFormat3$outboundSchema = objectType({
|
|
44237
|
+
type: DeploymentsResponseFormatDeploymentsType$outboundSchema
|
|
44238
|
+
});
|
|
44239
|
+
((DeploymentsResponseFormat3$) => {
|
|
44240
|
+
DeploymentsResponseFormat3$.inboundSchema = DeploymentsResponseFormat3$inboundSchema;
|
|
44241
|
+
DeploymentsResponseFormat3$.outboundSchema = DeploymentsResponseFormat3$outboundSchema;
|
|
44242
|
+
})(DeploymentsResponseFormat3$ ||= {});
|
|
44155
44243
|
DeploymentsResponseFormatType$inboundSchema = nativeEnumType(DeploymentsResponseFormatType);
|
|
44156
44244
|
DeploymentsResponseFormatType$outboundSchema = DeploymentsResponseFormatType$inboundSchema;
|
|
44157
44245
|
((DeploymentsResponseFormatType$) => {
|
|
@@ -44168,12 +44256,12 @@ var init_deployments = __esm(() => {
|
|
|
44168
44256
|
DeploymentsResponseFormat2$.inboundSchema = DeploymentsResponseFormat2$inboundSchema;
|
|
44169
44257
|
DeploymentsResponseFormat2$.outboundSchema = DeploymentsResponseFormat2$outboundSchema;
|
|
44170
44258
|
})(DeploymentsResponseFormat2$ ||= {});
|
|
44171
|
-
|
|
44172
|
-
|
|
44173
|
-
((
|
|
44174
|
-
|
|
44175
|
-
|
|
44176
|
-
})(
|
|
44259
|
+
DeploymentsResponseFormatDeploymentsResponseType$inboundSchema = nativeEnumType(DeploymentsResponseFormatDeploymentsResponseType);
|
|
44260
|
+
DeploymentsResponseFormatDeploymentsResponseType$outboundSchema = DeploymentsResponseFormatDeploymentsResponseType$inboundSchema;
|
|
44261
|
+
((DeploymentsResponseFormatDeploymentsResponseType$) => {
|
|
44262
|
+
DeploymentsResponseFormatDeploymentsResponseType$.inboundSchema = DeploymentsResponseFormatDeploymentsResponseType$inboundSchema;
|
|
44263
|
+
DeploymentsResponseFormatDeploymentsResponseType$.outboundSchema = DeploymentsResponseFormatDeploymentsResponseType$outboundSchema;
|
|
44264
|
+
})(DeploymentsResponseFormatDeploymentsResponseType$ ||= {});
|
|
44177
44265
|
DeploymentsResponseFormatJsonSchema$inboundSchema = objectType({
|
|
44178
44266
|
name: stringType(),
|
|
44179
44267
|
strict: booleanType().optional(),
|
|
@@ -44189,7 +44277,7 @@ var init_deployments = __esm(() => {
|
|
|
44189
44277
|
DeploymentsResponseFormatJsonSchema$.outboundSchema = DeploymentsResponseFormatJsonSchema$outboundSchema;
|
|
44190
44278
|
})(DeploymentsResponseFormatJsonSchema$ ||= {});
|
|
44191
44279
|
DeploymentsResponseFormat1$inboundSchema = objectType({
|
|
44192
|
-
type:
|
|
44280
|
+
type: DeploymentsResponseFormatDeploymentsResponseType$inboundSchema,
|
|
44193
44281
|
json_schema: lazyType(() => DeploymentsResponseFormatJsonSchema$inboundSchema)
|
|
44194
44282
|
}).transform((v2) => {
|
|
44195
44283
|
return remap(v2, {
|
|
@@ -44197,7 +44285,7 @@ var init_deployments = __esm(() => {
|
|
|
44197
44285
|
});
|
|
44198
44286
|
});
|
|
44199
44287
|
DeploymentsResponseFormat1$outboundSchema = objectType({
|
|
44200
|
-
type:
|
|
44288
|
+
type: DeploymentsResponseFormatDeploymentsResponseType$outboundSchema,
|
|
44201
44289
|
jsonSchema: lazyType(() => DeploymentsResponseFormatJsonSchema$outboundSchema)
|
|
44202
44290
|
}).transform((v2) => {
|
|
44203
44291
|
return remap(v2, {
|
|
@@ -44210,11 +44298,13 @@ var init_deployments = __esm(() => {
|
|
|
44210
44298
|
})(DeploymentsResponseFormat1$ ||= {});
|
|
44211
44299
|
DeploymentsResponseFormat$inboundSchema = unionType([
|
|
44212
44300
|
lazyType(() => DeploymentsResponseFormat1$inboundSchema),
|
|
44213
|
-
lazyType(() => DeploymentsResponseFormat2$inboundSchema)
|
|
44301
|
+
lazyType(() => DeploymentsResponseFormat2$inboundSchema),
|
|
44302
|
+
lazyType(() => DeploymentsResponseFormat3$inboundSchema)
|
|
44214
44303
|
]);
|
|
44215
44304
|
DeploymentsResponseFormat$outboundSchema = unionType([
|
|
44216
44305
|
lazyType(() => DeploymentsResponseFormat1$outboundSchema),
|
|
44217
|
-
lazyType(() => DeploymentsResponseFormat2$outboundSchema)
|
|
44306
|
+
lazyType(() => DeploymentsResponseFormat2$outboundSchema),
|
|
44307
|
+
lazyType(() => DeploymentsResponseFormat3$outboundSchema)
|
|
44218
44308
|
]);
|
|
44219
44309
|
((DeploymentsResponseFormat$) => {
|
|
44220
44310
|
DeploymentsResponseFormat$.inboundSchema = DeploymentsResponseFormat$inboundSchema;
|
|
@@ -44259,7 +44349,8 @@ var init_deployments = __esm(() => {
|
|
|
44259
44349
|
style: stringType().optional(),
|
|
44260
44350
|
responseFormat: nullableType(unionType([
|
|
44261
44351
|
lazyType(() => DeploymentsResponseFormat1$inboundSchema),
|
|
44262
|
-
lazyType(() => DeploymentsResponseFormat2$inboundSchema)
|
|
44352
|
+
lazyType(() => DeploymentsResponseFormat2$inboundSchema),
|
|
44353
|
+
lazyType(() => DeploymentsResponseFormat3$inboundSchema)
|
|
44263
44354
|
])).optional(),
|
|
44264
44355
|
photoRealVersion: DeploymentsPhotoRealVersion$inboundSchema.optional(),
|
|
44265
44356
|
encoding_format: DeploymentsEncodingFormat$inboundSchema.optional(),
|
|
@@ -44286,7 +44377,8 @@ var init_deployments = __esm(() => {
|
|
|
44286
44377
|
style: stringType().optional(),
|
|
44287
44378
|
responseFormat: nullableType(unionType([
|
|
44288
44379
|
lazyType(() => DeploymentsResponseFormat1$outboundSchema),
|
|
44289
|
-
lazyType(() => DeploymentsResponseFormat2$outboundSchema)
|
|
44380
|
+
lazyType(() => DeploymentsResponseFormat2$outboundSchema),
|
|
44381
|
+
lazyType(() => DeploymentsResponseFormat3$outboundSchema)
|
|
44290
44382
|
])).optional(),
|
|
44291
44383
|
photoRealVersion: DeploymentsPhotoRealVersion$outboundSchema.optional(),
|
|
44292
44384
|
encodingFormat: DeploymentsEncodingFormat$outboundSchema.optional(),
|
|
@@ -48266,7 +48358,7 @@ var init_fileget = __esm(() => {
|
|
|
48266
48358
|
bytes: numberType(),
|
|
48267
48359
|
file_name: stringType(),
|
|
48268
48360
|
workspace_id: stringType(),
|
|
48269
|
-
created: stringType().datetime({ offset: true }).default("2025-08-
|
|
48361
|
+
created: stringType().datetime({ offset: true }).default("2025-08-12T12:59:38.562Z").transform((v2) => new Date(v2))
|
|
48270
48362
|
}).transform((v2) => {
|
|
48271
48363
|
return remap(v2, {
|
|
48272
48364
|
_id: "id",
|
|
@@ -48282,7 +48374,7 @@ var init_fileget = __esm(() => {
|
|
|
48282
48374
|
bytes: numberType(),
|
|
48283
48375
|
fileName: stringType(),
|
|
48284
48376
|
workspaceId: stringType(),
|
|
48285
|
-
created: dateType().default(() => new Date("2025-08-
|
|
48377
|
+
created: dateType().default(() => new Date("2025-08-12T12:59:38.562Z")).transform((v2) => v2.toISOString())
|
|
48286
48378
|
}).transform((v2) => {
|
|
48287
48379
|
return remap(v2, {
|
|
48288
48380
|
id: "_id",
|
|
@@ -48353,7 +48445,7 @@ var init_filelist = __esm(() => {
|
|
|
48353
48445
|
bytes: numberType(),
|
|
48354
48446
|
file_name: stringType(),
|
|
48355
48447
|
workspace_id: stringType(),
|
|
48356
|
-
created: stringType().datetime({ offset: true }).default("2025-08-
|
|
48448
|
+
created: stringType().datetime({ offset: true }).default("2025-08-12T12:59:38.562Z").transform((v2) => new Date(v2))
|
|
48357
48449
|
}).transform((v2) => {
|
|
48358
48450
|
return remap(v2, {
|
|
48359
48451
|
_id: "id",
|
|
@@ -48369,7 +48461,7 @@ var init_filelist = __esm(() => {
|
|
|
48369
48461
|
bytes: numberType(),
|
|
48370
48462
|
fileName: stringType(),
|
|
48371
48463
|
workspaceId: stringType(),
|
|
48372
|
-
created: dateType().default(() => new Date("2025-08-
|
|
48464
|
+
created: dateType().default(() => new Date("2025-08-12T12:59:38.562Z")).transform((v2) => v2.toISOString())
|
|
48373
48465
|
}).transform((v2) => {
|
|
48374
48466
|
return remap(v2, {
|
|
48375
48467
|
id: "_id",
|
|
@@ -48501,7 +48593,7 @@ var init_fileupload = __esm(() => {
|
|
|
48501
48593
|
bytes: numberType(),
|
|
48502
48594
|
file_name: stringType(),
|
|
48503
48595
|
workspace_id: stringType(),
|
|
48504
|
-
created: stringType().datetime({ offset: true }).default("2025-08-
|
|
48596
|
+
created: stringType().datetime({ offset: true }).default("2025-08-12T12:59:38.562Z").transform((v2) => new Date(v2))
|
|
48505
48597
|
}).transform((v2) => {
|
|
48506
48598
|
return remap(v2, {
|
|
48507
48599
|
_id: "id",
|
|
@@ -48517,7 +48609,7 @@ var init_fileupload = __esm(() => {
|
|
|
48517
48609
|
bytes: numberType(),
|
|
48518
48610
|
fileName: stringType(),
|
|
48519
48611
|
workspaceId: stringType(),
|
|
48520
|
-
created: dateType().default(() => new Date("2025-08-
|
|
48612
|
+
created: dateType().default(() => new Date("2025-08-12T12:59:38.562Z")).transform((v2) => v2.toISOString())
|
|
48521
48613
|
}).transform((v2) => {
|
|
48522
48614
|
return remap(v2, {
|
|
48523
48615
|
id: "_id",
|
|
@@ -48533,7 +48625,7 @@ var init_fileupload = __esm(() => {
|
|
|
48533
48625
|
});
|
|
48534
48626
|
|
|
48535
48627
|
// src/models/operations/getallprompts.ts
|
|
48536
|
-
var GetAllPromptsObject, GetAllPromptsType, GetAllPromptsModelType, GetAllPromptsFormat, GetAllPromptsResponseFormatPromptsType, GetAllPromptsResponseFormatType, GetAllPromptsPhotoRealVersion, GetAllPromptsEncodingFormat, GetAllPromptsReasoningEffort, GetAllPromptsVerbosity, GetAllPromptsProvider, GetAllPromptsRole, GetAllPrompts2PromptsResponseType, GetAllPrompts2PromptsType, GetAllPrompts2Type, GetAllPromptsPromptsType, GetAllPromptsUseCases, GetAllPromptsLanguage, GetAllPromptsRequest$inboundSchema, GetAllPromptsRequest$outboundSchema, GetAllPromptsRequest$, GetAllPromptsObject$inboundSchema, GetAllPromptsObject$outboundSchema, GetAllPromptsObject$, GetAllPromptsType$inboundSchema, GetAllPromptsType$outboundSchema, GetAllPromptsType$, GetAllPromptsModelType$inboundSchema, GetAllPromptsModelType$outboundSchema, GetAllPromptsModelType$, GetAllPromptsFormat$inboundSchema, GetAllPromptsFormat$outboundSchema, GetAllPromptsFormat$, 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$;
|
|
48628
|
+
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$;
|
|
48537
48629
|
var init_getallprompts = __esm(() => {
|
|
48538
48630
|
init_esm();
|
|
48539
48631
|
init_primitives();
|
|
@@ -48560,6 +48652,9 @@ var init_getallprompts = __esm(() => {
|
|
|
48560
48652
|
Text: "text",
|
|
48561
48653
|
JsonObject: "json_object"
|
|
48562
48654
|
};
|
|
48655
|
+
GetAllPromptsResponseFormatPromptsResponseType = {
|
|
48656
|
+
Text: "text"
|
|
48657
|
+
};
|
|
48563
48658
|
GetAllPromptsResponseFormatPromptsType = {
|
|
48564
48659
|
JsonObject: "json_object"
|
|
48565
48660
|
};
|
|
@@ -48709,6 +48804,22 @@ var init_getallprompts = __esm(() => {
|
|
|
48709
48804
|
GetAllPromptsFormat$.inboundSchema = GetAllPromptsFormat$inboundSchema;
|
|
48710
48805
|
GetAllPromptsFormat$.outboundSchema = GetAllPromptsFormat$outboundSchema;
|
|
48711
48806
|
})(GetAllPromptsFormat$ ||= {});
|
|
48807
|
+
GetAllPromptsResponseFormatPromptsResponseType$inboundSchema = nativeEnumType(GetAllPromptsResponseFormatPromptsResponseType);
|
|
48808
|
+
GetAllPromptsResponseFormatPromptsResponseType$outboundSchema = GetAllPromptsResponseFormatPromptsResponseType$inboundSchema;
|
|
48809
|
+
((GetAllPromptsResponseFormatPromptsResponseType$) => {
|
|
48810
|
+
GetAllPromptsResponseFormatPromptsResponseType$.inboundSchema = GetAllPromptsResponseFormatPromptsResponseType$inboundSchema;
|
|
48811
|
+
GetAllPromptsResponseFormatPromptsResponseType$.outboundSchema = GetAllPromptsResponseFormatPromptsResponseType$outboundSchema;
|
|
48812
|
+
})(GetAllPromptsResponseFormatPromptsResponseType$ ||= {});
|
|
48813
|
+
GetAllPromptsResponseFormat3$inboundSchema = objectType({
|
|
48814
|
+
type: GetAllPromptsResponseFormatPromptsResponseType$inboundSchema
|
|
48815
|
+
});
|
|
48816
|
+
GetAllPromptsResponseFormat3$outboundSchema = objectType({
|
|
48817
|
+
type: GetAllPromptsResponseFormatPromptsResponseType$outboundSchema
|
|
48818
|
+
});
|
|
48819
|
+
((GetAllPromptsResponseFormat3$) => {
|
|
48820
|
+
GetAllPromptsResponseFormat3$.inboundSchema = GetAllPromptsResponseFormat3$inboundSchema;
|
|
48821
|
+
GetAllPromptsResponseFormat3$.outboundSchema = GetAllPromptsResponseFormat3$outboundSchema;
|
|
48822
|
+
})(GetAllPromptsResponseFormat3$ ||= {});
|
|
48712
48823
|
GetAllPromptsResponseFormatPromptsType$inboundSchema = nativeEnumType(GetAllPromptsResponseFormatPromptsType);
|
|
48713
48824
|
GetAllPromptsResponseFormatPromptsType$outboundSchema = GetAllPromptsResponseFormatPromptsType$inboundSchema;
|
|
48714
48825
|
((GetAllPromptsResponseFormatPromptsType$) => {
|
|
@@ -48767,11 +48878,13 @@ var init_getallprompts = __esm(() => {
|
|
|
48767
48878
|
})(GetAllPromptsResponseFormat1$ ||= {});
|
|
48768
48879
|
GetAllPromptsResponseFormat$inboundSchema = unionType([
|
|
48769
48880
|
lazyType(() => GetAllPromptsResponseFormat1$inboundSchema),
|
|
48770
|
-
lazyType(() => GetAllPromptsResponseFormat2$inboundSchema)
|
|
48881
|
+
lazyType(() => GetAllPromptsResponseFormat2$inboundSchema),
|
|
48882
|
+
lazyType(() => GetAllPromptsResponseFormat3$inboundSchema)
|
|
48771
48883
|
]);
|
|
48772
48884
|
GetAllPromptsResponseFormat$outboundSchema = unionType([
|
|
48773
48885
|
lazyType(() => GetAllPromptsResponseFormat1$outboundSchema),
|
|
48774
|
-
lazyType(() => GetAllPromptsResponseFormat2$outboundSchema)
|
|
48886
|
+
lazyType(() => GetAllPromptsResponseFormat2$outboundSchema),
|
|
48887
|
+
lazyType(() => GetAllPromptsResponseFormat3$outboundSchema)
|
|
48775
48888
|
]);
|
|
48776
48889
|
((GetAllPromptsResponseFormat$) => {
|
|
48777
48890
|
GetAllPromptsResponseFormat$.inboundSchema = GetAllPromptsResponseFormat$inboundSchema;
|
|
@@ -48816,7 +48929,8 @@ var init_getallprompts = __esm(() => {
|
|
|
48816
48929
|
style: stringType().optional(),
|
|
48817
48930
|
responseFormat: nullableType(unionType([
|
|
48818
48931
|
lazyType(() => GetAllPromptsResponseFormat1$inboundSchema),
|
|
48819
|
-
lazyType(() => GetAllPromptsResponseFormat2$inboundSchema)
|
|
48932
|
+
lazyType(() => GetAllPromptsResponseFormat2$inboundSchema),
|
|
48933
|
+
lazyType(() => GetAllPromptsResponseFormat3$inboundSchema)
|
|
48820
48934
|
])).optional(),
|
|
48821
48935
|
photoRealVersion: GetAllPromptsPhotoRealVersion$inboundSchema.optional(),
|
|
48822
48936
|
encoding_format: GetAllPromptsEncodingFormat$inboundSchema.optional(),
|
|
@@ -48843,7 +48957,8 @@ var init_getallprompts = __esm(() => {
|
|
|
48843
48957
|
style: stringType().optional(),
|
|
48844
48958
|
responseFormat: nullableType(unionType([
|
|
48845
48959
|
lazyType(() => GetAllPromptsResponseFormat1$outboundSchema),
|
|
48846
|
-
lazyType(() => GetAllPromptsResponseFormat2$outboundSchema)
|
|
48960
|
+
lazyType(() => GetAllPromptsResponseFormat2$outboundSchema),
|
|
48961
|
+
lazyType(() => GetAllPromptsResponseFormat3$outboundSchema)
|
|
48847
48962
|
])).optional(),
|
|
48848
48963
|
photoRealVersion: GetAllPromptsPhotoRealVersion$outboundSchema.optional(),
|
|
48849
48964
|
encodingFormat: GetAllPromptsEncodingFormat$outboundSchema.optional(),
|
|
@@ -49570,8 +49685,8 @@ var init_getevals = __esm(() => {
|
|
|
49570
49685
|
Typescript$inboundSchema = objectType({
|
|
49571
49686
|
_id: stringType(),
|
|
49572
49687
|
description: stringType(),
|
|
49573
|
-
created: stringType().default("2025-08-
|
|
49574
|
-
updated: stringType().default("2025-08-
|
|
49688
|
+
created: stringType().default("2025-08-12T12:59:37.688Z"),
|
|
49689
|
+
updated: stringType().default("2025-08-12T12:59:37.688Z"),
|
|
49575
49690
|
guardrail_config: unionType([
|
|
49576
49691
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
49577
49692
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
|
|
@@ -49588,8 +49703,8 @@ var init_getevals = __esm(() => {
|
|
|
49588
49703
|
Typescript$outboundSchema = objectType({
|
|
49589
49704
|
id: stringType(),
|
|
49590
49705
|
description: stringType(),
|
|
49591
|
-
created: stringType().default("2025-08-
|
|
49592
|
-
updated: stringType().default("2025-08-
|
|
49706
|
+
created: stringType().default("2025-08-12T12:59:37.688Z"),
|
|
49707
|
+
updated: stringType().default("2025-08-12T12:59:37.688Z"),
|
|
49593
49708
|
guardrailConfig: unionType([
|
|
49594
49709
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
49595
49710
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
|
|
@@ -49682,8 +49797,8 @@ var init_getevals = __esm(() => {
|
|
|
49682
49797
|
Ragas$inboundSchema = objectType({
|
|
49683
49798
|
_id: stringType(),
|
|
49684
49799
|
description: stringType(),
|
|
49685
|
-
created: stringType().default("2025-08-
|
|
49686
|
-
updated: stringType().default("2025-08-
|
|
49800
|
+
created: stringType().default("2025-08-12T12:59:37.688Z"),
|
|
49801
|
+
updated: stringType().default("2025-08-12T12:59:37.688Z"),
|
|
49687
49802
|
guardrail_config: unionType([
|
|
49688
49803
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
49689
49804
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema)
|
|
@@ -49702,8 +49817,8 @@ var init_getevals = __esm(() => {
|
|
|
49702
49817
|
Ragas$outboundSchema = objectType({
|
|
49703
49818
|
id: stringType(),
|
|
49704
49819
|
description: stringType(),
|
|
49705
|
-
created: stringType().default("2025-08-
|
|
49706
|
-
updated: stringType().default("2025-08-
|
|
49820
|
+
created: stringType().default("2025-08-12T12:59:37.688Z"),
|
|
49821
|
+
updated: stringType().default("2025-08-12T12:59:37.688Z"),
|
|
49707
49822
|
guardrailConfig: unionType([
|
|
49708
49823
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
49709
49824
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema)
|
|
@@ -50456,8 +50571,8 @@ var init_getevals = __esm(() => {
|
|
|
50456
50571
|
DataFunction$inboundSchema = objectType({
|
|
50457
50572
|
_id: stringType(),
|
|
50458
50573
|
description: stringType(),
|
|
50459
|
-
created: stringType().default("2025-08-
|
|
50460
|
-
updated: stringType().default("2025-08-
|
|
50574
|
+
created: stringType().default("2025-08-12T12:59:37.688Z"),
|
|
50575
|
+
updated: stringType().default("2025-08-12T12:59:37.688Z"),
|
|
50461
50576
|
guardrail_config: unionType([
|
|
50462
50577
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
50463
50578
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema)
|
|
@@ -50511,8 +50626,8 @@ var init_getevals = __esm(() => {
|
|
|
50511
50626
|
DataFunction$outboundSchema = objectType({
|
|
50512
50627
|
id: stringType(),
|
|
50513
50628
|
description: stringType(),
|
|
50514
|
-
created: stringType().default("2025-08-
|
|
50515
|
-
updated: stringType().default("2025-08-
|
|
50629
|
+
created: stringType().default("2025-08-12T12:59:37.688Z"),
|
|
50630
|
+
updated: stringType().default("2025-08-12T12:59:37.688Z"),
|
|
50516
50631
|
guardrailConfig: unionType([
|
|
50517
50632
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
50518
50633
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema)
|
|
@@ -50636,8 +50751,8 @@ var init_getevals = __esm(() => {
|
|
|
50636
50751
|
DataPython$inboundSchema = objectType({
|
|
50637
50752
|
_id: stringType(),
|
|
50638
50753
|
description: stringType(),
|
|
50639
|
-
created: stringType().default("2025-08-
|
|
50640
|
-
updated: stringType().default("2025-08-
|
|
50754
|
+
created: stringType().default("2025-08-12T12:59:37.688Z"),
|
|
50755
|
+
updated: stringType().default("2025-08-12T12:59:37.688Z"),
|
|
50641
50756
|
guardrail_config: unionType([
|
|
50642
50757
|
lazyType(() => GetEvalsGuardrailConfigEvalsNumber$inboundSchema),
|
|
50643
50758
|
lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema)
|
|
@@ -50654,8 +50769,8 @@ var init_getevals = __esm(() => {
|
|
|
50654
50769
|
DataPython$outboundSchema = objectType({
|
|
50655
50770
|
id: stringType(),
|
|
50656
50771
|
description: stringType(),
|
|
50657
|
-
created: stringType().default("2025-08-
|
|
50658
|
-
updated: stringType().default("2025-08-
|
|
50772
|
+
created: stringType().default("2025-08-12T12:59:37.688Z"),
|
|
50773
|
+
updated: stringType().default("2025-08-12T12:59:37.688Z"),
|
|
50659
50774
|
guardrailConfig: unionType([
|
|
50660
50775
|
lazyType(() => GetEvalsGuardrailConfigEvalsNumber$outboundSchema),
|
|
50661
50776
|
lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$outboundSchema)
|
|
@@ -50748,8 +50863,8 @@ var init_getevals = __esm(() => {
|
|
|
50748
50863
|
DataHTTP$inboundSchema = objectType({
|
|
50749
50864
|
_id: stringType(),
|
|
50750
50865
|
description: stringType(),
|
|
50751
|
-
created: stringType().default("2025-08-
|
|
50752
|
-
updated: stringType().default("2025-08-
|
|
50866
|
+
created: stringType().default("2025-08-12T12:59:37.688Z"),
|
|
50867
|
+
updated: stringType().default("2025-08-12T12:59:37.688Z"),
|
|
50753
50868
|
guardrail_config: unionType([
|
|
50754
50869
|
lazyType(() => GetEvalsGuardrailConfigNumber$inboundSchema),
|
|
50755
50870
|
lazyType(() => GetEvalsGuardrailConfigBoolean$inboundSchema)
|
|
@@ -50769,8 +50884,8 @@ var init_getevals = __esm(() => {
|
|
|
50769
50884
|
DataHTTP$outboundSchema = objectType({
|
|
50770
50885
|
id: stringType(),
|
|
50771
50886
|
description: stringType(),
|
|
50772
|
-
created: stringType().default("2025-08-
|
|
50773
|
-
updated: stringType().default("2025-08-
|
|
50887
|
+
created: stringType().default("2025-08-12T12:59:37.688Z"),
|
|
50888
|
+
updated: stringType().default("2025-08-12T12:59:37.688Z"),
|
|
50774
50889
|
guardrailConfig: unionType([
|
|
50775
50890
|
lazyType(() => GetEvalsGuardrailConfigNumber$outboundSchema),
|
|
50776
50891
|
lazyType(() => GetEvalsGuardrailConfigBoolean$outboundSchema)
|
|
@@ -50860,8 +50975,8 @@ var init_getevals = __esm(() => {
|
|
|
50860
50975
|
DataJSON$inboundSchema = objectType({
|
|
50861
50976
|
_id: stringType(),
|
|
50862
50977
|
description: stringType(),
|
|
50863
|
-
created: stringType().default("2025-08-
|
|
50864
|
-
updated: stringType().default("2025-08-
|
|
50978
|
+
created: stringType().default("2025-08-12T12:59:37.688Z"),
|
|
50979
|
+
updated: stringType().default("2025-08-12T12:59:37.688Z"),
|
|
50865
50980
|
guardrail_config: unionType([
|
|
50866
50981
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$inboundSchema),
|
|
50867
50982
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$inboundSchema)
|
|
@@ -50878,8 +50993,8 @@ var init_getevals = __esm(() => {
|
|
|
50878
50993
|
DataJSON$outboundSchema = objectType({
|
|
50879
50994
|
id: stringType(),
|
|
50880
50995
|
description: stringType(),
|
|
50881
|
-
created: stringType().default("2025-08-
|
|
50882
|
-
updated: stringType().default("2025-08-
|
|
50996
|
+
created: stringType().default("2025-08-12T12:59:37.688Z"),
|
|
50997
|
+
updated: stringType().default("2025-08-12T12:59:37.688Z"),
|
|
50883
50998
|
guardrailConfig: unionType([
|
|
50884
50999
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$outboundSchema),
|
|
50885
51000
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$outboundSchema)
|
|
@@ -50966,8 +51081,8 @@ var init_getevals = __esm(() => {
|
|
|
50966
51081
|
DataLLM$inboundSchema = objectType({
|
|
50967
51082
|
_id: stringType(),
|
|
50968
51083
|
description: stringType(),
|
|
50969
|
-
created: stringType().default("2025-08-
|
|
50970
|
-
updated: stringType().default("2025-08-
|
|
51084
|
+
created: stringType().default("2025-08-12T12:59:37.688Z"),
|
|
51085
|
+
updated: stringType().default("2025-08-12T12:59:37.688Z"),
|
|
50971
51086
|
guardrail_config: unionType([
|
|
50972
51087
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
50973
51088
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
|
|
@@ -50985,8 +51100,8 @@ var init_getevals = __esm(() => {
|
|
|
50985
51100
|
DataLLM$outboundSchema = objectType({
|
|
50986
51101
|
id: stringType(),
|
|
50987
51102
|
description: stringType(),
|
|
50988
|
-
created: stringType().default("2025-08-
|
|
50989
|
-
updated: stringType().default("2025-08-
|
|
51103
|
+
created: stringType().default("2025-08-12T12:59:37.688Z"),
|
|
51104
|
+
updated: stringType().default("2025-08-12T12:59:37.688Z"),
|
|
50990
51105
|
guardrailConfig: unionType([
|
|
50991
51106
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
50992
51107
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
|
|
@@ -51304,7 +51419,7 @@ var init_getoneknowledge = __esm(() => {
|
|
|
51304
51419
|
});
|
|
51305
51420
|
|
|
51306
51421
|
// src/models/operations/getoneprompt.ts
|
|
51307
|
-
var GetOnePromptType, GetOnePromptModelType, GetOnePromptFormat, GetOnePromptResponseFormatPromptsType, GetOnePromptResponseFormatType, GetOnePromptPhotoRealVersion, GetOnePromptEncodingFormat, GetOnePromptReasoningEffort, GetOnePromptVerbosity, GetOnePromptProvider, GetOnePromptRole, GetOnePrompt2PromptsResponseType, GetOnePrompt2PromptsType, GetOnePrompt2Type, GetOnePromptPromptsType, GetOnePromptUseCases, GetOnePromptLanguage, GetOnePromptRequest$inboundSchema, GetOnePromptRequest$outboundSchema, GetOnePromptRequest$, GetOnePromptType$inboundSchema, GetOnePromptType$outboundSchema, GetOnePromptType$, GetOnePromptModelType$inboundSchema, GetOnePromptModelType$outboundSchema, GetOnePromptModelType$, GetOnePromptFormat$inboundSchema, GetOnePromptFormat$outboundSchema, GetOnePromptFormat$, 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$;
|
|
51422
|
+
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$;
|
|
51308
51423
|
var init_getoneprompt = __esm(() => {
|
|
51309
51424
|
init_esm();
|
|
51310
51425
|
init_primitives();
|
|
@@ -51328,6 +51443,9 @@ var init_getoneprompt = __esm(() => {
|
|
|
51328
51443
|
Text: "text",
|
|
51329
51444
|
JsonObject: "json_object"
|
|
51330
51445
|
};
|
|
51446
|
+
GetOnePromptResponseFormatPromptsResponseType = {
|
|
51447
|
+
Text: "text"
|
|
51448
|
+
};
|
|
51331
51449
|
GetOnePromptResponseFormatPromptsType = {
|
|
51332
51450
|
JsonObject: "json_object"
|
|
51333
51451
|
};
|
|
@@ -51457,6 +51575,22 @@ var init_getoneprompt = __esm(() => {
|
|
|
51457
51575
|
GetOnePromptFormat$.inboundSchema = GetOnePromptFormat$inboundSchema;
|
|
51458
51576
|
GetOnePromptFormat$.outboundSchema = GetOnePromptFormat$outboundSchema;
|
|
51459
51577
|
})(GetOnePromptFormat$ ||= {});
|
|
51578
|
+
GetOnePromptResponseFormatPromptsResponseType$inboundSchema = nativeEnumType(GetOnePromptResponseFormatPromptsResponseType);
|
|
51579
|
+
GetOnePromptResponseFormatPromptsResponseType$outboundSchema = GetOnePromptResponseFormatPromptsResponseType$inboundSchema;
|
|
51580
|
+
((GetOnePromptResponseFormatPromptsResponseType$) => {
|
|
51581
|
+
GetOnePromptResponseFormatPromptsResponseType$.inboundSchema = GetOnePromptResponseFormatPromptsResponseType$inboundSchema;
|
|
51582
|
+
GetOnePromptResponseFormatPromptsResponseType$.outboundSchema = GetOnePromptResponseFormatPromptsResponseType$outboundSchema;
|
|
51583
|
+
})(GetOnePromptResponseFormatPromptsResponseType$ ||= {});
|
|
51584
|
+
GetOnePromptResponseFormat3$inboundSchema = objectType({
|
|
51585
|
+
type: GetOnePromptResponseFormatPromptsResponseType$inboundSchema
|
|
51586
|
+
});
|
|
51587
|
+
GetOnePromptResponseFormat3$outboundSchema = objectType({
|
|
51588
|
+
type: GetOnePromptResponseFormatPromptsResponseType$outboundSchema
|
|
51589
|
+
});
|
|
51590
|
+
((GetOnePromptResponseFormat3$) => {
|
|
51591
|
+
GetOnePromptResponseFormat3$.inboundSchema = GetOnePromptResponseFormat3$inboundSchema;
|
|
51592
|
+
GetOnePromptResponseFormat3$.outboundSchema = GetOnePromptResponseFormat3$outboundSchema;
|
|
51593
|
+
})(GetOnePromptResponseFormat3$ ||= {});
|
|
51460
51594
|
GetOnePromptResponseFormatPromptsType$inboundSchema = nativeEnumType(GetOnePromptResponseFormatPromptsType);
|
|
51461
51595
|
GetOnePromptResponseFormatPromptsType$outboundSchema = GetOnePromptResponseFormatPromptsType$inboundSchema;
|
|
51462
51596
|
((GetOnePromptResponseFormatPromptsType$) => {
|
|
@@ -51515,11 +51649,13 @@ var init_getoneprompt = __esm(() => {
|
|
|
51515
51649
|
})(GetOnePromptResponseFormat1$ ||= {});
|
|
51516
51650
|
GetOnePromptResponseFormat$inboundSchema = unionType([
|
|
51517
51651
|
lazyType(() => GetOnePromptResponseFormat1$inboundSchema),
|
|
51518
|
-
lazyType(() => GetOnePromptResponseFormat2$inboundSchema)
|
|
51652
|
+
lazyType(() => GetOnePromptResponseFormat2$inboundSchema),
|
|
51653
|
+
lazyType(() => GetOnePromptResponseFormat3$inboundSchema)
|
|
51519
51654
|
]);
|
|
51520
51655
|
GetOnePromptResponseFormat$outboundSchema = unionType([
|
|
51521
51656
|
lazyType(() => GetOnePromptResponseFormat1$outboundSchema),
|
|
51522
|
-
lazyType(() => GetOnePromptResponseFormat2$outboundSchema)
|
|
51657
|
+
lazyType(() => GetOnePromptResponseFormat2$outboundSchema),
|
|
51658
|
+
lazyType(() => GetOnePromptResponseFormat3$outboundSchema)
|
|
51523
51659
|
]);
|
|
51524
51660
|
((GetOnePromptResponseFormat$) => {
|
|
51525
51661
|
GetOnePromptResponseFormat$.inboundSchema = GetOnePromptResponseFormat$inboundSchema;
|
|
@@ -51564,7 +51700,8 @@ var init_getoneprompt = __esm(() => {
|
|
|
51564
51700
|
style: stringType().optional(),
|
|
51565
51701
|
responseFormat: nullableType(unionType([
|
|
51566
51702
|
lazyType(() => GetOnePromptResponseFormat1$inboundSchema),
|
|
51567
|
-
lazyType(() => GetOnePromptResponseFormat2$inboundSchema)
|
|
51703
|
+
lazyType(() => GetOnePromptResponseFormat2$inboundSchema),
|
|
51704
|
+
lazyType(() => GetOnePromptResponseFormat3$inboundSchema)
|
|
51568
51705
|
])).optional(),
|
|
51569
51706
|
photoRealVersion: GetOnePromptPhotoRealVersion$inboundSchema.optional(),
|
|
51570
51707
|
encoding_format: GetOnePromptEncodingFormat$inboundSchema.optional(),
|
|
@@ -51591,7 +51728,8 @@ var init_getoneprompt = __esm(() => {
|
|
|
51591
51728
|
style: stringType().optional(),
|
|
51592
51729
|
responseFormat: nullableType(unionType([
|
|
51593
51730
|
lazyType(() => GetOnePromptResponseFormat1$outboundSchema),
|
|
51594
|
-
lazyType(() => GetOnePromptResponseFormat2$outboundSchema)
|
|
51731
|
+
lazyType(() => GetOnePromptResponseFormat2$outboundSchema),
|
|
51732
|
+
lazyType(() => GetOnePromptResponseFormat3$outboundSchema)
|
|
51595
51733
|
])).optional(),
|
|
51596
51734
|
photoRealVersion: GetOnePromptPhotoRealVersion$outboundSchema.optional(),
|
|
51597
51735
|
encodingFormat: GetOnePromptEncodingFormat$outboundSchema.optional(),
|
|
@@ -51948,7 +52086,7 @@ var init_getoneprompt = __esm(() => {
|
|
|
51948
52086
|
});
|
|
51949
52087
|
|
|
51950
52088
|
// src/models/operations/getpromptversion.ts
|
|
51951
|
-
var GetPromptVersionModelType, GetPromptVersionFormat, GetPromptVersionResponseFormatPromptsType, GetPromptVersionResponseFormatType, GetPromptVersionPhotoRealVersion, GetPromptVersionEncodingFormat, GetPromptVersionReasoningEffort, GetPromptVersionVerbosity, GetPromptVersionProvider, GetPromptVersionRole, GetPromptVersion2PromptsResponseType, GetPromptVersion2PromptsType, GetPromptVersion2Type, GetPromptVersionType, GetPromptVersionUseCases, GetPromptVersionLanguage, GetPromptVersionRequest$inboundSchema, GetPromptVersionRequest$outboundSchema, GetPromptVersionRequest$, GetPromptVersionModelType$inboundSchema, GetPromptVersionModelType$outboundSchema, GetPromptVersionModelType$, GetPromptVersionFormat$inboundSchema, GetPromptVersionFormat$outboundSchema, GetPromptVersionFormat$, 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$;
|
|
52089
|
+
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$;
|
|
51952
52090
|
var init_getpromptversion = __esm(() => {
|
|
51953
52091
|
init_esm();
|
|
51954
52092
|
init_primitives();
|
|
@@ -51969,6 +52107,9 @@ var init_getpromptversion = __esm(() => {
|
|
|
51969
52107
|
Text: "text",
|
|
51970
52108
|
JsonObject: "json_object"
|
|
51971
52109
|
};
|
|
52110
|
+
GetPromptVersionResponseFormatPromptsResponseType = {
|
|
52111
|
+
Text: "text"
|
|
52112
|
+
};
|
|
51972
52113
|
GetPromptVersionResponseFormatPromptsType = {
|
|
51973
52114
|
JsonObject: "json_object"
|
|
51974
52115
|
};
|
|
@@ -52104,6 +52245,22 @@ var init_getpromptversion = __esm(() => {
|
|
|
52104
52245
|
GetPromptVersionFormat$.inboundSchema = GetPromptVersionFormat$inboundSchema;
|
|
52105
52246
|
GetPromptVersionFormat$.outboundSchema = GetPromptVersionFormat$outboundSchema;
|
|
52106
52247
|
})(GetPromptVersionFormat$ ||= {});
|
|
52248
|
+
GetPromptVersionResponseFormatPromptsResponseType$inboundSchema = nativeEnumType(GetPromptVersionResponseFormatPromptsResponseType);
|
|
52249
|
+
GetPromptVersionResponseFormatPromptsResponseType$outboundSchema = GetPromptVersionResponseFormatPromptsResponseType$inboundSchema;
|
|
52250
|
+
((GetPromptVersionResponseFormatPromptsResponseType$) => {
|
|
52251
|
+
GetPromptVersionResponseFormatPromptsResponseType$.inboundSchema = GetPromptVersionResponseFormatPromptsResponseType$inboundSchema;
|
|
52252
|
+
GetPromptVersionResponseFormatPromptsResponseType$.outboundSchema = GetPromptVersionResponseFormatPromptsResponseType$outboundSchema;
|
|
52253
|
+
})(GetPromptVersionResponseFormatPromptsResponseType$ ||= {});
|
|
52254
|
+
GetPromptVersionResponseFormat3$inboundSchema = objectType({
|
|
52255
|
+
type: GetPromptVersionResponseFormatPromptsResponseType$inboundSchema
|
|
52256
|
+
});
|
|
52257
|
+
GetPromptVersionResponseFormat3$outboundSchema = objectType({
|
|
52258
|
+
type: GetPromptVersionResponseFormatPromptsResponseType$outboundSchema
|
|
52259
|
+
});
|
|
52260
|
+
((GetPromptVersionResponseFormat3$) => {
|
|
52261
|
+
GetPromptVersionResponseFormat3$.inboundSchema = GetPromptVersionResponseFormat3$inboundSchema;
|
|
52262
|
+
GetPromptVersionResponseFormat3$.outboundSchema = GetPromptVersionResponseFormat3$outboundSchema;
|
|
52263
|
+
})(GetPromptVersionResponseFormat3$ ||= {});
|
|
52107
52264
|
GetPromptVersionResponseFormatPromptsType$inboundSchema = nativeEnumType(GetPromptVersionResponseFormatPromptsType);
|
|
52108
52265
|
GetPromptVersionResponseFormatPromptsType$outboundSchema = GetPromptVersionResponseFormatPromptsType$inboundSchema;
|
|
52109
52266
|
((GetPromptVersionResponseFormatPromptsType$) => {
|
|
@@ -52162,11 +52319,13 @@ var init_getpromptversion = __esm(() => {
|
|
|
52162
52319
|
})(GetPromptVersionResponseFormat1$ ||= {});
|
|
52163
52320
|
GetPromptVersionResponseFormat$inboundSchema = unionType([
|
|
52164
52321
|
lazyType(() => GetPromptVersionResponseFormat1$inboundSchema),
|
|
52165
|
-
lazyType(() => GetPromptVersionResponseFormat2$inboundSchema)
|
|
52322
|
+
lazyType(() => GetPromptVersionResponseFormat2$inboundSchema),
|
|
52323
|
+
lazyType(() => GetPromptVersionResponseFormat3$inboundSchema)
|
|
52166
52324
|
]);
|
|
52167
52325
|
GetPromptVersionResponseFormat$outboundSchema = unionType([
|
|
52168
52326
|
lazyType(() => GetPromptVersionResponseFormat1$outboundSchema),
|
|
52169
|
-
lazyType(() => GetPromptVersionResponseFormat2$outboundSchema)
|
|
52327
|
+
lazyType(() => GetPromptVersionResponseFormat2$outboundSchema),
|
|
52328
|
+
lazyType(() => GetPromptVersionResponseFormat3$outboundSchema)
|
|
52170
52329
|
]);
|
|
52171
52330
|
((GetPromptVersionResponseFormat$) => {
|
|
52172
52331
|
GetPromptVersionResponseFormat$.inboundSchema = GetPromptVersionResponseFormat$inboundSchema;
|
|
@@ -52211,7 +52370,8 @@ var init_getpromptversion = __esm(() => {
|
|
|
52211
52370
|
style: stringType().optional(),
|
|
52212
52371
|
responseFormat: nullableType(unionType([
|
|
52213
52372
|
lazyType(() => GetPromptVersionResponseFormat1$inboundSchema),
|
|
52214
|
-
lazyType(() => GetPromptVersionResponseFormat2$inboundSchema)
|
|
52373
|
+
lazyType(() => GetPromptVersionResponseFormat2$inboundSchema),
|
|
52374
|
+
lazyType(() => GetPromptVersionResponseFormat3$inboundSchema)
|
|
52215
52375
|
])).optional(),
|
|
52216
52376
|
photoRealVersion: GetPromptVersionPhotoRealVersion$inboundSchema.optional(),
|
|
52217
52377
|
encoding_format: GetPromptVersionEncodingFormat$inboundSchema.optional(),
|
|
@@ -52238,7 +52398,8 @@ var init_getpromptversion = __esm(() => {
|
|
|
52238
52398
|
style: stringType().optional(),
|
|
52239
52399
|
responseFormat: nullableType(unionType([
|
|
52240
52400
|
lazyType(() => GetPromptVersionResponseFormat1$outboundSchema),
|
|
52241
|
-
lazyType(() => GetPromptVersionResponseFormat2$outboundSchema)
|
|
52401
|
+
lazyType(() => GetPromptVersionResponseFormat2$outboundSchema),
|
|
52402
|
+
lazyType(() => GetPromptVersionResponseFormat3$outboundSchema)
|
|
52242
52403
|
])).optional(),
|
|
52243
52404
|
photoRealVersion: GetPromptVersionPhotoRealVersion$outboundSchema.optional(),
|
|
52244
52405
|
encodingFormat: GetPromptVersionEncodingFormat$outboundSchema.optional(),
|
|
@@ -53413,7 +53574,7 @@ var init_listcontacts = __esm(() => {
|
|
|
53413
53574
|
tags: arrayType(stringType()).optional(),
|
|
53414
53575
|
metadata: recordType(anyType()).optional(),
|
|
53415
53576
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
53416
|
-
updated: stringType().datetime({ offset: true }).default("2025-08-
|
|
53577
|
+
updated: stringType().datetime({ offset: true }).default("2025-08-12T12:59:35.165Z").transform((v2) => new Date(v2)),
|
|
53417
53578
|
metrics: lazyType(() => Metrics$inboundSchema)
|
|
53418
53579
|
}).transform((v2) => {
|
|
53419
53580
|
return remap(v2, {
|
|
@@ -53432,7 +53593,7 @@ var init_listcontacts = __esm(() => {
|
|
|
53432
53593
|
tags: arrayType(stringType()).optional(),
|
|
53433
53594
|
metadata: recordType(anyType()).optional(),
|
|
53434
53595
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
53435
|
-
updated: dateType().default(() => new Date("2025-08-
|
|
53596
|
+
updated: dateType().default(() => new Date("2025-08-12T12:59:35.165Z")).transform((v2) => v2.toISOString()),
|
|
53436
53597
|
metrics: lazyType(() => Metrics$outboundSchema)
|
|
53437
53598
|
}).transform((v2) => {
|
|
53438
53599
|
return remap(v2, {
|
|
@@ -54047,7 +54208,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
54047
54208
|
created_by_id: stringType().optional(),
|
|
54048
54209
|
updated_by_id: stringType().optional(),
|
|
54049
54210
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
54050
|
-
updated: stringType().datetime({ offset: true }).default("2025-08-
|
|
54211
|
+
updated: stringType().datetime({ offset: true }).default("2025-08-12T12:59:35.165Z").transform((v2) => new Date(v2))
|
|
54051
54212
|
}).transform((v2) => {
|
|
54052
54213
|
return remap(v2, {
|
|
54053
54214
|
_id: "id",
|
|
@@ -54074,7 +54235,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
54074
54235
|
createdById: stringType().optional(),
|
|
54075
54236
|
updatedById: stringType().optional(),
|
|
54076
54237
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
54077
|
-
updated: dateType().default(() => new Date("2025-08-
|
|
54238
|
+
updated: dateType().default(() => new Date("2025-08-12T12:59:35.165Z")).transform((v2) => v2.toISOString())
|
|
54078
54239
|
}).transform((v2) => {
|
|
54079
54240
|
return remap(v2, {
|
|
54080
54241
|
id: "_id",
|
|
@@ -54182,7 +54343,7 @@ var init_listdatasets = __esm(() => {
|
|
|
54182
54343
|
updated_by_id: stringType().optional(),
|
|
54183
54344
|
metadata: lazyType(() => ListDatasetsMetadata$inboundSchema),
|
|
54184
54345
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
54185
|
-
updated: stringType().datetime({ offset: true }).default("2025-08-
|
|
54346
|
+
updated: stringType().datetime({ offset: true }).default("2025-08-12T12:59:35.165Z").transform((v2) => new Date(v2))
|
|
54186
54347
|
}).transform((v2) => {
|
|
54187
54348
|
return remap(v2, {
|
|
54188
54349
|
_id: "id",
|
|
@@ -54202,7 +54363,7 @@ var init_listdatasets = __esm(() => {
|
|
|
54202
54363
|
updatedById: stringType().optional(),
|
|
54203
54364
|
metadata: lazyType(() => ListDatasetsMetadata$outboundSchema),
|
|
54204
54365
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
54205
|
-
updated: dateType().default(() => new Date("2025-08-
|
|
54366
|
+
updated: dateType().default(() => new Date("2025-08-12T12:59:35.165Z")).transform((v2) => v2.toISOString())
|
|
54206
54367
|
}).transform((v2) => {
|
|
54207
54368
|
return remap(v2, {
|
|
54208
54369
|
id: "_id",
|
|
@@ -54307,7 +54468,7 @@ var init_listdatasources = __esm(() => {
|
|
|
54307
54468
|
ListDatasourcesStatus$.outboundSchema = ListDatasourcesStatus$outboundSchema;
|
|
54308
54469
|
})(ListDatasourcesStatus$ ||= {});
|
|
54309
54470
|
ListDatasourcesData$inboundSchema = objectType({
|
|
54310
|
-
_id: stringType().default("
|
|
54471
|
+
_id: stringType().default("01K2F5TZF8D2QTKBHNX66S377Q"),
|
|
54311
54472
|
display_name: stringType(),
|
|
54312
54473
|
description: stringType().optional(),
|
|
54313
54474
|
status: ListDatasourcesStatus$inboundSchema,
|
|
@@ -54330,7 +54491,7 @@ var init_listdatasources = __esm(() => {
|
|
|
54330
54491
|
});
|
|
54331
54492
|
});
|
|
54332
54493
|
ListDatasourcesData$outboundSchema = objectType({
|
|
54333
|
-
id: stringType().default("
|
|
54494
|
+
id: stringType().default("01K2F5TZF8D2QTKBHNX66S377Q"),
|
|
54334
54495
|
displayName: stringType(),
|
|
54335
54496
|
description: stringType().optional(),
|
|
54336
54497
|
status: ListDatasourcesStatus$outboundSchema,
|
|
@@ -54653,7 +54814,7 @@ var init_listmodels = __esm(() => {
|
|
|
54653
54814
|
});
|
|
54654
54815
|
|
|
54655
54816
|
// src/models/operations/listpromptversions.ts
|
|
54656
|
-
var ListPromptVersionsObject, ListPromptVersionsModelType, ListPromptVersionsFormat, ListPromptVersionsResponseFormatPromptsType, ListPromptVersionsResponseFormatType, ListPromptVersionsPhotoRealVersion, ListPromptVersionsEncodingFormat, ListPromptVersionsReasoningEffort, ListPromptVersionsVerbosity, ListPromptVersionsProvider, ListPromptVersionsRole, ListPromptVersions2PromptsResponseType, ListPromptVersions2PromptsType, ListPromptVersions2Type, ListPromptVersionsType, ListPromptVersionsUseCases, ListPromptVersionsLanguage, ListPromptVersionsRequest$inboundSchema, ListPromptVersionsRequest$outboundSchema, ListPromptVersionsRequest$, ListPromptVersionsObject$inboundSchema, ListPromptVersionsObject$outboundSchema, ListPromptVersionsObject$, ListPromptVersionsModelType$inboundSchema, ListPromptVersionsModelType$outboundSchema, ListPromptVersionsModelType$, ListPromptVersionsFormat$inboundSchema, ListPromptVersionsFormat$outboundSchema, ListPromptVersionsFormat$, 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$;
|
|
54817
|
+
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$;
|
|
54657
54818
|
var init_listpromptversions = __esm(() => {
|
|
54658
54819
|
init_esm();
|
|
54659
54820
|
init_primitives();
|
|
@@ -54677,6 +54838,9 @@ var init_listpromptversions = __esm(() => {
|
|
|
54677
54838
|
Text: "text",
|
|
54678
54839
|
JsonObject: "json_object"
|
|
54679
54840
|
};
|
|
54841
|
+
ListPromptVersionsResponseFormatPromptsResponseType = {
|
|
54842
|
+
Text: "text"
|
|
54843
|
+
};
|
|
54680
54844
|
ListPromptVersionsResponseFormatPromptsType = {
|
|
54681
54845
|
JsonObject: "json_object"
|
|
54682
54846
|
};
|
|
@@ -54824,6 +54988,22 @@ var init_listpromptversions = __esm(() => {
|
|
|
54824
54988
|
ListPromptVersionsFormat$.inboundSchema = ListPromptVersionsFormat$inboundSchema;
|
|
54825
54989
|
ListPromptVersionsFormat$.outboundSchema = ListPromptVersionsFormat$outboundSchema;
|
|
54826
54990
|
})(ListPromptVersionsFormat$ ||= {});
|
|
54991
|
+
ListPromptVersionsResponseFormatPromptsResponseType$inboundSchema = nativeEnumType(ListPromptVersionsResponseFormatPromptsResponseType);
|
|
54992
|
+
ListPromptVersionsResponseFormatPromptsResponseType$outboundSchema = ListPromptVersionsResponseFormatPromptsResponseType$inboundSchema;
|
|
54993
|
+
((ListPromptVersionsResponseFormatPromptsResponseType$) => {
|
|
54994
|
+
ListPromptVersionsResponseFormatPromptsResponseType$.inboundSchema = ListPromptVersionsResponseFormatPromptsResponseType$inboundSchema;
|
|
54995
|
+
ListPromptVersionsResponseFormatPromptsResponseType$.outboundSchema = ListPromptVersionsResponseFormatPromptsResponseType$outboundSchema;
|
|
54996
|
+
})(ListPromptVersionsResponseFormatPromptsResponseType$ ||= {});
|
|
54997
|
+
ListPromptVersionsResponseFormat3$inboundSchema = objectType({
|
|
54998
|
+
type: ListPromptVersionsResponseFormatPromptsResponseType$inboundSchema
|
|
54999
|
+
});
|
|
55000
|
+
ListPromptVersionsResponseFormat3$outboundSchema = objectType({
|
|
55001
|
+
type: ListPromptVersionsResponseFormatPromptsResponseType$outboundSchema
|
|
55002
|
+
});
|
|
55003
|
+
((ListPromptVersionsResponseFormat3$) => {
|
|
55004
|
+
ListPromptVersionsResponseFormat3$.inboundSchema = ListPromptVersionsResponseFormat3$inboundSchema;
|
|
55005
|
+
ListPromptVersionsResponseFormat3$.outboundSchema = ListPromptVersionsResponseFormat3$outboundSchema;
|
|
55006
|
+
})(ListPromptVersionsResponseFormat3$ ||= {});
|
|
54827
55007
|
ListPromptVersionsResponseFormatPromptsType$inboundSchema = nativeEnumType(ListPromptVersionsResponseFormatPromptsType);
|
|
54828
55008
|
ListPromptVersionsResponseFormatPromptsType$outboundSchema = ListPromptVersionsResponseFormatPromptsType$inboundSchema;
|
|
54829
55009
|
((ListPromptVersionsResponseFormatPromptsType$) => {
|
|
@@ -54882,11 +55062,13 @@ var init_listpromptversions = __esm(() => {
|
|
|
54882
55062
|
})(ListPromptVersionsResponseFormat1$ ||= {});
|
|
54883
55063
|
ListPromptVersionsResponseFormat$inboundSchema = unionType([
|
|
54884
55064
|
lazyType(() => ListPromptVersionsResponseFormat1$inboundSchema),
|
|
54885
|
-
lazyType(() => ListPromptVersionsResponseFormat2$inboundSchema)
|
|
55065
|
+
lazyType(() => ListPromptVersionsResponseFormat2$inboundSchema),
|
|
55066
|
+
lazyType(() => ListPromptVersionsResponseFormat3$inboundSchema)
|
|
54886
55067
|
]);
|
|
54887
55068
|
ListPromptVersionsResponseFormat$outboundSchema = unionType([
|
|
54888
55069
|
lazyType(() => ListPromptVersionsResponseFormat1$outboundSchema),
|
|
54889
|
-
lazyType(() => ListPromptVersionsResponseFormat2$outboundSchema)
|
|
55070
|
+
lazyType(() => ListPromptVersionsResponseFormat2$outboundSchema),
|
|
55071
|
+
lazyType(() => ListPromptVersionsResponseFormat3$outboundSchema)
|
|
54890
55072
|
]);
|
|
54891
55073
|
((ListPromptVersionsResponseFormat$) => {
|
|
54892
55074
|
ListPromptVersionsResponseFormat$.inboundSchema = ListPromptVersionsResponseFormat$inboundSchema;
|
|
@@ -54931,7 +55113,8 @@ var init_listpromptversions = __esm(() => {
|
|
|
54931
55113
|
style: stringType().optional(),
|
|
54932
55114
|
responseFormat: nullableType(unionType([
|
|
54933
55115
|
lazyType(() => ListPromptVersionsResponseFormat1$inboundSchema),
|
|
54934
|
-
lazyType(() => ListPromptVersionsResponseFormat2$inboundSchema)
|
|
55116
|
+
lazyType(() => ListPromptVersionsResponseFormat2$inboundSchema),
|
|
55117
|
+
lazyType(() => ListPromptVersionsResponseFormat3$inboundSchema)
|
|
54935
55118
|
])).optional(),
|
|
54936
55119
|
photoRealVersion: ListPromptVersionsPhotoRealVersion$inboundSchema.optional(),
|
|
54937
55120
|
encoding_format: ListPromptVersionsEncodingFormat$inboundSchema.optional(),
|
|
@@ -54958,7 +55141,8 @@ var init_listpromptversions = __esm(() => {
|
|
|
54958
55141
|
style: stringType().optional(),
|
|
54959
55142
|
responseFormat: nullableType(unionType([
|
|
54960
55143
|
lazyType(() => ListPromptVersionsResponseFormat1$outboundSchema),
|
|
54961
|
-
lazyType(() => ListPromptVersionsResponseFormat2$outboundSchema)
|
|
55144
|
+
lazyType(() => ListPromptVersionsResponseFormat2$outboundSchema),
|
|
55145
|
+
lazyType(() => ListPromptVersionsResponseFormat3$outboundSchema)
|
|
54962
55146
|
])).optional(),
|
|
54963
55147
|
photoRealVersion: ListPromptVersionsPhotoRealVersion$outboundSchema.optional(),
|
|
54964
55148
|
encodingFormat: ListPromptVersionsEncodingFormat$outboundSchema.optional(),
|
|
@@ -55854,7 +56038,7 @@ var init_retrievecontact = __esm(() => {
|
|
|
55854
56038
|
tags: arrayType(stringType()).optional(),
|
|
55855
56039
|
metadata: recordType(anyType()).optional(),
|
|
55856
56040
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
55857
|
-
updated: stringType().datetime({ offset: true }).default("2025-08-
|
|
56041
|
+
updated: stringType().datetime({ offset: true }).default("2025-08-12T12:59:35.165Z").transform((v2) => new Date(v2))
|
|
55858
56042
|
}).transform((v2) => {
|
|
55859
56043
|
return remap(v2, {
|
|
55860
56044
|
_id: "id",
|
|
@@ -55872,7 +56056,7 @@ var init_retrievecontact = __esm(() => {
|
|
|
55872
56056
|
tags: arrayType(stringType()).optional(),
|
|
55873
56057
|
metadata: recordType(anyType()).optional(),
|
|
55874
56058
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
55875
|
-
updated: dateType().default(() => new Date("2025-08-
|
|
56059
|
+
updated: dateType().default(() => new Date("2025-08-12T12:59:35.165Z")).transform((v2) => v2.toISOString())
|
|
55876
56060
|
}).transform((v2) => {
|
|
55877
56061
|
return remap(v2, {
|
|
55878
56062
|
id: "_id",
|
|
@@ -56449,7 +56633,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
56449
56633
|
created_by_id: stringType().optional(),
|
|
56450
56634
|
updated_by_id: stringType().optional(),
|
|
56451
56635
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
56452
|
-
updated: stringType().datetime({ offset: true }).default("2025-08-
|
|
56636
|
+
updated: stringType().datetime({ offset: true }).default("2025-08-12T12:59:35.165Z").transform((v2) => new Date(v2))
|
|
56453
56637
|
}).transform((v2) => {
|
|
56454
56638
|
return remap(v2, {
|
|
56455
56639
|
_id: "id",
|
|
@@ -56476,7 +56660,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
56476
56660
|
createdById: stringType().optional(),
|
|
56477
56661
|
updatedById: stringType().optional(),
|
|
56478
56662
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
56479
|
-
updated: dateType().default(() => new Date("2025-08-
|
|
56663
|
+
updated: dateType().default(() => new Date("2025-08-12T12:59:35.165Z")).transform((v2) => v2.toISOString())
|
|
56480
56664
|
}).transform((v2) => {
|
|
56481
56665
|
return remap(v2, {
|
|
56482
56666
|
id: "_id",
|
|
@@ -56547,7 +56731,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
56547
56731
|
updated_by_id: stringType().optional(),
|
|
56548
56732
|
metadata: lazyType(() => RetrieveDatasetMetadata$inboundSchema),
|
|
56549
56733
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
56550
|
-
updated: stringType().datetime({ offset: true }).default("2025-08-
|
|
56734
|
+
updated: stringType().datetime({ offset: true }).default("2025-08-12T12:59:35.165Z").transform((v2) => new Date(v2))
|
|
56551
56735
|
}).transform((v2) => {
|
|
56552
56736
|
return remap(v2, {
|
|
56553
56737
|
_id: "id",
|
|
@@ -56567,7 +56751,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
56567
56751
|
updatedById: stringType().optional(),
|
|
56568
56752
|
metadata: lazyType(() => RetrieveDatasetMetadata$outboundSchema),
|
|
56569
56753
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
56570
|
-
updated: dateType().default(() => new Date("2025-08-
|
|
56754
|
+
updated: dateType().default(() => new Date("2025-08-12T12:59:35.165Z")).transform((v2) => v2.toISOString())
|
|
56571
56755
|
}).transform((v2) => {
|
|
56572
56756
|
return remap(v2, {
|
|
56573
56757
|
id: "_id",
|
|
@@ -56625,7 +56809,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
56625
56809
|
RetrieveDatasourceStatus$.outboundSchema = RetrieveDatasourceStatus$outboundSchema;
|
|
56626
56810
|
})(RetrieveDatasourceStatus$ ||= {});
|
|
56627
56811
|
RetrieveDatasourceResponseBody$inboundSchema = objectType({
|
|
56628
|
-
_id: stringType().default("
|
|
56812
|
+
_id: stringType().default("01K2F5TZF9EE89FWK6A4QRB3SB"),
|
|
56629
56813
|
display_name: stringType(),
|
|
56630
56814
|
description: stringType().optional(),
|
|
56631
56815
|
status: RetrieveDatasourceStatus$inboundSchema,
|
|
@@ -56648,7 +56832,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
56648
56832
|
});
|
|
56649
56833
|
});
|
|
56650
56834
|
RetrieveDatasourceResponseBody$outboundSchema = objectType({
|
|
56651
|
-
id: stringType().default("
|
|
56835
|
+
id: stringType().default("01K2F5TZF9EE89FWK6A4QRB3SB"),
|
|
56652
56836
|
displayName: stringType(),
|
|
56653
56837
|
description: stringType().optional(),
|
|
56654
56838
|
status: RetrieveDatasourceStatus$outboundSchema,
|
|
@@ -57544,7 +57728,7 @@ var init_updatecontact = __esm(() => {
|
|
|
57544
57728
|
tags: arrayType(stringType()).optional(),
|
|
57545
57729
|
metadata: recordType(anyType()).optional(),
|
|
57546
57730
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
57547
|
-
updated: stringType().datetime({ offset: true }).default("2025-08-
|
|
57731
|
+
updated: stringType().datetime({ offset: true }).default("2025-08-12T12:59:35.165Z").transform((v2) => new Date(v2))
|
|
57548
57732
|
}).transform((v2) => {
|
|
57549
57733
|
return remap(v2, {
|
|
57550
57734
|
_id: "id",
|
|
@@ -57562,7 +57746,7 @@ var init_updatecontact = __esm(() => {
|
|
|
57562
57746
|
tags: arrayType(stringType()).optional(),
|
|
57563
57747
|
metadata: recordType(anyType()).optional(),
|
|
57564
57748
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
57565
|
-
updated: dateType().default(() => new Date("2025-08-
|
|
57749
|
+
updated: dateType().default(() => new Date("2025-08-12T12:59:35.165Z")).transform((v2) => v2.toISOString())
|
|
57566
57750
|
}).transform((v2) => {
|
|
57567
57751
|
return remap(v2, {
|
|
57568
57752
|
id: "_id",
|
|
@@ -58696,7 +58880,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
58696
58880
|
created_by_id: stringType().optional(),
|
|
58697
58881
|
updated_by_id: stringType().optional(),
|
|
58698
58882
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
58699
|
-
updated: stringType().datetime({ offset: true }).default("2025-08-
|
|
58883
|
+
updated: stringType().datetime({ offset: true }).default("2025-08-12T12:59:35.165Z").transform((v2) => new Date(v2))
|
|
58700
58884
|
}).transform((v2) => {
|
|
58701
58885
|
return remap(v2, {
|
|
58702
58886
|
_id: "id",
|
|
@@ -58723,7 +58907,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
58723
58907
|
createdById: stringType().optional(),
|
|
58724
58908
|
updatedById: stringType().optional(),
|
|
58725
58909
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
58726
|
-
updated: dateType().default(() => new Date("2025-08-
|
|
58910
|
+
updated: dateType().default(() => new Date("2025-08-12T12:59:35.165Z")).transform((v2) => v2.toISOString())
|
|
58727
58911
|
}).transform((v2) => {
|
|
58728
58912
|
return remap(v2, {
|
|
58729
58913
|
id: "_id",
|
|
@@ -58824,7 +59008,7 @@ var init_updatedataset = __esm(() => {
|
|
|
58824
59008
|
parent_id: stringType().optional(),
|
|
58825
59009
|
version: stringType().optional(),
|
|
58826
59010
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
58827
|
-
updated: stringType().datetime({ offset: true }).default("2025-08-
|
|
59011
|
+
updated: stringType().datetime({ offset: true }).default("2025-08-12T12:59:35.165Z").transform((v2) => new Date(v2))
|
|
58828
59012
|
}).transform((v2) => {
|
|
58829
59013
|
return remap(v2, {
|
|
58830
59014
|
_id: "id",
|
|
@@ -58847,7 +59031,7 @@ var init_updatedataset = __esm(() => {
|
|
|
58847
59031
|
parentId: stringType().optional(),
|
|
58848
59032
|
version: stringType().optional(),
|
|
58849
59033
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
58850
|
-
updated: dateType().default(() => new Date("2025-08-
|
|
59034
|
+
updated: dateType().default(() => new Date("2025-08-12T12:59:35.165Z")).transform((v2) => v2.toISOString())
|
|
58851
59035
|
}).transform((v2) => {
|
|
58852
59036
|
return remap(v2, {
|
|
58853
59037
|
id: "_id",
|
|
@@ -58928,7 +59112,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
58928
59112
|
UpdateDatasourceStatus$.outboundSchema = UpdateDatasourceStatus$outboundSchema;
|
|
58929
59113
|
})(UpdateDatasourceStatus$ ||= {});
|
|
58930
59114
|
UpdateDatasourceResponseBody$inboundSchema = objectType({
|
|
58931
|
-
_id: stringType().default("
|
|
59115
|
+
_id: stringType().default("01K2F5TZFA15V7HGQVNJHHSYCE"),
|
|
58932
59116
|
display_name: stringType(),
|
|
58933
59117
|
description: stringType().optional(),
|
|
58934
59118
|
status: UpdateDatasourceStatus$inboundSchema,
|
|
@@ -58951,7 +59135,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
58951
59135
|
});
|
|
58952
59136
|
});
|
|
58953
59137
|
UpdateDatasourceResponseBody$outboundSchema = objectType({
|
|
58954
|
-
id: stringType().default("
|
|
59138
|
+
id: stringType().default("01K2F5TZFA15V7HGQVNJHHSYCE"),
|
|
58955
59139
|
displayName: stringType(),
|
|
58956
59140
|
description: stringType().optional(),
|
|
58957
59141
|
status: UpdateDatasourceStatus$outboundSchema,
|
|
@@ -59657,8 +59841,8 @@ var init_updateeval = __esm(() => {
|
|
|
59657
59841
|
UpdateEvalResponseBodyPython$inboundSchema = objectType({
|
|
59658
59842
|
_id: stringType(),
|
|
59659
59843
|
description: stringType(),
|
|
59660
|
-
created: stringType().default("2025-08-
|
|
59661
|
-
updated: stringType().default("2025-08-
|
|
59844
|
+
created: stringType().default("2025-08-12T12:59:37.688Z"),
|
|
59845
|
+
updated: stringType().default("2025-08-12T12:59:37.688Z"),
|
|
59662
59846
|
guardrail_config: unionType([
|
|
59663
59847
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
59664
59848
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
|
|
@@ -59675,8 +59859,8 @@ var init_updateeval = __esm(() => {
|
|
|
59675
59859
|
UpdateEvalResponseBodyPython$outboundSchema = objectType({
|
|
59676
59860
|
id: stringType(),
|
|
59677
59861
|
description: stringType(),
|
|
59678
|
-
created: stringType().default("2025-08-
|
|
59679
|
-
updated: stringType().default("2025-08-
|
|
59862
|
+
created: stringType().default("2025-08-12T12:59:37.688Z"),
|
|
59863
|
+
updated: stringType().default("2025-08-12T12:59:37.688Z"),
|
|
59680
59864
|
guardrailConfig: unionType([
|
|
59681
59865
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
59682
59866
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
|
|
@@ -59769,8 +59953,8 @@ var init_updateeval = __esm(() => {
|
|
|
59769
59953
|
UpdateEvalResponseBodyHTTP$inboundSchema = objectType({
|
|
59770
59954
|
_id: stringType(),
|
|
59771
59955
|
description: stringType(),
|
|
59772
|
-
created: stringType().default("2025-08-
|
|
59773
|
-
updated: stringType().default("2025-08-
|
|
59956
|
+
created: stringType().default("2025-08-12T12:59:37.688Z"),
|
|
59957
|
+
updated: stringType().default("2025-08-12T12:59:37.688Z"),
|
|
59774
59958
|
guardrail_config: unionType([
|
|
59775
59959
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
59776
59960
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
|
|
@@ -59790,8 +59974,8 @@ var init_updateeval = __esm(() => {
|
|
|
59790
59974
|
UpdateEvalResponseBodyHTTP$outboundSchema = objectType({
|
|
59791
59975
|
id: stringType(),
|
|
59792
59976
|
description: stringType(),
|
|
59793
|
-
created: stringType().default("2025-08-
|
|
59794
|
-
updated: stringType().default("2025-08-
|
|
59977
|
+
created: stringType().default("2025-08-12T12:59:37.688Z"),
|
|
59978
|
+
updated: stringType().default("2025-08-12T12:59:37.688Z"),
|
|
59795
59979
|
guardrailConfig: unionType([
|
|
59796
59980
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
59797
59981
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
|
|
@@ -59881,8 +60065,8 @@ var init_updateeval = __esm(() => {
|
|
|
59881
60065
|
UpdateEvalResponseBodyJSON$inboundSchema = objectType({
|
|
59882
60066
|
_id: stringType(),
|
|
59883
60067
|
description: stringType(),
|
|
59884
|
-
created: stringType().default("2025-08-
|
|
59885
|
-
updated: stringType().default("2025-08-
|
|
60068
|
+
created: stringType().default("2025-08-12T12:59:37.688Z"),
|
|
60069
|
+
updated: stringType().default("2025-08-12T12:59:37.688Z"),
|
|
59886
60070
|
guardrail_config: unionType([
|
|
59887
60071
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
59888
60072
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema)
|
|
@@ -59899,8 +60083,8 @@ var init_updateeval = __esm(() => {
|
|
|
59899
60083
|
UpdateEvalResponseBodyJSON$outboundSchema = objectType({
|
|
59900
60084
|
id: stringType(),
|
|
59901
60085
|
description: stringType(),
|
|
59902
|
-
created: stringType().default("2025-08-
|
|
59903
|
-
updated: stringType().default("2025-08-
|
|
60086
|
+
created: stringType().default("2025-08-12T12:59:37.688Z"),
|
|
60087
|
+
updated: stringType().default("2025-08-12T12:59:37.688Z"),
|
|
59904
60088
|
guardrailConfig: unionType([
|
|
59905
60089
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
59906
60090
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema)
|
|
@@ -59987,8 +60171,8 @@ var init_updateeval = __esm(() => {
|
|
|
59987
60171
|
UpdateEvalResponseBodyLLM$inboundSchema = objectType({
|
|
59988
60172
|
_id: stringType(),
|
|
59989
60173
|
description: stringType(),
|
|
59990
|
-
created: stringType().default("2025-08-
|
|
59991
|
-
updated: stringType().default("2025-08-
|
|
60174
|
+
created: stringType().default("2025-08-12T12:59:37.688Z"),
|
|
60175
|
+
updated: stringType().default("2025-08-12T12:59:37.688Z"),
|
|
59992
60176
|
guardrail_config: unionType([
|
|
59993
60177
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
59994
60178
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema)
|
|
@@ -60006,8 +60190,8 @@ var init_updateeval = __esm(() => {
|
|
|
60006
60190
|
UpdateEvalResponseBodyLLM$outboundSchema = objectType({
|
|
60007
60191
|
id: stringType(),
|
|
60008
60192
|
description: stringType(),
|
|
60009
|
-
created: stringType().default("2025-08-
|
|
60010
|
-
updated: stringType().default("2025-08-
|
|
60193
|
+
created: stringType().default("2025-08-12T12:59:37.688Z"),
|
|
60194
|
+
updated: stringType().default("2025-08-12T12:59:37.688Z"),
|
|
60011
60195
|
guardrailConfig: unionType([
|
|
60012
60196
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
60013
60197
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema)
|
|
@@ -60296,7 +60480,7 @@ var init_updateknowledge = __esm(() => {
|
|
|
60296
60480
|
});
|
|
60297
60481
|
|
|
60298
60482
|
// src/models/operations/updateprompt.ts
|
|
60299
|
-
var UpdatePromptFormat, UpdatePromptResponseFormatPromptsType, UpdatePromptResponseFormatType, UpdatePromptPhotoRealVersion, UpdatePromptEncodingFormat, UpdatePromptReasoningEffort, UpdatePromptVerbosity, UpdatePromptProvider, UpdatePromptRole, UpdatePrompt2PromptsRequestType, UpdatePrompt2PromptsType, UpdatePrompt2Type, UpdatePromptType, UpdatePromptUseCases, UpdatePromptLanguage, UpdatePromptPromptsType, UpdatePromptModelType, UpdatePromptPromptsFormat, UpdatePromptResponseFormatPromptsResponse200Type, UpdatePromptResponseFormatPromptsResponseType, UpdatePromptPromptsPhotoRealVersion, UpdatePromptPromptsEncodingFormat, UpdatePromptPromptsReasoningEffort, UpdatePromptPromptsVerbosity, UpdatePromptPromptsProvider, UpdatePromptPromptsRole, UpdatePrompt2PromptsResponse200ApplicationJSONType, UpdatePrompt2PromptsResponse200Type, UpdatePrompt2PromptsResponseType, UpdatePromptPromptsResponseType, UpdatePromptPromptsUseCases, UpdatePromptPromptsLanguage, UpdatePromptFormat$inboundSchema, UpdatePromptFormat$outboundSchema, UpdatePromptFormat$, 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$, 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$;
|
|
60483
|
+
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$;
|
|
60300
60484
|
var init_updateprompt = __esm(() => {
|
|
60301
60485
|
init_esm();
|
|
60302
60486
|
init_primitives();
|
|
@@ -60306,6 +60490,9 @@ var init_updateprompt = __esm(() => {
|
|
|
60306
60490
|
Text: "text",
|
|
60307
60491
|
JsonObject: "json_object"
|
|
60308
60492
|
};
|
|
60493
|
+
UpdatePromptResponseFormatPromptsRequestType = {
|
|
60494
|
+
Text: "text"
|
|
60495
|
+
};
|
|
60309
60496
|
UpdatePromptResponseFormatPromptsType = {
|
|
60310
60497
|
JsonObject: "json_object"
|
|
60311
60498
|
};
|
|
@@ -60427,6 +60614,9 @@ var init_updateprompt = __esm(() => {
|
|
|
60427
60614
|
Text: "text",
|
|
60428
60615
|
JsonObject: "json_object"
|
|
60429
60616
|
};
|
|
60617
|
+
UpdatePromptResponseFormatPromptsResponse200ApplicationJSONType = {
|
|
60618
|
+
Text: "text"
|
|
60619
|
+
};
|
|
60430
60620
|
UpdatePromptResponseFormatPromptsResponse200Type = {
|
|
60431
60621
|
JsonObject: "json_object"
|
|
60432
60622
|
};
|
|
@@ -60534,6 +60724,22 @@ var init_updateprompt = __esm(() => {
|
|
|
60534
60724
|
UpdatePromptFormat$.inboundSchema = UpdatePromptFormat$inboundSchema;
|
|
60535
60725
|
UpdatePromptFormat$.outboundSchema = UpdatePromptFormat$outboundSchema;
|
|
60536
60726
|
})(UpdatePromptFormat$ ||= {});
|
|
60727
|
+
UpdatePromptResponseFormatPromptsRequestType$inboundSchema = nativeEnumType(UpdatePromptResponseFormatPromptsRequestType);
|
|
60728
|
+
UpdatePromptResponseFormatPromptsRequestType$outboundSchema = UpdatePromptResponseFormatPromptsRequestType$inboundSchema;
|
|
60729
|
+
((UpdatePromptResponseFormatPromptsRequestType$) => {
|
|
60730
|
+
UpdatePromptResponseFormatPromptsRequestType$.inboundSchema = UpdatePromptResponseFormatPromptsRequestType$inboundSchema;
|
|
60731
|
+
UpdatePromptResponseFormatPromptsRequestType$.outboundSchema = UpdatePromptResponseFormatPromptsRequestType$outboundSchema;
|
|
60732
|
+
})(UpdatePromptResponseFormatPromptsRequestType$ ||= {});
|
|
60733
|
+
UpdatePromptResponseFormat3$inboundSchema = objectType({
|
|
60734
|
+
type: UpdatePromptResponseFormatPromptsRequestType$inboundSchema
|
|
60735
|
+
});
|
|
60736
|
+
UpdatePromptResponseFormat3$outboundSchema = objectType({
|
|
60737
|
+
type: UpdatePromptResponseFormatPromptsRequestType$outboundSchema
|
|
60738
|
+
});
|
|
60739
|
+
((UpdatePromptResponseFormat3$) => {
|
|
60740
|
+
UpdatePromptResponseFormat3$.inboundSchema = UpdatePromptResponseFormat3$inboundSchema;
|
|
60741
|
+
UpdatePromptResponseFormat3$.outboundSchema = UpdatePromptResponseFormat3$outboundSchema;
|
|
60742
|
+
})(UpdatePromptResponseFormat3$ ||= {});
|
|
60537
60743
|
UpdatePromptResponseFormatPromptsType$inboundSchema = nativeEnumType(UpdatePromptResponseFormatPromptsType);
|
|
60538
60744
|
UpdatePromptResponseFormatPromptsType$outboundSchema = UpdatePromptResponseFormatPromptsType$inboundSchema;
|
|
60539
60745
|
((UpdatePromptResponseFormatPromptsType$) => {
|
|
@@ -60592,11 +60798,13 @@ var init_updateprompt = __esm(() => {
|
|
|
60592
60798
|
})(UpdatePromptResponseFormat1$ ||= {});
|
|
60593
60799
|
UpdatePromptResponseFormat$inboundSchema = unionType([
|
|
60594
60800
|
lazyType(() => UpdatePromptResponseFormat1$inboundSchema),
|
|
60595
|
-
lazyType(() => UpdatePromptResponseFormat2$inboundSchema)
|
|
60801
|
+
lazyType(() => UpdatePromptResponseFormat2$inboundSchema),
|
|
60802
|
+
lazyType(() => UpdatePromptResponseFormat3$inboundSchema)
|
|
60596
60803
|
]);
|
|
60597
60804
|
UpdatePromptResponseFormat$outboundSchema = unionType([
|
|
60598
60805
|
lazyType(() => UpdatePromptResponseFormat1$outboundSchema),
|
|
60599
|
-
lazyType(() => UpdatePromptResponseFormat2$outboundSchema)
|
|
60806
|
+
lazyType(() => UpdatePromptResponseFormat2$outboundSchema),
|
|
60807
|
+
lazyType(() => UpdatePromptResponseFormat3$outboundSchema)
|
|
60600
60808
|
]);
|
|
60601
60809
|
((UpdatePromptResponseFormat$) => {
|
|
60602
60810
|
UpdatePromptResponseFormat$.inboundSchema = UpdatePromptResponseFormat$inboundSchema;
|
|
@@ -60641,7 +60849,8 @@ var init_updateprompt = __esm(() => {
|
|
|
60641
60849
|
style: stringType().optional(),
|
|
60642
60850
|
responseFormat: nullableType(unionType([
|
|
60643
60851
|
lazyType(() => UpdatePromptResponseFormat1$inboundSchema),
|
|
60644
|
-
lazyType(() => UpdatePromptResponseFormat2$inboundSchema)
|
|
60852
|
+
lazyType(() => UpdatePromptResponseFormat2$inboundSchema),
|
|
60853
|
+
lazyType(() => UpdatePromptResponseFormat3$inboundSchema)
|
|
60645
60854
|
])).optional(),
|
|
60646
60855
|
photoRealVersion: UpdatePromptPhotoRealVersion$inboundSchema.optional(),
|
|
60647
60856
|
encoding_format: UpdatePromptEncodingFormat$inboundSchema.optional(),
|
|
@@ -60668,7 +60877,8 @@ var init_updateprompt = __esm(() => {
|
|
|
60668
60877
|
style: stringType().optional(),
|
|
60669
60878
|
responseFormat: nullableType(unionType([
|
|
60670
60879
|
lazyType(() => UpdatePromptResponseFormat1$outboundSchema),
|
|
60671
|
-
lazyType(() => UpdatePromptResponseFormat2$outboundSchema)
|
|
60880
|
+
lazyType(() => UpdatePromptResponseFormat2$outboundSchema),
|
|
60881
|
+
lazyType(() => UpdatePromptResponseFormat3$outboundSchema)
|
|
60672
60882
|
])).optional(),
|
|
60673
60883
|
photoRealVersion: UpdatePromptPhotoRealVersion$outboundSchema.optional(),
|
|
60674
60884
|
encodingFormat: UpdatePromptEncodingFormat$outboundSchema.optional(),
|
|
@@ -61050,6 +61260,22 @@ var init_updateprompt = __esm(() => {
|
|
|
61050
61260
|
UpdatePromptPromptsFormat$.inboundSchema = UpdatePromptPromptsFormat$inboundSchema;
|
|
61051
61261
|
UpdatePromptPromptsFormat$.outboundSchema = UpdatePromptPromptsFormat$outboundSchema;
|
|
61052
61262
|
})(UpdatePromptPromptsFormat$ ||= {});
|
|
61263
|
+
UpdatePromptResponseFormatPromptsResponse200ApplicationJSONType$inboundSchema = nativeEnumType(UpdatePromptResponseFormatPromptsResponse200ApplicationJSONType);
|
|
61264
|
+
UpdatePromptResponseFormatPromptsResponse200ApplicationJSONType$outboundSchema = UpdatePromptResponseFormatPromptsResponse200ApplicationJSONType$inboundSchema;
|
|
61265
|
+
((UpdatePromptResponseFormatPromptsResponse200ApplicationJSONType$) => {
|
|
61266
|
+
UpdatePromptResponseFormatPromptsResponse200ApplicationJSONType$.inboundSchema = UpdatePromptResponseFormatPromptsResponse200ApplicationJSONType$inboundSchema;
|
|
61267
|
+
UpdatePromptResponseFormatPromptsResponse200ApplicationJSONType$.outboundSchema = UpdatePromptResponseFormatPromptsResponse200ApplicationJSONType$outboundSchema;
|
|
61268
|
+
})(UpdatePromptResponseFormatPromptsResponse200ApplicationJSONType$ ||= {});
|
|
61269
|
+
UpdatePromptResponseFormatPrompts3$inboundSchema = objectType({
|
|
61270
|
+
type: UpdatePromptResponseFormatPromptsResponse200ApplicationJSONType$inboundSchema
|
|
61271
|
+
});
|
|
61272
|
+
UpdatePromptResponseFormatPrompts3$outboundSchema = objectType({
|
|
61273
|
+
type: UpdatePromptResponseFormatPromptsResponse200ApplicationJSONType$outboundSchema
|
|
61274
|
+
});
|
|
61275
|
+
((UpdatePromptResponseFormatPrompts3$) => {
|
|
61276
|
+
UpdatePromptResponseFormatPrompts3$.inboundSchema = UpdatePromptResponseFormatPrompts3$inboundSchema;
|
|
61277
|
+
UpdatePromptResponseFormatPrompts3$.outboundSchema = UpdatePromptResponseFormatPrompts3$outboundSchema;
|
|
61278
|
+
})(UpdatePromptResponseFormatPrompts3$ ||= {});
|
|
61053
61279
|
UpdatePromptResponseFormatPromptsResponse200Type$inboundSchema = nativeEnumType(UpdatePromptResponseFormatPromptsResponse200Type);
|
|
61054
61280
|
UpdatePromptResponseFormatPromptsResponse200Type$outboundSchema = UpdatePromptResponseFormatPromptsResponse200Type$inboundSchema;
|
|
61055
61281
|
((UpdatePromptResponseFormatPromptsResponse200Type$) => {
|
|
@@ -61108,11 +61334,13 @@ var init_updateprompt = __esm(() => {
|
|
|
61108
61334
|
})(UpdatePromptResponseFormatPrompts1$ ||= {});
|
|
61109
61335
|
UpdatePromptPromptsResponseFormat$inboundSchema = unionType([
|
|
61110
61336
|
lazyType(() => UpdatePromptResponseFormatPrompts1$inboundSchema),
|
|
61111
|
-
lazyType(() => UpdatePromptResponseFormatPrompts2$inboundSchema)
|
|
61337
|
+
lazyType(() => UpdatePromptResponseFormatPrompts2$inboundSchema),
|
|
61338
|
+
lazyType(() => UpdatePromptResponseFormatPrompts3$inboundSchema)
|
|
61112
61339
|
]);
|
|
61113
61340
|
UpdatePromptPromptsResponseFormat$outboundSchema = unionType([
|
|
61114
61341
|
lazyType(() => UpdatePromptResponseFormatPrompts1$outboundSchema),
|
|
61115
|
-
lazyType(() => UpdatePromptResponseFormatPrompts2$outboundSchema)
|
|
61342
|
+
lazyType(() => UpdatePromptResponseFormatPrompts2$outboundSchema),
|
|
61343
|
+
lazyType(() => UpdatePromptResponseFormatPrompts3$outboundSchema)
|
|
61116
61344
|
]);
|
|
61117
61345
|
((UpdatePromptPromptsResponseFormat$) => {
|
|
61118
61346
|
UpdatePromptPromptsResponseFormat$.inboundSchema = UpdatePromptPromptsResponseFormat$inboundSchema;
|
|
@@ -61157,7 +61385,8 @@ var init_updateprompt = __esm(() => {
|
|
|
61157
61385
|
style: stringType().optional(),
|
|
61158
61386
|
responseFormat: nullableType(unionType([
|
|
61159
61387
|
lazyType(() => UpdatePromptResponseFormatPrompts1$inboundSchema),
|
|
61160
|
-
lazyType(() => UpdatePromptResponseFormatPrompts2$inboundSchema)
|
|
61388
|
+
lazyType(() => UpdatePromptResponseFormatPrompts2$inboundSchema),
|
|
61389
|
+
lazyType(() => UpdatePromptResponseFormatPrompts3$inboundSchema)
|
|
61161
61390
|
])).optional(),
|
|
61162
61391
|
photoRealVersion: UpdatePromptPromptsPhotoRealVersion$inboundSchema.optional(),
|
|
61163
61392
|
encoding_format: UpdatePromptPromptsEncodingFormat$inboundSchema.optional(),
|
|
@@ -61184,7 +61413,8 @@ var init_updateprompt = __esm(() => {
|
|
|
61184
61413
|
style: stringType().optional(),
|
|
61185
61414
|
responseFormat: nullableType(unionType([
|
|
61186
61415
|
lazyType(() => UpdatePromptResponseFormatPrompts1$outboundSchema),
|
|
61187
|
-
lazyType(() => UpdatePromptResponseFormatPrompts2$outboundSchema)
|
|
61416
|
+
lazyType(() => UpdatePromptResponseFormatPrompts2$outboundSchema),
|
|
61417
|
+
lazyType(() => UpdatePromptResponseFormatPrompts3$outboundSchema)
|
|
61188
61418
|
])).optional(),
|
|
61189
61419
|
photoRealVersion: UpdatePromptPromptsPhotoRealVersion$outboundSchema.optional(),
|
|
61190
61420
|
encodingFormat: UpdatePromptPromptsEncodingFormat$outboundSchema.optional(),
|
|
@@ -61846,7 +62076,7 @@ var init_contactsCreate2 = __esm(() => {
|
|
|
61846
62076
|
name: "contacts-create",
|
|
61847
62077
|
description: `Create a contact
|
|
61848
62078
|
|
|
61849
|
-
Creates a new contact
|
|
62079
|
+
Creates a new contact with a unique external_id. If a contact with the same external_id already exists, the operation will fail. Use this endpoint to add users from your system to orq.ai for tracking their usage and engagement.`,
|
|
61850
62080
|
args: args2,
|
|
61851
62081
|
tool: async (client, args3, ctx) => {
|
|
61852
62082
|
const [result, apiCall] = await contactsCreate(client, args3.request, { fetchOptions: { signal: ctx.signal } }).$inspect();
|
|
@@ -76194,7 +76424,7 @@ var init_remoteconfigsRetrieve2 = __esm(() => {
|
|
|
76194
76424
|
function createMCPServer(deps) {
|
|
76195
76425
|
const server = new McpServer({
|
|
76196
76426
|
name: "Orq",
|
|
76197
|
-
version: "3.11.0-rc.
|
|
76427
|
+
version: "3.11.0-rc.7"
|
|
76198
76428
|
});
|
|
76199
76429
|
const client = new OrqCore({
|
|
76200
76430
|
apiKey: deps.apiKey,
|
|
@@ -77602,7 +77832,7 @@ var routes = rn({
|
|
|
77602
77832
|
var app = Ve(routes, {
|
|
77603
77833
|
name: "mcp",
|
|
77604
77834
|
versionInfo: {
|
|
77605
|
-
currentVersion: "3.11.0-rc.
|
|
77835
|
+
currentVersion: "3.11.0-rc.7"
|
|
77606
77836
|
}
|
|
77607
77837
|
});
|
|
77608
77838
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -77610,5 +77840,5 @@ export {
|
|
|
77610
77840
|
app
|
|
77611
77841
|
};
|
|
77612
77842
|
|
|
77613
|
-
//# debugId=
|
|
77843
|
+
//# debugId=7788D4D4F154553D64756E2164756E21
|
|
77614
77844
|
//# sourceMappingURL=mcp-server.js.map
|