@orq-ai/node 4.1.0-rc.37 → 4.1.0-rc.38
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 +242 -267
- package/bin/mcp-server.js.map +48 -48
- package/examples/package-lock.json +1 -1
- package/funcs/budgetsCreate.d.ts +1 -1
- package/funcs/budgetsCreate.js +1 -1
- package/funcs/budgetsList.d.ts +1 -1
- package/funcs/budgetsList.js +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/mcp-server/tools/budgetsCreate.js +1 -1
- package/mcp-server/tools/budgetsCreate.js.map +1 -1
- package/mcp-server/tools/budgetsList.js +1 -1
- package/mcp-server/tools/budgetsList.js.map +1 -1
- package/models/components/conversationresponse.js +2 -2
- package/models/components/partdoneevent.js +2 -2
- package/models/components/reasoningpart.js +2 -2
- package/models/operations/createbudget.d.ts +8 -55
- package/models/operations/createbudget.d.ts.map +1 -1
- package/models/operations/createbudget.js +8 -44
- package/models/operations/createbudget.js.map +1 -1
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createconversation.js +2 -2
- package/models/operations/createdataset.js +2 -2
- package/models/operations/createdatasetitem.js +8 -8
- package/models/operations/createdatasource.js +2 -2
- package/models/operations/createeval.js +28 -28
- package/models/operations/createtool.js +12 -12
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/generateconversationname.js +2 -2
- package/models/operations/getalltools.js +12 -12
- package/models/operations/getbudget.d.ts +0 -1
- package/models/operations/getbudget.d.ts.map +1 -1
- package/models/operations/getbudget.js +2 -3
- package/models/operations/getbudget.js.map +1 -1
- package/models/operations/getevals.js +28 -28
- package/models/operations/listbudgets.d.ts +4 -6
- package/models/operations/listbudgets.d.ts.map +1 -1
- package/models/operations/listbudgets.js +4 -6
- package/models/operations/listbudgets.js.map +1 -1
- package/models/operations/listcontacts.js +2 -2
- package/models/operations/listdatasetdatapoints.js +8 -8
- package/models/operations/listdatasets.js +2 -2
- package/models/operations/listdatasources.js +2 -2
- package/models/operations/retrievecontact.js +2 -2
- package/models/operations/retrieveconversation.js +2 -2
- package/models/operations/retrievedatapoint.js +8 -8
- package/models/operations/retrievedataset.js +2 -2
- package/models/operations/retrievedatasource.js +2 -2
- package/models/operations/retrievetool.js +12 -12
- package/models/operations/runagent.js +2 -2
- package/models/operations/streamrunagent.js +2 -2
- package/models/operations/updatebudget.d.ts +0 -1
- package/models/operations/updatebudget.d.ts.map +1 -1
- package/models/operations/updatebudget.js +2 -3
- package/models/operations/updatebudget.js.map +1 -1
- package/models/operations/updatecontact.js +2 -2
- package/models/operations/updateconversation.js +2 -2
- package/models/operations/updatedatapoint.js +8 -8
- package/models/operations/updatedataset.js +2 -2
- package/models/operations/updatedatasource.js +2 -2
- package/models/operations/updateeval.js +28 -28
- package/models/operations/updatetool.js +14 -14
- package/package.json +1 -1
- package/sdk/budgets.d.ts +2 -2
- package/sdk/budgets.js +2 -2
- package/src/funcs/budgetsCreate.ts +1 -1
- package/src/funcs/budgetsList.ts +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/mcp-server/tools/budgetsCreate.ts +1 -1
- package/src/mcp-server/tools/budgetsList.ts +1 -1
- package/src/models/components/conversationresponse.ts +2 -2
- package/src/models/components/partdoneevent.ts +2 -2
- package/src/models/components/reasoningpart.ts +2 -2
- package/src/models/operations/createbudget.ts +17 -111
- package/src/models/operations/createcontact.ts +2 -2
- package/src/models/operations/createconversation.ts +2 -2
- package/src/models/operations/createdataset.ts +2 -2
- package/src/models/operations/createdatasetitem.ts +8 -8
- package/src/models/operations/createdatasource.ts +2 -2
- package/src/models/operations/createeval.ts +28 -28
- package/src/models/operations/createtool.ts +12 -12
- 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/generateconversationname.ts +2 -2
- package/src/models/operations/getalltools.ts +12 -12
- package/src/models/operations/getbudget.ts +2 -3
- package/src/models/operations/getevals.ts +28 -28
- package/src/models/operations/listbudgets.ts +6 -8
- package/src/models/operations/listcontacts.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +8 -8
- package/src/models/operations/listdatasets.ts +2 -2
- package/src/models/operations/listdatasources.ts +2 -2
- package/src/models/operations/retrievecontact.ts +2 -2
- package/src/models/operations/retrieveconversation.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +8 -8
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/retrievedatasource.ts +2 -2
- package/src/models/operations/retrievetool.ts +12 -12
- package/src/models/operations/runagent.ts +2 -2
- package/src/models/operations/streamrunagent.ts +2 -2
- package/src/models/operations/updatebudget.ts +2 -3
- package/src/models/operations/updatecontact.ts +2 -2
- package/src/models/operations/updateconversation.ts +2 -2
- package/src/models/operations/updatedatapoint.ts +8 -8
- package/src/models/operations/updatedataset.ts +2 -2
- package/src/models/operations/updatedatasource.ts +2 -2
- package/src/models/operations/updateeval.ts +28 -28
- package/src/models/operations/updatetool.ts +14 -14
- package/src/sdk/budgets.ts +2 -2
|
@@ -576,7 +576,7 @@ export const CreateDatasourceResponseBody$inboundSchema: z.ZodType<
|
|
|
576
576
|
z.ZodTypeDef,
|
|
577
577
|
unknown
|
|
578
578
|
> = z.object({
|
|
579
|
-
_id: z.string().default("
|
|
579
|
+
_id: z.string().default("01KC6JYPDYWQNE62HFNPFTF364"),
|
|
580
580
|
display_name: z.string(),
|
|
581
581
|
description: z.string().optional(),
|
|
582
582
|
status: CreateDatasourceStatus$inboundSchema,
|
|
@@ -619,7 +619,7 @@ export const CreateDatasourceResponseBody$outboundSchema: z.ZodType<
|
|
|
619
619
|
z.ZodTypeDef,
|
|
620
620
|
CreateDatasourceResponseBody
|
|
621
621
|
> = z.object({
|
|
622
|
-
id: z.string().default("
|
|
622
|
+
id: z.string().default("01KC6JYPDYWQNE62HFNPFTF364"),
|
|
623
623
|
displayName: z.string(),
|
|
624
624
|
description: z.string().optional(),
|
|
625
625
|
status: CreateDatasourceStatus$outboundSchema,
|
|
@@ -1992,8 +1992,8 @@ export const Typescript$inboundSchema: z.ZodType<
|
|
|
1992
1992
|
> = z.object({
|
|
1993
1993
|
_id: z.string(),
|
|
1994
1994
|
description: z.string(),
|
|
1995
|
-
created: z.string().default("2025-12-
|
|
1996
|
-
updated: z.string().default("2025-12-
|
|
1995
|
+
created: z.string().default("2025-12-11T11:32:36.674Z"),
|
|
1996
|
+
updated: z.string().default("2025-12-11T11:32:36.674Z"),
|
|
1997
1997
|
guardrail_config: z.union([
|
|
1998
1998
|
z.lazy(() =>
|
|
1999
1999
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$inboundSchema
|
|
@@ -2034,8 +2034,8 @@ export const Typescript$outboundSchema: z.ZodType<
|
|
|
2034
2034
|
> = z.object({
|
|
2035
2035
|
id: z.string(),
|
|
2036
2036
|
description: z.string(),
|
|
2037
|
-
created: z.string().default("2025-12-
|
|
2038
|
-
updated: z.string().default("2025-12-
|
|
2037
|
+
created: z.string().default("2025-12-11T11:32:36.674Z"),
|
|
2038
|
+
updated: z.string().default("2025-12-11T11:32:36.674Z"),
|
|
2039
2039
|
guardrailConfig: z.union([
|
|
2040
2040
|
z.lazy(() =>
|
|
2041
2041
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$outboundSchema
|
|
@@ -2272,8 +2272,8 @@ export const Ragas$inboundSchema: z.ZodType<Ragas, z.ZodTypeDef, unknown> = z
|
|
|
2272
2272
|
.object({
|
|
2273
2273
|
_id: z.string(),
|
|
2274
2274
|
description: z.string(),
|
|
2275
|
-
created: z.string().default("2025-12-
|
|
2276
|
-
updated: z.string().default("2025-12-
|
|
2275
|
+
created: z.string().default("2025-12-11T11:32:36.674Z"),
|
|
2276
|
+
updated: z.string().default("2025-12-11T11:32:36.674Z"),
|
|
2277
2277
|
guardrail_config: z.union([
|
|
2278
2278
|
z.lazy(() =>
|
|
2279
2279
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$inboundSchema
|
|
@@ -2317,8 +2317,8 @@ export const Ragas$outboundSchema: z.ZodType<
|
|
|
2317
2317
|
> = z.object({
|
|
2318
2318
|
id: z.string(),
|
|
2319
2319
|
description: z.string(),
|
|
2320
|
-
created: z.string().default("2025-12-
|
|
2321
|
-
updated: z.string().default("2025-12-
|
|
2320
|
+
created: z.string().default("2025-12-11T11:32:36.674Z"),
|
|
2321
|
+
updated: z.string().default("2025-12-11T11:32:36.674Z"),
|
|
2322
2322
|
guardrailConfig: z.union([
|
|
2323
2323
|
z.lazy(() =>
|
|
2324
2324
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$outboundSchema
|
|
@@ -3824,8 +3824,8 @@ export const CreateEvalResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
3824
3824
|
> = z.object({
|
|
3825
3825
|
_id: z.string(),
|
|
3826
3826
|
description: z.string(),
|
|
3827
|
-
created: z.string().default("2025-12-
|
|
3828
|
-
updated: z.string().default("2025-12-
|
|
3827
|
+
created: z.string().default("2025-12-11T11:32:36.674Z"),
|
|
3828
|
+
updated: z.string().default("2025-12-11T11:32:36.674Z"),
|
|
3829
3829
|
guardrail_config: z.union([
|
|
3830
3830
|
z.lazy(() =>
|
|
3831
3831
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$inboundSchema
|
|
@@ -3932,8 +3932,8 @@ export const CreateEvalResponseBodyFunction$outboundSchema: z.ZodType<
|
|
|
3932
3932
|
> = z.object({
|
|
3933
3933
|
id: z.string(),
|
|
3934
3934
|
description: z.string(),
|
|
3935
|
-
created: z.string().default("2025-12-
|
|
3936
|
-
updated: z.string().default("2025-12-
|
|
3935
|
+
created: z.string().default("2025-12-11T11:32:36.674Z"),
|
|
3936
|
+
updated: z.string().default("2025-12-11T11:32:36.674Z"),
|
|
3937
3937
|
guardrailConfig: z.union([
|
|
3938
3938
|
z.lazy(() =>
|
|
3939
3939
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$outboundSchema
|
|
@@ -4206,8 +4206,8 @@ export const ResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
4206
4206
|
> = z.object({
|
|
4207
4207
|
_id: z.string(),
|
|
4208
4208
|
description: z.string(),
|
|
4209
|
-
created: z.string().default("2025-12-
|
|
4210
|
-
updated: z.string().default("2025-12-
|
|
4209
|
+
created: z.string().default("2025-12-11T11:32:36.674Z"),
|
|
4210
|
+
updated: z.string().default("2025-12-11T11:32:36.674Z"),
|
|
4211
4211
|
guardrail_config: z.union([
|
|
4212
4212
|
z.lazy(() =>
|
|
4213
4213
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema
|
|
@@ -4248,8 +4248,8 @@ export const ResponseBodyPython$outboundSchema: z.ZodType<
|
|
|
4248
4248
|
> = z.object({
|
|
4249
4249
|
id: z.string(),
|
|
4250
4250
|
description: z.string(),
|
|
4251
|
-
created: z.string().default("2025-12-
|
|
4252
|
-
updated: z.string().default("2025-12-
|
|
4251
|
+
created: z.string().default("2025-12-11T11:32:36.674Z"),
|
|
4252
|
+
updated: z.string().default("2025-12-11T11:32:36.674Z"),
|
|
4253
4253
|
guardrailConfig: z.union([
|
|
4254
4254
|
z.lazy(() =>
|
|
4255
4255
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema
|
|
@@ -4488,8 +4488,8 @@ export const ResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
4488
4488
|
> = z.object({
|
|
4489
4489
|
_id: z.string(),
|
|
4490
4490
|
description: z.string(),
|
|
4491
|
-
created: z.string().default("2025-12-
|
|
4492
|
-
updated: z.string().default("2025-12-
|
|
4491
|
+
created: z.string().default("2025-12-11T11:32:36.674Z"),
|
|
4492
|
+
updated: z.string().default("2025-12-11T11:32:36.674Z"),
|
|
4493
4493
|
guardrail_config: z.union([
|
|
4494
4494
|
z.lazy(() =>
|
|
4495
4495
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema
|
|
@@ -4536,8 +4536,8 @@ export const ResponseBodyHTTP$outboundSchema: z.ZodType<
|
|
|
4536
4536
|
> = z.object({
|
|
4537
4537
|
id: z.string(),
|
|
4538
4538
|
description: z.string(),
|
|
4539
|
-
created: z.string().default("2025-12-
|
|
4540
|
-
updated: z.string().default("2025-12-
|
|
4539
|
+
created: z.string().default("2025-12-11T11:32:36.674Z"),
|
|
4540
|
+
updated: z.string().default("2025-12-11T11:32:36.674Z"),
|
|
4541
4541
|
guardrailConfig: z.union([
|
|
4542
4542
|
z.lazy(() =>
|
|
4543
4543
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema
|
|
@@ -4752,8 +4752,8 @@ export const ResponseBodyJSON$inboundSchema: z.ZodType<
|
|
|
4752
4752
|
> = z.object({
|
|
4753
4753
|
_id: z.string(),
|
|
4754
4754
|
description: z.string(),
|
|
4755
|
-
created: z.string().default("2025-12-
|
|
4756
|
-
updated: z.string().default("2025-12-
|
|
4755
|
+
created: z.string().default("2025-12-11T11:32:36.674Z"),
|
|
4756
|
+
updated: z.string().default("2025-12-11T11:32:36.674Z"),
|
|
4757
4757
|
guardrail_config: z.union([
|
|
4758
4758
|
z.lazy(() =>
|
|
4759
4759
|
CreateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema
|
|
@@ -4792,8 +4792,8 @@ export const ResponseBodyJSON$outboundSchema: z.ZodType<
|
|
|
4792
4792
|
> = z.object({
|
|
4793
4793
|
id: z.string(),
|
|
4794
4794
|
description: z.string(),
|
|
4795
|
-
created: z.string().default("2025-12-
|
|
4796
|
-
updated: z.string().default("2025-12-
|
|
4795
|
+
created: z.string().default("2025-12-11T11:32:36.674Z"),
|
|
4796
|
+
updated: z.string().default("2025-12-11T11:32:36.674Z"),
|
|
4797
4797
|
guardrailConfig: z.union([
|
|
4798
4798
|
z.lazy(() =>
|
|
4799
4799
|
CreateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema
|
|
@@ -5004,8 +5004,8 @@ export const ResponseBodyLLM$inboundSchema: z.ZodType<
|
|
|
5004
5004
|
> = z.object({
|
|
5005
5005
|
_id: z.string(),
|
|
5006
5006
|
description: z.string(),
|
|
5007
|
-
created: z.string().default("2025-12-
|
|
5008
|
-
updated: z.string().default("2025-12-
|
|
5007
|
+
created: z.string().default("2025-12-11T11:32:36.674Z"),
|
|
5008
|
+
updated: z.string().default("2025-12-11T11:32:36.674Z"),
|
|
5009
5009
|
guardrail_config: z.union([
|
|
5010
5010
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
5011
5011
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
@@ -5044,8 +5044,8 @@ export const ResponseBodyLLM$outboundSchema: z.ZodType<
|
|
|
5044
5044
|
> = z.object({
|
|
5045
5045
|
id: z.string(),
|
|
5046
5046
|
description: z.string(),
|
|
5047
|
-
created: z.string().default("2025-12-
|
|
5048
|
-
updated: z.string().default("2025-12-
|
|
5047
|
+
created: z.string().default("2025-12-11T11:32:36.674Z"),
|
|
5048
|
+
updated: z.string().default("2025-12-11T11:32:36.674Z"),
|
|
5049
5049
|
guardrailConfig: z.union([
|
|
5050
5050
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
5051
5051
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
@@ -2458,7 +2458,7 @@ export const ResponseBodyCodeExecutionTool$inboundSchema: z.ZodType<
|
|
|
2458
2458
|
z.ZodTypeDef,
|
|
2459
2459
|
unknown
|
|
2460
2460
|
> = z.object({
|
|
2461
|
-
_id: z.string().default("
|
|
2461
|
+
_id: z.string().default("tool_01KC6JYP9F6PGWT24GKD5VKXQQ"),
|
|
2462
2462
|
path: z.string(),
|
|
2463
2463
|
key: z.string(),
|
|
2464
2464
|
display_name: z.string().optional(),
|
|
@@ -2512,7 +2512,7 @@ export const ResponseBodyCodeExecutionTool$outboundSchema: z.ZodType<
|
|
|
2512
2512
|
z.ZodTypeDef,
|
|
2513
2513
|
ResponseBodyCodeExecutionTool
|
|
2514
2514
|
> = z.object({
|
|
2515
|
-
id: z.string().default("
|
|
2515
|
+
id: z.string().default("tool_01KC6JYP9F6PGWT24GKD5VKXQQ"),
|
|
2516
2516
|
path: z.string(),
|
|
2517
2517
|
key: z.string(),
|
|
2518
2518
|
displayName: z.string().optional(),
|
|
@@ -2678,7 +2678,7 @@ export const ResponseBodyTools$inboundSchema: z.ZodType<
|
|
|
2678
2678
|
z.ZodTypeDef,
|
|
2679
2679
|
unknown
|
|
2680
2680
|
> = z.object({
|
|
2681
|
-
id: z.string().default("
|
|
2681
|
+
id: z.string().default("01KC6JYP9DAK7N8D9CK1M9PQQ8"),
|
|
2682
2682
|
name: z.string(),
|
|
2683
2683
|
description: z.string().optional(),
|
|
2684
2684
|
schema: z.lazy(() => CreateToolResponseBodySchema$inboundSchema),
|
|
@@ -2697,7 +2697,7 @@ export const ResponseBodyTools$outboundSchema: z.ZodType<
|
|
|
2697
2697
|
z.ZodTypeDef,
|
|
2698
2698
|
ResponseBodyTools
|
|
2699
2699
|
> = z.object({
|
|
2700
|
-
id: z.string().default("
|
|
2700
|
+
id: z.string().default("01KC6JYP9DAK7N8D9CK1M9PQQ8"),
|
|
2701
2701
|
name: z.string(),
|
|
2702
2702
|
description: z.string().optional(),
|
|
2703
2703
|
schema: z.lazy(() => CreateToolResponseBodySchema$outboundSchema),
|
|
@@ -2792,7 +2792,7 @@ export const ResponseBodyMCPTool$inboundSchema: z.ZodType<
|
|
|
2792
2792
|
z.ZodTypeDef,
|
|
2793
2793
|
unknown
|
|
2794
2794
|
> = z.object({
|
|
2795
|
-
_id: z.string().default("
|
|
2795
|
+
_id: z.string().default("tool_01KC6JYP9CV9W1216BS5YDTAJ5"),
|
|
2796
2796
|
path: z.string(),
|
|
2797
2797
|
key: z.string(),
|
|
2798
2798
|
display_name: z.string().optional(),
|
|
@@ -2845,7 +2845,7 @@ export const ResponseBodyMCPTool$outboundSchema: z.ZodType<
|
|
|
2845
2845
|
z.ZodTypeDef,
|
|
2846
2846
|
ResponseBodyMCPTool
|
|
2847
2847
|
> = z.object({
|
|
2848
|
-
id: z.string().default("
|
|
2848
|
+
id: z.string().default("tool_01KC6JYP9CV9W1216BS5YDTAJ5"),
|
|
2849
2849
|
path: z.string(),
|
|
2850
2850
|
key: z.string(),
|
|
2851
2851
|
displayName: z.string().optional(),
|
|
@@ -3196,7 +3196,7 @@ export const ResponseBodyHTTPTool$inboundSchema: z.ZodType<
|
|
|
3196
3196
|
z.ZodTypeDef,
|
|
3197
3197
|
unknown
|
|
3198
3198
|
> = z.object({
|
|
3199
|
-
_id: z.string().default("
|
|
3199
|
+
_id: z.string().default("tool_01KC6JYP99KC52EJWCNYZZYK16"),
|
|
3200
3200
|
path: z.string(),
|
|
3201
3201
|
key: z.string(),
|
|
3202
3202
|
display_name: z.string().optional(),
|
|
@@ -3247,7 +3247,7 @@ export const ResponseBodyHTTPTool$outboundSchema: z.ZodType<
|
|
|
3247
3247
|
z.ZodTypeDef,
|
|
3248
3248
|
ResponseBodyHTTPTool
|
|
3249
3249
|
> = z.object({
|
|
3250
|
-
id: z.string().default("
|
|
3250
|
+
id: z.string().default("tool_01KC6JYP99KC52EJWCNYZZYK16"),
|
|
3251
3251
|
path: z.string(),
|
|
3252
3252
|
key: z.string(),
|
|
3253
3253
|
displayName: z.string().optional(),
|
|
@@ -3412,7 +3412,7 @@ export const ResponseBodyJSONSchemaTool$inboundSchema: z.ZodType<
|
|
|
3412
3412
|
z.ZodTypeDef,
|
|
3413
3413
|
unknown
|
|
3414
3414
|
> = z.object({
|
|
3415
|
-
_id: z.string().default("
|
|
3415
|
+
_id: z.string().default("tool_01KC6JYP967DWNS331HPV2GBJ2"),
|
|
3416
3416
|
path: z.string(),
|
|
3417
3417
|
key: z.string(),
|
|
3418
3418
|
display_name: z.string().optional(),
|
|
@@ -3464,7 +3464,7 @@ export const ResponseBodyJSONSchemaTool$outboundSchema: z.ZodType<
|
|
|
3464
3464
|
z.ZodTypeDef,
|
|
3465
3465
|
ResponseBodyJSONSchemaTool
|
|
3466
3466
|
> = z.object({
|
|
3467
|
-
id: z.string().default("
|
|
3467
|
+
id: z.string().default("tool_01KC6JYP967DWNS331HPV2GBJ2"),
|
|
3468
3468
|
path: z.string(),
|
|
3469
3469
|
key: z.string(),
|
|
3470
3470
|
displayName: z.string().optional(),
|
|
@@ -3645,7 +3645,7 @@ export const ResponseBodyFunctionTool$inboundSchema: z.ZodType<
|
|
|
3645
3645
|
z.ZodTypeDef,
|
|
3646
3646
|
unknown
|
|
3647
3647
|
> = z.object({
|
|
3648
|
-
_id: z.string().default("
|
|
3648
|
+
_id: z.string().default("tool_01KC6JYP94V3CBF9TZS0ASMR5Z"),
|
|
3649
3649
|
path: z.string(),
|
|
3650
3650
|
key: z.string(),
|
|
3651
3651
|
display_name: z.string().optional(),
|
|
@@ -3696,7 +3696,7 @@ export const ResponseBodyFunctionTool$outboundSchema: z.ZodType<
|
|
|
3696
3696
|
z.ZodTypeDef,
|
|
3697
3697
|
ResponseBodyFunctionTool
|
|
3698
3698
|
> = z.object({
|
|
3699
|
-
id: z.string().default("
|
|
3699
|
+
id: z.string().default("tool_01KC6JYP94V3CBF9TZS0ASMR5Z"),
|
|
3700
3700
|
path: z.string(),
|
|
3701
3701
|
key: z.string(),
|
|
3702
3702
|
displayName: z.string().optional(),
|
|
@@ -119,7 +119,7 @@ export const FileGetResponseBody$inboundSchema: z.ZodType<
|
|
|
119
119
|
file_name: z.string(),
|
|
120
120
|
workspace_id: z.string(),
|
|
121
121
|
created: z.string().datetime({ offset: true }).default(
|
|
122
|
-
"2025-12-
|
|
122
|
+
"2025-12-11T11:32:37.634Z",
|
|
123
123
|
).transform(v => new Date(v)),
|
|
124
124
|
}).transform((v) => {
|
|
125
125
|
return remap$(v, {
|
|
@@ -152,7 +152,7 @@ export const FileGetResponseBody$outboundSchema: z.ZodType<
|
|
|
152
152
|
bytes: z.number(),
|
|
153
153
|
fileName: z.string(),
|
|
154
154
|
workspaceId: z.string(),
|
|
155
|
-
created: z.date().default(() => new Date("2025-12-
|
|
155
|
+
created: z.date().default(() => new Date("2025-12-11T11:32:37.634Z"))
|
|
156
156
|
.transform(v => v.toISOString()),
|
|
157
157
|
}).transform((v) => {
|
|
158
158
|
return remap$(v, {
|
|
@@ -157,7 +157,7 @@ export const FileListData$inboundSchema: z.ZodType<
|
|
|
157
157
|
file_name: z.string(),
|
|
158
158
|
workspace_id: z.string(),
|
|
159
159
|
created: z.string().datetime({ offset: true }).default(
|
|
160
|
-
"2025-12-
|
|
160
|
+
"2025-12-11T11:32:37.634Z",
|
|
161
161
|
).transform(v => new Date(v)),
|
|
162
162
|
}).transform((v) => {
|
|
163
163
|
return remap$(v, {
|
|
@@ -190,7 +190,7 @@ export const FileListData$outboundSchema: z.ZodType<
|
|
|
190
190
|
bytes: z.number(),
|
|
191
191
|
fileName: z.string(),
|
|
192
192
|
workspaceId: z.string(),
|
|
193
|
-
created: z.date().default(() => new Date("2025-12-
|
|
193
|
+
created: z.date().default(() => new Date("2025-12-11T11:32:37.634Z"))
|
|
194
194
|
.transform(v => v.toISOString()),
|
|
195
195
|
}).transform((v) => {
|
|
196
196
|
return remap$(v, {
|
|
@@ -196,7 +196,7 @@ export const FileUploadResponseBody$inboundSchema: z.ZodType<
|
|
|
196
196
|
file_name: z.string(),
|
|
197
197
|
workspace_id: z.string(),
|
|
198
198
|
created: z.string().datetime({ offset: true }).default(
|
|
199
|
-
"2025-12-
|
|
199
|
+
"2025-12-11T11:32:37.634Z",
|
|
200
200
|
).transform(v => new Date(v)),
|
|
201
201
|
}).transform((v) => {
|
|
202
202
|
return remap$(v, {
|
|
@@ -229,7 +229,7 @@ export const FileUploadResponseBody$outboundSchema: z.ZodType<
|
|
|
229
229
|
bytes: z.number(),
|
|
230
230
|
fileName: z.string(),
|
|
231
231
|
workspaceId: z.string(),
|
|
232
|
-
created: z.date().default(() => new Date("2025-12-
|
|
232
|
+
created: z.date().default(() => new Date("2025-12-11T11:32:37.634Z"))
|
|
233
233
|
.transform(v => v.toISOString()),
|
|
234
234
|
}).transform((v) => {
|
|
235
235
|
return remap$(v, {
|
|
@@ -258,7 +258,7 @@ export const GenerateConversationNameResponseBody$inboundSchema: z.ZodType<
|
|
|
258
258
|
z.ZodTypeDef,
|
|
259
259
|
unknown
|
|
260
260
|
> = z.object({
|
|
261
|
-
_id: z.string().default("
|
|
261
|
+
_id: z.string().default("conv_01kc6jyp2kaycs972pmtm493b7"),
|
|
262
262
|
entity_id: z.string(),
|
|
263
263
|
kind: GenerateConversationNameKind$inboundSchema,
|
|
264
264
|
display_name: z.string(),
|
|
@@ -298,7 +298,7 @@ export const GenerateConversationNameResponseBody$outboundSchema: z.ZodType<
|
|
|
298
298
|
z.ZodTypeDef,
|
|
299
299
|
GenerateConversationNameResponseBody
|
|
300
300
|
> = z.object({
|
|
301
|
-
id: z.string().default("
|
|
301
|
+
id: z.string().default("conv_01kc6jyp2kaycs972pmtm493b7"),
|
|
302
302
|
entityId: z.string(),
|
|
303
303
|
kind: GenerateConversationNameKind$outboundSchema,
|
|
304
304
|
displayName: z.string(),
|
|
@@ -863,7 +863,7 @@ export const DataCodeExecutionTool$inboundSchema: z.ZodType<
|
|
|
863
863
|
z.ZodTypeDef,
|
|
864
864
|
unknown
|
|
865
865
|
> = z.object({
|
|
866
|
-
_id: z.string().default("
|
|
866
|
+
_id: z.string().default("tool_01KC6JYP8GZDSMSS0305C350DF"),
|
|
867
867
|
path: z.string(),
|
|
868
868
|
key: z.string(),
|
|
869
869
|
display_name: z.string().optional(),
|
|
@@ -915,7 +915,7 @@ export const DataCodeExecutionTool$outboundSchema: z.ZodType<
|
|
|
915
915
|
z.ZodTypeDef,
|
|
916
916
|
DataCodeExecutionTool
|
|
917
917
|
> = z.object({
|
|
918
|
-
id: z.string().default("
|
|
918
|
+
id: z.string().default("tool_01KC6JYP8GZDSMSS0305C350DF"),
|
|
919
919
|
path: z.string(),
|
|
920
920
|
key: z.string(),
|
|
921
921
|
displayName: z.string().optional(),
|
|
@@ -1074,7 +1074,7 @@ export const DataTools$inboundSchema: z.ZodType<
|
|
|
1074
1074
|
z.ZodTypeDef,
|
|
1075
1075
|
unknown
|
|
1076
1076
|
> = z.object({
|
|
1077
|
-
id: z.string().default("
|
|
1077
|
+
id: z.string().default("01KC6JYP8FXAQQSSWYRJ45BZ8E"),
|
|
1078
1078
|
name: z.string(),
|
|
1079
1079
|
description: z.string().optional(),
|
|
1080
1080
|
schema: z.lazy(() => GetAllToolsDataSchema$inboundSchema),
|
|
@@ -1093,7 +1093,7 @@ export const DataTools$outboundSchema: z.ZodType<
|
|
|
1093
1093
|
z.ZodTypeDef,
|
|
1094
1094
|
DataTools
|
|
1095
1095
|
> = z.object({
|
|
1096
|
-
id: z.string().default("
|
|
1096
|
+
id: z.string().default("01KC6JYP8FXAQQSSWYRJ45BZ8E"),
|
|
1097
1097
|
name: z.string(),
|
|
1098
1098
|
description: z.string().optional(),
|
|
1099
1099
|
schema: z.lazy(() => GetAllToolsDataSchema$outboundSchema),
|
|
@@ -1178,7 +1178,7 @@ export const DataMCPTool$inboundSchema: z.ZodType<
|
|
|
1178
1178
|
z.ZodTypeDef,
|
|
1179
1179
|
unknown
|
|
1180
1180
|
> = z.object({
|
|
1181
|
-
_id: z.string().default("
|
|
1181
|
+
_id: z.string().default("tool_01KC6JYP8B9FG8CKWGB6H6ZXY6"),
|
|
1182
1182
|
path: z.string(),
|
|
1183
1183
|
key: z.string(),
|
|
1184
1184
|
display_name: z.string().optional(),
|
|
@@ -1229,7 +1229,7 @@ export const DataMCPTool$outboundSchema: z.ZodType<
|
|
|
1229
1229
|
z.ZodTypeDef,
|
|
1230
1230
|
DataMCPTool
|
|
1231
1231
|
> = z.object({
|
|
1232
|
-
id: z.string().default("
|
|
1232
|
+
id: z.string().default("tool_01KC6JYP8B9FG8CKWGB6H6ZXY6"),
|
|
1233
1233
|
path: z.string(),
|
|
1234
1234
|
key: z.string(),
|
|
1235
1235
|
displayName: z.string().optional(),
|
|
@@ -1563,7 +1563,7 @@ export const DataHTTPTool$inboundSchema: z.ZodType<
|
|
|
1563
1563
|
z.ZodTypeDef,
|
|
1564
1564
|
unknown
|
|
1565
1565
|
> = z.object({
|
|
1566
|
-
_id: z.string().default("
|
|
1566
|
+
_id: z.string().default("tool_01KC6JYP88GE1EJCVB0QVA0J4W"),
|
|
1567
1567
|
path: z.string(),
|
|
1568
1568
|
key: z.string(),
|
|
1569
1569
|
display_name: z.string().optional(),
|
|
@@ -1614,7 +1614,7 @@ export const DataHTTPTool$outboundSchema: z.ZodType<
|
|
|
1614
1614
|
z.ZodTypeDef,
|
|
1615
1615
|
DataHTTPTool
|
|
1616
1616
|
> = z.object({
|
|
1617
|
-
id: z.string().default("
|
|
1617
|
+
id: z.string().default("tool_01KC6JYP88GE1EJCVB0QVA0J4W"),
|
|
1618
1618
|
path: z.string(),
|
|
1619
1619
|
key: z.string(),
|
|
1620
1620
|
displayName: z.string().optional(),
|
|
@@ -1767,7 +1767,7 @@ export const DataJSONSchemaTool$inboundSchema: z.ZodType<
|
|
|
1767
1767
|
z.ZodTypeDef,
|
|
1768
1768
|
unknown
|
|
1769
1769
|
> = z.object({
|
|
1770
|
-
_id: z.string().default("
|
|
1770
|
+
_id: z.string().default("tool_01KC6JYP85R9GM8QK43HQKPJ4G"),
|
|
1771
1771
|
path: z.string(),
|
|
1772
1772
|
key: z.string(),
|
|
1773
1773
|
display_name: z.string().optional(),
|
|
@@ -1819,7 +1819,7 @@ export const DataJSONSchemaTool$outboundSchema: z.ZodType<
|
|
|
1819
1819
|
z.ZodTypeDef,
|
|
1820
1820
|
DataJSONSchemaTool
|
|
1821
1821
|
> = z.object({
|
|
1822
|
-
id: z.string().default("
|
|
1822
|
+
id: z.string().default("tool_01KC6JYP85R9GM8QK43HQKPJ4G"),
|
|
1823
1823
|
path: z.string(),
|
|
1824
1824
|
key: z.string(),
|
|
1825
1825
|
displayName: z.string().optional(),
|
|
@@ -1995,7 +1995,7 @@ export const DataFunctionTool$inboundSchema: z.ZodType<
|
|
|
1995
1995
|
z.ZodTypeDef,
|
|
1996
1996
|
unknown
|
|
1997
1997
|
> = z.object({
|
|
1998
|
-
_id: z.string().default("
|
|
1998
|
+
_id: z.string().default("tool_01KC6JYP83P2YM2FC4XEWWYQ3H"),
|
|
1999
1999
|
path: z.string(),
|
|
2000
2000
|
key: z.string(),
|
|
2001
2001
|
display_name: z.string().optional(),
|
|
@@ -2046,7 +2046,7 @@ export const DataFunctionTool$outboundSchema: z.ZodType<
|
|
|
2046
2046
|
z.ZodTypeDef,
|
|
2047
2047
|
DataFunctionTool
|
|
2048
2048
|
> = z.object({
|
|
2049
|
-
id: z.string().default("
|
|
2049
|
+
id: z.string().default("tool_01KC6JYP83P2YM2FC4XEWWYQ3H"),
|
|
2050
2050
|
path: z.string(),
|
|
2051
2051
|
key: z.string(),
|
|
2052
2052
|
displayName: z.string().optional(),
|
|
@@ -23,7 +23,6 @@ export type GetBudgetRequest = {
|
|
|
23
23
|
export const GetBudgetType = {
|
|
24
24
|
ApiKey: "api_key",
|
|
25
25
|
Contact: "contact",
|
|
26
|
-
Workspace: "workspace",
|
|
27
26
|
} as const;
|
|
28
27
|
/**
|
|
29
28
|
* Budget entity type
|
|
@@ -296,7 +295,7 @@ export const GetBudgetResponseBody$inboundSchema: z.ZodType<
|
|
|
296
295
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
297
296
|
.optional(),
|
|
298
297
|
updated: z.string().datetime({ offset: true }).default(
|
|
299
|
-
"2025-12-
|
|
298
|
+
"2025-12-11T11:32:34.996Z",
|
|
300
299
|
).transform(v => new Date(v)),
|
|
301
300
|
}).transform((v) => {
|
|
302
301
|
return remap$(v, {
|
|
@@ -336,7 +335,7 @@ export const GetBudgetResponseBody$outboundSchema: z.ZodType<
|
|
|
336
335
|
isActive: z.boolean(),
|
|
337
336
|
consumption: z.lazy(() => GetBudgetConsumption$outboundSchema).optional(),
|
|
338
337
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
339
|
-
updated: z.date().default(() => new Date("2025-12-
|
|
338
|
+
updated: z.date().default(() => new Date("2025-12-11T11:32:34.996Z"))
|
|
340
339
|
.transform(v => v.toISOString()),
|
|
341
340
|
}).transform((v) => {
|
|
342
341
|
return remap$(v, {
|
|
@@ -857,8 +857,8 @@ export const DataTypescript$inboundSchema: z.ZodType<
|
|
|
857
857
|
> = z.object({
|
|
858
858
|
_id: z.string(),
|
|
859
859
|
description: z.string(),
|
|
860
|
-
created: z.string().default("2025-12-
|
|
861
|
-
updated: z.string().default("2025-12-
|
|
860
|
+
created: z.string().default("2025-12-11T11:32:36.674Z"),
|
|
861
|
+
updated: z.string().default("2025-12-11T11:32:36.674Z"),
|
|
862
862
|
guardrail_config: z.union([
|
|
863
863
|
z.lazy(() =>
|
|
864
864
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema
|
|
@@ -899,8 +899,8 @@ export const DataTypescript$outboundSchema: z.ZodType<
|
|
|
899
899
|
> = z.object({
|
|
900
900
|
id: z.string(),
|
|
901
901
|
description: z.string(),
|
|
902
|
-
created: z.string().default("2025-12-
|
|
903
|
-
updated: z.string().default("2025-12-
|
|
902
|
+
created: z.string().default("2025-12-11T11:32:36.674Z"),
|
|
903
|
+
updated: z.string().default("2025-12-11T11:32:36.674Z"),
|
|
904
904
|
guardrailConfig: z.union([
|
|
905
905
|
z.lazy(() =>
|
|
906
906
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema
|
|
@@ -1125,8 +1125,8 @@ export const DataRagas$inboundSchema: z.ZodType<
|
|
|
1125
1125
|
> = z.object({
|
|
1126
1126
|
_id: z.string(),
|
|
1127
1127
|
description: z.string(),
|
|
1128
|
-
created: z.string().default("2025-12-
|
|
1129
|
-
updated: z.string().default("2025-12-
|
|
1128
|
+
created: z.string().default("2025-12-11T11:32:36.674Z"),
|
|
1129
|
+
updated: z.string().default("2025-12-11T11:32:36.674Z"),
|
|
1130
1130
|
guardrail_config: z.union([
|
|
1131
1131
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema),
|
|
1132
1132
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
@@ -1166,8 +1166,8 @@ export const DataRagas$outboundSchema: z.ZodType<
|
|
|
1166
1166
|
> = z.object({
|
|
1167
1167
|
id: z.string(),
|
|
1168
1168
|
description: z.string(),
|
|
1169
|
-
created: z.string().default("2025-12-
|
|
1170
|
-
updated: z.string().default("2025-12-
|
|
1169
|
+
created: z.string().default("2025-12-11T11:32:36.674Z"),
|
|
1170
|
+
updated: z.string().default("2025-12-11T11:32:36.674Z"),
|
|
1171
1171
|
guardrailConfig: z.union([
|
|
1172
1172
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema),
|
|
1173
1173
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
@@ -2791,8 +2791,8 @@ export const DataFunction$inboundSchema: z.ZodType<
|
|
|
2791
2791
|
> = z.object({
|
|
2792
2792
|
_id: z.string(),
|
|
2793
2793
|
description: z.string(),
|
|
2794
|
-
created: z.string().default("2025-12-
|
|
2795
|
-
updated: z.string().default("2025-12-
|
|
2794
|
+
created: z.string().default("2025-12-11T11:32:36.674Z"),
|
|
2795
|
+
updated: z.string().default("2025-12-11T11:32:36.674Z"),
|
|
2796
2796
|
guardrail_config: z.union([
|
|
2797
2797
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
2798
2798
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
@@ -2895,8 +2895,8 @@ export const DataFunction$outboundSchema: z.ZodType<
|
|
|
2895
2895
|
> = z.object({
|
|
2896
2896
|
id: z.string(),
|
|
2897
2897
|
description: z.string(),
|
|
2898
|
-
created: z.string().default("2025-12-
|
|
2899
|
-
updated: z.string().default("2025-12-
|
|
2898
|
+
created: z.string().default("2025-12-11T11:32:36.674Z"),
|
|
2899
|
+
updated: z.string().default("2025-12-11T11:32:36.674Z"),
|
|
2900
2900
|
guardrailConfig: z.union([
|
|
2901
2901
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
2902
2902
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
@@ -3118,8 +3118,8 @@ export const DataPython$inboundSchema: z.ZodType<
|
|
|
3118
3118
|
> = z.object({
|
|
3119
3119
|
_id: z.string(),
|
|
3120
3120
|
description: z.string(),
|
|
3121
|
-
created: z.string().default("2025-12-
|
|
3122
|
-
updated: z.string().default("2025-12-
|
|
3121
|
+
created: z.string().default("2025-12-11T11:32:36.674Z"),
|
|
3122
|
+
updated: z.string().default("2025-12-11T11:32:36.674Z"),
|
|
3123
3123
|
guardrail_config: z.union([
|
|
3124
3124
|
z.lazy(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema),
|
|
3125
3125
|
z.lazy(() => GetEvalsGuardrailConfigEvalsNumber$inboundSchema),
|
|
@@ -3156,8 +3156,8 @@ export const DataPython$outboundSchema: z.ZodType<
|
|
|
3156
3156
|
> = z.object({
|
|
3157
3157
|
id: z.string(),
|
|
3158
3158
|
description: z.string(),
|
|
3159
|
-
created: z.string().default("2025-12-
|
|
3160
|
-
updated: z.string().default("2025-12-
|
|
3159
|
+
created: z.string().default("2025-12-11T11:32:36.674Z"),
|
|
3160
|
+
updated: z.string().default("2025-12-11T11:32:36.674Z"),
|
|
3161
3161
|
guardrailConfig: z.union([
|
|
3162
3162
|
z.lazy(() => GetEvalsGuardrailConfigEvalsBoolean$outboundSchema),
|
|
3163
3163
|
z.lazy(() => GetEvalsGuardrailConfigEvalsNumber$outboundSchema),
|
|
@@ -3349,8 +3349,8 @@ export const DataHTTP$inboundSchema: z.ZodType<
|
|
|
3349
3349
|
> = z.object({
|
|
3350
3350
|
_id: z.string(),
|
|
3351
3351
|
description: z.string(),
|
|
3352
|
-
created: z.string().default("2025-12-
|
|
3353
|
-
updated: z.string().default("2025-12-
|
|
3352
|
+
created: z.string().default("2025-12-11T11:32:36.674Z"),
|
|
3353
|
+
updated: z.string().default("2025-12-11T11:32:36.674Z"),
|
|
3354
3354
|
guardrail_config: z.union([
|
|
3355
3355
|
z.lazy(() => GetEvalsGuardrailConfigBoolean$inboundSchema),
|
|
3356
3356
|
z.lazy(() => GetEvalsGuardrailConfigNumber$inboundSchema),
|
|
@@ -3393,8 +3393,8 @@ export const DataHTTP$outboundSchema: z.ZodType<
|
|
|
3393
3393
|
> = z.object({
|
|
3394
3394
|
id: z.string(),
|
|
3395
3395
|
description: z.string(),
|
|
3396
|
-
created: z.string().default("2025-12-
|
|
3397
|
-
updated: z.string().default("2025-12-
|
|
3396
|
+
created: z.string().default("2025-12-11T11:32:36.674Z"),
|
|
3397
|
+
updated: z.string().default("2025-12-11T11:32:36.674Z"),
|
|
3398
3398
|
guardrailConfig: z.union([
|
|
3399
3399
|
z.lazy(() => GetEvalsGuardrailConfigBoolean$outboundSchema),
|
|
3400
3400
|
z.lazy(() => GetEvalsGuardrailConfigNumber$outboundSchema),
|
|
@@ -3615,8 +3615,8 @@ export const DataJSON$inboundSchema: z.ZodType<
|
|
|
3615
3615
|
> = z.object({
|
|
3616
3616
|
_id: z.string(),
|
|
3617
3617
|
description: z.string(),
|
|
3618
|
-
created: z.string().default("2025-12-
|
|
3619
|
-
updated: z.string().default("2025-12-
|
|
3618
|
+
created: z.string().default("2025-12-11T11:32:36.674Z"),
|
|
3619
|
+
updated: z.string().default("2025-12-11T11:32:36.674Z"),
|
|
3620
3620
|
guardrail_config: z.union([
|
|
3621
3621
|
z.lazy(() =>
|
|
3622
3622
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$inboundSchema
|
|
@@ -3657,8 +3657,8 @@ export const DataJSON$outboundSchema: z.ZodType<
|
|
|
3657
3657
|
> = z.object({
|
|
3658
3658
|
id: z.string(),
|
|
3659
3659
|
description: z.string(),
|
|
3660
|
-
created: z.string().default("2025-12-
|
|
3661
|
-
updated: z.string().default("2025-12-
|
|
3660
|
+
created: z.string().default("2025-12-11T11:32:36.674Z"),
|
|
3661
|
+
updated: z.string().default("2025-12-11T11:32:36.674Z"),
|
|
3662
3662
|
guardrailConfig: z.union([
|
|
3663
3663
|
z.lazy(() =>
|
|
3664
3664
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$outboundSchema
|
|
@@ -3888,8 +3888,8 @@ export const DataLLM$inboundSchema: z.ZodType<DataLLM, z.ZodTypeDef, unknown> =
|
|
|
3888
3888
|
z.object({
|
|
3889
3889
|
_id: z.string(),
|
|
3890
3890
|
description: z.string(),
|
|
3891
|
-
created: z.string().default("2025-12-
|
|
3892
|
-
updated: z.string().default("2025-12-
|
|
3891
|
+
created: z.string().default("2025-12-11T11:32:36.674Z"),
|
|
3892
|
+
updated: z.string().default("2025-12-11T11:32:36.674Z"),
|
|
3893
3893
|
guardrail_config: z.union([
|
|
3894
3894
|
z.lazy(() =>
|
|
3895
3895
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema
|
|
@@ -3932,8 +3932,8 @@ export const DataLLM$outboundSchema: z.ZodType<
|
|
|
3932
3932
|
> = z.object({
|
|
3933
3933
|
id: z.string(),
|
|
3934
3934
|
description: z.string(),
|
|
3935
|
-
created: z.string().default("2025-12-
|
|
3936
|
-
updated: z.string().default("2025-12-
|
|
3935
|
+
created: z.string().default("2025-12-11T11:32:36.674Z"),
|
|
3936
|
+
updated: z.string().default("2025-12-11T11:32:36.674Z"),
|
|
3937
3937
|
guardrailConfig: z.union([
|
|
3938
3938
|
z.lazy(() =>
|
|
3939
3939
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema
|