@orq-ai/node 4.0.0-rc.46 → 4.0.0-rc.49
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 +275 -246
- package/bin/mcp-server.js.map +43 -43
- package/docs/sdks/agents/README.md +4 -6
- package/examples/package-lock.json +1 -1
- package/funcs/agentsDuplicate.d.ts +1 -1
- package/funcs/agentsDuplicate.js +5 -4
- package/funcs/agentsDuplicate.js.map +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/agentsDuplicate.js +1 -1
- package/mcp-server/tools/agentsDuplicate.js.map +1 -1
- package/models/operations/createagent.d.ts +2 -2
- package/models/operations/createagent.d.ts.map +1 -1
- package/models/operations/createagent.js +2 -2
- package/models/operations/createagent.js.map +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 +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/duplicateagent.d.ts +26 -3
- package/models/operations/duplicateagent.d.ts.map +1 -1
- package/models/operations/duplicateagent.js +45 -6
- package/models/operations/duplicateagent.js.map +1 -1
- package/models/operations/duplicatetool.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/getalltools.js +12 -12
- 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 +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/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/syncmcptool.js +12 -12
- package/models/operations/updatebudget.js +2 -2
- package/models/operations/updatecontact.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/agents.d.ts +1 -1
- package/sdk/agents.js +1 -1
- package/src/funcs/agentsDuplicate.ts +6 -5
- 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/agentsDuplicate.ts +1 -1
- package/src/models/operations/createagent.ts +4 -4
- 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 +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/duplicateagent.ts +81 -5
- package/src/models/operations/duplicatetool.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/getalltools.ts +12 -12
- 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 +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/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/syncmcptool.ts +12 -12
- package/src/models/operations/updatebudget.ts +2 -2
- package/src/models/operations/updatecontact.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/agents.ts +1 -1
|
@@ -890,7 +890,7 @@ export const RetrieveToolResponseBody5$inboundSchema: z.ZodType<
|
|
|
890
890
|
z.ZodTypeDef,
|
|
891
891
|
unknown
|
|
892
892
|
> = z.object({
|
|
893
|
-
_id: z.string().default("
|
|
893
|
+
_id: z.string().default("tool_01KADVBBNQCWG8CQ84DPVSFH09"),
|
|
894
894
|
path: z.string(),
|
|
895
895
|
key: z.string(),
|
|
896
896
|
display_name: z.string().optional(),
|
|
@@ -945,7 +945,7 @@ export const RetrieveToolResponseBody5$outboundSchema: z.ZodType<
|
|
|
945
945
|
z.ZodTypeDef,
|
|
946
946
|
RetrieveToolResponseBody5
|
|
947
947
|
> = z.object({
|
|
948
|
-
id: z.string().default("
|
|
948
|
+
id: z.string().default("tool_01KADVBBNQCWG8CQ84DPVSFH09"),
|
|
949
949
|
path: z.string(),
|
|
950
950
|
key: z.string(),
|
|
951
951
|
displayName: z.string().optional(),
|
|
@@ -1125,7 +1125,7 @@ export const RetrieveToolResponseBodyTools$inboundSchema: z.ZodType<
|
|
|
1125
1125
|
z.ZodTypeDef,
|
|
1126
1126
|
unknown
|
|
1127
1127
|
> = z.object({
|
|
1128
|
-
id: z.string().default("
|
|
1128
|
+
id: z.string().default("01KADVBBNQK0STSQB5MYG8NYQ0"),
|
|
1129
1129
|
name: z.string(),
|
|
1130
1130
|
description: z.string().optional(),
|
|
1131
1131
|
schema: z.lazy(() => RetrieveToolResponseBodyToolsSchema$inboundSchema),
|
|
@@ -1144,7 +1144,7 @@ export const RetrieveToolResponseBodyTools$outboundSchema: z.ZodType<
|
|
|
1144
1144
|
z.ZodTypeDef,
|
|
1145
1145
|
RetrieveToolResponseBodyTools
|
|
1146
1146
|
> = z.object({
|
|
1147
|
-
id: z.string().default("
|
|
1147
|
+
id: z.string().default("01KADVBBNQK0STSQB5MYG8NYQ0"),
|
|
1148
1148
|
name: z.string(),
|
|
1149
1149
|
description: z.string().optional(),
|
|
1150
1150
|
schema: z.lazy(() => RetrieveToolResponseBodyToolsSchema$outboundSchema),
|
|
@@ -1250,7 +1250,7 @@ export const RetrieveToolResponseBody4$inboundSchema: z.ZodType<
|
|
|
1250
1250
|
z.ZodTypeDef,
|
|
1251
1251
|
unknown
|
|
1252
1252
|
> = z.object({
|
|
1253
|
-
_id: z.string().default("
|
|
1253
|
+
_id: z.string().default("tool_01KADVBBNP5ZXWE0Q8VPM2BZ8J"),
|
|
1254
1254
|
path: z.string(),
|
|
1255
1255
|
key: z.string(),
|
|
1256
1256
|
display_name: z.string().optional(),
|
|
@@ -1303,7 +1303,7 @@ export const RetrieveToolResponseBody4$outboundSchema: z.ZodType<
|
|
|
1303
1303
|
z.ZodTypeDef,
|
|
1304
1304
|
RetrieveToolResponseBody4
|
|
1305
1305
|
> = z.object({
|
|
1306
|
-
id: z.string().default("
|
|
1306
|
+
id: z.string().default("tool_01KADVBBNP5ZXWE0Q8VPM2BZ8J"),
|
|
1307
1307
|
path: z.string(),
|
|
1308
1308
|
key: z.string(),
|
|
1309
1309
|
displayName: z.string().optional(),
|
|
@@ -1681,7 +1681,7 @@ export const RetrieveToolResponseBody3$inboundSchema: z.ZodType<
|
|
|
1681
1681
|
z.ZodTypeDef,
|
|
1682
1682
|
unknown
|
|
1683
1683
|
> = z.object({
|
|
1684
|
-
_id: z.string().default("
|
|
1684
|
+
_id: z.string().default("tool_01KADVBBNM24Y0XJCRXTS80DY6"),
|
|
1685
1685
|
path: z.string(),
|
|
1686
1686
|
key: z.string(),
|
|
1687
1687
|
display_name: z.string().optional(),
|
|
@@ -1734,7 +1734,7 @@ export const RetrieveToolResponseBody3$outboundSchema: z.ZodType<
|
|
|
1734
1734
|
z.ZodTypeDef,
|
|
1735
1735
|
RetrieveToolResponseBody3
|
|
1736
1736
|
> = z.object({
|
|
1737
|
-
id: z.string().default("
|
|
1737
|
+
id: z.string().default("tool_01KADVBBNM24Y0XJCRXTS80DY6"),
|
|
1738
1738
|
path: z.string(),
|
|
1739
1739
|
key: z.string(),
|
|
1740
1740
|
displayName: z.string().optional(),
|
|
@@ -1915,7 +1915,7 @@ export const RetrieveToolResponseBody2$inboundSchema: z.ZodType<
|
|
|
1915
1915
|
z.ZodTypeDef,
|
|
1916
1916
|
unknown
|
|
1917
1917
|
> = z.object({
|
|
1918
|
-
_id: z.string().default("
|
|
1918
|
+
_id: z.string().default("tool_01KADVBBNJESXEV78REA8GY638"),
|
|
1919
1919
|
path: z.string(),
|
|
1920
1920
|
key: z.string(),
|
|
1921
1921
|
display_name: z.string().optional(),
|
|
@@ -1967,7 +1967,7 @@ export const RetrieveToolResponseBody2$outboundSchema: z.ZodType<
|
|
|
1967
1967
|
z.ZodTypeDef,
|
|
1968
1968
|
RetrieveToolResponseBody2
|
|
1969
1969
|
> = z.object({
|
|
1970
|
-
id: z.string().default("
|
|
1970
|
+
id: z.string().default("tool_01KADVBBNJESXEV78REA8GY638"),
|
|
1971
1971
|
path: z.string(),
|
|
1972
1972
|
key: z.string(),
|
|
1973
1973
|
displayName: z.string().optional(),
|
|
@@ -2165,7 +2165,7 @@ export const RetrieveToolResponseBody1$inboundSchema: z.ZodType<
|
|
|
2165
2165
|
z.ZodTypeDef,
|
|
2166
2166
|
unknown
|
|
2167
2167
|
> = z.object({
|
|
2168
|
-
_id: z.string().default("
|
|
2168
|
+
_id: z.string().default("tool_01KADVBBNHTCYT5P1GF98GNZ3M"),
|
|
2169
2169
|
path: z.string(),
|
|
2170
2170
|
key: z.string(),
|
|
2171
2171
|
display_name: z.string().optional(),
|
|
@@ -2216,7 +2216,7 @@ export const RetrieveToolResponseBody1$outboundSchema: z.ZodType<
|
|
|
2216
2216
|
z.ZodTypeDef,
|
|
2217
2217
|
RetrieveToolResponseBody1
|
|
2218
2218
|
> = z.object({
|
|
2219
|
-
id: z.string().default("
|
|
2219
|
+
id: z.string().default("tool_01KADVBBNHTCYT5P1GF98GNZ3M"),
|
|
2220
2220
|
path: z.string(),
|
|
2221
2221
|
key: z.string(),
|
|
2222
2222
|
displayName: z.string().optional(),
|
|
@@ -4757,7 +4757,7 @@ export function schemaFromJSON(
|
|
|
4757
4757
|
/** @internal */
|
|
4758
4758
|
export const Tools$inboundSchema: z.ZodType<Tools, z.ZodTypeDef, unknown> = z
|
|
4759
4759
|
.object({
|
|
4760
|
-
id: z.string().default("
|
|
4760
|
+
id: z.string().default("01KADVBBB23PQAGSRRFMY6BKPJ"),
|
|
4761
4761
|
name: z.string(),
|
|
4762
4762
|
description: z.string().optional(),
|
|
4763
4763
|
schema: z.lazy(() => Schema$inboundSchema),
|
|
@@ -4776,7 +4776,7 @@ export const Tools$outboundSchema: z.ZodType<
|
|
|
4776
4776
|
z.ZodTypeDef,
|
|
4777
4777
|
Tools
|
|
4778
4778
|
> = z.object({
|
|
4779
|
-
id: z.string().default("
|
|
4779
|
+
id: z.string().default("01KADVBBB23PQAGSRRFMY6BKPJ"),
|
|
4780
4780
|
name: z.string(),
|
|
4781
4781
|
description: z.string().optional(),
|
|
4782
4782
|
schema: z.lazy(() => Schema$outboundSchema),
|
|
@@ -4784,7 +4784,7 @@ export const AgentToolInputRunTools$inboundSchema: z.ZodType<
|
|
|
4784
4784
|
z.ZodTypeDef,
|
|
4785
4785
|
unknown
|
|
4786
4786
|
> = z.object({
|
|
4787
|
-
id: z.string().default("
|
|
4787
|
+
id: z.string().default("01KADVBBBSTARV729KAPM5MX6A"),
|
|
4788
4788
|
name: z.string(),
|
|
4789
4789
|
description: z.string().optional(),
|
|
4790
4790
|
schema: z.lazy(() => AgentToolInputRunSchema$inboundSchema),
|
|
@@ -4803,7 +4803,7 @@ export const AgentToolInputRunTools$outboundSchema: z.ZodType<
|
|
|
4803
4803
|
z.ZodTypeDef,
|
|
4804
4804
|
AgentToolInputRunTools
|
|
4805
4805
|
> = z.object({
|
|
4806
|
-
id: z.string().default("
|
|
4806
|
+
id: z.string().default("01KADVBBBSTARV729KAPM5MX6A"),
|
|
4807
4807
|
name: z.string(),
|
|
4808
4808
|
description: z.string().optional(),
|
|
4809
4809
|
schema: z.lazy(() => AgentToolInputRunSchema$outboundSchema),
|
|
@@ -979,7 +979,7 @@ export const SyncMcpToolResponseBody5$inboundSchema: z.ZodType<
|
|
|
979
979
|
z.ZodTypeDef,
|
|
980
980
|
unknown
|
|
981
981
|
> = z.object({
|
|
982
|
-
_id: z.string().default("
|
|
982
|
+
_id: z.string().default("tool_01KADVBBP3QEB7YRJPXECZE2KY"),
|
|
983
983
|
path: z.string(),
|
|
984
984
|
key: z.string(),
|
|
985
985
|
display_name: z.string().optional(),
|
|
@@ -1038,7 +1038,7 @@ export const SyncMcpToolResponseBody5$outboundSchema: z.ZodType<
|
|
|
1038
1038
|
z.ZodTypeDef,
|
|
1039
1039
|
SyncMcpToolResponseBody5
|
|
1040
1040
|
> = z.object({
|
|
1041
|
-
id: z.string().default("
|
|
1041
|
+
id: z.string().default("tool_01KADVBBP3QEB7YRJPXECZE2KY"),
|
|
1042
1042
|
path: z.string(),
|
|
1043
1043
|
key: z.string(),
|
|
1044
1044
|
displayName: z.string().optional(),
|
|
@@ -1218,7 +1218,7 @@ export const SyncMcpToolResponseBodyTools$inboundSchema: z.ZodType<
|
|
|
1218
1218
|
z.ZodTypeDef,
|
|
1219
1219
|
unknown
|
|
1220
1220
|
> = z.object({
|
|
1221
|
-
id: z.string().default("
|
|
1221
|
+
id: z.string().default("01KADVBBP367G8684A290XFDFQ"),
|
|
1222
1222
|
name: z.string(),
|
|
1223
1223
|
description: z.string().optional(),
|
|
1224
1224
|
schema: z.lazy(() => SyncMcpToolResponseBodyToolsSchema$inboundSchema),
|
|
@@ -1237,7 +1237,7 @@ export const SyncMcpToolResponseBodyTools$outboundSchema: z.ZodType<
|
|
|
1237
1237
|
z.ZodTypeDef,
|
|
1238
1238
|
SyncMcpToolResponseBodyTools
|
|
1239
1239
|
> = z.object({
|
|
1240
|
-
id: z.string().default("
|
|
1240
|
+
id: z.string().default("01KADVBBP367G8684A290XFDFQ"),
|
|
1241
1241
|
name: z.string(),
|
|
1242
1242
|
description: z.string().optional(),
|
|
1243
1243
|
schema: z.lazy(() => SyncMcpToolResponseBodyToolsSchema$outboundSchema),
|
|
@@ -1392,7 +1392,7 @@ export const SyncMcpToolResponseBody4$inboundSchema: z.ZodType<
|
|
|
1392
1392
|
z.ZodTypeDef,
|
|
1393
1393
|
unknown
|
|
1394
1394
|
> = z.object({
|
|
1395
|
-
_id: z.string().default("
|
|
1395
|
+
_id: z.string().default("tool_01KADVBBP13KXS9P0NT76JCST0"),
|
|
1396
1396
|
path: z.string(),
|
|
1397
1397
|
key: z.string(),
|
|
1398
1398
|
display_name: z.string().optional(),
|
|
@@ -1449,7 +1449,7 @@ export const SyncMcpToolResponseBody4$outboundSchema: z.ZodType<
|
|
|
1449
1449
|
z.ZodTypeDef,
|
|
1450
1450
|
SyncMcpToolResponseBody4
|
|
1451
1451
|
> = z.object({
|
|
1452
|
-
id: z.string().default("
|
|
1452
|
+
id: z.string().default("tool_01KADVBBP13KXS9P0NT76JCST0"),
|
|
1453
1453
|
path: z.string(),
|
|
1454
1454
|
key: z.string(),
|
|
1455
1455
|
displayName: z.string().optional(),
|
|
@@ -1877,7 +1877,7 @@ export const SyncMcpToolResponseBody3$inboundSchema: z.ZodType<
|
|
|
1877
1877
|
z.ZodTypeDef,
|
|
1878
1878
|
unknown
|
|
1879
1879
|
> = z.object({
|
|
1880
|
-
_id: z.string().default("
|
|
1880
|
+
_id: z.string().default("tool_01KADVBBNX19770Z8ZF4Q8SQ0S"),
|
|
1881
1881
|
path: z.string(),
|
|
1882
1882
|
key: z.string(),
|
|
1883
1883
|
display_name: z.string().optional(),
|
|
@@ -1932,7 +1932,7 @@ export const SyncMcpToolResponseBody3$outboundSchema: z.ZodType<
|
|
|
1932
1932
|
z.ZodTypeDef,
|
|
1933
1933
|
SyncMcpToolResponseBody3
|
|
1934
1934
|
> = z.object({
|
|
1935
|
-
id: z.string().default("
|
|
1935
|
+
id: z.string().default("tool_01KADVBBNX19770Z8ZF4Q8SQ0S"),
|
|
1936
1936
|
path: z.string(),
|
|
1937
1937
|
key: z.string(),
|
|
1938
1938
|
displayName: z.string().optional(),
|
|
@@ -2161,7 +2161,7 @@ export const SyncMcpToolResponseBody2$inboundSchema: z.ZodType<
|
|
|
2161
2161
|
z.ZodTypeDef,
|
|
2162
2162
|
unknown
|
|
2163
2163
|
> = z.object({
|
|
2164
|
-
_id: z.string().default("
|
|
2164
|
+
_id: z.string().default("tool_01KADVBBNT137QX8VHADN64CFB"),
|
|
2165
2165
|
path: z.string(),
|
|
2166
2166
|
key: z.string(),
|
|
2167
2167
|
display_name: z.string().optional(),
|
|
@@ -2215,7 +2215,7 @@ export const SyncMcpToolResponseBody2$outboundSchema: z.ZodType<
|
|
|
2215
2215
|
z.ZodTypeDef,
|
|
2216
2216
|
SyncMcpToolResponseBody2
|
|
2217
2217
|
> = z.object({
|
|
2218
|
-
id: z.string().default("
|
|
2218
|
+
id: z.string().default("tool_01KADVBBNT137QX8VHADN64CFB"),
|
|
2219
2219
|
path: z.string(),
|
|
2220
2220
|
key: z.string(),
|
|
2221
2221
|
displayName: z.string().optional(),
|
|
@@ -2454,7 +2454,7 @@ export const SyncMcpToolResponseBody1$inboundSchema: z.ZodType<
|
|
|
2454
2454
|
z.ZodTypeDef,
|
|
2455
2455
|
unknown
|
|
2456
2456
|
> = z.object({
|
|
2457
|
-
_id: z.string().default("
|
|
2457
|
+
_id: z.string().default("tool_01KADVBBNS21PJG0QG3DEXH6A9"),
|
|
2458
2458
|
path: z.string(),
|
|
2459
2459
|
key: z.string(),
|
|
2460
2460
|
display_name: z.string().optional(),
|
|
@@ -2507,7 +2507,7 @@ export const SyncMcpToolResponseBody1$outboundSchema: z.ZodType<
|
|
|
2507
2507
|
z.ZodTypeDef,
|
|
2508
2508
|
SyncMcpToolResponseBody1
|
|
2509
2509
|
> = z.object({
|
|
2510
|
-
id: z.string().default("
|
|
2510
|
+
id: z.string().default("tool_01KADVBBNS21PJG0QG3DEXH6A9"),
|
|
2511
2511
|
path: z.string(),
|
|
2512
2512
|
key: z.string(),
|
|
2513
2513
|
displayName: z.string().optional(),
|
|
@@ -436,7 +436,7 @@ export const UpdateBudgetResponseBody$inboundSchema: z.ZodType<
|
|
|
436
436
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
437
437
|
.optional(),
|
|
438
438
|
updated: z.string().datetime({ offset: true }).default(
|
|
439
|
-
"2025-11-
|
|
439
|
+
"2025-11-19T10:42:35.789Z",
|
|
440
440
|
).transform(v => new Date(v)),
|
|
441
441
|
}).transform((v) => {
|
|
442
442
|
return remap$(v, {
|
|
@@ -473,7 +473,7 @@ export const UpdateBudgetResponseBody$outboundSchema: z.ZodType<
|
|
|
473
473
|
isActive: z.boolean(),
|
|
474
474
|
consumption: z.lazy(() => UpdateBudgetConsumption$outboundSchema).optional(),
|
|
475
475
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
476
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
476
|
+
updated: z.date().default(() => new Date("2025-11-19T10:42:35.789Z"))
|
|
477
477
|
.transform(v => v.toISOString()),
|
|
478
478
|
}).transform((v) => {
|
|
479
479
|
return remap$(v, {
|
|
@@ -214,7 +214,7 @@ export const UpdateContactResponseBody$inboundSchema: z.ZodType<
|
|
|
214
214
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
215
215
|
.optional(),
|
|
216
216
|
updated: z.string().datetime({ offset: true }).default(
|
|
217
|
-
"2025-11-
|
|
217
|
+
"2025-11-19T10:42:35.387Z",
|
|
218
218
|
).transform(v => new Date(v)),
|
|
219
219
|
}).transform((v) => {
|
|
220
220
|
return remap$(v, {
|
|
@@ -251,7 +251,7 @@ export const UpdateContactResponseBody$outboundSchema: z.ZodType<
|
|
|
251
251
|
tags: z.array(z.string()).optional(),
|
|
252
252
|
metadata: z.record(z.any()).optional(),
|
|
253
253
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
254
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
254
|
+
updated: z.date().default(() => new Date("2025-11-19T10:42:35.387Z"))
|
|
255
255
|
.transform(v => v.toISOString()),
|
|
256
256
|
}).transform((v) => {
|
|
257
257
|
return remap$(v, {
|
|
@@ -4893,7 +4893,7 @@ export const UpdateDatapointEvaluations3$inboundSchema: z.ZodType<
|
|
|
4893
4893
|
.default("orq"),
|
|
4894
4894
|
reviewed_by_id: z.string(),
|
|
4895
4895
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
4896
|
-
"2025-11-
|
|
4896
|
+
"2025-11-19T10:42:46.836Z",
|
|
4897
4897
|
).transform(v => new Date(v)),
|
|
4898
4898
|
type: UpdateDatapointEvaluationsDatasetsResponseType$inboundSchema,
|
|
4899
4899
|
values: z.array(z.string()),
|
|
@@ -4930,7 +4930,7 @@ export const UpdateDatapointEvaluations3$outboundSchema: z.ZodType<
|
|
|
4930
4930
|
source: UpdateDatapointEvaluationsDatasetsResponseSource$outboundSchema
|
|
4931
4931
|
.default("orq"),
|
|
4932
4932
|
reviewedById: z.string(),
|
|
4933
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
4933
|
+
reviewedAt: z.date().default(() => new Date("2025-11-19T10:42:46.836Z"))
|
|
4934
4934
|
.transform(v => v.toISOString()),
|
|
4935
4935
|
type: UpdateDatapointEvaluationsDatasetsResponseType$outboundSchema,
|
|
4936
4936
|
values: z.array(z.string()),
|
|
@@ -5003,7 +5003,7 @@ export const UpdateDatapointEvaluations2$inboundSchema: z.ZodType<
|
|
|
5003
5003
|
source: UpdateDatapointEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
5004
5004
|
reviewed_by_id: z.string(),
|
|
5005
5005
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
5006
|
-
"2025-11-
|
|
5006
|
+
"2025-11-19T10:42:46.835Z",
|
|
5007
5007
|
).transform(v => new Date(v)),
|
|
5008
5008
|
type: UpdateDatapointEvaluationsDatasetsType$inboundSchema,
|
|
5009
5009
|
value: z.number(),
|
|
@@ -5041,7 +5041,7 @@ export const UpdateDatapointEvaluations2$outboundSchema: z.ZodType<
|
|
|
5041
5041
|
"orq",
|
|
5042
5042
|
),
|
|
5043
5043
|
reviewedById: z.string(),
|
|
5044
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
5044
|
+
reviewedAt: z.date().default(() => new Date("2025-11-19T10:42:46.835Z"))
|
|
5045
5045
|
.transform(v => v.toISOString()),
|
|
5046
5046
|
type: UpdateDatapointEvaluationsDatasetsType$outboundSchema,
|
|
5047
5047
|
value: z.number(),
|
|
@@ -5112,7 +5112,7 @@ export const UpdateDatapointEvaluations1$inboundSchema: z.ZodType<
|
|
|
5112
5112
|
source: UpdateDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
5113
5113
|
reviewed_by_id: z.string(),
|
|
5114
5114
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
5115
|
-
"2025-11-
|
|
5115
|
+
"2025-11-19T10:42:46.835Z",
|
|
5116
5116
|
).transform(v => new Date(v)),
|
|
5117
5117
|
type: UpdateDatapointEvaluationsType$inboundSchema,
|
|
5118
5118
|
value: z.string(),
|
|
@@ -5147,7 +5147,7 @@ export const UpdateDatapointEvaluations1$outboundSchema: z.ZodType<
|
|
|
5147
5147
|
humanReviewId: z.string(),
|
|
5148
5148
|
source: UpdateDatapointEvaluationsSource$outboundSchema.default("orq"),
|
|
5149
5149
|
reviewedById: z.string(),
|
|
5150
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
5150
|
+
reviewedAt: z.date().default(() => new Date("2025-11-19T10:42:46.835Z"))
|
|
5151
5151
|
.transform(v => v.toISOString()),
|
|
5152
5152
|
type: UpdateDatapointEvaluationsType$outboundSchema,
|
|
5153
5153
|
value: z.string(),
|
|
@@ -5262,7 +5262,7 @@ export const UpdateDatapointResponseBody$inboundSchema: z.ZodType<
|
|
|
5262
5262
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
5263
5263
|
.optional(),
|
|
5264
5264
|
updated: z.string().datetime({ offset: true }).default(
|
|
5265
|
-
"2025-11-
|
|
5265
|
+
"2025-11-19T10:42:35.387Z",
|
|
5266
5266
|
).transform(v => new Date(v)),
|
|
5267
5267
|
}).transform((v) => {
|
|
5268
5268
|
return remap$(v, {
|
|
@@ -5340,7 +5340,7 @@ export const UpdateDatapointResponseBody$outboundSchema: z.ZodType<
|
|
|
5340
5340
|
createdById: z.string().optional(),
|
|
5341
5341
|
updatedById: z.string().optional(),
|
|
5342
5342
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
5343
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
5343
|
+
updated: z.date().default(() => new Date("2025-11-19T10:42:35.387Z"))
|
|
5344
5344
|
.transform(v => v.toISOString()),
|
|
5345
5345
|
}).transform((v) => {
|
|
5346
5346
|
return remap$(v, {
|
|
@@ -256,7 +256,7 @@ export const UpdateDatasetResponseBody$inboundSchema: z.ZodType<
|
|
|
256
256
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
257
257
|
.optional(),
|
|
258
258
|
updated: z.string().datetime({ offset: true }).default(
|
|
259
|
-
"2025-11-
|
|
259
|
+
"2025-11-19T10:42:35.387Z",
|
|
260
260
|
).transform(v => new Date(v)),
|
|
261
261
|
}).transform((v) => {
|
|
262
262
|
return remap$(v, {
|
|
@@ -295,7 +295,7 @@ export const UpdateDatasetResponseBody$outboundSchema: z.ZodType<
|
|
|
295
295
|
createdById: z.string().optional(),
|
|
296
296
|
updatedById: z.string().optional(),
|
|
297
297
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
298
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
298
|
+
updated: z.date().default(() => new Date("2025-11-19T10:42:35.387Z"))
|
|
299
299
|
.transform(v => v.toISOString()),
|
|
300
300
|
}).transform((v) => {
|
|
301
301
|
return remap$(v, {
|
|
@@ -202,7 +202,7 @@ export const UpdateDatasourceResponseBody$inboundSchema: z.ZodType<
|
|
|
202
202
|
z.ZodTypeDef,
|
|
203
203
|
unknown
|
|
204
204
|
> = z.object({
|
|
205
|
-
_id: z.string().default("
|
|
205
|
+
_id: z.string().default("01KADVBBSAYBZC198FBC84Q03A"),
|
|
206
206
|
display_name: z.string(),
|
|
207
207
|
description: z.string().optional(),
|
|
208
208
|
status: UpdateDatasourceStatus$inboundSchema,
|
|
@@ -245,7 +245,7 @@ export const UpdateDatasourceResponseBody$outboundSchema: z.ZodType<
|
|
|
245
245
|
z.ZodTypeDef,
|
|
246
246
|
UpdateDatasourceResponseBody
|
|
247
247
|
> = z.object({
|
|
248
|
-
id: z.string().default("
|
|
248
|
+
id: z.string().default("01KADVBBSAYBZC198FBC84Q03A"),
|
|
249
249
|
displayName: z.string(),
|
|
250
250
|
description: z.string().optional(),
|
|
251
251
|
status: UpdateDatasourceStatus$outboundSchema,
|
|
@@ -2990,8 +2990,8 @@ export const ResponseBodyTypescript$inboundSchema: z.ZodType<
|
|
|
2990
2990
|
> = z.object({
|
|
2991
2991
|
_id: z.string(),
|
|
2992
2992
|
description: z.string(),
|
|
2993
|
-
created: z.string().default("2025-11-
|
|
2994
|
-
updated: z.string().default("2025-11-
|
|
2993
|
+
created: z.string().default("2025-11-19T10:42:37.448Z"),
|
|
2994
|
+
updated: z.string().default("2025-11-19T10:42:37.448Z"),
|
|
2995
2995
|
guardrail_config: z.union([
|
|
2996
2996
|
z.lazy(() =>
|
|
2997
2997
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema
|
|
@@ -3033,8 +3033,8 @@ export const ResponseBodyTypescript$outboundSchema: z.ZodType<
|
|
|
3033
3033
|
> = z.object({
|
|
3034
3034
|
id: z.string(),
|
|
3035
3035
|
description: z.string(),
|
|
3036
|
-
created: z.string().default("2025-11-
|
|
3037
|
-
updated: z.string().default("2025-11-
|
|
3036
|
+
created: z.string().default("2025-11-19T10:42:37.448Z"),
|
|
3037
|
+
updated: z.string().default("2025-11-19T10:42:37.448Z"),
|
|
3038
3038
|
guardrailConfig: z.union([
|
|
3039
3039
|
z.lazy(() =>
|
|
3040
3040
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema
|
|
@@ -3324,8 +3324,8 @@ export const ResponseBodyRagas$inboundSchema: z.ZodType<
|
|
|
3324
3324
|
> = z.object({
|
|
3325
3325
|
_id: z.string(),
|
|
3326
3326
|
description: z.string(),
|
|
3327
|
-
created: z.string().default("2025-11-
|
|
3328
|
-
updated: z.string().default("2025-11-
|
|
3327
|
+
created: z.string().default("2025-11-19T10:42:37.448Z"),
|
|
3328
|
+
updated: z.string().default("2025-11-19T10:42:37.448Z"),
|
|
3329
3329
|
guardrail_config: z.union([
|
|
3330
3330
|
z.lazy(() =>
|
|
3331
3331
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema
|
|
@@ -3370,8 +3370,8 @@ export const ResponseBodyRagas$outboundSchema: z.ZodType<
|
|
|
3370
3370
|
> = z.object({
|
|
3371
3371
|
id: z.string(),
|
|
3372
3372
|
description: z.string(),
|
|
3373
|
-
created: z.string().default("2025-11-
|
|
3374
|
-
updated: z.string().default("2025-11-
|
|
3373
|
+
created: z.string().default("2025-11-19T10:42:37.448Z"),
|
|
3374
|
+
updated: z.string().default("2025-11-19T10:42:37.448Z"),
|
|
3375
3375
|
guardrailConfig: z.union([
|
|
3376
3376
|
z.lazy(() =>
|
|
3377
3377
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema
|
|
@@ -5709,8 +5709,8 @@ export const ResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
5709
5709
|
> = z.object({
|
|
5710
5710
|
_id: z.string(),
|
|
5711
5711
|
description: z.string(),
|
|
5712
|
-
created: z.string().default("2025-11-
|
|
5713
|
-
updated: z.string().default("2025-11-
|
|
5712
|
+
created: z.string().default("2025-11-19T10:42:37.448Z"),
|
|
5713
|
+
updated: z.string().default("2025-11-19T10:42:37.448Z"),
|
|
5714
5714
|
guardrail_config: z.union([
|
|
5715
5715
|
z.lazy(() =>
|
|
5716
5716
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema
|
|
@@ -5823,8 +5823,8 @@ export const ResponseBodyFunction$outboundSchema: z.ZodType<
|
|
|
5823
5823
|
> = z.object({
|
|
5824
5824
|
id: z.string(),
|
|
5825
5825
|
description: z.string(),
|
|
5826
|
-
created: z.string().default("2025-11-
|
|
5827
|
-
updated: z.string().default("2025-11-
|
|
5826
|
+
created: z.string().default("2025-11-19T10:42:37.448Z"),
|
|
5827
|
+
updated: z.string().default("2025-11-19T10:42:37.448Z"),
|
|
5828
5828
|
guardrailConfig: z.union([
|
|
5829
5829
|
z.lazy(() =>
|
|
5830
5830
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema
|
|
@@ -6140,8 +6140,8 @@ export const UpdateEvalResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
6140
6140
|
> = z.object({
|
|
6141
6141
|
_id: z.string(),
|
|
6142
6142
|
description: z.string(),
|
|
6143
|
-
created: z.string().default("2025-11-
|
|
6144
|
-
updated: z.string().default("2025-11-
|
|
6143
|
+
created: z.string().default("2025-11-19T10:42:37.448Z"),
|
|
6144
|
+
updated: z.string().default("2025-11-19T10:42:37.448Z"),
|
|
6145
6145
|
guardrail_config: z.union([
|
|
6146
6146
|
z.lazy(() =>
|
|
6147
6147
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema
|
|
@@ -6182,8 +6182,8 @@ export const UpdateEvalResponseBodyPython$outboundSchema: z.ZodType<
|
|
|
6182
6182
|
> = z.object({
|
|
6183
6183
|
id: z.string(),
|
|
6184
6184
|
description: z.string(),
|
|
6185
|
-
created: z.string().default("2025-11-
|
|
6186
|
-
updated: z.string().default("2025-11-
|
|
6185
|
+
created: z.string().default("2025-11-19T10:42:37.448Z"),
|
|
6186
|
+
updated: z.string().default("2025-11-19T10:42:37.448Z"),
|
|
6187
6187
|
guardrailConfig: z.union([
|
|
6188
6188
|
z.lazy(() =>
|
|
6189
6189
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema
|
|
@@ -6468,8 +6468,8 @@ export const UpdateEvalResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
6468
6468
|
> = z.object({
|
|
6469
6469
|
_id: z.string(),
|
|
6470
6470
|
description: z.string(),
|
|
6471
|
-
created: z.string().default("2025-11-
|
|
6472
|
-
updated: z.string().default("2025-11-
|
|
6471
|
+
created: z.string().default("2025-11-19T10:42:37.448Z"),
|
|
6472
|
+
updated: z.string().default("2025-11-19T10:42:37.448Z"),
|
|
6473
6473
|
guardrail_config: z.union([
|
|
6474
6474
|
z.lazy(() =>
|
|
6475
6475
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema
|
|
@@ -6516,8 +6516,8 @@ export const UpdateEvalResponseBodyHTTP$outboundSchema: z.ZodType<
|
|
|
6516
6516
|
> = z.object({
|
|
6517
6517
|
id: z.string(),
|
|
6518
6518
|
description: z.string(),
|
|
6519
|
-
created: z.string().default("2025-11-
|
|
6520
|
-
updated: z.string().default("2025-11-
|
|
6519
|
+
created: z.string().default("2025-11-19T10:42:37.448Z"),
|
|
6520
|
+
updated: z.string().default("2025-11-19T10:42:37.448Z"),
|
|
6521
6521
|
guardrailConfig: z.union([
|
|
6522
6522
|
z.lazy(() =>
|
|
6523
6523
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema
|
|
@@ -6786,8 +6786,8 @@ export const UpdateEvalResponseBodyJSON$inboundSchema: z.ZodType<
|
|
|
6786
6786
|
> = z.object({
|
|
6787
6787
|
_id: z.string(),
|
|
6788
6788
|
description: z.string(),
|
|
6789
|
-
created: z.string().default("2025-11-
|
|
6790
|
-
updated: z.string().default("2025-11-
|
|
6789
|
+
created: z.string().default("2025-11-19T10:42:37.448Z"),
|
|
6790
|
+
updated: z.string().default("2025-11-19T10:42:37.448Z"),
|
|
6791
6791
|
guardrail_config: z.union([
|
|
6792
6792
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
6793
6793
|
z.lazy(() =>
|
|
@@ -6826,8 +6826,8 @@ export const UpdateEvalResponseBodyJSON$outboundSchema: z.ZodType<
|
|
|
6826
6826
|
> = z.object({
|
|
6827
6827
|
id: z.string(),
|
|
6828
6828
|
description: z.string(),
|
|
6829
|
-
created: z.string().default("2025-11-
|
|
6830
|
-
updated: z.string().default("2025-11-
|
|
6829
|
+
created: z.string().default("2025-11-19T10:42:37.448Z"),
|
|
6830
|
+
updated: z.string().default("2025-11-19T10:42:37.448Z"),
|
|
6831
6831
|
guardrailConfig: z.union([
|
|
6832
6832
|
z.lazy(() =>
|
|
6833
6833
|
UpdateEvalGuardrailConfigEvalsResponse200Number$outboundSchema
|
|
@@ -7066,8 +7066,8 @@ export const UpdateEvalResponseBodyLLM$inboundSchema: z.ZodType<
|
|
|
7066
7066
|
> = z.object({
|
|
7067
7067
|
_id: z.string(),
|
|
7068
7068
|
description: z.string(),
|
|
7069
|
-
created: z.string().default("2025-11-
|
|
7070
|
-
updated: z.string().default("2025-11-
|
|
7069
|
+
created: z.string().default("2025-11-19T10:42:37.448Z"),
|
|
7070
|
+
updated: z.string().default("2025-11-19T10:42:37.448Z"),
|
|
7071
7071
|
guardrail_config: z.union([
|
|
7072
7072
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
7073
7073
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
@@ -7106,8 +7106,8 @@ export const UpdateEvalResponseBodyLLM$outboundSchema: z.ZodType<
|
|
|
7106
7106
|
> = z.object({
|
|
7107
7107
|
id: z.string(),
|
|
7108
7108
|
description: z.string(),
|
|
7109
|
-
created: z.string().default("2025-11-
|
|
7110
|
-
updated: z.string().default("2025-11-
|
|
7109
|
+
created: z.string().default("2025-11-19T10:42:37.448Z"),
|
|
7110
|
+
updated: z.string().default("2025-11-19T10:42:37.448Z"),
|
|
7111
7111
|
guardrailConfig: z.union([
|
|
7112
7112
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
7113
7113
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|