@orq-ai/node 3.12.0-rc.13 → 3.12.0-rc.16
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 +997 -112
- package/bin/mcp-server.js.map +32 -32
- package/docs/sdks/proxy/README.md +84 -0
- package/examples/package-lock.json +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +2 -2
- package/lib/config.js +2 -2
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/models/operations/createbudget.js +2 -2
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createdataset.js +2 -2
- package/models/operations/createdatasetitem.js +2 -2
- package/models/operations/createdatasource.js +2 -2
- package/models/operations/createeval.js +16 -16
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/getbudget.js +2 -2
- package/models/operations/getevals.js +28 -28
- package/models/operations/listbudgets.js +2 -2
- package/models/operations/listcontacts.js +2 -2
- package/models/operations/listdatasetdatapoints.js +2 -2
- package/models/operations/listdatasets.js +2 -2
- package/models/operations/listdatasources.js +2 -2
- package/models/operations/postv2proxycompletions.d.ts +1899 -0
- package/models/operations/postv2proxycompletions.d.ts.map +1 -1
- package/models/operations/postv2proxycompletions.js +1902 -2
- package/models/operations/postv2proxycompletions.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/updatebudget.js +2 -2
- package/models/operations/updatecontact.js +2 -2
- package/models/operations/updatedatapoint.js +2 -2
- package/models/operations/updatedataset.js +2 -2
- package/models/operations/updatedatasource.js +2 -2
- package/models/operations/updateeval.js +16 -16
- package/package.json +1 -1
- package/src/lib/config.ts +2 -2
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/operations/createbudget.ts +2 -2
- package/src/models/operations/createcontact.ts +2 -2
- package/src/models/operations/createdataset.ts +2 -2
- package/src/models/operations/createdatasetitem.ts +2 -2
- package/src/models/operations/createdatasource.ts +2 -2
- package/src/models/operations/createeval.ts +16 -16
- package/src/models/operations/fileget.ts +2 -2
- package/src/models/operations/filelist.ts +2 -2
- package/src/models/operations/fileupload.ts +2 -2
- package/src/models/operations/getbudget.ts +2 -2
- package/src/models/operations/getevals.ts +28 -28
- package/src/models/operations/listbudgets.ts +2 -2
- package/src/models/operations/listcontacts.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +2 -2
- package/src/models/operations/listdatasets.ts +2 -2
- package/src/models/operations/listdatasources.ts +2 -2
- package/src/models/operations/postv2proxycompletions.ts +4501 -246
- package/src/models/operations/retrievecontact.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +2 -2
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/retrievedatasource.ts +2 -2
- package/src/models/operations/updatebudget.ts +2 -2
- package/src/models/operations/updatecontact.ts +2 -2
- package/src/models/operations/updatedatapoint.ts +2 -2
- package/src/models/operations/updatedataset.ts +2 -2
- package/src/models/operations/updatedatasource.ts +2 -2
- package/src/models/operations/updateeval.ts +16 -16
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.12.0-rc.
|
|
34206
|
+
sdkVersion: "3.12.0-rc.16",
|
|
34207
34207
|
genVersion: "2.687.1",
|
|
34208
|
-
userAgent: "speakeasy-sdk/typescript 3.12.0-rc.
|
|
34208
|
+
userAgent: "speakeasy-sdk/typescript 3.12.0-rc.16 2.687.1 2.0 @orq-ai/node"
|
|
34209
34209
|
};
|
|
34210
34210
|
});
|
|
34211
34211
|
|
|
@@ -36181,7 +36181,7 @@ var init_createbudget = __esm(() => {
|
|
|
36181
36181
|
is_active: booleanType(),
|
|
36182
36182
|
consumption: lazyType(() => Consumption$inboundSchema).optional(),
|
|
36183
36183
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
36184
|
-
updated: stringType().datetime({ offset: true }).default("2025-08-
|
|
36184
|
+
updated: stringType().datetime({ offset: true }).default("2025-08-27T07:41:07.739Z").transform((v2) => new Date(v2))
|
|
36185
36185
|
}).transform((v2) => {
|
|
36186
36186
|
return remap(v2, {
|
|
36187
36187
|
_id: "id",
|
|
@@ -36199,7 +36199,7 @@ var init_createbudget = __esm(() => {
|
|
|
36199
36199
|
isActive: booleanType(),
|
|
36200
36200
|
consumption: lazyType(() => Consumption$outboundSchema).optional(),
|
|
36201
36201
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
36202
|
-
updated: dateType().default(() => new Date("2025-08-
|
|
36202
|
+
updated: dateType().default(() => new Date("2025-08-27T07:41:07.739Z")).transform((v2) => v2.toISOString())
|
|
36203
36203
|
}).transform((v2) => {
|
|
36204
36204
|
return remap(v2, {
|
|
36205
36205
|
id: "_id",
|
|
@@ -41317,7 +41317,7 @@ var init_createcontact = __esm(() => {
|
|
|
41317
41317
|
tags: arrayType(stringType()).optional(),
|
|
41318
41318
|
metadata: recordType(anyType()).optional(),
|
|
41319
41319
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
41320
|
-
updated: stringType().datetime({ offset: true }).default("2025-08-
|
|
41320
|
+
updated: stringType().datetime({ offset: true }).default("2025-08-27T07:41:07.739Z").transform((v2) => new Date(v2))
|
|
41321
41321
|
}).transform((v2) => {
|
|
41322
41322
|
return remap(v2, {
|
|
41323
41323
|
_id: "id",
|
|
@@ -41337,7 +41337,7 @@ var init_createcontact = __esm(() => {
|
|
|
41337
41337
|
tags: arrayType(stringType()).optional(),
|
|
41338
41338
|
metadata: recordType(anyType()).optional(),
|
|
41339
41339
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
41340
|
-
updated: dateType().default(() => new Date("2025-08-
|
|
41340
|
+
updated: dateType().default(() => new Date("2025-08-27T07:41:07.739Z")).transform((v2) => v2.toISOString())
|
|
41341
41341
|
}).transform((v2) => {
|
|
41342
41342
|
return remap(v2, {
|
|
41343
41343
|
id: "_id",
|
|
@@ -41409,7 +41409,7 @@ var init_createdataset = __esm(() => {
|
|
|
41409
41409
|
updated_by_id: stringType().optional(),
|
|
41410
41410
|
metadata: lazyType(() => CreateDatasetMetadata$inboundSchema),
|
|
41411
41411
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
41412
|
-
updated: stringType().datetime({ offset: true }).default("2025-08-
|
|
41412
|
+
updated: stringType().datetime({ offset: true }).default("2025-08-27T07:41:07.739Z").transform((v2) => new Date(v2))
|
|
41413
41413
|
}).transform((v2) => {
|
|
41414
41414
|
return remap(v2, {
|
|
41415
41415
|
_id: "id",
|
|
@@ -41429,7 +41429,7 @@ var init_createdataset = __esm(() => {
|
|
|
41429
41429
|
updatedById: stringType().optional(),
|
|
41430
41430
|
metadata: lazyType(() => CreateDatasetMetadata$outboundSchema),
|
|
41431
41431
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
41432
|
-
updated: dateType().default(() => new Date("2025-08-
|
|
41432
|
+
updated: dateType().default(() => new Date("2025-08-27T07:41:07.739Z")).transform((v2) => v2.toISOString())
|
|
41433
41433
|
}).transform((v2) => {
|
|
41434
41434
|
return remap(v2, {
|
|
41435
41435
|
id: "_id",
|
|
@@ -42833,7 +42833,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
42833
42833
|
created_by_id: stringType().optional(),
|
|
42834
42834
|
updated_by_id: stringType().optional(),
|
|
42835
42835
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
42836
|
-
updated: stringType().datetime({ offset: true }).default("2025-08-
|
|
42836
|
+
updated: stringType().datetime({ offset: true }).default("2025-08-27T07:41:07.739Z").transform((v2) => new Date(v2))
|
|
42837
42837
|
}).transform((v2) => {
|
|
42838
42838
|
return remap(v2, {
|
|
42839
42839
|
_id: "id",
|
|
@@ -42860,7 +42860,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
42860
42860
|
createdById: stringType().optional(),
|
|
42861
42861
|
updatedById: stringType().optional(),
|
|
42862
42862
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
42863
|
-
updated: dateType().default(() => new Date("2025-08-
|
|
42863
|
+
updated: dateType().default(() => new Date("2025-08-27T07:41:07.739Z")).transform((v2) => v2.toISOString())
|
|
42864
42864
|
}).transform((v2) => {
|
|
42865
42865
|
return remap(v2, {
|
|
42866
42866
|
id: "_id",
|
|
@@ -43082,7 +43082,7 @@ var init_createdatasource = __esm(() => {
|
|
|
43082
43082
|
CreateDatasourceStatus$.outboundSchema = CreateDatasourceStatus$outboundSchema;
|
|
43083
43083
|
})(CreateDatasourceStatus$ ||= {});
|
|
43084
43084
|
CreateDatasourceResponseBody$inboundSchema = objectType({
|
|
43085
|
-
_id: stringType().default("
|
|
43085
|
+
_id: stringType().default("01K3N7JN4VM642PQRT6W826N3P"),
|
|
43086
43086
|
display_name: stringType(),
|
|
43087
43087
|
description: stringType().optional(),
|
|
43088
43088
|
status: CreateDatasourceStatus$inboundSchema,
|
|
@@ -43105,7 +43105,7 @@ var init_createdatasource = __esm(() => {
|
|
|
43105
43105
|
});
|
|
43106
43106
|
});
|
|
43107
43107
|
CreateDatasourceResponseBody$outboundSchema = objectType({
|
|
43108
|
-
id: stringType().default("
|
|
43108
|
+
id: stringType().default("01K3N7JN4VM642PQRT6W826N3P"),
|
|
43109
43109
|
displayName: stringType(),
|
|
43110
43110
|
description: stringType().optional(),
|
|
43111
43111
|
status: CreateDatasourceStatus$outboundSchema,
|
|
@@ -43781,8 +43781,8 @@ var init_createeval = __esm(() => {
|
|
|
43781
43781
|
ResponseBodyPython$inboundSchema = objectType({
|
|
43782
43782
|
_id: stringType(),
|
|
43783
43783
|
description: stringType(),
|
|
43784
|
-
created: stringType().default("2025-08-
|
|
43785
|
-
updated: stringType().default("2025-08-
|
|
43784
|
+
created: stringType().default("2025-08-27T07:41:10.243Z"),
|
|
43785
|
+
updated: stringType().default("2025-08-27T07:41:10.243Z"),
|
|
43786
43786
|
guardrail_config: unionType([
|
|
43787
43787
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
43788
43788
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
|
|
@@ -43799,8 +43799,8 @@ var init_createeval = __esm(() => {
|
|
|
43799
43799
|
ResponseBodyPython$outboundSchema = objectType({
|
|
43800
43800
|
id: stringType(),
|
|
43801
43801
|
description: stringType(),
|
|
43802
|
-
created: stringType().default("2025-08-
|
|
43803
|
-
updated: stringType().default("2025-08-
|
|
43802
|
+
created: stringType().default("2025-08-27T07:41:10.243Z"),
|
|
43803
|
+
updated: stringType().default("2025-08-27T07:41:10.243Z"),
|
|
43804
43804
|
guardrailConfig: unionType([
|
|
43805
43805
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
43806
43806
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
|
|
@@ -43893,8 +43893,8 @@ var init_createeval = __esm(() => {
|
|
|
43893
43893
|
ResponseBodyHTTP$inboundSchema = objectType({
|
|
43894
43894
|
_id: stringType(),
|
|
43895
43895
|
description: stringType(),
|
|
43896
|
-
created: stringType().default("2025-08-
|
|
43897
|
-
updated: stringType().default("2025-08-
|
|
43896
|
+
created: stringType().default("2025-08-27T07:41:10.243Z"),
|
|
43897
|
+
updated: stringType().default("2025-08-27T07:41:10.243Z"),
|
|
43898
43898
|
guardrail_config: unionType([
|
|
43899
43899
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
43900
43900
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
|
|
@@ -43914,8 +43914,8 @@ var init_createeval = __esm(() => {
|
|
|
43914
43914
|
ResponseBodyHTTP$outboundSchema = objectType({
|
|
43915
43915
|
id: stringType(),
|
|
43916
43916
|
description: stringType(),
|
|
43917
|
-
created: stringType().default("2025-08-
|
|
43918
|
-
updated: stringType().default("2025-08-
|
|
43917
|
+
created: stringType().default("2025-08-27T07:41:10.243Z"),
|
|
43918
|
+
updated: stringType().default("2025-08-27T07:41:10.243Z"),
|
|
43919
43919
|
guardrailConfig: unionType([
|
|
43920
43920
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
43921
43921
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
|
|
@@ -44005,8 +44005,8 @@ var init_createeval = __esm(() => {
|
|
|
44005
44005
|
ResponseBodyJSON$inboundSchema = objectType({
|
|
44006
44006
|
_id: stringType(),
|
|
44007
44007
|
description: stringType(),
|
|
44008
|
-
created: stringType().default("2025-08-
|
|
44009
|
-
updated: stringType().default("2025-08-
|
|
44008
|
+
created: stringType().default("2025-08-27T07:41:10.243Z"),
|
|
44009
|
+
updated: stringType().default("2025-08-27T07:41:10.243Z"),
|
|
44010
44010
|
guardrail_config: unionType([
|
|
44011
44011
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
44012
44012
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema)
|
|
@@ -44023,8 +44023,8 @@ var init_createeval = __esm(() => {
|
|
|
44023
44023
|
ResponseBodyJSON$outboundSchema = objectType({
|
|
44024
44024
|
id: stringType(),
|
|
44025
44025
|
description: stringType(),
|
|
44026
|
-
created: stringType().default("2025-08-
|
|
44027
|
-
updated: stringType().default("2025-08-
|
|
44026
|
+
created: stringType().default("2025-08-27T07:41:10.243Z"),
|
|
44027
|
+
updated: stringType().default("2025-08-27T07:41:10.243Z"),
|
|
44028
44028
|
guardrailConfig: unionType([
|
|
44029
44029
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
44030
44030
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema)
|
|
@@ -44111,8 +44111,8 @@ var init_createeval = __esm(() => {
|
|
|
44111
44111
|
ResponseBodyLLM$inboundSchema = objectType({
|
|
44112
44112
|
_id: stringType(),
|
|
44113
44113
|
description: stringType(),
|
|
44114
|
-
created: stringType().default("2025-08-
|
|
44115
|
-
updated: stringType().default("2025-08-
|
|
44114
|
+
created: stringType().default("2025-08-27T07:41:10.243Z"),
|
|
44115
|
+
updated: stringType().default("2025-08-27T07:41:10.243Z"),
|
|
44116
44116
|
guardrail_config: unionType([
|
|
44117
44117
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
44118
44118
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema)
|
|
@@ -44130,8 +44130,8 @@ var init_createeval = __esm(() => {
|
|
|
44130
44130
|
ResponseBodyLLM$outboundSchema = objectType({
|
|
44131
44131
|
id: stringType(),
|
|
44132
44132
|
description: stringType(),
|
|
44133
|
-
created: stringType().default("2025-08-
|
|
44134
|
-
updated: stringType().default("2025-08-
|
|
44133
|
+
created: stringType().default("2025-08-27T07:41:10.243Z"),
|
|
44134
|
+
updated: stringType().default("2025-08-27T07:41:10.243Z"),
|
|
44135
44135
|
guardrailConfig: unionType([
|
|
44136
44136
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
44137
44137
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema)
|
|
@@ -56763,7 +56763,7 @@ var init_fileget = __esm(() => {
|
|
|
56763
56763
|
bytes: numberType(),
|
|
56764
56764
|
file_name: stringType(),
|
|
56765
56765
|
workspace_id: stringType(),
|
|
56766
|
-
created: stringType().datetime({ offset: true }).default("2025-08-
|
|
56766
|
+
created: stringType().datetime({ offset: true }).default("2025-08-27T07:41:11.101Z").transform((v2) => new Date(v2))
|
|
56767
56767
|
}).transform((v2) => {
|
|
56768
56768
|
return remap(v2, {
|
|
56769
56769
|
_id: "id",
|
|
@@ -56779,7 +56779,7 @@ var init_fileget = __esm(() => {
|
|
|
56779
56779
|
bytes: numberType(),
|
|
56780
56780
|
fileName: stringType(),
|
|
56781
56781
|
workspaceId: stringType(),
|
|
56782
|
-
created: dateType().default(() => new Date("2025-08-
|
|
56782
|
+
created: dateType().default(() => new Date("2025-08-27T07:41:11.101Z")).transform((v2) => v2.toISOString())
|
|
56783
56783
|
}).transform((v2) => {
|
|
56784
56784
|
return remap(v2, {
|
|
56785
56785
|
id: "_id",
|
|
@@ -56850,7 +56850,7 @@ var init_filelist = __esm(() => {
|
|
|
56850
56850
|
bytes: numberType(),
|
|
56851
56851
|
file_name: stringType(),
|
|
56852
56852
|
workspace_id: stringType(),
|
|
56853
|
-
created: stringType().datetime({ offset: true }).default("2025-08-
|
|
56853
|
+
created: stringType().datetime({ offset: true }).default("2025-08-27T07:41:11.101Z").transform((v2) => new Date(v2))
|
|
56854
56854
|
}).transform((v2) => {
|
|
56855
56855
|
return remap(v2, {
|
|
56856
56856
|
_id: "id",
|
|
@@ -56866,7 +56866,7 @@ var init_filelist = __esm(() => {
|
|
|
56866
56866
|
bytes: numberType(),
|
|
56867
56867
|
fileName: stringType(),
|
|
56868
56868
|
workspaceId: stringType(),
|
|
56869
|
-
created: dateType().default(() => new Date("2025-08-
|
|
56869
|
+
created: dateType().default(() => new Date("2025-08-27T07:41:11.101Z")).transform((v2) => v2.toISOString())
|
|
56870
56870
|
}).transform((v2) => {
|
|
56871
56871
|
return remap(v2, {
|
|
56872
56872
|
id: "_id",
|
|
@@ -56998,7 +56998,7 @@ var init_fileupload = __esm(() => {
|
|
|
56998
56998
|
bytes: numberType(),
|
|
56999
56999
|
file_name: stringType(),
|
|
57000
57000
|
workspace_id: stringType(),
|
|
57001
|
-
created: stringType().datetime({ offset: true }).default("2025-08-
|
|
57001
|
+
created: stringType().datetime({ offset: true }).default("2025-08-27T07:41:11.101Z").transform((v2) => new Date(v2))
|
|
57002
57002
|
}).transform((v2) => {
|
|
57003
57003
|
return remap(v2, {
|
|
57004
57004
|
_id: "id",
|
|
@@ -57014,7 +57014,7 @@ var init_fileupload = __esm(() => {
|
|
|
57014
57014
|
bytes: numberType(),
|
|
57015
57015
|
fileName: stringType(),
|
|
57016
57016
|
workspaceId: stringType(),
|
|
57017
|
-
created: dateType().default(() => new Date("2025-08-
|
|
57017
|
+
created: dateType().default(() => new Date("2025-08-27T07:41:11.101Z")).transform((v2) => v2.toISOString())
|
|
57018
57018
|
}).transform((v2) => {
|
|
57019
57019
|
return remap(v2, {
|
|
57020
57020
|
id: "_id",
|
|
@@ -57831,7 +57831,7 @@ var init_getbudget = __esm(() => {
|
|
|
57831
57831
|
is_active: booleanType(),
|
|
57832
57832
|
consumption: lazyType(() => GetBudgetConsumption$inboundSchema).optional(),
|
|
57833
57833
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
57834
|
-
updated: stringType().datetime({ offset: true }).default("2025-08-
|
|
57834
|
+
updated: stringType().datetime({ offset: true }).default("2025-08-27T07:41:07.739Z").transform((v2) => new Date(v2))
|
|
57835
57835
|
}).transform((v2) => {
|
|
57836
57836
|
return remap(v2, {
|
|
57837
57837
|
_id: "id",
|
|
@@ -57849,7 +57849,7 @@ var init_getbudget = __esm(() => {
|
|
|
57849
57849
|
isActive: booleanType(),
|
|
57850
57850
|
consumption: lazyType(() => GetBudgetConsumption$outboundSchema).optional(),
|
|
57851
57851
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
57852
|
-
updated: dateType().default(() => new Date("2025-08-
|
|
57852
|
+
updated: dateType().default(() => new Date("2025-08-27T07:41:07.739Z")).transform((v2) => v2.toISOString())
|
|
57853
57853
|
}).transform((v2) => {
|
|
57854
57854
|
return remap(v2, {
|
|
57855
57855
|
id: "_id",
|
|
@@ -58213,8 +58213,8 @@ var init_getevals = __esm(() => {
|
|
|
58213
58213
|
Typescript$inboundSchema = objectType({
|
|
58214
58214
|
_id: stringType(),
|
|
58215
58215
|
description: stringType(),
|
|
58216
|
-
created: stringType().default("2025-08-
|
|
58217
|
-
updated: stringType().default("2025-08-
|
|
58216
|
+
created: stringType().default("2025-08-27T07:41:10.243Z"),
|
|
58217
|
+
updated: stringType().default("2025-08-27T07:41:10.243Z"),
|
|
58218
58218
|
guardrail_config: unionType([
|
|
58219
58219
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
58220
58220
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
|
|
@@ -58231,8 +58231,8 @@ var init_getevals = __esm(() => {
|
|
|
58231
58231
|
Typescript$outboundSchema = objectType({
|
|
58232
58232
|
id: stringType(),
|
|
58233
58233
|
description: stringType(),
|
|
58234
|
-
created: stringType().default("2025-08-
|
|
58235
|
-
updated: stringType().default("2025-08-
|
|
58234
|
+
created: stringType().default("2025-08-27T07:41:10.243Z"),
|
|
58235
|
+
updated: stringType().default("2025-08-27T07:41:10.243Z"),
|
|
58236
58236
|
guardrailConfig: unionType([
|
|
58237
58237
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
58238
58238
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
|
|
@@ -58325,8 +58325,8 @@ var init_getevals = __esm(() => {
|
|
|
58325
58325
|
Ragas$inboundSchema = objectType({
|
|
58326
58326
|
_id: stringType(),
|
|
58327
58327
|
description: stringType(),
|
|
58328
|
-
created: stringType().default("2025-08-
|
|
58329
|
-
updated: stringType().default("2025-08-
|
|
58328
|
+
created: stringType().default("2025-08-27T07:41:10.243Z"),
|
|
58329
|
+
updated: stringType().default("2025-08-27T07:41:10.243Z"),
|
|
58330
58330
|
guardrail_config: unionType([
|
|
58331
58331
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
58332
58332
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema)
|
|
@@ -58345,8 +58345,8 @@ var init_getevals = __esm(() => {
|
|
|
58345
58345
|
Ragas$outboundSchema = objectType({
|
|
58346
58346
|
id: stringType(),
|
|
58347
58347
|
description: stringType(),
|
|
58348
|
-
created: stringType().default("2025-08-
|
|
58349
|
-
updated: stringType().default("2025-08-
|
|
58348
|
+
created: stringType().default("2025-08-27T07:41:10.243Z"),
|
|
58349
|
+
updated: stringType().default("2025-08-27T07:41:10.243Z"),
|
|
58350
58350
|
guardrailConfig: unionType([
|
|
58351
58351
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
58352
58352
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema)
|
|
@@ -59099,8 +59099,8 @@ var init_getevals = __esm(() => {
|
|
|
59099
59099
|
DataFunction$inboundSchema = objectType({
|
|
59100
59100
|
_id: stringType(),
|
|
59101
59101
|
description: stringType(),
|
|
59102
|
-
created: stringType().default("2025-08-
|
|
59103
|
-
updated: stringType().default("2025-08-
|
|
59102
|
+
created: stringType().default("2025-08-27T07:41:10.243Z"),
|
|
59103
|
+
updated: stringType().default("2025-08-27T07:41:10.243Z"),
|
|
59104
59104
|
guardrail_config: unionType([
|
|
59105
59105
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
59106
59106
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema)
|
|
@@ -59154,8 +59154,8 @@ var init_getevals = __esm(() => {
|
|
|
59154
59154
|
DataFunction$outboundSchema = objectType({
|
|
59155
59155
|
id: stringType(),
|
|
59156
59156
|
description: stringType(),
|
|
59157
|
-
created: stringType().default("2025-08-
|
|
59158
|
-
updated: stringType().default("2025-08-
|
|
59157
|
+
created: stringType().default("2025-08-27T07:41:10.243Z"),
|
|
59158
|
+
updated: stringType().default("2025-08-27T07:41:10.243Z"),
|
|
59159
59159
|
guardrailConfig: unionType([
|
|
59160
59160
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
59161
59161
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema)
|
|
@@ -59279,8 +59279,8 @@ var init_getevals = __esm(() => {
|
|
|
59279
59279
|
DataPython$inboundSchema = objectType({
|
|
59280
59280
|
_id: stringType(),
|
|
59281
59281
|
description: stringType(),
|
|
59282
|
-
created: stringType().default("2025-08-
|
|
59283
|
-
updated: stringType().default("2025-08-
|
|
59282
|
+
created: stringType().default("2025-08-27T07:41:10.243Z"),
|
|
59283
|
+
updated: stringType().default("2025-08-27T07:41:10.243Z"),
|
|
59284
59284
|
guardrail_config: unionType([
|
|
59285
59285
|
lazyType(() => GetEvalsGuardrailConfigEvalsNumber$inboundSchema),
|
|
59286
59286
|
lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema)
|
|
@@ -59297,8 +59297,8 @@ var init_getevals = __esm(() => {
|
|
|
59297
59297
|
DataPython$outboundSchema = objectType({
|
|
59298
59298
|
id: stringType(),
|
|
59299
59299
|
description: stringType(),
|
|
59300
|
-
created: stringType().default("2025-08-
|
|
59301
|
-
updated: stringType().default("2025-08-
|
|
59300
|
+
created: stringType().default("2025-08-27T07:41:10.243Z"),
|
|
59301
|
+
updated: stringType().default("2025-08-27T07:41:10.243Z"),
|
|
59302
59302
|
guardrailConfig: unionType([
|
|
59303
59303
|
lazyType(() => GetEvalsGuardrailConfigEvalsNumber$outboundSchema),
|
|
59304
59304
|
lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$outboundSchema)
|
|
@@ -59391,8 +59391,8 @@ var init_getevals = __esm(() => {
|
|
|
59391
59391
|
DataHTTP$inboundSchema = objectType({
|
|
59392
59392
|
_id: stringType(),
|
|
59393
59393
|
description: stringType(),
|
|
59394
|
-
created: stringType().default("2025-08-
|
|
59395
|
-
updated: stringType().default("2025-08-
|
|
59394
|
+
created: stringType().default("2025-08-27T07:41:10.243Z"),
|
|
59395
|
+
updated: stringType().default("2025-08-27T07:41:10.243Z"),
|
|
59396
59396
|
guardrail_config: unionType([
|
|
59397
59397
|
lazyType(() => GetEvalsGuardrailConfigNumber$inboundSchema),
|
|
59398
59398
|
lazyType(() => GetEvalsGuardrailConfigBoolean$inboundSchema)
|
|
@@ -59412,8 +59412,8 @@ var init_getevals = __esm(() => {
|
|
|
59412
59412
|
DataHTTP$outboundSchema = objectType({
|
|
59413
59413
|
id: stringType(),
|
|
59414
59414
|
description: stringType(),
|
|
59415
|
-
created: stringType().default("2025-08-
|
|
59416
|
-
updated: stringType().default("2025-08-
|
|
59415
|
+
created: stringType().default("2025-08-27T07:41:10.243Z"),
|
|
59416
|
+
updated: stringType().default("2025-08-27T07:41:10.243Z"),
|
|
59417
59417
|
guardrailConfig: unionType([
|
|
59418
59418
|
lazyType(() => GetEvalsGuardrailConfigNumber$outboundSchema),
|
|
59419
59419
|
lazyType(() => GetEvalsGuardrailConfigBoolean$outboundSchema)
|
|
@@ -59503,8 +59503,8 @@ var init_getevals = __esm(() => {
|
|
|
59503
59503
|
DataJSON$inboundSchema = objectType({
|
|
59504
59504
|
_id: stringType(),
|
|
59505
59505
|
description: stringType(),
|
|
59506
|
-
created: stringType().default("2025-08-
|
|
59507
|
-
updated: stringType().default("2025-08-
|
|
59506
|
+
created: stringType().default("2025-08-27T07:41:10.243Z"),
|
|
59507
|
+
updated: stringType().default("2025-08-27T07:41:10.243Z"),
|
|
59508
59508
|
guardrail_config: unionType([
|
|
59509
59509
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$inboundSchema),
|
|
59510
59510
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$inboundSchema)
|
|
@@ -59521,8 +59521,8 @@ var init_getevals = __esm(() => {
|
|
|
59521
59521
|
DataJSON$outboundSchema = objectType({
|
|
59522
59522
|
id: stringType(),
|
|
59523
59523
|
description: stringType(),
|
|
59524
|
-
created: stringType().default("2025-08-
|
|
59525
|
-
updated: stringType().default("2025-08-
|
|
59524
|
+
created: stringType().default("2025-08-27T07:41:10.243Z"),
|
|
59525
|
+
updated: stringType().default("2025-08-27T07:41:10.243Z"),
|
|
59526
59526
|
guardrailConfig: unionType([
|
|
59527
59527
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$outboundSchema),
|
|
59528
59528
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$outboundSchema)
|
|
@@ -59609,8 +59609,8 @@ var init_getevals = __esm(() => {
|
|
|
59609
59609
|
DataLLM$inboundSchema = objectType({
|
|
59610
59610
|
_id: stringType(),
|
|
59611
59611
|
description: stringType(),
|
|
59612
|
-
created: stringType().default("2025-08-
|
|
59613
|
-
updated: stringType().default("2025-08-
|
|
59612
|
+
created: stringType().default("2025-08-27T07:41:10.243Z"),
|
|
59613
|
+
updated: stringType().default("2025-08-27T07:41:10.243Z"),
|
|
59614
59614
|
guardrail_config: unionType([
|
|
59615
59615
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
59616
59616
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
|
|
@@ -59628,8 +59628,8 @@ var init_getevals = __esm(() => {
|
|
|
59628
59628
|
DataLLM$outboundSchema = objectType({
|
|
59629
59629
|
id: stringType(),
|
|
59630
59630
|
description: stringType(),
|
|
59631
|
-
created: stringType().default("2025-08-
|
|
59632
|
-
updated: stringType().default("2025-08-
|
|
59631
|
+
created: stringType().default("2025-08-27T07:41:10.243Z"),
|
|
59632
|
+
updated: stringType().default("2025-08-27T07:41:10.243Z"),
|
|
59633
59633
|
guardrailConfig: unionType([
|
|
59634
59634
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
59635
59635
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
|
|
@@ -62166,7 +62166,7 @@ var init_listbudgets = __esm(() => {
|
|
|
62166
62166
|
is_active: booleanType(),
|
|
62167
62167
|
consumption: lazyType(() => ListBudgetsConsumption$inboundSchema).optional(),
|
|
62168
62168
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
62169
|
-
updated: stringType().datetime({ offset: true }).default("2025-08-
|
|
62169
|
+
updated: stringType().datetime({ offset: true }).default("2025-08-27T07:41:07.739Z").transform((v2) => new Date(v2))
|
|
62170
62170
|
}).transform((v2) => {
|
|
62171
62171
|
return remap(v2, {
|
|
62172
62172
|
_id: "id",
|
|
@@ -62184,7 +62184,7 @@ var init_listbudgets = __esm(() => {
|
|
|
62184
62184
|
isActive: booleanType(),
|
|
62185
62185
|
consumption: lazyType(() => ListBudgetsConsumption$outboundSchema).optional(),
|
|
62186
62186
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
62187
|
-
updated: dateType().default(() => new Date("2025-08-
|
|
62187
|
+
updated: dateType().default(() => new Date("2025-08-27T07:41:07.739Z")).transform((v2) => v2.toISOString())
|
|
62188
62188
|
}).transform((v2) => {
|
|
62189
62189
|
return remap(v2, {
|
|
62190
62190
|
id: "_id",
|
|
@@ -62453,7 +62453,7 @@ var init_listcontacts = __esm(() => {
|
|
|
62453
62453
|
tags: arrayType(stringType()).optional(),
|
|
62454
62454
|
metadata: recordType(anyType()).optional(),
|
|
62455
62455
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
62456
|
-
updated: stringType().datetime({ offset: true }).default("2025-08-
|
|
62456
|
+
updated: stringType().datetime({ offset: true }).default("2025-08-27T07:41:07.739Z").transform((v2) => new Date(v2)),
|
|
62457
62457
|
metrics: lazyType(() => Metrics$inboundSchema)
|
|
62458
62458
|
}).transform((v2) => {
|
|
62459
62459
|
return remap(v2, {
|
|
@@ -62472,7 +62472,7 @@ var init_listcontacts = __esm(() => {
|
|
|
62472
62472
|
tags: arrayType(stringType()).optional(),
|
|
62473
62473
|
metadata: recordType(anyType()).optional(),
|
|
62474
62474
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
62475
|
-
updated: dateType().default(() => new Date("2025-08-
|
|
62475
|
+
updated: dateType().default(() => new Date("2025-08-27T07:41:07.739Z")).transform((v2) => v2.toISOString()),
|
|
62476
62476
|
metrics: lazyType(() => Metrics$outboundSchema)
|
|
62477
62477
|
}).transform((v2) => {
|
|
62478
62478
|
return remap(v2, {
|
|
@@ -63223,7 +63223,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
63223
63223
|
created_by_id: stringType().optional(),
|
|
63224
63224
|
updated_by_id: stringType().optional(),
|
|
63225
63225
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
63226
|
-
updated: stringType().datetime({ offset: true }).default("2025-08-
|
|
63226
|
+
updated: stringType().datetime({ offset: true }).default("2025-08-27T07:41:07.739Z").transform((v2) => new Date(v2))
|
|
63227
63227
|
}).transform((v2) => {
|
|
63228
63228
|
return remap(v2, {
|
|
63229
63229
|
_id: "id",
|
|
@@ -63250,7 +63250,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
63250
63250
|
createdById: stringType().optional(),
|
|
63251
63251
|
updatedById: stringType().optional(),
|
|
63252
63252
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
63253
|
-
updated: dateType().default(() => new Date("2025-08-
|
|
63253
|
+
updated: dateType().default(() => new Date("2025-08-27T07:41:07.739Z")).transform((v2) => v2.toISOString())
|
|
63254
63254
|
}).transform((v2) => {
|
|
63255
63255
|
return remap(v2, {
|
|
63256
63256
|
id: "_id",
|
|
@@ -63358,7 +63358,7 @@ var init_listdatasets = __esm(() => {
|
|
|
63358
63358
|
updated_by_id: stringType().optional(),
|
|
63359
63359
|
metadata: lazyType(() => ListDatasetsMetadata$inboundSchema),
|
|
63360
63360
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
63361
|
-
updated: stringType().datetime({ offset: true }).default("2025-08-
|
|
63361
|
+
updated: stringType().datetime({ offset: true }).default("2025-08-27T07:41:07.739Z").transform((v2) => new Date(v2))
|
|
63362
63362
|
}).transform((v2) => {
|
|
63363
63363
|
return remap(v2, {
|
|
63364
63364
|
_id: "id",
|
|
@@ -63378,7 +63378,7 @@ var init_listdatasets = __esm(() => {
|
|
|
63378
63378
|
updatedById: stringType().optional(),
|
|
63379
63379
|
metadata: lazyType(() => ListDatasetsMetadata$outboundSchema),
|
|
63380
63380
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
63381
|
-
updated: dateType().default(() => new Date("2025-08-
|
|
63381
|
+
updated: dateType().default(() => new Date("2025-08-27T07:41:07.739Z")).transform((v2) => v2.toISOString())
|
|
63382
63382
|
}).transform((v2) => {
|
|
63383
63383
|
return remap(v2, {
|
|
63384
63384
|
id: "_id",
|
|
@@ -63483,7 +63483,7 @@ var init_listdatasources = __esm(() => {
|
|
|
63483
63483
|
ListDatasourcesStatus$.outboundSchema = ListDatasourcesStatus$outboundSchema;
|
|
63484
63484
|
})(ListDatasourcesStatus$ ||= {});
|
|
63485
63485
|
ListDatasourcesData$inboundSchema = objectType({
|
|
63486
|
-
_id: stringType().default("
|
|
63486
|
+
_id: stringType().default("01K3N7JN4TN7S2W4B7WBF28VHW"),
|
|
63487
63487
|
display_name: stringType(),
|
|
63488
63488
|
description: stringType().optional(),
|
|
63489
63489
|
status: ListDatasourcesStatus$inboundSchema,
|
|
@@ -63506,7 +63506,7 @@ var init_listdatasources = __esm(() => {
|
|
|
63506
63506
|
});
|
|
63507
63507
|
});
|
|
63508
63508
|
ListDatasourcesData$outboundSchema = objectType({
|
|
63509
|
-
id: stringType().default("
|
|
63509
|
+
id: stringType().default("01K3N7JN4TN7S2W4B7WBF28VHW"),
|
|
63510
63510
|
displayName: stringType(),
|
|
63511
63511
|
description: stringType().optional(),
|
|
63512
63512
|
status: ListDatasourcesStatus$outboundSchema,
|
|
@@ -65527,11 +65527,74 @@ var init_postv2proxyaudiotranslations = __esm(() => {
|
|
|
65527
65527
|
});
|
|
65528
65528
|
|
|
65529
65529
|
// src/models/operations/postv2proxycompletions.ts
|
|
65530
|
-
var PostV2ProxyCompletionsProxyFinishReason, PostV2ProxyCompletionsFinishReason, PostV2ProxyCompletionsStop$inboundSchema, PostV2ProxyCompletionsStop$outboundSchema, PostV2ProxyCompletionsStop$, PostV2ProxyCompletionsRequestBody$inboundSchema, PostV2ProxyCompletionsRequestBody$outboundSchema, PostV2ProxyCompletionsRequestBody$, PostV2ProxyCompletionsProxyFinishReason$inboundSchema, PostV2ProxyCompletionsProxyFinishReason$outboundSchema, PostV2ProxyCompletionsProxyFinishReason$, PostV2ProxyCompletionsProxyChoices$inboundSchema, PostV2ProxyCompletionsProxyChoices$outboundSchema, PostV2ProxyCompletionsProxyChoices$, PostV2ProxyCompletionsCreated$inboundSchema, PostV2ProxyCompletionsCreated$outboundSchema, PostV2ProxyCompletionsCreated$, PostV2ProxyCompletionsProxyPromptTokensDetails$inboundSchema, PostV2ProxyCompletionsProxyPromptTokensDetails$outboundSchema, PostV2ProxyCompletionsProxyPromptTokensDetails$, PostV2ProxyCompletionsProxyCompletionTokensDetails$inboundSchema, PostV2ProxyCompletionsProxyCompletionTokensDetails$outboundSchema, PostV2ProxyCompletionsProxyCompletionTokensDetails$, PostV2ProxyCompletionsProxyUsage$inboundSchema, PostV2ProxyCompletionsProxyUsage$outboundSchema, PostV2ProxyCompletionsProxyUsage$, PostV2ProxyCompletionsData$inboundSchema, PostV2ProxyCompletionsData$outboundSchema, PostV2ProxyCompletionsData$, PostV2ProxyCompletionsProxyResponseBody$inboundSchema, PostV2ProxyCompletionsProxyResponseBody$outboundSchema, PostV2ProxyCompletionsProxyResponseBody$, PostV2ProxyCompletionsFinishReason$inboundSchema, PostV2ProxyCompletionsFinishReason$outboundSchema, PostV2ProxyCompletionsFinishReason$, PostV2ProxyCompletionsChoices$inboundSchema, PostV2ProxyCompletionsChoices$outboundSchema, PostV2ProxyCompletionsChoices$, Created$inboundSchema, Created$outboundSchema, Created$, PostV2ProxyCompletionsPromptTokensDetails$inboundSchema, PostV2ProxyCompletionsPromptTokensDetails$outboundSchema, PostV2ProxyCompletionsPromptTokensDetails$, PostV2ProxyCompletionsCompletionTokensDetails$inboundSchema, PostV2ProxyCompletionsCompletionTokensDetails$outboundSchema, PostV2ProxyCompletionsCompletionTokensDetails$, PostV2ProxyCompletionsUsage$inboundSchema, PostV2ProxyCompletionsUsage$outboundSchema, PostV2ProxyCompletionsUsage$, PostV2ProxyCompletionsResponseBody$inboundSchema, PostV2ProxyCompletionsResponseBody$outboundSchema, PostV2ProxyCompletionsResponseBody$, PostV2ProxyCompletionsResponse$inboundSchema, PostV2ProxyCompletionsResponse$outboundSchema, PostV2ProxyCompletionsResponse$;
|
|
65530
|
+
var PostV2ProxyCompletionsVersion, PostV2ProxyCompletionsType, PostV2ProxyCompletionsSearchType, PostV2ProxyCompletionsProvider, PostV2ProxyCompletionsModelType, PostV2ProxyCompletionsProxyProvider, PostV2ProxyCompletionsProxyFinishReason, PostV2ProxyCompletionsFinishReason, PostV2ProxyCompletionsStop$inboundSchema, PostV2ProxyCompletionsStop$outboundSchema, PostV2ProxyCompletionsStop$, PostV2ProxyCompletionsRetry$inboundSchema, PostV2ProxyCompletionsRetry$outboundSchema, PostV2ProxyCompletionsRetry$, PostV2ProxyCompletionsFallbacks$inboundSchema, PostV2ProxyCompletionsFallbacks$outboundSchema, PostV2ProxyCompletionsFallbacks$, PostV2ProxyCompletionsVersion$inboundSchema, PostV2ProxyCompletionsVersion$outboundSchema, PostV2ProxyCompletionsVersion$, PostV2ProxyCompletionsPrompt$inboundSchema, PostV2ProxyCompletionsPrompt$outboundSchema, PostV2ProxyCompletionsPrompt$, PostV2ProxyCompletionsThread$inboundSchema, PostV2ProxyCompletionsThread$outboundSchema, PostV2ProxyCompletionsThread$, PostV2ProxyCompletionsType$inboundSchema, PostV2ProxyCompletionsType$outboundSchema, PostV2ProxyCompletionsType$, PostV2ProxyCompletionsCache$inboundSchema, PostV2ProxyCompletionsCache$outboundSchema, PostV2ProxyCompletionsCache$, PostV2ProxyCompletionsSearchType$inboundSchema, PostV2ProxyCompletionsSearchType$outboundSchema, PostV2ProxyCompletionsSearchType$, PostV2ProxyCompletionsOrExists$inboundSchema, PostV2ProxyCompletionsOrExists$outboundSchema, PostV2ProxyCompletionsOrExists$, PostV2ProxyCompletionsOrProxyNin$inboundSchema, PostV2ProxyCompletionsOrProxyNin$outboundSchema, PostV2ProxyCompletionsOrProxyNin$, PostV2ProxyCompletionsOrNin$inboundSchema, PostV2ProxyCompletionsOrNin$outboundSchema, PostV2ProxyCompletionsOrNin$, PostV2ProxyCompletionsOrProxyIn$inboundSchema, PostV2ProxyCompletionsOrProxyIn$outboundSchema, PostV2ProxyCompletionsOrProxyIn$, PostV2ProxyCompletionsOrIn$inboundSchema, PostV2ProxyCompletionsOrIn$outboundSchema, PostV2ProxyCompletionsOrIn$, PostV2ProxyCompletionsOrLte$inboundSchema, PostV2ProxyCompletionsOrLte$outboundSchema, PostV2ProxyCompletionsOrLte$, PostV2ProxyCompletionsOrLt$inboundSchema, PostV2ProxyCompletionsOrLt$outboundSchema, PostV2ProxyCompletionsOrLt$, PostV2ProxyCompletionsOrGte$inboundSchema, PostV2ProxyCompletionsOrGte$outboundSchema, PostV2ProxyCompletionsOrGte$, PostV2ProxyCompletionsOr3$inboundSchema, PostV2ProxyCompletionsOr3$outboundSchema, PostV2ProxyCompletionsOr3$, PostV2ProxyCompletionsOrProxyNe$inboundSchema, PostV2ProxyCompletionsOrProxyNe$outboundSchema, PostV2ProxyCompletionsOrProxyNe$, PostV2ProxyCompletionsOrNe$inboundSchema, PostV2ProxyCompletionsOrNe$outboundSchema, PostV2ProxyCompletionsOrNe$, PostV2ProxyCompletionsOrProxyEq$inboundSchema, PostV2ProxyCompletionsOrProxyEq$outboundSchema, PostV2ProxyCompletionsOrProxyEq$, PostV2ProxyCompletionsOrEq$inboundSchema, PostV2ProxyCompletionsOrEq$outboundSchema, PostV2ProxyCompletionsOrEq$, PostV2ProxyCompletionsFilterByProxyOr$inboundSchema, PostV2ProxyCompletionsFilterByProxyOr$outboundSchema, PostV2ProxyCompletionsFilterByProxyOr$, PostV2ProxyCompletionsFilterByOr$inboundSchema, PostV2ProxyCompletionsFilterByOr$outboundSchema, PostV2ProxyCompletionsFilterByOr$, PostV2ProxyCompletionsAndExists$inboundSchema, PostV2ProxyCompletionsAndExists$outboundSchema, PostV2ProxyCompletionsAndExists$, PostV2ProxyCompletionsAndProxyNin$inboundSchema, PostV2ProxyCompletionsAndProxyNin$outboundSchema, PostV2ProxyCompletionsAndProxyNin$, PostV2ProxyCompletionsAndNin$inboundSchema, PostV2ProxyCompletionsAndNin$outboundSchema, PostV2ProxyCompletionsAndNin$, PostV2ProxyCompletionsAndProxyIn$inboundSchema, PostV2ProxyCompletionsAndProxyIn$outboundSchema, PostV2ProxyCompletionsAndProxyIn$, PostV2ProxyCompletionsAndIn$inboundSchema, PostV2ProxyCompletionsAndIn$outboundSchema, PostV2ProxyCompletionsAndIn$, PostV2ProxyCompletionsAndLte$inboundSchema, PostV2ProxyCompletionsAndLte$outboundSchema, PostV2ProxyCompletionsAndLte$, PostV2ProxyCompletionsAndLt$inboundSchema, PostV2ProxyCompletionsAndLt$outboundSchema, PostV2ProxyCompletionsAndLt$, PostV2ProxyCompletionsAndGte$inboundSchema, PostV2ProxyCompletionsAndGte$outboundSchema, PostV2ProxyCompletionsAndGte$, PostV2ProxyCompletionsAnd3$inboundSchema, PostV2ProxyCompletionsAnd3$outboundSchema, PostV2ProxyCompletionsAnd3$, PostV2ProxyCompletionsAndProxyNe$inboundSchema, PostV2ProxyCompletionsAndProxyNe$outboundSchema, PostV2ProxyCompletionsAndProxyNe$, PostV2ProxyCompletionsAndNe$inboundSchema, PostV2ProxyCompletionsAndNe$outboundSchema, PostV2ProxyCompletionsAndNe$, PostV2ProxyCompletionsAndProxyEq$inboundSchema, PostV2ProxyCompletionsAndProxyEq$outboundSchema, PostV2ProxyCompletionsAndProxyEq$, PostV2ProxyCompletionsAndEq$inboundSchema, PostV2ProxyCompletionsAndEq$outboundSchema, PostV2ProxyCompletionsAndEq$, PostV2ProxyCompletionsFilterByProxyAnd$inboundSchema, PostV2ProxyCompletionsFilterByProxyAnd$outboundSchema, PostV2ProxyCompletionsFilterByProxyAnd$, PostV2ProxyCompletionsFilterByAnd$inboundSchema, PostV2ProxyCompletionsFilterByAnd$outboundSchema, PostV2ProxyCompletionsFilterByAnd$, PostV2ProxyCompletions1Exists$inboundSchema, PostV2ProxyCompletions1Exists$outboundSchema, PostV2ProxyCompletions1Exists$, PostV2ProxyCompletions1ProxyNin$inboundSchema, PostV2ProxyCompletions1ProxyNin$outboundSchema, PostV2ProxyCompletions1ProxyNin$, PostV2ProxyCompletions1Nin$inboundSchema, PostV2ProxyCompletions1Nin$outboundSchema, PostV2ProxyCompletions1Nin$, PostV2ProxyCompletions1ProxyIn$inboundSchema, PostV2ProxyCompletions1ProxyIn$outboundSchema, PostV2ProxyCompletions1ProxyIn$, PostV2ProxyCompletions1In$inboundSchema, PostV2ProxyCompletions1In$outboundSchema, PostV2ProxyCompletions1In$, PostV2ProxyCompletions1Lte$inboundSchema, PostV2ProxyCompletions1Lte$outboundSchema, PostV2ProxyCompletions1Lte$, PostV2ProxyCompletions1Lt$inboundSchema, PostV2ProxyCompletions1Lt$outboundSchema, PostV2ProxyCompletions1Lt$, PostV2ProxyCompletions1Gte$inboundSchema, PostV2ProxyCompletions1Gte$outboundSchema, PostV2ProxyCompletions1Gte$, PostV2ProxyCompletions13$inboundSchema, PostV2ProxyCompletions13$outboundSchema, PostV2ProxyCompletions13$, PostV2ProxyCompletions1ProxyNe$inboundSchema, PostV2ProxyCompletions1ProxyNe$outboundSchema, PostV2ProxyCompletions1ProxyNe$, PostV2ProxyCompletions1Ne$inboundSchema, PostV2ProxyCompletions1Ne$outboundSchema, PostV2ProxyCompletions1Ne$, PostV2ProxyCompletions1ProxyEq$inboundSchema, PostV2ProxyCompletions1ProxyEq$outboundSchema, PostV2ProxyCompletions1ProxyEq$, PostV2ProxyCompletions1Eq$inboundSchema, PostV2ProxyCompletions1Eq$outboundSchema, PostV2ProxyCompletions1Eq$, PostV2ProxyCompletionsFilterBy1$inboundSchema, PostV2ProxyCompletionsFilterBy1$outboundSchema, PostV2ProxyCompletionsFilterBy1$, PostV2ProxyCompletionsFilterBy$inboundSchema, PostV2ProxyCompletionsFilterBy$outboundSchema, PostV2ProxyCompletionsFilterBy$, PostV2ProxyCompletionsSearchOptions$inboundSchema, PostV2ProxyCompletionsSearchOptions$outboundSchema, PostV2ProxyCompletionsSearchOptions$, PostV2ProxyCompletionsProvider$inboundSchema, PostV2ProxyCompletionsProvider$outboundSchema, PostV2ProxyCompletionsProvider$, PostV2ProxyCompletionsModelType$inboundSchema, PostV2ProxyCompletionsModelType$outboundSchema, PostV2ProxyCompletionsModelType$, PostV2ProxyCompletionsModelParameters$inboundSchema, PostV2ProxyCompletionsModelParameters$outboundSchema, PostV2ProxyCompletionsModelParameters$, PostV2ProxyCompletionsRerankConfig$inboundSchema, PostV2ProxyCompletionsRerankConfig$outboundSchema, PostV2ProxyCompletionsRerankConfig$, PostV2ProxyCompletionsProxyProvider$inboundSchema, PostV2ProxyCompletionsProxyProvider$outboundSchema, PostV2ProxyCompletionsProxyProvider$, PostV2ProxyCompletionsAgenticRagConfig$inboundSchema, PostV2ProxyCompletionsAgenticRagConfig$outboundSchema, PostV2ProxyCompletionsAgenticRagConfig$, PostV2ProxyCompletionsKnowledgeBases$inboundSchema, PostV2ProxyCompletionsKnowledgeBases$outboundSchema, PostV2ProxyCompletionsKnowledgeBases$, PostV2ProxyCompletionsOrq$inboundSchema, PostV2ProxyCompletionsOrq$outboundSchema, PostV2ProxyCompletionsOrq$, PostV2ProxyCompletionsRequestBody$inboundSchema, PostV2ProxyCompletionsRequestBody$outboundSchema, PostV2ProxyCompletionsRequestBody$, PostV2ProxyCompletionsProxyFinishReason$inboundSchema, PostV2ProxyCompletionsProxyFinishReason$outboundSchema, PostV2ProxyCompletionsProxyFinishReason$, PostV2ProxyCompletionsProxyChoices$inboundSchema, PostV2ProxyCompletionsProxyChoices$outboundSchema, PostV2ProxyCompletionsProxyChoices$, PostV2ProxyCompletionsCreated$inboundSchema, PostV2ProxyCompletionsCreated$outboundSchema, PostV2ProxyCompletionsCreated$, PostV2ProxyCompletionsProxyPromptTokensDetails$inboundSchema, PostV2ProxyCompletionsProxyPromptTokensDetails$outboundSchema, PostV2ProxyCompletionsProxyPromptTokensDetails$, PostV2ProxyCompletionsProxyCompletionTokensDetails$inboundSchema, PostV2ProxyCompletionsProxyCompletionTokensDetails$outboundSchema, PostV2ProxyCompletionsProxyCompletionTokensDetails$, PostV2ProxyCompletionsProxyUsage$inboundSchema, PostV2ProxyCompletionsProxyUsage$outboundSchema, PostV2ProxyCompletionsProxyUsage$, PostV2ProxyCompletionsData$inboundSchema, PostV2ProxyCompletionsData$outboundSchema, PostV2ProxyCompletionsData$, PostV2ProxyCompletionsProxyResponseBody$inboundSchema, PostV2ProxyCompletionsProxyResponseBody$outboundSchema, PostV2ProxyCompletionsProxyResponseBody$, PostV2ProxyCompletionsFinishReason$inboundSchema, PostV2ProxyCompletionsFinishReason$outboundSchema, PostV2ProxyCompletionsFinishReason$, PostV2ProxyCompletionsChoices$inboundSchema, PostV2ProxyCompletionsChoices$outboundSchema, PostV2ProxyCompletionsChoices$, Created$inboundSchema, Created$outboundSchema, Created$, PostV2ProxyCompletionsPromptTokensDetails$inboundSchema, PostV2ProxyCompletionsPromptTokensDetails$outboundSchema, PostV2ProxyCompletionsPromptTokensDetails$, PostV2ProxyCompletionsCompletionTokensDetails$inboundSchema, PostV2ProxyCompletionsCompletionTokensDetails$outboundSchema, PostV2ProxyCompletionsCompletionTokensDetails$, PostV2ProxyCompletionsUsage$inboundSchema, PostV2ProxyCompletionsUsage$outboundSchema, PostV2ProxyCompletionsUsage$, PostV2ProxyCompletionsResponseBody$inboundSchema, PostV2ProxyCompletionsResponseBody$outboundSchema, PostV2ProxyCompletionsResponseBody$, PostV2ProxyCompletionsResponse$inboundSchema, PostV2ProxyCompletionsResponse$outboundSchema, PostV2ProxyCompletionsResponse$;
|
|
65531
65531
|
var init_postv2proxycompletions = __esm(() => {
|
|
65532
65532
|
init_esm();
|
|
65533
65533
|
init_event_streams();
|
|
65534
65534
|
init_primitives();
|
|
65535
|
+
init_components();
|
|
65536
|
+
PostV2ProxyCompletionsVersion = {
|
|
65537
|
+
Latest: "latest"
|
|
65538
|
+
};
|
|
65539
|
+
PostV2ProxyCompletionsType = {
|
|
65540
|
+
ExactMatch: "exact_match"
|
|
65541
|
+
};
|
|
65542
|
+
PostV2ProxyCompletionsSearchType = {
|
|
65543
|
+
VectorSearch: "vector_search",
|
|
65544
|
+
KeywordSearch: "keyword_search",
|
|
65545
|
+
HybridSearch: "hybrid_search"
|
|
65546
|
+
};
|
|
65547
|
+
PostV2ProxyCompletionsProvider = {
|
|
65548
|
+
Cohere: "cohere",
|
|
65549
|
+
Openai: "openai",
|
|
65550
|
+
Anthropic: "anthropic",
|
|
65551
|
+
Huggingface: "huggingface",
|
|
65552
|
+
Replicate: "replicate",
|
|
65553
|
+
Google: "google",
|
|
65554
|
+
GoogleAi: "google-ai",
|
|
65555
|
+
Azure: "azure",
|
|
65556
|
+
Aws: "aws",
|
|
65557
|
+
Anyscale: "anyscale",
|
|
65558
|
+
Perplexity: "perplexity",
|
|
65559
|
+
Groq: "groq",
|
|
65560
|
+
Fal: "fal",
|
|
65561
|
+
Leonardoai: "leonardoai",
|
|
65562
|
+
Nvidia: "nvidia",
|
|
65563
|
+
Jina: "jina",
|
|
65564
|
+
Togetherai: "togetherai",
|
|
65565
|
+
Elevenlabs: "elevenlabs",
|
|
65566
|
+
Litellm: "litellm",
|
|
65567
|
+
Openailike: "openailike",
|
|
65568
|
+
Cerebras: "cerebras",
|
|
65569
|
+
Bytedance: "bytedance"
|
|
65570
|
+
};
|
|
65571
|
+
PostV2ProxyCompletionsModelType = {
|
|
65572
|
+
Rerank: "rerank"
|
|
65573
|
+
};
|
|
65574
|
+
PostV2ProxyCompletionsProxyProvider = {
|
|
65575
|
+
Cohere: "cohere",
|
|
65576
|
+
Openai: "openai",
|
|
65577
|
+
Anthropic: "anthropic",
|
|
65578
|
+
Huggingface: "huggingface",
|
|
65579
|
+
Replicate: "replicate",
|
|
65580
|
+
Google: "google",
|
|
65581
|
+
GoogleAi: "google-ai",
|
|
65582
|
+
Azure: "azure",
|
|
65583
|
+
Aws: "aws",
|
|
65584
|
+
Anyscale: "anyscale",
|
|
65585
|
+
Perplexity: "perplexity",
|
|
65586
|
+
Groq: "groq",
|
|
65587
|
+
Fal: "fal",
|
|
65588
|
+
Leonardoai: "leonardoai",
|
|
65589
|
+
Nvidia: "nvidia",
|
|
65590
|
+
Jina: "jina",
|
|
65591
|
+
Togetherai: "togetherai",
|
|
65592
|
+
Elevenlabs: "elevenlabs",
|
|
65593
|
+
Litellm: "litellm",
|
|
65594
|
+
Openailike: "openailike",
|
|
65595
|
+
Cerebras: "cerebras",
|
|
65596
|
+
Bytedance: "bytedance"
|
|
65597
|
+
};
|
|
65535
65598
|
PostV2ProxyCompletionsProxyFinishReason = {
|
|
65536
65599
|
Stop: "stop",
|
|
65537
65600
|
Length: "length",
|
|
@@ -65550,6 +65613,826 @@ var init_postv2proxycompletions = __esm(() => {
|
|
|
65550
65613
|
PostV2ProxyCompletionsStop$.inboundSchema = PostV2ProxyCompletionsStop$inboundSchema;
|
|
65551
65614
|
PostV2ProxyCompletionsStop$.outboundSchema = PostV2ProxyCompletionsStop$outboundSchema;
|
|
65552
65615
|
})(PostV2ProxyCompletionsStop$ ||= {});
|
|
65616
|
+
PostV2ProxyCompletionsRetry$inboundSchema = objectType({
|
|
65617
|
+
count: numberType().default(3),
|
|
65618
|
+
on_codes: arrayType(numberType()).optional()
|
|
65619
|
+
}).transform((v2) => {
|
|
65620
|
+
return remap(v2, {
|
|
65621
|
+
on_codes: "onCodes"
|
|
65622
|
+
});
|
|
65623
|
+
});
|
|
65624
|
+
PostV2ProxyCompletionsRetry$outboundSchema = objectType({
|
|
65625
|
+
count: numberType().default(3),
|
|
65626
|
+
onCodes: arrayType(numberType()).optional()
|
|
65627
|
+
}).transform((v2) => {
|
|
65628
|
+
return remap(v2, {
|
|
65629
|
+
onCodes: "on_codes"
|
|
65630
|
+
});
|
|
65631
|
+
});
|
|
65632
|
+
((PostV2ProxyCompletionsRetry$) => {
|
|
65633
|
+
PostV2ProxyCompletionsRetry$.inboundSchema = PostV2ProxyCompletionsRetry$inboundSchema;
|
|
65634
|
+
PostV2ProxyCompletionsRetry$.outboundSchema = PostV2ProxyCompletionsRetry$outboundSchema;
|
|
65635
|
+
})(PostV2ProxyCompletionsRetry$ ||= {});
|
|
65636
|
+
PostV2ProxyCompletionsFallbacks$inboundSchema = objectType({
|
|
65637
|
+
model: stringType()
|
|
65638
|
+
});
|
|
65639
|
+
PostV2ProxyCompletionsFallbacks$outboundSchema = objectType({
|
|
65640
|
+
model: stringType()
|
|
65641
|
+
});
|
|
65642
|
+
((PostV2ProxyCompletionsFallbacks$) => {
|
|
65643
|
+
PostV2ProxyCompletionsFallbacks$.inboundSchema = PostV2ProxyCompletionsFallbacks$inboundSchema;
|
|
65644
|
+
PostV2ProxyCompletionsFallbacks$.outboundSchema = PostV2ProxyCompletionsFallbacks$outboundSchema;
|
|
65645
|
+
})(PostV2ProxyCompletionsFallbacks$ ||= {});
|
|
65646
|
+
PostV2ProxyCompletionsVersion$inboundSchema = nativeEnumType(PostV2ProxyCompletionsVersion);
|
|
65647
|
+
PostV2ProxyCompletionsVersion$outboundSchema = PostV2ProxyCompletionsVersion$inboundSchema;
|
|
65648
|
+
((PostV2ProxyCompletionsVersion$) => {
|
|
65649
|
+
PostV2ProxyCompletionsVersion$.inboundSchema = PostV2ProxyCompletionsVersion$inboundSchema;
|
|
65650
|
+
PostV2ProxyCompletionsVersion$.outboundSchema = PostV2ProxyCompletionsVersion$outboundSchema;
|
|
65651
|
+
})(PostV2ProxyCompletionsVersion$ ||= {});
|
|
65652
|
+
PostV2ProxyCompletionsPrompt$inboundSchema = objectType({
|
|
65653
|
+
id: stringType(),
|
|
65654
|
+
version: PostV2ProxyCompletionsVersion$inboundSchema
|
|
65655
|
+
});
|
|
65656
|
+
PostV2ProxyCompletionsPrompt$outboundSchema = objectType({
|
|
65657
|
+
id: stringType(),
|
|
65658
|
+
version: PostV2ProxyCompletionsVersion$outboundSchema
|
|
65659
|
+
});
|
|
65660
|
+
((PostV2ProxyCompletionsPrompt$) => {
|
|
65661
|
+
PostV2ProxyCompletionsPrompt$.inboundSchema = PostV2ProxyCompletionsPrompt$inboundSchema;
|
|
65662
|
+
PostV2ProxyCompletionsPrompt$.outboundSchema = PostV2ProxyCompletionsPrompt$outboundSchema;
|
|
65663
|
+
})(PostV2ProxyCompletionsPrompt$ ||= {});
|
|
65664
|
+
PostV2ProxyCompletionsThread$inboundSchema = objectType({
|
|
65665
|
+
id: stringType(),
|
|
65666
|
+
tags: arrayType(stringType()).optional()
|
|
65667
|
+
});
|
|
65668
|
+
PostV2ProxyCompletionsThread$outboundSchema = objectType({
|
|
65669
|
+
id: stringType(),
|
|
65670
|
+
tags: arrayType(stringType()).optional()
|
|
65671
|
+
});
|
|
65672
|
+
((PostV2ProxyCompletionsThread$) => {
|
|
65673
|
+
PostV2ProxyCompletionsThread$.inboundSchema = PostV2ProxyCompletionsThread$inboundSchema;
|
|
65674
|
+
PostV2ProxyCompletionsThread$.outboundSchema = PostV2ProxyCompletionsThread$outboundSchema;
|
|
65675
|
+
})(PostV2ProxyCompletionsThread$ ||= {});
|
|
65676
|
+
PostV2ProxyCompletionsType$inboundSchema = nativeEnumType(PostV2ProxyCompletionsType);
|
|
65677
|
+
PostV2ProxyCompletionsType$outboundSchema = PostV2ProxyCompletionsType$inboundSchema;
|
|
65678
|
+
((PostV2ProxyCompletionsType$) => {
|
|
65679
|
+
PostV2ProxyCompletionsType$.inboundSchema = PostV2ProxyCompletionsType$inboundSchema;
|
|
65680
|
+
PostV2ProxyCompletionsType$.outboundSchema = PostV2ProxyCompletionsType$outboundSchema;
|
|
65681
|
+
})(PostV2ProxyCompletionsType$ ||= {});
|
|
65682
|
+
PostV2ProxyCompletionsCache$inboundSchema = objectType({
|
|
65683
|
+
ttl: numberType().default(1800),
|
|
65684
|
+
type: PostV2ProxyCompletionsType$inboundSchema
|
|
65685
|
+
});
|
|
65686
|
+
PostV2ProxyCompletionsCache$outboundSchema = objectType({
|
|
65687
|
+
ttl: numberType().default(1800),
|
|
65688
|
+
type: PostV2ProxyCompletionsType$outboundSchema
|
|
65689
|
+
});
|
|
65690
|
+
((PostV2ProxyCompletionsCache$) => {
|
|
65691
|
+
PostV2ProxyCompletionsCache$.inboundSchema = PostV2ProxyCompletionsCache$inboundSchema;
|
|
65692
|
+
PostV2ProxyCompletionsCache$.outboundSchema = PostV2ProxyCompletionsCache$outboundSchema;
|
|
65693
|
+
})(PostV2ProxyCompletionsCache$ ||= {});
|
|
65694
|
+
PostV2ProxyCompletionsSearchType$inboundSchema = nativeEnumType(PostV2ProxyCompletionsSearchType);
|
|
65695
|
+
PostV2ProxyCompletionsSearchType$outboundSchema = PostV2ProxyCompletionsSearchType$inboundSchema;
|
|
65696
|
+
((PostV2ProxyCompletionsSearchType$) => {
|
|
65697
|
+
PostV2ProxyCompletionsSearchType$.inboundSchema = PostV2ProxyCompletionsSearchType$inboundSchema;
|
|
65698
|
+
PostV2ProxyCompletionsSearchType$.outboundSchema = PostV2ProxyCompletionsSearchType$outboundSchema;
|
|
65699
|
+
})(PostV2ProxyCompletionsSearchType$ ||= {});
|
|
65700
|
+
PostV2ProxyCompletionsOrExists$inboundSchema = objectType({
|
|
65701
|
+
exists: booleanType()
|
|
65702
|
+
});
|
|
65703
|
+
PostV2ProxyCompletionsOrExists$outboundSchema = objectType({
|
|
65704
|
+
exists: booleanType()
|
|
65705
|
+
});
|
|
65706
|
+
((PostV2ProxyCompletionsOrExists$) => {
|
|
65707
|
+
PostV2ProxyCompletionsOrExists$.inboundSchema = PostV2ProxyCompletionsOrExists$inboundSchema;
|
|
65708
|
+
PostV2ProxyCompletionsOrExists$.outboundSchema = PostV2ProxyCompletionsOrExists$outboundSchema;
|
|
65709
|
+
})(PostV2ProxyCompletionsOrExists$ ||= {});
|
|
65710
|
+
PostV2ProxyCompletionsOrProxyNin$inboundSchema = unionType([stringType(), numberType(), booleanType()]);
|
|
65711
|
+
PostV2ProxyCompletionsOrProxyNin$outboundSchema = unionType([stringType(), numberType(), booleanType()]);
|
|
65712
|
+
((PostV2ProxyCompletionsOrProxyNin$) => {
|
|
65713
|
+
PostV2ProxyCompletionsOrProxyNin$.inboundSchema = PostV2ProxyCompletionsOrProxyNin$inboundSchema;
|
|
65714
|
+
PostV2ProxyCompletionsOrProxyNin$.outboundSchema = PostV2ProxyCompletionsOrProxyNin$outboundSchema;
|
|
65715
|
+
})(PostV2ProxyCompletionsOrProxyNin$ ||= {});
|
|
65716
|
+
PostV2ProxyCompletionsOrNin$inboundSchema = objectType({
|
|
65717
|
+
nin: arrayType(unionType([stringType(), numberType(), booleanType()]))
|
|
65718
|
+
});
|
|
65719
|
+
PostV2ProxyCompletionsOrNin$outboundSchema = objectType({
|
|
65720
|
+
nin: arrayType(unionType([stringType(), numberType(), booleanType()]))
|
|
65721
|
+
});
|
|
65722
|
+
((PostV2ProxyCompletionsOrNin$) => {
|
|
65723
|
+
PostV2ProxyCompletionsOrNin$.inboundSchema = PostV2ProxyCompletionsOrNin$inboundSchema;
|
|
65724
|
+
PostV2ProxyCompletionsOrNin$.outboundSchema = PostV2ProxyCompletionsOrNin$outboundSchema;
|
|
65725
|
+
})(PostV2ProxyCompletionsOrNin$ ||= {});
|
|
65726
|
+
PostV2ProxyCompletionsOrProxyIn$inboundSchema = unionType([stringType(), numberType(), booleanType()]);
|
|
65727
|
+
PostV2ProxyCompletionsOrProxyIn$outboundSchema = unionType([stringType(), numberType(), booleanType()]);
|
|
65728
|
+
((PostV2ProxyCompletionsOrProxyIn$) => {
|
|
65729
|
+
PostV2ProxyCompletionsOrProxyIn$.inboundSchema = PostV2ProxyCompletionsOrProxyIn$inboundSchema;
|
|
65730
|
+
PostV2ProxyCompletionsOrProxyIn$.outboundSchema = PostV2ProxyCompletionsOrProxyIn$outboundSchema;
|
|
65731
|
+
})(PostV2ProxyCompletionsOrProxyIn$ ||= {});
|
|
65732
|
+
PostV2ProxyCompletionsOrIn$inboundSchema = objectType({
|
|
65733
|
+
in: arrayType(unionType([stringType(), numberType(), booleanType()]))
|
|
65734
|
+
});
|
|
65735
|
+
PostV2ProxyCompletionsOrIn$outboundSchema = objectType({
|
|
65736
|
+
in: arrayType(unionType([stringType(), numberType(), booleanType()]))
|
|
65737
|
+
});
|
|
65738
|
+
((PostV2ProxyCompletionsOrIn$) => {
|
|
65739
|
+
PostV2ProxyCompletionsOrIn$.inboundSchema = PostV2ProxyCompletionsOrIn$inboundSchema;
|
|
65740
|
+
PostV2ProxyCompletionsOrIn$.outboundSchema = PostV2ProxyCompletionsOrIn$outboundSchema;
|
|
65741
|
+
})(PostV2ProxyCompletionsOrIn$ ||= {});
|
|
65742
|
+
PostV2ProxyCompletionsOrLte$inboundSchema = objectType({
|
|
65743
|
+
lte: numberType()
|
|
65744
|
+
});
|
|
65745
|
+
PostV2ProxyCompletionsOrLte$outboundSchema = objectType({
|
|
65746
|
+
lte: numberType()
|
|
65747
|
+
});
|
|
65748
|
+
((PostV2ProxyCompletionsOrLte$) => {
|
|
65749
|
+
PostV2ProxyCompletionsOrLte$.inboundSchema = PostV2ProxyCompletionsOrLte$inboundSchema;
|
|
65750
|
+
PostV2ProxyCompletionsOrLte$.outboundSchema = PostV2ProxyCompletionsOrLte$outboundSchema;
|
|
65751
|
+
})(PostV2ProxyCompletionsOrLte$ ||= {});
|
|
65752
|
+
PostV2ProxyCompletionsOrLt$inboundSchema = objectType({
|
|
65753
|
+
lt: numberType()
|
|
65754
|
+
});
|
|
65755
|
+
PostV2ProxyCompletionsOrLt$outboundSchema = objectType({
|
|
65756
|
+
lt: numberType()
|
|
65757
|
+
});
|
|
65758
|
+
((PostV2ProxyCompletionsOrLt$) => {
|
|
65759
|
+
PostV2ProxyCompletionsOrLt$.inboundSchema = PostV2ProxyCompletionsOrLt$inboundSchema;
|
|
65760
|
+
PostV2ProxyCompletionsOrLt$.outboundSchema = PostV2ProxyCompletionsOrLt$outboundSchema;
|
|
65761
|
+
})(PostV2ProxyCompletionsOrLt$ ||= {});
|
|
65762
|
+
PostV2ProxyCompletionsOrGte$inboundSchema = objectType({
|
|
65763
|
+
gte: numberType()
|
|
65764
|
+
});
|
|
65765
|
+
PostV2ProxyCompletionsOrGte$outboundSchema = objectType({
|
|
65766
|
+
gte: numberType()
|
|
65767
|
+
});
|
|
65768
|
+
((PostV2ProxyCompletionsOrGte$) => {
|
|
65769
|
+
PostV2ProxyCompletionsOrGte$.inboundSchema = PostV2ProxyCompletionsOrGte$inboundSchema;
|
|
65770
|
+
PostV2ProxyCompletionsOrGte$.outboundSchema = PostV2ProxyCompletionsOrGte$outboundSchema;
|
|
65771
|
+
})(PostV2ProxyCompletionsOrGte$ ||= {});
|
|
65772
|
+
PostV2ProxyCompletionsOr3$inboundSchema = objectType({
|
|
65773
|
+
gt: numberType()
|
|
65774
|
+
});
|
|
65775
|
+
PostV2ProxyCompletionsOr3$outboundSchema = objectType({
|
|
65776
|
+
gt: numberType()
|
|
65777
|
+
});
|
|
65778
|
+
((PostV2ProxyCompletionsOr3$) => {
|
|
65779
|
+
PostV2ProxyCompletionsOr3$.inboundSchema = PostV2ProxyCompletionsOr3$inboundSchema;
|
|
65780
|
+
PostV2ProxyCompletionsOr3$.outboundSchema = PostV2ProxyCompletionsOr3$outboundSchema;
|
|
65781
|
+
})(PostV2ProxyCompletionsOr3$ ||= {});
|
|
65782
|
+
PostV2ProxyCompletionsOrProxyNe$inboundSchema = unionType([stringType(), numberType(), booleanType()]);
|
|
65783
|
+
PostV2ProxyCompletionsOrProxyNe$outboundSchema = unionType([stringType(), numberType(), booleanType()]);
|
|
65784
|
+
((PostV2ProxyCompletionsOrProxyNe$) => {
|
|
65785
|
+
PostV2ProxyCompletionsOrProxyNe$.inboundSchema = PostV2ProxyCompletionsOrProxyNe$inboundSchema;
|
|
65786
|
+
PostV2ProxyCompletionsOrProxyNe$.outboundSchema = PostV2ProxyCompletionsOrProxyNe$outboundSchema;
|
|
65787
|
+
})(PostV2ProxyCompletionsOrProxyNe$ ||= {});
|
|
65788
|
+
PostV2ProxyCompletionsOrNe$inboundSchema = objectType({
|
|
65789
|
+
ne: unionType([stringType(), numberType(), booleanType()])
|
|
65790
|
+
});
|
|
65791
|
+
PostV2ProxyCompletionsOrNe$outboundSchema = objectType({
|
|
65792
|
+
ne: unionType([stringType(), numberType(), booleanType()])
|
|
65793
|
+
});
|
|
65794
|
+
((PostV2ProxyCompletionsOrNe$) => {
|
|
65795
|
+
PostV2ProxyCompletionsOrNe$.inboundSchema = PostV2ProxyCompletionsOrNe$inboundSchema;
|
|
65796
|
+
PostV2ProxyCompletionsOrNe$.outboundSchema = PostV2ProxyCompletionsOrNe$outboundSchema;
|
|
65797
|
+
})(PostV2ProxyCompletionsOrNe$ ||= {});
|
|
65798
|
+
PostV2ProxyCompletionsOrProxyEq$inboundSchema = unionType([stringType(), numberType(), booleanType()]);
|
|
65799
|
+
PostV2ProxyCompletionsOrProxyEq$outboundSchema = unionType([stringType(), numberType(), booleanType()]);
|
|
65800
|
+
((PostV2ProxyCompletionsOrProxyEq$) => {
|
|
65801
|
+
PostV2ProxyCompletionsOrProxyEq$.inboundSchema = PostV2ProxyCompletionsOrProxyEq$inboundSchema;
|
|
65802
|
+
PostV2ProxyCompletionsOrProxyEq$.outboundSchema = PostV2ProxyCompletionsOrProxyEq$outboundSchema;
|
|
65803
|
+
})(PostV2ProxyCompletionsOrProxyEq$ ||= {});
|
|
65804
|
+
PostV2ProxyCompletionsOrEq$inboundSchema = objectType({
|
|
65805
|
+
eq: unionType([stringType(), numberType(), booleanType()])
|
|
65806
|
+
});
|
|
65807
|
+
PostV2ProxyCompletionsOrEq$outboundSchema = objectType({
|
|
65808
|
+
eq: unionType([stringType(), numberType(), booleanType()])
|
|
65809
|
+
});
|
|
65810
|
+
((PostV2ProxyCompletionsOrEq$) => {
|
|
65811
|
+
PostV2ProxyCompletionsOrEq$.inboundSchema = PostV2ProxyCompletionsOrEq$inboundSchema;
|
|
65812
|
+
PostV2ProxyCompletionsOrEq$.outboundSchema = PostV2ProxyCompletionsOrEq$outboundSchema;
|
|
65813
|
+
})(PostV2ProxyCompletionsOrEq$ ||= {});
|
|
65814
|
+
PostV2ProxyCompletionsFilterByProxyOr$inboundSchema = unionType([
|
|
65815
|
+
lazyType(() => PostV2ProxyCompletionsOrEq$inboundSchema),
|
|
65816
|
+
lazyType(() => PostV2ProxyCompletionsOrNe$inboundSchema),
|
|
65817
|
+
lazyType(() => PostV2ProxyCompletionsOr3$inboundSchema),
|
|
65818
|
+
lazyType(() => PostV2ProxyCompletionsOrGte$inboundSchema),
|
|
65819
|
+
lazyType(() => PostV2ProxyCompletionsOrLt$inboundSchema),
|
|
65820
|
+
lazyType(() => PostV2ProxyCompletionsOrLte$inboundSchema),
|
|
65821
|
+
lazyType(() => PostV2ProxyCompletionsOrIn$inboundSchema),
|
|
65822
|
+
lazyType(() => PostV2ProxyCompletionsOrNin$inboundSchema),
|
|
65823
|
+
lazyType(() => PostV2ProxyCompletionsOrExists$inboundSchema)
|
|
65824
|
+
]);
|
|
65825
|
+
PostV2ProxyCompletionsFilterByProxyOr$outboundSchema = unionType([
|
|
65826
|
+
lazyType(() => PostV2ProxyCompletionsOrEq$outboundSchema),
|
|
65827
|
+
lazyType(() => PostV2ProxyCompletionsOrNe$outboundSchema),
|
|
65828
|
+
lazyType(() => PostV2ProxyCompletionsOr3$outboundSchema),
|
|
65829
|
+
lazyType(() => PostV2ProxyCompletionsOrGte$outboundSchema),
|
|
65830
|
+
lazyType(() => PostV2ProxyCompletionsOrLt$outboundSchema),
|
|
65831
|
+
lazyType(() => PostV2ProxyCompletionsOrLte$outboundSchema),
|
|
65832
|
+
lazyType(() => PostV2ProxyCompletionsOrIn$outboundSchema),
|
|
65833
|
+
lazyType(() => PostV2ProxyCompletionsOrNin$outboundSchema),
|
|
65834
|
+
lazyType(() => PostV2ProxyCompletionsOrExists$outboundSchema)
|
|
65835
|
+
]);
|
|
65836
|
+
((PostV2ProxyCompletionsFilterByProxyOr$) => {
|
|
65837
|
+
PostV2ProxyCompletionsFilterByProxyOr$.inboundSchema = PostV2ProxyCompletionsFilterByProxyOr$inboundSchema;
|
|
65838
|
+
PostV2ProxyCompletionsFilterByProxyOr$.outboundSchema = PostV2ProxyCompletionsFilterByProxyOr$outboundSchema;
|
|
65839
|
+
})(PostV2ProxyCompletionsFilterByProxyOr$ ||= {});
|
|
65840
|
+
PostV2ProxyCompletionsFilterByOr$inboundSchema = objectType({
|
|
65841
|
+
or: arrayType(recordType(unionType([
|
|
65842
|
+
lazyType(() => PostV2ProxyCompletionsOrEq$inboundSchema),
|
|
65843
|
+
lazyType(() => PostV2ProxyCompletionsOrNe$inboundSchema),
|
|
65844
|
+
lazyType(() => PostV2ProxyCompletionsOr3$inboundSchema),
|
|
65845
|
+
lazyType(() => PostV2ProxyCompletionsOrGte$inboundSchema),
|
|
65846
|
+
lazyType(() => PostV2ProxyCompletionsOrLt$inboundSchema),
|
|
65847
|
+
lazyType(() => PostV2ProxyCompletionsOrLte$inboundSchema),
|
|
65848
|
+
lazyType(() => PostV2ProxyCompletionsOrIn$inboundSchema),
|
|
65849
|
+
lazyType(() => PostV2ProxyCompletionsOrNin$inboundSchema),
|
|
65850
|
+
lazyType(() => PostV2ProxyCompletionsOrExists$inboundSchema)
|
|
65851
|
+
])))
|
|
65852
|
+
});
|
|
65853
|
+
PostV2ProxyCompletionsFilterByOr$outboundSchema = objectType({
|
|
65854
|
+
or: arrayType(recordType(unionType([
|
|
65855
|
+
lazyType(() => PostV2ProxyCompletionsOrEq$outboundSchema),
|
|
65856
|
+
lazyType(() => PostV2ProxyCompletionsOrNe$outboundSchema),
|
|
65857
|
+
lazyType(() => PostV2ProxyCompletionsOr3$outboundSchema),
|
|
65858
|
+
lazyType(() => PostV2ProxyCompletionsOrGte$outboundSchema),
|
|
65859
|
+
lazyType(() => PostV2ProxyCompletionsOrLt$outboundSchema),
|
|
65860
|
+
lazyType(() => PostV2ProxyCompletionsOrLte$outboundSchema),
|
|
65861
|
+
lazyType(() => PostV2ProxyCompletionsOrIn$outboundSchema),
|
|
65862
|
+
lazyType(() => PostV2ProxyCompletionsOrNin$outboundSchema),
|
|
65863
|
+
lazyType(() => PostV2ProxyCompletionsOrExists$outboundSchema)
|
|
65864
|
+
])))
|
|
65865
|
+
});
|
|
65866
|
+
((PostV2ProxyCompletionsFilterByOr$) => {
|
|
65867
|
+
PostV2ProxyCompletionsFilterByOr$.inboundSchema = PostV2ProxyCompletionsFilterByOr$inboundSchema;
|
|
65868
|
+
PostV2ProxyCompletionsFilterByOr$.outboundSchema = PostV2ProxyCompletionsFilterByOr$outboundSchema;
|
|
65869
|
+
})(PostV2ProxyCompletionsFilterByOr$ ||= {});
|
|
65870
|
+
PostV2ProxyCompletionsAndExists$inboundSchema = objectType({
|
|
65871
|
+
exists: booleanType()
|
|
65872
|
+
});
|
|
65873
|
+
PostV2ProxyCompletionsAndExists$outboundSchema = objectType({
|
|
65874
|
+
exists: booleanType()
|
|
65875
|
+
});
|
|
65876
|
+
((PostV2ProxyCompletionsAndExists$) => {
|
|
65877
|
+
PostV2ProxyCompletionsAndExists$.inboundSchema = PostV2ProxyCompletionsAndExists$inboundSchema;
|
|
65878
|
+
PostV2ProxyCompletionsAndExists$.outboundSchema = PostV2ProxyCompletionsAndExists$outboundSchema;
|
|
65879
|
+
})(PostV2ProxyCompletionsAndExists$ ||= {});
|
|
65880
|
+
PostV2ProxyCompletionsAndProxyNin$inboundSchema = unionType([stringType(), numberType(), booleanType()]);
|
|
65881
|
+
PostV2ProxyCompletionsAndProxyNin$outboundSchema = unionType([stringType(), numberType(), booleanType()]);
|
|
65882
|
+
((PostV2ProxyCompletionsAndProxyNin$) => {
|
|
65883
|
+
PostV2ProxyCompletionsAndProxyNin$.inboundSchema = PostV2ProxyCompletionsAndProxyNin$inboundSchema;
|
|
65884
|
+
PostV2ProxyCompletionsAndProxyNin$.outboundSchema = PostV2ProxyCompletionsAndProxyNin$outboundSchema;
|
|
65885
|
+
})(PostV2ProxyCompletionsAndProxyNin$ ||= {});
|
|
65886
|
+
PostV2ProxyCompletionsAndNin$inboundSchema = objectType({
|
|
65887
|
+
nin: arrayType(unionType([stringType(), numberType(), booleanType()]))
|
|
65888
|
+
});
|
|
65889
|
+
PostV2ProxyCompletionsAndNin$outboundSchema = objectType({
|
|
65890
|
+
nin: arrayType(unionType([stringType(), numberType(), booleanType()]))
|
|
65891
|
+
});
|
|
65892
|
+
((PostV2ProxyCompletionsAndNin$) => {
|
|
65893
|
+
PostV2ProxyCompletionsAndNin$.inboundSchema = PostV2ProxyCompletionsAndNin$inboundSchema;
|
|
65894
|
+
PostV2ProxyCompletionsAndNin$.outboundSchema = PostV2ProxyCompletionsAndNin$outboundSchema;
|
|
65895
|
+
})(PostV2ProxyCompletionsAndNin$ ||= {});
|
|
65896
|
+
PostV2ProxyCompletionsAndProxyIn$inboundSchema = unionType([stringType(), numberType(), booleanType()]);
|
|
65897
|
+
PostV2ProxyCompletionsAndProxyIn$outboundSchema = unionType([stringType(), numberType(), booleanType()]);
|
|
65898
|
+
((PostV2ProxyCompletionsAndProxyIn$) => {
|
|
65899
|
+
PostV2ProxyCompletionsAndProxyIn$.inboundSchema = PostV2ProxyCompletionsAndProxyIn$inboundSchema;
|
|
65900
|
+
PostV2ProxyCompletionsAndProxyIn$.outboundSchema = PostV2ProxyCompletionsAndProxyIn$outboundSchema;
|
|
65901
|
+
})(PostV2ProxyCompletionsAndProxyIn$ ||= {});
|
|
65902
|
+
PostV2ProxyCompletionsAndIn$inboundSchema = objectType({
|
|
65903
|
+
in: arrayType(unionType([stringType(), numberType(), booleanType()]))
|
|
65904
|
+
});
|
|
65905
|
+
PostV2ProxyCompletionsAndIn$outboundSchema = objectType({
|
|
65906
|
+
in: arrayType(unionType([stringType(), numberType(), booleanType()]))
|
|
65907
|
+
});
|
|
65908
|
+
((PostV2ProxyCompletionsAndIn$) => {
|
|
65909
|
+
PostV2ProxyCompletionsAndIn$.inboundSchema = PostV2ProxyCompletionsAndIn$inboundSchema;
|
|
65910
|
+
PostV2ProxyCompletionsAndIn$.outboundSchema = PostV2ProxyCompletionsAndIn$outboundSchema;
|
|
65911
|
+
})(PostV2ProxyCompletionsAndIn$ ||= {});
|
|
65912
|
+
PostV2ProxyCompletionsAndLte$inboundSchema = objectType({
|
|
65913
|
+
lte: numberType()
|
|
65914
|
+
});
|
|
65915
|
+
PostV2ProxyCompletionsAndLte$outboundSchema = objectType({
|
|
65916
|
+
lte: numberType()
|
|
65917
|
+
});
|
|
65918
|
+
((PostV2ProxyCompletionsAndLte$) => {
|
|
65919
|
+
PostV2ProxyCompletionsAndLte$.inboundSchema = PostV2ProxyCompletionsAndLte$inboundSchema;
|
|
65920
|
+
PostV2ProxyCompletionsAndLte$.outboundSchema = PostV2ProxyCompletionsAndLte$outboundSchema;
|
|
65921
|
+
})(PostV2ProxyCompletionsAndLte$ ||= {});
|
|
65922
|
+
PostV2ProxyCompletionsAndLt$inboundSchema = objectType({
|
|
65923
|
+
lt: numberType()
|
|
65924
|
+
});
|
|
65925
|
+
PostV2ProxyCompletionsAndLt$outboundSchema = objectType({
|
|
65926
|
+
lt: numberType()
|
|
65927
|
+
});
|
|
65928
|
+
((PostV2ProxyCompletionsAndLt$) => {
|
|
65929
|
+
PostV2ProxyCompletionsAndLt$.inboundSchema = PostV2ProxyCompletionsAndLt$inboundSchema;
|
|
65930
|
+
PostV2ProxyCompletionsAndLt$.outboundSchema = PostV2ProxyCompletionsAndLt$outboundSchema;
|
|
65931
|
+
})(PostV2ProxyCompletionsAndLt$ ||= {});
|
|
65932
|
+
PostV2ProxyCompletionsAndGte$inboundSchema = objectType({
|
|
65933
|
+
gte: numberType()
|
|
65934
|
+
});
|
|
65935
|
+
PostV2ProxyCompletionsAndGte$outboundSchema = objectType({
|
|
65936
|
+
gte: numberType()
|
|
65937
|
+
});
|
|
65938
|
+
((PostV2ProxyCompletionsAndGte$) => {
|
|
65939
|
+
PostV2ProxyCompletionsAndGte$.inboundSchema = PostV2ProxyCompletionsAndGte$inboundSchema;
|
|
65940
|
+
PostV2ProxyCompletionsAndGte$.outboundSchema = PostV2ProxyCompletionsAndGte$outboundSchema;
|
|
65941
|
+
})(PostV2ProxyCompletionsAndGte$ ||= {});
|
|
65942
|
+
PostV2ProxyCompletionsAnd3$inboundSchema = objectType({
|
|
65943
|
+
gt: numberType()
|
|
65944
|
+
});
|
|
65945
|
+
PostV2ProxyCompletionsAnd3$outboundSchema = objectType({
|
|
65946
|
+
gt: numberType()
|
|
65947
|
+
});
|
|
65948
|
+
((PostV2ProxyCompletionsAnd3$) => {
|
|
65949
|
+
PostV2ProxyCompletionsAnd3$.inboundSchema = PostV2ProxyCompletionsAnd3$inboundSchema;
|
|
65950
|
+
PostV2ProxyCompletionsAnd3$.outboundSchema = PostV2ProxyCompletionsAnd3$outboundSchema;
|
|
65951
|
+
})(PostV2ProxyCompletionsAnd3$ ||= {});
|
|
65952
|
+
PostV2ProxyCompletionsAndProxyNe$inboundSchema = unionType([stringType(), numberType(), booleanType()]);
|
|
65953
|
+
PostV2ProxyCompletionsAndProxyNe$outboundSchema = unionType([stringType(), numberType(), booleanType()]);
|
|
65954
|
+
((PostV2ProxyCompletionsAndProxyNe$) => {
|
|
65955
|
+
PostV2ProxyCompletionsAndProxyNe$.inboundSchema = PostV2ProxyCompletionsAndProxyNe$inboundSchema;
|
|
65956
|
+
PostV2ProxyCompletionsAndProxyNe$.outboundSchema = PostV2ProxyCompletionsAndProxyNe$outboundSchema;
|
|
65957
|
+
})(PostV2ProxyCompletionsAndProxyNe$ ||= {});
|
|
65958
|
+
PostV2ProxyCompletionsAndNe$inboundSchema = objectType({
|
|
65959
|
+
ne: unionType([stringType(), numberType(), booleanType()])
|
|
65960
|
+
});
|
|
65961
|
+
PostV2ProxyCompletionsAndNe$outboundSchema = objectType({
|
|
65962
|
+
ne: unionType([stringType(), numberType(), booleanType()])
|
|
65963
|
+
});
|
|
65964
|
+
((PostV2ProxyCompletionsAndNe$) => {
|
|
65965
|
+
PostV2ProxyCompletionsAndNe$.inboundSchema = PostV2ProxyCompletionsAndNe$inboundSchema;
|
|
65966
|
+
PostV2ProxyCompletionsAndNe$.outboundSchema = PostV2ProxyCompletionsAndNe$outboundSchema;
|
|
65967
|
+
})(PostV2ProxyCompletionsAndNe$ ||= {});
|
|
65968
|
+
PostV2ProxyCompletionsAndProxyEq$inboundSchema = unionType([stringType(), numberType(), booleanType()]);
|
|
65969
|
+
PostV2ProxyCompletionsAndProxyEq$outboundSchema = unionType([stringType(), numberType(), booleanType()]);
|
|
65970
|
+
((PostV2ProxyCompletionsAndProxyEq$) => {
|
|
65971
|
+
PostV2ProxyCompletionsAndProxyEq$.inboundSchema = PostV2ProxyCompletionsAndProxyEq$inboundSchema;
|
|
65972
|
+
PostV2ProxyCompletionsAndProxyEq$.outboundSchema = PostV2ProxyCompletionsAndProxyEq$outboundSchema;
|
|
65973
|
+
})(PostV2ProxyCompletionsAndProxyEq$ ||= {});
|
|
65974
|
+
PostV2ProxyCompletionsAndEq$inboundSchema = objectType({
|
|
65975
|
+
eq: unionType([stringType(), numberType(), booleanType()])
|
|
65976
|
+
});
|
|
65977
|
+
PostV2ProxyCompletionsAndEq$outboundSchema = objectType({
|
|
65978
|
+
eq: unionType([stringType(), numberType(), booleanType()])
|
|
65979
|
+
});
|
|
65980
|
+
((PostV2ProxyCompletionsAndEq$) => {
|
|
65981
|
+
PostV2ProxyCompletionsAndEq$.inboundSchema = PostV2ProxyCompletionsAndEq$inboundSchema;
|
|
65982
|
+
PostV2ProxyCompletionsAndEq$.outboundSchema = PostV2ProxyCompletionsAndEq$outboundSchema;
|
|
65983
|
+
})(PostV2ProxyCompletionsAndEq$ ||= {});
|
|
65984
|
+
PostV2ProxyCompletionsFilterByProxyAnd$inboundSchema = unionType([
|
|
65985
|
+
lazyType(() => PostV2ProxyCompletionsAndEq$inboundSchema),
|
|
65986
|
+
lazyType(() => PostV2ProxyCompletionsAndNe$inboundSchema),
|
|
65987
|
+
lazyType(() => PostV2ProxyCompletionsAnd3$inboundSchema),
|
|
65988
|
+
lazyType(() => PostV2ProxyCompletionsAndGte$inboundSchema),
|
|
65989
|
+
lazyType(() => PostV2ProxyCompletionsAndLt$inboundSchema),
|
|
65990
|
+
lazyType(() => PostV2ProxyCompletionsAndLte$inboundSchema),
|
|
65991
|
+
lazyType(() => PostV2ProxyCompletionsAndIn$inboundSchema),
|
|
65992
|
+
lazyType(() => PostV2ProxyCompletionsAndNin$inboundSchema),
|
|
65993
|
+
lazyType(() => PostV2ProxyCompletionsAndExists$inboundSchema)
|
|
65994
|
+
]);
|
|
65995
|
+
PostV2ProxyCompletionsFilterByProxyAnd$outboundSchema = unionType([
|
|
65996
|
+
lazyType(() => PostV2ProxyCompletionsAndEq$outboundSchema),
|
|
65997
|
+
lazyType(() => PostV2ProxyCompletionsAndNe$outboundSchema),
|
|
65998
|
+
lazyType(() => PostV2ProxyCompletionsAnd3$outboundSchema),
|
|
65999
|
+
lazyType(() => PostV2ProxyCompletionsAndGte$outboundSchema),
|
|
66000
|
+
lazyType(() => PostV2ProxyCompletionsAndLt$outboundSchema),
|
|
66001
|
+
lazyType(() => PostV2ProxyCompletionsAndLte$outboundSchema),
|
|
66002
|
+
lazyType(() => PostV2ProxyCompletionsAndIn$outboundSchema),
|
|
66003
|
+
lazyType(() => PostV2ProxyCompletionsAndNin$outboundSchema),
|
|
66004
|
+
lazyType(() => PostV2ProxyCompletionsAndExists$outboundSchema)
|
|
66005
|
+
]);
|
|
66006
|
+
((PostV2ProxyCompletionsFilterByProxyAnd$) => {
|
|
66007
|
+
PostV2ProxyCompletionsFilterByProxyAnd$.inboundSchema = PostV2ProxyCompletionsFilterByProxyAnd$inboundSchema;
|
|
66008
|
+
PostV2ProxyCompletionsFilterByProxyAnd$.outboundSchema = PostV2ProxyCompletionsFilterByProxyAnd$outboundSchema;
|
|
66009
|
+
})(PostV2ProxyCompletionsFilterByProxyAnd$ ||= {});
|
|
66010
|
+
PostV2ProxyCompletionsFilterByAnd$inboundSchema = objectType({
|
|
66011
|
+
and: arrayType(recordType(unionType([
|
|
66012
|
+
lazyType(() => PostV2ProxyCompletionsAndEq$inboundSchema),
|
|
66013
|
+
lazyType(() => PostV2ProxyCompletionsAndNe$inboundSchema),
|
|
66014
|
+
lazyType(() => PostV2ProxyCompletionsAnd3$inboundSchema),
|
|
66015
|
+
lazyType(() => PostV2ProxyCompletionsAndGte$inboundSchema),
|
|
66016
|
+
lazyType(() => PostV2ProxyCompletionsAndLt$inboundSchema),
|
|
66017
|
+
lazyType(() => PostV2ProxyCompletionsAndLte$inboundSchema),
|
|
66018
|
+
lazyType(() => PostV2ProxyCompletionsAndIn$inboundSchema),
|
|
66019
|
+
lazyType(() => PostV2ProxyCompletionsAndNin$inboundSchema),
|
|
66020
|
+
lazyType(() => PostV2ProxyCompletionsAndExists$inboundSchema)
|
|
66021
|
+
])))
|
|
66022
|
+
});
|
|
66023
|
+
PostV2ProxyCompletionsFilterByAnd$outboundSchema = objectType({
|
|
66024
|
+
and: arrayType(recordType(unionType([
|
|
66025
|
+
lazyType(() => PostV2ProxyCompletionsAndEq$outboundSchema),
|
|
66026
|
+
lazyType(() => PostV2ProxyCompletionsAndNe$outboundSchema),
|
|
66027
|
+
lazyType(() => PostV2ProxyCompletionsAnd3$outboundSchema),
|
|
66028
|
+
lazyType(() => PostV2ProxyCompletionsAndGte$outboundSchema),
|
|
66029
|
+
lazyType(() => PostV2ProxyCompletionsAndLt$outboundSchema),
|
|
66030
|
+
lazyType(() => PostV2ProxyCompletionsAndLte$outboundSchema),
|
|
66031
|
+
lazyType(() => PostV2ProxyCompletionsAndIn$outboundSchema),
|
|
66032
|
+
lazyType(() => PostV2ProxyCompletionsAndNin$outboundSchema),
|
|
66033
|
+
lazyType(() => PostV2ProxyCompletionsAndExists$outboundSchema)
|
|
66034
|
+
])))
|
|
66035
|
+
});
|
|
66036
|
+
((PostV2ProxyCompletionsFilterByAnd$) => {
|
|
66037
|
+
PostV2ProxyCompletionsFilterByAnd$.inboundSchema = PostV2ProxyCompletionsFilterByAnd$inboundSchema;
|
|
66038
|
+
PostV2ProxyCompletionsFilterByAnd$.outboundSchema = PostV2ProxyCompletionsFilterByAnd$outboundSchema;
|
|
66039
|
+
})(PostV2ProxyCompletionsFilterByAnd$ ||= {});
|
|
66040
|
+
PostV2ProxyCompletions1Exists$inboundSchema = objectType({
|
|
66041
|
+
exists: booleanType()
|
|
66042
|
+
});
|
|
66043
|
+
PostV2ProxyCompletions1Exists$outboundSchema = objectType({
|
|
66044
|
+
exists: booleanType()
|
|
66045
|
+
});
|
|
66046
|
+
((PostV2ProxyCompletions1Exists$) => {
|
|
66047
|
+
PostV2ProxyCompletions1Exists$.inboundSchema = PostV2ProxyCompletions1Exists$inboundSchema;
|
|
66048
|
+
PostV2ProxyCompletions1Exists$.outboundSchema = PostV2ProxyCompletions1Exists$outboundSchema;
|
|
66049
|
+
})(PostV2ProxyCompletions1Exists$ ||= {});
|
|
66050
|
+
PostV2ProxyCompletions1ProxyNin$inboundSchema = unionType([stringType(), numberType(), booleanType()]);
|
|
66051
|
+
PostV2ProxyCompletions1ProxyNin$outboundSchema = unionType([stringType(), numberType(), booleanType()]);
|
|
66052
|
+
((PostV2ProxyCompletions1ProxyNin$) => {
|
|
66053
|
+
PostV2ProxyCompletions1ProxyNin$.inboundSchema = PostV2ProxyCompletions1ProxyNin$inboundSchema;
|
|
66054
|
+
PostV2ProxyCompletions1ProxyNin$.outboundSchema = PostV2ProxyCompletions1ProxyNin$outboundSchema;
|
|
66055
|
+
})(PostV2ProxyCompletions1ProxyNin$ ||= {});
|
|
66056
|
+
PostV2ProxyCompletions1Nin$inboundSchema = objectType({
|
|
66057
|
+
nin: arrayType(unionType([stringType(), numberType(), booleanType()]))
|
|
66058
|
+
});
|
|
66059
|
+
PostV2ProxyCompletions1Nin$outboundSchema = objectType({
|
|
66060
|
+
nin: arrayType(unionType([stringType(), numberType(), booleanType()]))
|
|
66061
|
+
});
|
|
66062
|
+
((PostV2ProxyCompletions1Nin$) => {
|
|
66063
|
+
PostV2ProxyCompletions1Nin$.inboundSchema = PostV2ProxyCompletions1Nin$inboundSchema;
|
|
66064
|
+
PostV2ProxyCompletions1Nin$.outboundSchema = PostV2ProxyCompletions1Nin$outboundSchema;
|
|
66065
|
+
})(PostV2ProxyCompletions1Nin$ ||= {});
|
|
66066
|
+
PostV2ProxyCompletions1ProxyIn$inboundSchema = unionType([stringType(), numberType(), booleanType()]);
|
|
66067
|
+
PostV2ProxyCompletions1ProxyIn$outboundSchema = unionType([stringType(), numberType(), booleanType()]);
|
|
66068
|
+
((PostV2ProxyCompletions1ProxyIn$) => {
|
|
66069
|
+
PostV2ProxyCompletions1ProxyIn$.inboundSchema = PostV2ProxyCompletions1ProxyIn$inboundSchema;
|
|
66070
|
+
PostV2ProxyCompletions1ProxyIn$.outboundSchema = PostV2ProxyCompletions1ProxyIn$outboundSchema;
|
|
66071
|
+
})(PostV2ProxyCompletions1ProxyIn$ ||= {});
|
|
66072
|
+
PostV2ProxyCompletions1In$inboundSchema = objectType({
|
|
66073
|
+
in: arrayType(unionType([stringType(), numberType(), booleanType()]))
|
|
66074
|
+
});
|
|
66075
|
+
PostV2ProxyCompletions1In$outboundSchema = objectType({
|
|
66076
|
+
in: arrayType(unionType([stringType(), numberType(), booleanType()]))
|
|
66077
|
+
});
|
|
66078
|
+
((PostV2ProxyCompletions1In$) => {
|
|
66079
|
+
PostV2ProxyCompletions1In$.inboundSchema = PostV2ProxyCompletions1In$inboundSchema;
|
|
66080
|
+
PostV2ProxyCompletions1In$.outboundSchema = PostV2ProxyCompletions1In$outboundSchema;
|
|
66081
|
+
})(PostV2ProxyCompletions1In$ ||= {});
|
|
66082
|
+
PostV2ProxyCompletions1Lte$inboundSchema = objectType({
|
|
66083
|
+
lte: numberType()
|
|
66084
|
+
});
|
|
66085
|
+
PostV2ProxyCompletions1Lte$outboundSchema = objectType({
|
|
66086
|
+
lte: numberType()
|
|
66087
|
+
});
|
|
66088
|
+
((PostV2ProxyCompletions1Lte$) => {
|
|
66089
|
+
PostV2ProxyCompletions1Lte$.inboundSchema = PostV2ProxyCompletions1Lte$inboundSchema;
|
|
66090
|
+
PostV2ProxyCompletions1Lte$.outboundSchema = PostV2ProxyCompletions1Lte$outboundSchema;
|
|
66091
|
+
})(PostV2ProxyCompletions1Lte$ ||= {});
|
|
66092
|
+
PostV2ProxyCompletions1Lt$inboundSchema = objectType({
|
|
66093
|
+
lt: numberType()
|
|
66094
|
+
});
|
|
66095
|
+
PostV2ProxyCompletions1Lt$outboundSchema = objectType({
|
|
66096
|
+
lt: numberType()
|
|
66097
|
+
});
|
|
66098
|
+
((PostV2ProxyCompletions1Lt$) => {
|
|
66099
|
+
PostV2ProxyCompletions1Lt$.inboundSchema = PostV2ProxyCompletions1Lt$inboundSchema;
|
|
66100
|
+
PostV2ProxyCompletions1Lt$.outboundSchema = PostV2ProxyCompletions1Lt$outboundSchema;
|
|
66101
|
+
})(PostV2ProxyCompletions1Lt$ ||= {});
|
|
66102
|
+
PostV2ProxyCompletions1Gte$inboundSchema = objectType({
|
|
66103
|
+
gte: numberType()
|
|
66104
|
+
});
|
|
66105
|
+
PostV2ProxyCompletions1Gte$outboundSchema = objectType({
|
|
66106
|
+
gte: numberType()
|
|
66107
|
+
});
|
|
66108
|
+
((PostV2ProxyCompletions1Gte$) => {
|
|
66109
|
+
PostV2ProxyCompletions1Gte$.inboundSchema = PostV2ProxyCompletions1Gte$inboundSchema;
|
|
66110
|
+
PostV2ProxyCompletions1Gte$.outboundSchema = PostV2ProxyCompletions1Gte$outboundSchema;
|
|
66111
|
+
})(PostV2ProxyCompletions1Gte$ ||= {});
|
|
66112
|
+
PostV2ProxyCompletions13$inboundSchema = objectType({
|
|
66113
|
+
gt: numberType()
|
|
66114
|
+
});
|
|
66115
|
+
PostV2ProxyCompletions13$outboundSchema = objectType({
|
|
66116
|
+
gt: numberType()
|
|
66117
|
+
});
|
|
66118
|
+
((PostV2ProxyCompletions13$) => {
|
|
66119
|
+
PostV2ProxyCompletions13$.inboundSchema = PostV2ProxyCompletions13$inboundSchema;
|
|
66120
|
+
PostV2ProxyCompletions13$.outboundSchema = PostV2ProxyCompletions13$outboundSchema;
|
|
66121
|
+
})(PostV2ProxyCompletions13$ ||= {});
|
|
66122
|
+
PostV2ProxyCompletions1ProxyNe$inboundSchema = unionType([stringType(), numberType(), booleanType()]);
|
|
66123
|
+
PostV2ProxyCompletions1ProxyNe$outboundSchema = unionType([stringType(), numberType(), booleanType()]);
|
|
66124
|
+
((PostV2ProxyCompletions1ProxyNe$) => {
|
|
66125
|
+
PostV2ProxyCompletions1ProxyNe$.inboundSchema = PostV2ProxyCompletions1ProxyNe$inboundSchema;
|
|
66126
|
+
PostV2ProxyCompletions1ProxyNe$.outboundSchema = PostV2ProxyCompletions1ProxyNe$outboundSchema;
|
|
66127
|
+
})(PostV2ProxyCompletions1ProxyNe$ ||= {});
|
|
66128
|
+
PostV2ProxyCompletions1Ne$inboundSchema = objectType({
|
|
66129
|
+
ne: unionType([stringType(), numberType(), booleanType()])
|
|
66130
|
+
});
|
|
66131
|
+
PostV2ProxyCompletions1Ne$outboundSchema = objectType({
|
|
66132
|
+
ne: unionType([stringType(), numberType(), booleanType()])
|
|
66133
|
+
});
|
|
66134
|
+
((PostV2ProxyCompletions1Ne$) => {
|
|
66135
|
+
PostV2ProxyCompletions1Ne$.inboundSchema = PostV2ProxyCompletions1Ne$inboundSchema;
|
|
66136
|
+
PostV2ProxyCompletions1Ne$.outboundSchema = PostV2ProxyCompletions1Ne$outboundSchema;
|
|
66137
|
+
})(PostV2ProxyCompletions1Ne$ ||= {});
|
|
66138
|
+
PostV2ProxyCompletions1ProxyEq$inboundSchema = unionType([stringType(), numberType(), booleanType()]);
|
|
66139
|
+
PostV2ProxyCompletions1ProxyEq$outboundSchema = unionType([stringType(), numberType(), booleanType()]);
|
|
66140
|
+
((PostV2ProxyCompletions1ProxyEq$) => {
|
|
66141
|
+
PostV2ProxyCompletions1ProxyEq$.inboundSchema = PostV2ProxyCompletions1ProxyEq$inboundSchema;
|
|
66142
|
+
PostV2ProxyCompletions1ProxyEq$.outboundSchema = PostV2ProxyCompletions1ProxyEq$outboundSchema;
|
|
66143
|
+
})(PostV2ProxyCompletions1ProxyEq$ ||= {});
|
|
66144
|
+
PostV2ProxyCompletions1Eq$inboundSchema = objectType({
|
|
66145
|
+
eq: unionType([stringType(), numberType(), booleanType()])
|
|
66146
|
+
});
|
|
66147
|
+
PostV2ProxyCompletions1Eq$outboundSchema = objectType({
|
|
66148
|
+
eq: unionType([stringType(), numberType(), booleanType()])
|
|
66149
|
+
});
|
|
66150
|
+
((PostV2ProxyCompletions1Eq$) => {
|
|
66151
|
+
PostV2ProxyCompletions1Eq$.inboundSchema = PostV2ProxyCompletions1Eq$inboundSchema;
|
|
66152
|
+
PostV2ProxyCompletions1Eq$.outboundSchema = PostV2ProxyCompletions1Eq$outboundSchema;
|
|
66153
|
+
})(PostV2ProxyCompletions1Eq$ ||= {});
|
|
66154
|
+
PostV2ProxyCompletionsFilterBy1$inboundSchema = unionType([
|
|
66155
|
+
lazyType(() => PostV2ProxyCompletions1Eq$inboundSchema),
|
|
66156
|
+
lazyType(() => PostV2ProxyCompletions1Ne$inboundSchema),
|
|
66157
|
+
lazyType(() => PostV2ProxyCompletions13$inboundSchema),
|
|
66158
|
+
lazyType(() => PostV2ProxyCompletions1Gte$inboundSchema),
|
|
66159
|
+
lazyType(() => PostV2ProxyCompletions1Lt$inboundSchema),
|
|
66160
|
+
lazyType(() => PostV2ProxyCompletions1Lte$inboundSchema),
|
|
66161
|
+
lazyType(() => PostV2ProxyCompletions1In$inboundSchema),
|
|
66162
|
+
lazyType(() => PostV2ProxyCompletions1Nin$inboundSchema),
|
|
66163
|
+
lazyType(() => PostV2ProxyCompletions1Exists$inboundSchema)
|
|
66164
|
+
]);
|
|
66165
|
+
PostV2ProxyCompletionsFilterBy1$outboundSchema = unionType([
|
|
66166
|
+
lazyType(() => PostV2ProxyCompletions1Eq$outboundSchema),
|
|
66167
|
+
lazyType(() => PostV2ProxyCompletions1Ne$outboundSchema),
|
|
66168
|
+
lazyType(() => PostV2ProxyCompletions13$outboundSchema),
|
|
66169
|
+
lazyType(() => PostV2ProxyCompletions1Gte$outboundSchema),
|
|
66170
|
+
lazyType(() => PostV2ProxyCompletions1Lt$outboundSchema),
|
|
66171
|
+
lazyType(() => PostV2ProxyCompletions1Lte$outboundSchema),
|
|
66172
|
+
lazyType(() => PostV2ProxyCompletions1In$outboundSchema),
|
|
66173
|
+
lazyType(() => PostV2ProxyCompletions1Nin$outboundSchema),
|
|
66174
|
+
lazyType(() => PostV2ProxyCompletions1Exists$outboundSchema)
|
|
66175
|
+
]);
|
|
66176
|
+
((PostV2ProxyCompletionsFilterBy1$) => {
|
|
66177
|
+
PostV2ProxyCompletionsFilterBy1$.inboundSchema = PostV2ProxyCompletionsFilterBy1$inboundSchema;
|
|
66178
|
+
PostV2ProxyCompletionsFilterBy1$.outboundSchema = PostV2ProxyCompletionsFilterBy1$outboundSchema;
|
|
66179
|
+
})(PostV2ProxyCompletionsFilterBy1$ ||= {});
|
|
66180
|
+
PostV2ProxyCompletionsFilterBy$inboundSchema = unionType([
|
|
66181
|
+
lazyType(() => PostV2ProxyCompletionsFilterByAnd$inboundSchema),
|
|
66182
|
+
lazyType(() => PostV2ProxyCompletionsFilterByOr$inboundSchema),
|
|
66183
|
+
recordType(unionType([
|
|
66184
|
+
lazyType(() => PostV2ProxyCompletions1Eq$inboundSchema),
|
|
66185
|
+
lazyType(() => PostV2ProxyCompletions1Ne$inboundSchema),
|
|
66186
|
+
lazyType(() => PostV2ProxyCompletions13$inboundSchema),
|
|
66187
|
+
lazyType(() => PostV2ProxyCompletions1Gte$inboundSchema),
|
|
66188
|
+
lazyType(() => PostV2ProxyCompletions1Lt$inboundSchema),
|
|
66189
|
+
lazyType(() => PostV2ProxyCompletions1Lte$inboundSchema),
|
|
66190
|
+
lazyType(() => PostV2ProxyCompletions1In$inboundSchema),
|
|
66191
|
+
lazyType(() => PostV2ProxyCompletions1Nin$inboundSchema),
|
|
66192
|
+
lazyType(() => PostV2ProxyCompletions1Exists$inboundSchema)
|
|
66193
|
+
]))
|
|
66194
|
+
]);
|
|
66195
|
+
PostV2ProxyCompletionsFilterBy$outboundSchema = unionType([
|
|
66196
|
+
lazyType(() => PostV2ProxyCompletionsFilterByAnd$outboundSchema),
|
|
66197
|
+
lazyType(() => PostV2ProxyCompletionsFilterByOr$outboundSchema),
|
|
66198
|
+
recordType(unionType([
|
|
66199
|
+
lazyType(() => PostV2ProxyCompletions1Eq$outboundSchema),
|
|
66200
|
+
lazyType(() => PostV2ProxyCompletions1Ne$outboundSchema),
|
|
66201
|
+
lazyType(() => PostV2ProxyCompletions13$outboundSchema),
|
|
66202
|
+
lazyType(() => PostV2ProxyCompletions1Gte$outboundSchema),
|
|
66203
|
+
lazyType(() => PostV2ProxyCompletions1Lt$outboundSchema),
|
|
66204
|
+
lazyType(() => PostV2ProxyCompletions1Lte$outboundSchema),
|
|
66205
|
+
lazyType(() => PostV2ProxyCompletions1In$outboundSchema),
|
|
66206
|
+
lazyType(() => PostV2ProxyCompletions1Nin$outboundSchema),
|
|
66207
|
+
lazyType(() => PostV2ProxyCompletions1Exists$outboundSchema)
|
|
66208
|
+
]))
|
|
66209
|
+
]);
|
|
66210
|
+
((PostV2ProxyCompletionsFilterBy$) => {
|
|
66211
|
+
PostV2ProxyCompletionsFilterBy$.inboundSchema = PostV2ProxyCompletionsFilterBy$inboundSchema;
|
|
66212
|
+
PostV2ProxyCompletionsFilterBy$.outboundSchema = PostV2ProxyCompletionsFilterBy$outboundSchema;
|
|
66213
|
+
})(PostV2ProxyCompletionsFilterBy$ ||= {});
|
|
66214
|
+
PostV2ProxyCompletionsSearchOptions$inboundSchema = objectType({
|
|
66215
|
+
include_vectors: booleanType().optional(),
|
|
66216
|
+
include_metadata: booleanType().optional(),
|
|
66217
|
+
include_scores: booleanType().optional()
|
|
66218
|
+
}).transform((v2) => {
|
|
66219
|
+
return remap(v2, {
|
|
66220
|
+
include_vectors: "includeVectors",
|
|
66221
|
+
include_metadata: "includeMetadata",
|
|
66222
|
+
include_scores: "includeScores"
|
|
66223
|
+
});
|
|
66224
|
+
});
|
|
66225
|
+
PostV2ProxyCompletionsSearchOptions$outboundSchema = objectType({
|
|
66226
|
+
includeVectors: booleanType().optional(),
|
|
66227
|
+
includeMetadata: booleanType().optional(),
|
|
66228
|
+
includeScores: booleanType().optional()
|
|
66229
|
+
}).transform((v2) => {
|
|
66230
|
+
return remap(v2, {
|
|
66231
|
+
includeVectors: "include_vectors",
|
|
66232
|
+
includeMetadata: "include_metadata",
|
|
66233
|
+
includeScores: "include_scores"
|
|
66234
|
+
});
|
|
66235
|
+
});
|
|
66236
|
+
((PostV2ProxyCompletionsSearchOptions$) => {
|
|
66237
|
+
PostV2ProxyCompletionsSearchOptions$.inboundSchema = PostV2ProxyCompletionsSearchOptions$inboundSchema;
|
|
66238
|
+
PostV2ProxyCompletionsSearchOptions$.outboundSchema = PostV2ProxyCompletionsSearchOptions$outboundSchema;
|
|
66239
|
+
})(PostV2ProxyCompletionsSearchOptions$ ||= {});
|
|
66240
|
+
PostV2ProxyCompletionsProvider$inboundSchema = nativeEnumType(PostV2ProxyCompletionsProvider);
|
|
66241
|
+
PostV2ProxyCompletionsProvider$outboundSchema = PostV2ProxyCompletionsProvider$inboundSchema;
|
|
66242
|
+
((PostV2ProxyCompletionsProvider$) => {
|
|
66243
|
+
PostV2ProxyCompletionsProvider$.inboundSchema = PostV2ProxyCompletionsProvider$inboundSchema;
|
|
66244
|
+
PostV2ProxyCompletionsProvider$.outboundSchema = PostV2ProxyCompletionsProvider$outboundSchema;
|
|
66245
|
+
})(PostV2ProxyCompletionsProvider$ ||= {});
|
|
66246
|
+
PostV2ProxyCompletionsModelType$inboundSchema = nativeEnumType(PostV2ProxyCompletionsModelType);
|
|
66247
|
+
PostV2ProxyCompletionsModelType$outboundSchema = PostV2ProxyCompletionsModelType$inboundSchema;
|
|
66248
|
+
((PostV2ProxyCompletionsModelType$) => {
|
|
66249
|
+
PostV2ProxyCompletionsModelType$.inboundSchema = PostV2ProxyCompletionsModelType$inboundSchema;
|
|
66250
|
+
PostV2ProxyCompletionsModelType$.outboundSchema = PostV2ProxyCompletionsModelType$outboundSchema;
|
|
66251
|
+
})(PostV2ProxyCompletionsModelType$ ||= {});
|
|
66252
|
+
PostV2ProxyCompletionsModelParameters$inboundSchema = objectType({
|
|
66253
|
+
threshold: numberType().optional()
|
|
66254
|
+
});
|
|
66255
|
+
PostV2ProxyCompletionsModelParameters$outboundSchema = objectType({
|
|
66256
|
+
threshold: numberType().optional()
|
|
66257
|
+
});
|
|
66258
|
+
((PostV2ProxyCompletionsModelParameters$) => {
|
|
66259
|
+
PostV2ProxyCompletionsModelParameters$.inboundSchema = PostV2ProxyCompletionsModelParameters$inboundSchema;
|
|
66260
|
+
PostV2ProxyCompletionsModelParameters$.outboundSchema = PostV2ProxyCompletionsModelParameters$outboundSchema;
|
|
66261
|
+
})(PostV2ProxyCompletionsModelParameters$ ||= {});
|
|
66262
|
+
PostV2ProxyCompletionsRerankConfig$inboundSchema = objectType({
|
|
66263
|
+
enabled: booleanType().optional(),
|
|
66264
|
+
provider: PostV2ProxyCompletionsProvider$inboundSchema.optional(),
|
|
66265
|
+
top_k: numberType().int().optional(),
|
|
66266
|
+
model: stringType().optional(),
|
|
66267
|
+
model_db_id: stringType().optional(),
|
|
66268
|
+
model_type: PostV2ProxyCompletionsModelType$inboundSchema.optional(),
|
|
66269
|
+
model_parameters: lazyType(() => PostV2ProxyCompletionsModelParameters$inboundSchema).optional()
|
|
66270
|
+
}).transform((v2) => {
|
|
66271
|
+
return remap(v2, {
|
|
66272
|
+
top_k: "topK",
|
|
66273
|
+
model_db_id: "modelDbId",
|
|
66274
|
+
model_type: "modelType",
|
|
66275
|
+
model_parameters: "modelParameters"
|
|
66276
|
+
});
|
|
66277
|
+
});
|
|
66278
|
+
PostV2ProxyCompletionsRerankConfig$outboundSchema = objectType({
|
|
66279
|
+
enabled: booleanType().optional(),
|
|
66280
|
+
provider: PostV2ProxyCompletionsProvider$outboundSchema.optional(),
|
|
66281
|
+
topK: numberType().int().optional(),
|
|
66282
|
+
model: stringType().optional(),
|
|
66283
|
+
modelDbId: stringType().optional(),
|
|
66284
|
+
modelType: PostV2ProxyCompletionsModelType$outboundSchema.optional(),
|
|
66285
|
+
modelParameters: lazyType(() => PostV2ProxyCompletionsModelParameters$outboundSchema).optional()
|
|
66286
|
+
}).transform((v2) => {
|
|
66287
|
+
return remap(v2, {
|
|
66288
|
+
topK: "top_k",
|
|
66289
|
+
modelDbId: "model_db_id",
|
|
66290
|
+
modelType: "model_type",
|
|
66291
|
+
modelParameters: "model_parameters"
|
|
66292
|
+
});
|
|
66293
|
+
});
|
|
66294
|
+
((PostV2ProxyCompletionsRerankConfig$) => {
|
|
66295
|
+
PostV2ProxyCompletionsRerankConfig$.inboundSchema = PostV2ProxyCompletionsRerankConfig$inboundSchema;
|
|
66296
|
+
PostV2ProxyCompletionsRerankConfig$.outboundSchema = PostV2ProxyCompletionsRerankConfig$outboundSchema;
|
|
66297
|
+
})(PostV2ProxyCompletionsRerankConfig$ ||= {});
|
|
66298
|
+
PostV2ProxyCompletionsProxyProvider$inboundSchema = nativeEnumType(PostV2ProxyCompletionsProxyProvider);
|
|
66299
|
+
PostV2ProxyCompletionsProxyProvider$outboundSchema = PostV2ProxyCompletionsProxyProvider$inboundSchema;
|
|
66300
|
+
((PostV2ProxyCompletionsProxyProvider$) => {
|
|
66301
|
+
PostV2ProxyCompletionsProxyProvider$.inboundSchema = PostV2ProxyCompletionsProxyProvider$inboundSchema;
|
|
66302
|
+
PostV2ProxyCompletionsProxyProvider$.outboundSchema = PostV2ProxyCompletionsProxyProvider$outboundSchema;
|
|
66303
|
+
})(PostV2ProxyCompletionsProxyProvider$ ||= {});
|
|
66304
|
+
PostV2ProxyCompletionsAgenticRagConfig$inboundSchema = objectType({
|
|
66305
|
+
model_db_id: stringType(),
|
|
66306
|
+
provider: PostV2ProxyCompletionsProxyProvider$inboundSchema,
|
|
66307
|
+
integration_id: nullableType(stringType()).optional()
|
|
66308
|
+
}).transform((v2) => {
|
|
66309
|
+
return remap(v2, {
|
|
66310
|
+
model_db_id: "modelDbId",
|
|
66311
|
+
integration_id: "integrationId"
|
|
66312
|
+
});
|
|
66313
|
+
});
|
|
66314
|
+
PostV2ProxyCompletionsAgenticRagConfig$outboundSchema = objectType({
|
|
66315
|
+
modelDbId: stringType(),
|
|
66316
|
+
provider: PostV2ProxyCompletionsProxyProvider$outboundSchema,
|
|
66317
|
+
integrationId: nullableType(stringType()).optional()
|
|
66318
|
+
}).transform((v2) => {
|
|
66319
|
+
return remap(v2, {
|
|
66320
|
+
modelDbId: "model_db_id",
|
|
66321
|
+
integrationId: "integration_id"
|
|
66322
|
+
});
|
|
66323
|
+
});
|
|
66324
|
+
((PostV2ProxyCompletionsAgenticRagConfig$) => {
|
|
66325
|
+
PostV2ProxyCompletionsAgenticRagConfig$.inboundSchema = PostV2ProxyCompletionsAgenticRagConfig$inboundSchema;
|
|
66326
|
+
PostV2ProxyCompletionsAgenticRagConfig$.outboundSchema = PostV2ProxyCompletionsAgenticRagConfig$outboundSchema;
|
|
66327
|
+
})(PostV2ProxyCompletionsAgenticRagConfig$ ||= {});
|
|
66328
|
+
PostV2ProxyCompletionsKnowledgeBases$inboundSchema = objectType({
|
|
66329
|
+
top_k: numberType().int().optional(),
|
|
66330
|
+
threshold: numberType().optional(),
|
|
66331
|
+
search_type: PostV2ProxyCompletionsSearchType$inboundSchema.default("hybrid_search"),
|
|
66332
|
+
filter_by: unionType([
|
|
66333
|
+
lazyType(() => PostV2ProxyCompletionsFilterByAnd$inboundSchema),
|
|
66334
|
+
lazyType(() => PostV2ProxyCompletionsFilterByOr$inboundSchema),
|
|
66335
|
+
recordType(unionType([
|
|
66336
|
+
lazyType(() => PostV2ProxyCompletions1Eq$inboundSchema),
|
|
66337
|
+
lazyType(() => PostV2ProxyCompletions1Ne$inboundSchema),
|
|
66338
|
+
lazyType(() => PostV2ProxyCompletions13$inboundSchema),
|
|
66339
|
+
lazyType(() => PostV2ProxyCompletions1Gte$inboundSchema),
|
|
66340
|
+
lazyType(() => PostV2ProxyCompletions1Lt$inboundSchema),
|
|
66341
|
+
lazyType(() => PostV2ProxyCompletions1Lte$inboundSchema),
|
|
66342
|
+
lazyType(() => PostV2ProxyCompletions1In$inboundSchema),
|
|
66343
|
+
lazyType(() => PostV2ProxyCompletions1Nin$inboundSchema),
|
|
66344
|
+
lazyType(() => PostV2ProxyCompletions1Exists$inboundSchema)
|
|
66345
|
+
]))
|
|
66346
|
+
]).optional(),
|
|
66347
|
+
search_options: lazyType(() => PostV2ProxyCompletionsSearchOptions$inboundSchema).optional(),
|
|
66348
|
+
rerank_config: nullableType(lazyType(() => PostV2ProxyCompletionsRerankConfig$inboundSchema)).optional(),
|
|
66349
|
+
agentic_rag_config: lazyType(() => PostV2ProxyCompletionsAgenticRagConfig$inboundSchema).optional(),
|
|
66350
|
+
knowledge_id: stringType(),
|
|
66351
|
+
query: stringType().optional()
|
|
66352
|
+
}).transform((v2) => {
|
|
66353
|
+
return remap(v2, {
|
|
66354
|
+
top_k: "topK",
|
|
66355
|
+
search_type: "searchType",
|
|
66356
|
+
filter_by: "filterBy",
|
|
66357
|
+
search_options: "searchOptions",
|
|
66358
|
+
rerank_config: "rerankConfig",
|
|
66359
|
+
agentic_rag_config: "agenticRagConfig",
|
|
66360
|
+
knowledge_id: "knowledgeId"
|
|
66361
|
+
});
|
|
66362
|
+
});
|
|
66363
|
+
PostV2ProxyCompletionsKnowledgeBases$outboundSchema = objectType({
|
|
66364
|
+
topK: numberType().int().optional(),
|
|
66365
|
+
threshold: numberType().optional(),
|
|
66366
|
+
searchType: PostV2ProxyCompletionsSearchType$outboundSchema.default("hybrid_search"),
|
|
66367
|
+
filterBy: unionType([
|
|
66368
|
+
lazyType(() => PostV2ProxyCompletionsFilterByAnd$outboundSchema),
|
|
66369
|
+
lazyType(() => PostV2ProxyCompletionsFilterByOr$outboundSchema),
|
|
66370
|
+
recordType(unionType([
|
|
66371
|
+
lazyType(() => PostV2ProxyCompletions1Eq$outboundSchema),
|
|
66372
|
+
lazyType(() => PostV2ProxyCompletions1Ne$outboundSchema),
|
|
66373
|
+
lazyType(() => PostV2ProxyCompletions13$outboundSchema),
|
|
66374
|
+
lazyType(() => PostV2ProxyCompletions1Gte$outboundSchema),
|
|
66375
|
+
lazyType(() => PostV2ProxyCompletions1Lt$outboundSchema),
|
|
66376
|
+
lazyType(() => PostV2ProxyCompletions1Lte$outboundSchema),
|
|
66377
|
+
lazyType(() => PostV2ProxyCompletions1In$outboundSchema),
|
|
66378
|
+
lazyType(() => PostV2ProxyCompletions1Nin$outboundSchema),
|
|
66379
|
+
lazyType(() => PostV2ProxyCompletions1Exists$outboundSchema)
|
|
66380
|
+
]))
|
|
66381
|
+
]).optional(),
|
|
66382
|
+
searchOptions: lazyType(() => PostV2ProxyCompletionsSearchOptions$outboundSchema).optional(),
|
|
66383
|
+
rerankConfig: nullableType(lazyType(() => PostV2ProxyCompletionsRerankConfig$outboundSchema)).optional(),
|
|
66384
|
+
agenticRagConfig: lazyType(() => PostV2ProxyCompletionsAgenticRagConfig$outboundSchema).optional(),
|
|
66385
|
+
knowledgeId: stringType(),
|
|
66386
|
+
query: stringType().optional()
|
|
66387
|
+
}).transform((v2) => {
|
|
66388
|
+
return remap(v2, {
|
|
66389
|
+
topK: "top_k",
|
|
66390
|
+
searchType: "search_type",
|
|
66391
|
+
filterBy: "filter_by",
|
|
66392
|
+
searchOptions: "search_options",
|
|
66393
|
+
rerankConfig: "rerank_config",
|
|
66394
|
+
agenticRagConfig: "agentic_rag_config",
|
|
66395
|
+
knowledgeId: "knowledge_id"
|
|
66396
|
+
});
|
|
66397
|
+
});
|
|
66398
|
+
((PostV2ProxyCompletionsKnowledgeBases$) => {
|
|
66399
|
+
PostV2ProxyCompletionsKnowledgeBases$.inboundSchema = PostV2ProxyCompletionsKnowledgeBases$inboundSchema;
|
|
66400
|
+
PostV2ProxyCompletionsKnowledgeBases$.outboundSchema = PostV2ProxyCompletionsKnowledgeBases$outboundSchema;
|
|
66401
|
+
})(PostV2ProxyCompletionsKnowledgeBases$ ||= {});
|
|
66402
|
+
PostV2ProxyCompletionsOrq$inboundSchema = objectType({
|
|
66403
|
+
name: stringType().optional(),
|
|
66404
|
+
retry: lazyType(() => PostV2ProxyCompletionsRetry$inboundSchema).optional(),
|
|
66405
|
+
fallbacks: arrayType(lazyType(() => PostV2ProxyCompletionsFallbacks$inboundSchema)).optional(),
|
|
66406
|
+
prompt: lazyType(() => PostV2ProxyCompletionsPrompt$inboundSchema).optional(),
|
|
66407
|
+
contact: PublicContact$inboundSchema.optional(),
|
|
66408
|
+
thread: lazyType(() => PostV2ProxyCompletionsThread$inboundSchema).optional(),
|
|
66409
|
+
inputs: recordType(anyType()).optional(),
|
|
66410
|
+
cache: lazyType(() => PostV2ProxyCompletionsCache$inboundSchema).optional(),
|
|
66411
|
+
knowledge_bases: arrayType(lazyType(() => PostV2ProxyCompletionsKnowledgeBases$inboundSchema)).optional()
|
|
66412
|
+
}).transform((v2) => {
|
|
66413
|
+
return remap(v2, {
|
|
66414
|
+
knowledge_bases: "knowledgeBases"
|
|
66415
|
+
});
|
|
66416
|
+
});
|
|
66417
|
+
PostV2ProxyCompletionsOrq$outboundSchema = objectType({
|
|
66418
|
+
name: stringType().optional(),
|
|
66419
|
+
retry: lazyType(() => PostV2ProxyCompletionsRetry$outboundSchema).optional(),
|
|
66420
|
+
fallbacks: arrayType(lazyType(() => PostV2ProxyCompletionsFallbacks$outboundSchema)).optional(),
|
|
66421
|
+
prompt: lazyType(() => PostV2ProxyCompletionsPrompt$outboundSchema).optional(),
|
|
66422
|
+
contact: PublicContact$outboundSchema.optional(),
|
|
66423
|
+
thread: lazyType(() => PostV2ProxyCompletionsThread$outboundSchema).optional(),
|
|
66424
|
+
inputs: recordType(anyType()).optional(),
|
|
66425
|
+
cache: lazyType(() => PostV2ProxyCompletionsCache$outboundSchema).optional(),
|
|
66426
|
+
knowledgeBases: arrayType(lazyType(() => PostV2ProxyCompletionsKnowledgeBases$outboundSchema)).optional()
|
|
66427
|
+
}).transform((v2) => {
|
|
66428
|
+
return remap(v2, {
|
|
66429
|
+
knowledgeBases: "knowledge_bases"
|
|
66430
|
+
});
|
|
66431
|
+
});
|
|
66432
|
+
((PostV2ProxyCompletionsOrq$) => {
|
|
66433
|
+
PostV2ProxyCompletionsOrq$.inboundSchema = PostV2ProxyCompletionsOrq$inboundSchema;
|
|
66434
|
+
PostV2ProxyCompletionsOrq$.outboundSchema = PostV2ProxyCompletionsOrq$outboundSchema;
|
|
66435
|
+
})(PostV2ProxyCompletionsOrq$ ||= {});
|
|
65553
66436
|
PostV2ProxyCompletionsRequestBody$inboundSchema = objectType({
|
|
65554
66437
|
model: stringType(),
|
|
65555
66438
|
prompt: stringType(),
|
|
@@ -65562,6 +66445,7 @@ var init_postv2proxycompletions = __esm(() => {
|
|
|
65562
66445
|
temperature: nullableType(numberType().default(1)),
|
|
65563
66446
|
top_p: nullableType(numberType().default(1)),
|
|
65564
66447
|
user: stringType().optional(),
|
|
66448
|
+
orq: lazyType(() => PostV2ProxyCompletionsOrq$inboundSchema).optional(),
|
|
65565
66449
|
stream: booleanType().default(false)
|
|
65566
66450
|
}).transform((v2) => {
|
|
65567
66451
|
return remap(v2, {
|
|
@@ -65583,6 +66467,7 @@ var init_postv2proxycompletions = __esm(() => {
|
|
|
65583
66467
|
temperature: nullableType(numberType().default(1)),
|
|
65584
66468
|
topP: nullableType(numberType().default(1)),
|
|
65585
66469
|
user: stringType().optional(),
|
|
66470
|
+
orq: lazyType(() => PostV2ProxyCompletionsOrq$outboundSchema).optional(),
|
|
65586
66471
|
stream: booleanType().default(false)
|
|
65587
66472
|
}).transform((v2) => {
|
|
65588
66473
|
return remap(v2, {
|
|
@@ -67216,7 +68101,7 @@ var init_retrievecontact = __esm(() => {
|
|
|
67216
68101
|
tags: arrayType(stringType()).optional(),
|
|
67217
68102
|
metadata: recordType(anyType()).optional(),
|
|
67218
68103
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
67219
|
-
updated: stringType().datetime({ offset: true }).default("2025-08-
|
|
68104
|
+
updated: stringType().datetime({ offset: true }).default("2025-08-27T07:41:07.739Z").transform((v2) => new Date(v2))
|
|
67220
68105
|
}).transform((v2) => {
|
|
67221
68106
|
return remap(v2, {
|
|
67222
68107
|
_id: "id",
|
|
@@ -67234,7 +68119,7 @@ var init_retrievecontact = __esm(() => {
|
|
|
67234
68119
|
tags: arrayType(stringType()).optional(),
|
|
67235
68120
|
metadata: recordType(anyType()).optional(),
|
|
67236
68121
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
67237
|
-
updated: dateType().default(() => new Date("2025-08-
|
|
68122
|
+
updated: dateType().default(() => new Date("2025-08-27T07:41:07.739Z")).transform((v2) => v2.toISOString())
|
|
67238
68123
|
}).transform((v2) => {
|
|
67239
68124
|
return remap(v2, {
|
|
67240
68125
|
id: "_id",
|
|
@@ -67947,7 +68832,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
67947
68832
|
created_by_id: stringType().optional(),
|
|
67948
68833
|
updated_by_id: stringType().optional(),
|
|
67949
68834
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
67950
|
-
updated: stringType().datetime({ offset: true }).default("2025-08-
|
|
68835
|
+
updated: stringType().datetime({ offset: true }).default("2025-08-27T07:41:07.739Z").transform((v2) => new Date(v2))
|
|
67951
68836
|
}).transform((v2) => {
|
|
67952
68837
|
return remap(v2, {
|
|
67953
68838
|
_id: "id",
|
|
@@ -67974,7 +68859,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
67974
68859
|
createdById: stringType().optional(),
|
|
67975
68860
|
updatedById: stringType().optional(),
|
|
67976
68861
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
67977
|
-
updated: dateType().default(() => new Date("2025-08-
|
|
68862
|
+
updated: dateType().default(() => new Date("2025-08-27T07:41:07.739Z")).transform((v2) => v2.toISOString())
|
|
67978
68863
|
}).transform((v2) => {
|
|
67979
68864
|
return remap(v2, {
|
|
67980
68865
|
id: "_id",
|
|
@@ -68045,7 +68930,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
68045
68930
|
updated_by_id: stringType().optional(),
|
|
68046
68931
|
metadata: lazyType(() => RetrieveDatasetMetadata$inboundSchema),
|
|
68047
68932
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
68048
|
-
updated: stringType().datetime({ offset: true }).default("2025-08-
|
|
68933
|
+
updated: stringType().datetime({ offset: true }).default("2025-08-27T07:41:07.739Z").transform((v2) => new Date(v2))
|
|
68049
68934
|
}).transform((v2) => {
|
|
68050
68935
|
return remap(v2, {
|
|
68051
68936
|
_id: "id",
|
|
@@ -68065,7 +68950,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
68065
68950
|
updatedById: stringType().optional(),
|
|
68066
68951
|
metadata: lazyType(() => RetrieveDatasetMetadata$outboundSchema),
|
|
68067
68952
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
68068
|
-
updated: dateType().default(() => new Date("2025-08-
|
|
68953
|
+
updated: dateType().default(() => new Date("2025-08-27T07:41:07.739Z")).transform((v2) => v2.toISOString())
|
|
68069
68954
|
}).transform((v2) => {
|
|
68070
68955
|
return remap(v2, {
|
|
68071
68956
|
id: "_id",
|
|
@@ -68123,7 +69008,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
68123
69008
|
RetrieveDatasourceStatus$.outboundSchema = RetrieveDatasourceStatus$outboundSchema;
|
|
68124
69009
|
})(RetrieveDatasourceStatus$ ||= {});
|
|
68125
69010
|
RetrieveDatasourceResponseBody$inboundSchema = objectType({
|
|
68126
|
-
_id: stringType().default("
|
|
69011
|
+
_id: stringType().default("01K3N7JN4VCWBDB2TPRDDAZJSE"),
|
|
68127
69012
|
display_name: stringType(),
|
|
68128
69013
|
description: stringType().optional(),
|
|
68129
69014
|
status: RetrieveDatasourceStatus$inboundSchema,
|
|
@@ -68146,7 +69031,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
68146
69031
|
});
|
|
68147
69032
|
});
|
|
68148
69033
|
RetrieveDatasourceResponseBody$outboundSchema = objectType({
|
|
68149
|
-
id: stringType().default("
|
|
69034
|
+
id: stringType().default("01K3N7JN4VCWBDB2TPRDDAZJSE"),
|
|
68150
69035
|
displayName: stringType(),
|
|
68151
69036
|
description: stringType().optional(),
|
|
68152
69037
|
status: RetrieveDatasourceStatus$outboundSchema,
|
|
@@ -69156,7 +70041,7 @@ var init_updatebudget = __esm(() => {
|
|
|
69156
70041
|
is_active: booleanType(),
|
|
69157
70042
|
consumption: lazyType(() => UpdateBudgetConsumption$inboundSchema).optional(),
|
|
69158
70043
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
69159
|
-
updated: stringType().datetime({ offset: true }).default("2025-08-
|
|
70044
|
+
updated: stringType().datetime({ offset: true }).default("2025-08-27T07:41:07.739Z").transform((v2) => new Date(v2))
|
|
69160
70045
|
}).transform((v2) => {
|
|
69161
70046
|
return remap(v2, {
|
|
69162
70047
|
_id: "id",
|
|
@@ -69174,7 +70059,7 @@ var init_updatebudget = __esm(() => {
|
|
|
69174
70059
|
isActive: booleanType(),
|
|
69175
70060
|
consumption: lazyType(() => UpdateBudgetConsumption$outboundSchema).optional(),
|
|
69176
70061
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
69177
|
-
updated: dateType().default(() => new Date("2025-08-
|
|
70062
|
+
updated: dateType().default(() => new Date("2025-08-27T07:41:07.739Z")).transform((v2) => v2.toISOString())
|
|
69178
70063
|
}).transform((v2) => {
|
|
69179
70064
|
return remap(v2, {
|
|
69180
70065
|
id: "_id",
|
|
@@ -69365,7 +70250,7 @@ var init_updatecontact = __esm(() => {
|
|
|
69365
70250
|
tags: arrayType(stringType()).optional(),
|
|
69366
70251
|
metadata: recordType(anyType()).optional(),
|
|
69367
70252
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
69368
|
-
updated: stringType().datetime({ offset: true }).default("2025-08-
|
|
70253
|
+
updated: stringType().datetime({ offset: true }).default("2025-08-27T07:41:07.739Z").transform((v2) => new Date(v2))
|
|
69369
70254
|
}).transform((v2) => {
|
|
69370
70255
|
return remap(v2, {
|
|
69371
70256
|
_id: "id",
|
|
@@ -69383,7 +70268,7 @@ var init_updatecontact = __esm(() => {
|
|
|
69383
70268
|
tags: arrayType(stringType()).optional(),
|
|
69384
70269
|
metadata: recordType(anyType()).optional(),
|
|
69385
70270
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
69386
|
-
updated: dateType().default(() => new Date("2025-08-
|
|
70271
|
+
updated: dateType().default(() => new Date("2025-08-27T07:41:07.739Z")).transform((v2) => v2.toISOString())
|
|
69387
70272
|
}).transform((v2) => {
|
|
69388
70273
|
return remap(v2, {
|
|
69389
70274
|
id: "_id",
|
|
@@ -70789,7 +71674,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
70789
71674
|
created_by_id: stringType().optional(),
|
|
70790
71675
|
updated_by_id: stringType().optional(),
|
|
70791
71676
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
70792
|
-
updated: stringType().datetime({ offset: true }).default("2025-08-
|
|
71677
|
+
updated: stringType().datetime({ offset: true }).default("2025-08-27T07:41:07.739Z").transform((v2) => new Date(v2))
|
|
70793
71678
|
}).transform((v2) => {
|
|
70794
71679
|
return remap(v2, {
|
|
70795
71680
|
_id: "id",
|
|
@@ -70816,7 +71701,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
70816
71701
|
createdById: stringType().optional(),
|
|
70817
71702
|
updatedById: stringType().optional(),
|
|
70818
71703
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
70819
|
-
updated: dateType().default(() => new Date("2025-08-
|
|
71704
|
+
updated: dateType().default(() => new Date("2025-08-27T07:41:07.739Z")).transform((v2) => v2.toISOString())
|
|
70820
71705
|
}).transform((v2) => {
|
|
70821
71706
|
return remap(v2, {
|
|
70822
71707
|
id: "_id",
|
|
@@ -70917,7 +71802,7 @@ var init_updatedataset = __esm(() => {
|
|
|
70917
71802
|
parent_id: stringType().optional(),
|
|
70918
71803
|
version: stringType().optional(),
|
|
70919
71804
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
70920
|
-
updated: stringType().datetime({ offset: true }).default("2025-08-
|
|
71805
|
+
updated: stringType().datetime({ offset: true }).default("2025-08-27T07:41:07.739Z").transform((v2) => new Date(v2))
|
|
70921
71806
|
}).transform((v2) => {
|
|
70922
71807
|
return remap(v2, {
|
|
70923
71808
|
_id: "id",
|
|
@@ -70940,7 +71825,7 @@ var init_updatedataset = __esm(() => {
|
|
|
70940
71825
|
parentId: stringType().optional(),
|
|
70941
71826
|
version: stringType().optional(),
|
|
70942
71827
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
70943
|
-
updated: dateType().default(() => new Date("2025-08-
|
|
71828
|
+
updated: dateType().default(() => new Date("2025-08-27T07:41:07.739Z")).transform((v2) => v2.toISOString())
|
|
70944
71829
|
}).transform((v2) => {
|
|
70945
71830
|
return remap(v2, {
|
|
70946
71831
|
id: "_id",
|
|
@@ -71021,7 +71906,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
71021
71906
|
UpdateDatasourceStatus$.outboundSchema = UpdateDatasourceStatus$outboundSchema;
|
|
71022
71907
|
})(UpdateDatasourceStatus$ ||= {});
|
|
71023
71908
|
UpdateDatasourceResponseBody$inboundSchema = objectType({
|
|
71024
|
-
_id: stringType().default("
|
|
71909
|
+
_id: stringType().default("01K3N7JN4W5YXJ9AM3JV5KZP01"),
|
|
71025
71910
|
display_name: stringType(),
|
|
71026
71911
|
description: stringType().optional(),
|
|
71027
71912
|
status: UpdateDatasourceStatus$inboundSchema,
|
|
@@ -71044,7 +71929,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
71044
71929
|
});
|
|
71045
71930
|
});
|
|
71046
71931
|
UpdateDatasourceResponseBody$outboundSchema = objectType({
|
|
71047
|
-
id: stringType().default("
|
|
71932
|
+
id: stringType().default("01K3N7JN4W5YXJ9AM3JV5KZP01"),
|
|
71048
71933
|
displayName: stringType(),
|
|
71049
71934
|
description: stringType().optional(),
|
|
71050
71935
|
status: UpdateDatasourceStatus$outboundSchema,
|
|
@@ -71750,8 +72635,8 @@ var init_updateeval = __esm(() => {
|
|
|
71750
72635
|
UpdateEvalResponseBodyPython$inboundSchema = objectType({
|
|
71751
72636
|
_id: stringType(),
|
|
71752
72637
|
description: stringType(),
|
|
71753
|
-
created: stringType().default("2025-08-
|
|
71754
|
-
updated: stringType().default("2025-08-
|
|
72638
|
+
created: stringType().default("2025-08-27T07:41:10.243Z"),
|
|
72639
|
+
updated: stringType().default("2025-08-27T07:41:10.243Z"),
|
|
71755
72640
|
guardrail_config: unionType([
|
|
71756
72641
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
71757
72642
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
|
|
@@ -71768,8 +72653,8 @@ var init_updateeval = __esm(() => {
|
|
|
71768
72653
|
UpdateEvalResponseBodyPython$outboundSchema = objectType({
|
|
71769
72654
|
id: stringType(),
|
|
71770
72655
|
description: stringType(),
|
|
71771
|
-
created: stringType().default("2025-08-
|
|
71772
|
-
updated: stringType().default("2025-08-
|
|
72656
|
+
created: stringType().default("2025-08-27T07:41:10.243Z"),
|
|
72657
|
+
updated: stringType().default("2025-08-27T07:41:10.243Z"),
|
|
71773
72658
|
guardrailConfig: unionType([
|
|
71774
72659
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
71775
72660
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
|
|
@@ -71862,8 +72747,8 @@ var init_updateeval = __esm(() => {
|
|
|
71862
72747
|
UpdateEvalResponseBodyHTTP$inboundSchema = objectType({
|
|
71863
72748
|
_id: stringType(),
|
|
71864
72749
|
description: stringType(),
|
|
71865
|
-
created: stringType().default("2025-08-
|
|
71866
|
-
updated: stringType().default("2025-08-
|
|
72750
|
+
created: stringType().default("2025-08-27T07:41:10.243Z"),
|
|
72751
|
+
updated: stringType().default("2025-08-27T07:41:10.243Z"),
|
|
71867
72752
|
guardrail_config: unionType([
|
|
71868
72753
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
71869
72754
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
|
|
@@ -71883,8 +72768,8 @@ var init_updateeval = __esm(() => {
|
|
|
71883
72768
|
UpdateEvalResponseBodyHTTP$outboundSchema = objectType({
|
|
71884
72769
|
id: stringType(),
|
|
71885
72770
|
description: stringType(),
|
|
71886
|
-
created: stringType().default("2025-08-
|
|
71887
|
-
updated: stringType().default("2025-08-
|
|
72771
|
+
created: stringType().default("2025-08-27T07:41:10.243Z"),
|
|
72772
|
+
updated: stringType().default("2025-08-27T07:41:10.243Z"),
|
|
71888
72773
|
guardrailConfig: unionType([
|
|
71889
72774
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
71890
72775
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
|
|
@@ -71974,8 +72859,8 @@ var init_updateeval = __esm(() => {
|
|
|
71974
72859
|
UpdateEvalResponseBodyJSON$inboundSchema = objectType({
|
|
71975
72860
|
_id: stringType(),
|
|
71976
72861
|
description: stringType(),
|
|
71977
|
-
created: stringType().default("2025-08-
|
|
71978
|
-
updated: stringType().default("2025-08-
|
|
72862
|
+
created: stringType().default("2025-08-27T07:41:10.243Z"),
|
|
72863
|
+
updated: stringType().default("2025-08-27T07:41:10.243Z"),
|
|
71979
72864
|
guardrail_config: unionType([
|
|
71980
72865
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
71981
72866
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema)
|
|
@@ -71992,8 +72877,8 @@ var init_updateeval = __esm(() => {
|
|
|
71992
72877
|
UpdateEvalResponseBodyJSON$outboundSchema = objectType({
|
|
71993
72878
|
id: stringType(),
|
|
71994
72879
|
description: stringType(),
|
|
71995
|
-
created: stringType().default("2025-08-
|
|
71996
|
-
updated: stringType().default("2025-08-
|
|
72880
|
+
created: stringType().default("2025-08-27T07:41:10.243Z"),
|
|
72881
|
+
updated: stringType().default("2025-08-27T07:41:10.243Z"),
|
|
71997
72882
|
guardrailConfig: unionType([
|
|
71998
72883
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
71999
72884
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema)
|
|
@@ -72080,8 +72965,8 @@ var init_updateeval = __esm(() => {
|
|
|
72080
72965
|
UpdateEvalResponseBodyLLM$inboundSchema = objectType({
|
|
72081
72966
|
_id: stringType(),
|
|
72082
72967
|
description: stringType(),
|
|
72083
|
-
created: stringType().default("2025-08-
|
|
72084
|
-
updated: stringType().default("2025-08-
|
|
72968
|
+
created: stringType().default("2025-08-27T07:41:10.243Z"),
|
|
72969
|
+
updated: stringType().default("2025-08-27T07:41:10.243Z"),
|
|
72085
72970
|
guardrail_config: unionType([
|
|
72086
72971
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
72087
72972
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema)
|
|
@@ -72099,8 +72984,8 @@ var init_updateeval = __esm(() => {
|
|
|
72099
72984
|
UpdateEvalResponseBodyLLM$outboundSchema = objectType({
|
|
72100
72985
|
id: stringType(),
|
|
72101
72986
|
description: stringType(),
|
|
72102
|
-
created: stringType().default("2025-08-
|
|
72103
|
-
updated: stringType().default("2025-08-
|
|
72987
|
+
created: stringType().default("2025-08-27T07:41:10.243Z"),
|
|
72988
|
+
updated: stringType().default("2025-08-27T07:41:10.243Z"),
|
|
72104
72989
|
guardrailConfig: unionType([
|
|
72105
72990
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
72106
72991
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema)
|
|
@@ -88846,7 +89731,7 @@ var init_remoteconfigsRetrieve2 = __esm(() => {
|
|
|
88846
89731
|
function createMCPServer(deps) {
|
|
88847
89732
|
const server = new McpServer({
|
|
88848
89733
|
name: "Orq",
|
|
88849
|
-
version: "3.12.0-rc.
|
|
89734
|
+
version: "3.12.0-rc.16"
|
|
88850
89735
|
});
|
|
88851
89736
|
const client = new OrqCore({
|
|
88852
89737
|
apiKey: deps.apiKey,
|
|
@@ -90296,7 +91181,7 @@ var routes = rn({
|
|
|
90296
91181
|
var app = Ve(routes, {
|
|
90297
91182
|
name: "mcp",
|
|
90298
91183
|
versionInfo: {
|
|
90299
|
-
currentVersion: "3.12.0-rc.
|
|
91184
|
+
currentVersion: "3.12.0-rc.16"
|
|
90300
91185
|
}
|
|
90301
91186
|
});
|
|
90302
91187
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -90304,5 +91189,5 @@ export {
|
|
|
90304
91189
|
app
|
|
90305
91190
|
};
|
|
90306
91191
|
|
|
90307
|
-
//# debugId=
|
|
91192
|
+
//# debugId=6AA3FEF530A765EA64756E2164756E21
|
|
90308
91193
|
//# sourceMappingURL=mcp-server.js.map
|