@orq-ai/node 3.13.7 → 3.13.9
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 +215 -229
- package/bin/mcp-server.js.map +44 -44
- 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/components/deployments.d.ts +0 -6
- package/models/components/deployments.d.ts.map +1 -1
- package/models/components/deployments.js +0 -2
- package/models/components/deployments.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.d.ts +0 -6
- package/models/operations/createdatasetitem.d.ts.map +1 -1
- package/models/operations/createdatasetitem.js +2 -4
- package/models/operations/createdatasetitem.js.map +1 -1
- package/models/operations/createdatasource.js +2 -2
- package/models/operations/createeval.js +28 -28
- package/models/operations/createtool.js +14 -14
- package/models/operations/deploymentcreatemetric.d.ts +0 -6
- package/models/operations/deploymentcreatemetric.d.ts.map +1 -1
- package/models/operations/deploymentcreatemetric.js +0 -2
- package/models/operations/deploymentcreatemetric.js.map +1 -1
- package/models/operations/deploymentgetconfig.d.ts +0 -6
- package/models/operations/deploymentgetconfig.d.ts.map +1 -1
- package/models/operations/deploymentgetconfig.js +0 -2
- package/models/operations/deploymentgetconfig.js.map +1 -1
- package/models/operations/deploymentstream.d.ts +0 -6
- package/models/operations/deploymentstream.d.ts.map +1 -1
- package/models/operations/deploymentstream.js +0 -2
- package/models/operations/deploymentstream.js.map +1 -1
- package/models/operations/duplicatetool.js +10 -10
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/getagent.js +2 -2
- package/models/operations/getalltools.js +10 -10
- package/models/operations/getbudget.js +2 -2
- package/models/operations/getevals.js +28 -28
- package/models/operations/listagents.js +2 -2
- package/models/operations/listbudgets.js +2 -2
- package/models/operations/listcontacts.js +2 -2
- package/models/operations/listdatasetdatapoints.d.ts +0 -3
- package/models/operations/listdatasetdatapoints.d.ts.map +1 -1
- package/models/operations/listdatasetdatapoints.js +2 -3
- package/models/operations/listdatasetdatapoints.js.map +1 -1
- 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.d.ts +0 -3
- package/models/operations/retrievedatapoint.d.ts.map +1 -1
- package/models/operations/retrievedatapoint.js +2 -3
- package/models/operations/retrievedatapoint.js.map +1 -1
- package/models/operations/retrievedataset.js +2 -2
- package/models/operations/retrievedatasource.js +2 -2
- package/models/operations/retrievetool.js +10 -10
- package/models/operations/runagent.js +2 -2
- package/models/operations/streamrunagent.js +2 -2
- package/models/operations/updatebudget.js +2 -2
- package/models/operations/updatecontact.js +2 -2
- package/models/operations/updatedatapoint.d.ts +0 -6
- package/models/operations/updatedatapoint.d.ts.map +1 -1
- package/models/operations/updatedatapoint.js +2 -4
- package/models/operations/updatedatapoint.js.map +1 -1
- 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/packages/orq-rc/docs/sdks/knowledge/README.md +6 -0
- package/packages/orq-rc/examples/package-lock.json +1 -1
- package/packages/orq-rc/jsr.json +1 -1
- package/packages/orq-rc/package-lock.json +2 -2
- package/packages/orq-rc/package.json +1 -1
- package/packages/orq-rc/src/lib/config.ts +2 -2
- package/packages/orq-rc/src/mcp-server/mcp-server.ts +1 -1
- package/packages/orq-rc/src/mcp-server/server.ts +1 -1
- package/packages/orq-rc/src/models/components/deployments.ts +0 -2
- package/packages/orq-rc/src/models/operations/createbudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/createcontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdataset.ts +9 -3
- package/packages/orq-rc/src/models/operations/createdatasetitem.ts +8 -10
- package/packages/orq-rc/src/models/operations/createdatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/createeval.ts +236 -201
- package/packages/orq-rc/src/models/operations/createknowledge.ts +1231 -275
- package/packages/orq-rc/src/models/operations/creatememorystore.ts +7 -1
- package/packages/orq-rc/src/models/operations/createprompt.ts +7 -1
- package/packages/orq-rc/src/models/operations/createtool.ts +192 -116
- package/packages/orq-rc/src/models/operations/deploymentcreatemetric.ts +0 -2
- package/packages/orq-rc/src/models/operations/deploymentgetconfig.ts +0 -2
- package/packages/orq-rc/src/models/operations/deploymentstream.ts +0 -2
- package/packages/orq-rc/src/models/operations/duplicatetool.ts +45 -15
- package/packages/orq-rc/src/models/operations/fileget.ts +2 -2
- package/packages/orq-rc/src/models/operations/filelist.ts +2 -2
- package/packages/orq-rc/src/models/operations/fileupload.ts +2 -2
- package/packages/orq-rc/src/models/operations/getagent.ts +9 -3
- package/packages/orq-rc/src/models/operations/getalltools.ts +167 -118
- package/packages/orq-rc/src/models/operations/getbudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/getevals.ts +157 -143
- package/packages/orq-rc/src/models/operations/getoneknowledge.ts +912 -166
- package/packages/orq-rc/src/models/operations/listagents.ts +9 -3
- package/packages/orq-rc/src/models/operations/listbudgets.ts +2 -2
- package/packages/orq-rc/src/models/operations/listcontacts.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +8 -9
- package/packages/orq-rc/src/models/operations/listdatasets.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasources.ts +2 -2
- package/packages/orq-rc/src/models/operations/listknowledgebases.ts +755 -150
- package/packages/orq-rc/src/models/operations/retrievecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +8 -9
- package/packages/orq-rc/src/models/operations/retrievedataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievetool.ts +45 -15
- package/packages/orq-rc/src/models/operations/runagent.ts +7 -1
- package/packages/orq-rc/src/models/operations/searchknowledge.ts +49 -62
- package/packages/orq-rc/src/models/operations/streamrunagent.ts +7 -1
- package/packages/orq-rc/src/models/operations/updatebudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedatapoint.ts +8 -10
- package/packages/orq-rc/src/models/operations/updatedataset.ts +9 -3
- package/packages/orq-rc/src/models/operations/updatedatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/updateeval.ts +56 -32
- package/packages/orq-rc/src/models/operations/updateknowledge.ts +1710 -367
- package/packages/orq-rc/src/models/operations/updatememorystore.ts +7 -1
- package/packages/orq-rc/src/models/operations/updateprompt.ts +7 -1
- package/packages/orq-rc/src/models/operations/updatetool.ts +80 -20
- 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/components/deployments.ts +0 -2
- 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 -4
- package/src/models/operations/createdatasource.ts +2 -2
- package/src/models/operations/createeval.ts +28 -28
- package/src/models/operations/createtool.ts +14 -14
- package/src/models/operations/deploymentcreatemetric.ts +0 -2
- package/src/models/operations/deploymentgetconfig.ts +0 -2
- package/src/models/operations/deploymentstream.ts +0 -2
- package/src/models/operations/duplicatetool.ts +10 -10
- 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/getagent.ts +2 -2
- package/src/models/operations/getalltools.ts +10 -10
- package/src/models/operations/getbudget.ts +2 -2
- package/src/models/operations/getevals.ts +28 -28
- package/src/models/operations/listagents.ts +2 -2
- package/src/models/operations/listbudgets.ts +2 -2
- package/src/models/operations/listcontacts.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +2 -3
- 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 +2 -3
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/retrievedatasource.ts +2 -2
- package/src/models/operations/retrievetool.ts +10 -10
- package/src/models/operations/runagent.ts +2 -2
- package/src/models/operations/streamrunagent.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 -4
- 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
|
@@ -146,7 +146,6 @@ export type PrefixMessagesContent =
|
|
|
146
146
|
*/
|
|
147
147
|
export const DeploymentGetConfigPrefixMessagesDeploymentsRole = {
|
|
148
148
|
Assistant: "assistant",
|
|
149
|
-
Exception: "exception",
|
|
150
149
|
} as const;
|
|
151
150
|
/**
|
|
152
151
|
* The role of the messages author, in this case `assistant` or `exception`.
|
|
@@ -599,7 +598,6 @@ export type DeploymentGetConfigMessagesContent =
|
|
|
599
598
|
*/
|
|
600
599
|
export const DeploymentGetConfigMessagesDeploymentsRequestRole = {
|
|
601
600
|
Assistant: "assistant",
|
|
602
|
-
Exception: "exception",
|
|
603
601
|
} as const;
|
|
604
602
|
/**
|
|
605
603
|
* The role of the messages author, in this case `assistant` or `exception`.
|
|
@@ -170,7 +170,6 @@ export type DeploymentStreamPrefixMessagesDeploymentsContent =
|
|
|
170
170
|
*/
|
|
171
171
|
export const DeploymentStreamPrefixMessagesDeploymentsRequestRequestBodyRole = {
|
|
172
172
|
Assistant: "assistant",
|
|
173
|
-
Exception: "exception",
|
|
174
173
|
} as const;
|
|
175
174
|
/**
|
|
176
175
|
* The role of the messages author, in this case `assistant` or `exception`.
|
|
@@ -661,7 +660,6 @@ export type DeploymentStreamMessagesDeploymentsContent =
|
|
|
661
660
|
*/
|
|
662
661
|
export const DeploymentStreamMessagesDeploymentsRequestRequestBodyRole = {
|
|
663
662
|
Assistant: "assistant",
|
|
664
|
-
Exception: "exception",
|
|
665
663
|
} as const;
|
|
666
664
|
/**
|
|
667
665
|
* The role of the messages author, in this case `assistant` or `exception`.
|
|
@@ -63,7 +63,13 @@ export type DuplicateToolResponseBodyCodeTool = {
|
|
|
63
63
|
export type DuplicateToolResponseBody5 = {
|
|
64
64
|
id?: string | undefined;
|
|
65
65
|
/**
|
|
66
|
-
*
|
|
66
|
+
* Entity storage path in the format: `project/folder/subfolder/...`
|
|
67
|
+
*
|
|
68
|
+
* @remarks
|
|
69
|
+
*
|
|
70
|
+
* The first element identifies the project, followed by nested folders (auto-created as needed).
|
|
71
|
+
*
|
|
72
|
+
* With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
|
|
67
73
|
*/
|
|
68
74
|
path: string;
|
|
69
75
|
/**
|
|
@@ -190,7 +196,13 @@ export type DuplicateToolResponseBodyMcp = {
|
|
|
190
196
|
export type DuplicateToolResponseBody4 = {
|
|
191
197
|
id?: string | undefined;
|
|
192
198
|
/**
|
|
193
|
-
*
|
|
199
|
+
* Entity storage path in the format: `project/folder/subfolder/...`
|
|
200
|
+
*
|
|
201
|
+
* @remarks
|
|
202
|
+
*
|
|
203
|
+
* The first element identifies the project, followed by nested folders (auto-created as needed).
|
|
204
|
+
*
|
|
205
|
+
* With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
|
|
194
206
|
*/
|
|
195
207
|
path: string;
|
|
196
208
|
/**
|
|
@@ -341,7 +353,13 @@ export type DuplicateToolResponseBodyHttp = {
|
|
|
341
353
|
export type DuplicateToolResponseBody3 = {
|
|
342
354
|
id?: string | undefined;
|
|
343
355
|
/**
|
|
344
|
-
*
|
|
356
|
+
* Entity storage path in the format: `project/folder/subfolder/...`
|
|
357
|
+
*
|
|
358
|
+
* @remarks
|
|
359
|
+
*
|
|
360
|
+
* The first element identifies the project, followed by nested folders (auto-created as needed).
|
|
361
|
+
*
|
|
362
|
+
* With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
|
|
345
363
|
*/
|
|
346
364
|
path: string;
|
|
347
365
|
/**
|
|
@@ -422,7 +440,13 @@ export type DuplicateToolResponseBodyJsonSchema = {
|
|
|
422
440
|
export type DuplicateToolResponseBody2 = {
|
|
423
441
|
id?: string | undefined;
|
|
424
442
|
/**
|
|
425
|
-
*
|
|
443
|
+
* Entity storage path in the format: `project/folder/subfolder/...`
|
|
444
|
+
*
|
|
445
|
+
* @remarks
|
|
446
|
+
*
|
|
447
|
+
* The first element identifies the project, followed by nested folders (auto-created as needed).
|
|
448
|
+
*
|
|
449
|
+
* With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
|
|
426
450
|
*/
|
|
427
451
|
path: string;
|
|
428
452
|
/**
|
|
@@ -503,7 +527,13 @@ export type DuplicateToolResponseBodyFunction = {
|
|
|
503
527
|
export type DuplicateToolResponseBody1 = {
|
|
504
528
|
id?: string | undefined;
|
|
505
529
|
/**
|
|
506
|
-
*
|
|
530
|
+
* Entity storage path in the format: `project/folder/subfolder/...`
|
|
531
|
+
*
|
|
532
|
+
* @remarks
|
|
533
|
+
*
|
|
534
|
+
* The first element identifies the project, followed by nested folders (auto-created as needed).
|
|
535
|
+
*
|
|
536
|
+
* With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
|
|
507
537
|
*/
|
|
508
538
|
path: string;
|
|
509
539
|
/**
|
|
@@ -758,7 +788,7 @@ export const DuplicateToolResponseBody5$inboundSchema: z.ZodType<
|
|
|
758
788
|
z.ZodTypeDef,
|
|
759
789
|
unknown
|
|
760
790
|
> = z.object({
|
|
761
|
-
_id: z.string().default("
|
|
791
|
+
_id: z.string().default("01K7K4ZPHVTSZ5QXN94GAXFB1J"),
|
|
762
792
|
path: z.string(),
|
|
763
793
|
key: z.string(),
|
|
764
794
|
display_name: z.string(),
|
|
@@ -814,7 +844,7 @@ export const DuplicateToolResponseBody5$outboundSchema: z.ZodType<
|
|
|
814
844
|
z.ZodTypeDef,
|
|
815
845
|
DuplicateToolResponseBody5
|
|
816
846
|
> = z.object({
|
|
817
|
-
id: z.string().default("
|
|
847
|
+
id: z.string().default("01K7K4ZPHVTSZ5QXN94GAXFB1J"),
|
|
818
848
|
path: z.string(),
|
|
819
849
|
key: z.string(),
|
|
820
850
|
displayName: z.string(),
|
|
@@ -1202,7 +1232,7 @@ export const DuplicateToolResponseBody4$inboundSchema: z.ZodType<
|
|
|
1202
1232
|
z.ZodTypeDef,
|
|
1203
1233
|
unknown
|
|
1204
1234
|
> = z.object({
|
|
1205
|
-
_id: z.string().default("
|
|
1235
|
+
_id: z.string().default("01K7K4ZPHSPEC8FTA07QHNNPSK"),
|
|
1206
1236
|
path: z.string(),
|
|
1207
1237
|
key: z.string(),
|
|
1208
1238
|
display_name: z.string(),
|
|
@@ -1256,7 +1286,7 @@ export const DuplicateToolResponseBody4$outboundSchema: z.ZodType<
|
|
|
1256
1286
|
z.ZodTypeDef,
|
|
1257
1287
|
DuplicateToolResponseBody4
|
|
1258
1288
|
> = z.object({
|
|
1259
|
-
id: z.string().default("
|
|
1289
|
+
id: z.string().default("01K7K4ZPHSPEC8FTA07QHNNPSK"),
|
|
1260
1290
|
path: z.string(),
|
|
1261
1291
|
key: z.string(),
|
|
1262
1292
|
displayName: z.string(),
|
|
@@ -1683,7 +1713,7 @@ export const DuplicateToolResponseBody3$inboundSchema: z.ZodType<
|
|
|
1683
1713
|
z.ZodTypeDef,
|
|
1684
1714
|
unknown
|
|
1685
1715
|
> = z.object({
|
|
1686
|
-
_id: z.string().default("
|
|
1716
|
+
_id: z.string().default("01K7K4ZPHRYT3R5JHDECWMNH8S"),
|
|
1687
1717
|
path: z.string(),
|
|
1688
1718
|
key: z.string(),
|
|
1689
1719
|
display_name: z.string(),
|
|
@@ -1737,7 +1767,7 @@ export const DuplicateToolResponseBody3$outboundSchema: z.ZodType<
|
|
|
1737
1767
|
z.ZodTypeDef,
|
|
1738
1768
|
DuplicateToolResponseBody3
|
|
1739
1769
|
> = z.object({
|
|
1740
|
-
id: z.string().default("
|
|
1770
|
+
id: z.string().default("01K7K4ZPHRYT3R5JHDECWMNH8S"),
|
|
1741
1771
|
path: z.string(),
|
|
1742
1772
|
key: z.string(),
|
|
1743
1773
|
displayName: z.string(),
|
|
@@ -1917,7 +1947,7 @@ export const DuplicateToolResponseBody2$inboundSchema: z.ZodType<
|
|
|
1917
1947
|
z.ZodTypeDef,
|
|
1918
1948
|
unknown
|
|
1919
1949
|
> = z.object({
|
|
1920
|
-
_id: z.string().default("
|
|
1950
|
+
_id: z.string().default("01K7K4ZPHR462KP2C4VGPDVMXV"),
|
|
1921
1951
|
path: z.string(),
|
|
1922
1952
|
key: z.string(),
|
|
1923
1953
|
display_name: z.string(),
|
|
@@ -1970,7 +2000,7 @@ export const DuplicateToolResponseBody2$outboundSchema: z.ZodType<
|
|
|
1970
2000
|
z.ZodTypeDef,
|
|
1971
2001
|
DuplicateToolResponseBody2
|
|
1972
2002
|
> = z.object({
|
|
1973
|
-
id: z.string().default("
|
|
2003
|
+
id: z.string().default("01K7K4ZPHR462KP2C4VGPDVMXV"),
|
|
1974
2004
|
path: z.string(),
|
|
1975
2005
|
key: z.string(),
|
|
1976
2006
|
displayName: z.string(),
|
|
@@ -2143,7 +2173,7 @@ export const DuplicateToolResponseBody1$inboundSchema: z.ZodType<
|
|
|
2143
2173
|
z.ZodTypeDef,
|
|
2144
2174
|
unknown
|
|
2145
2175
|
> = z.object({
|
|
2146
|
-
_id: z.string().default("
|
|
2176
|
+
_id: z.string().default("01K7K4ZPHQHF6QAWS9PECQXF85"),
|
|
2147
2177
|
path: z.string(),
|
|
2148
2178
|
key: z.string(),
|
|
2149
2179
|
display_name: z.string(),
|
|
@@ -2195,7 +2225,7 @@ export const DuplicateToolResponseBody1$outboundSchema: z.ZodType<
|
|
|
2195
2225
|
z.ZodTypeDef,
|
|
2196
2226
|
DuplicateToolResponseBody1
|
|
2197
2227
|
> = z.object({
|
|
2198
|
-
id: z.string().default("
|
|
2228
|
+
id: z.string().default("01K7K4ZPHQHF6QAWS9PECQXF85"),
|
|
2199
2229
|
path: z.string(),
|
|
2200
2230
|
key: z.string(),
|
|
2201
2231
|
displayName: z.string(),
|
|
@@ -146,7 +146,7 @@ export const FileGetResponseBody$inboundSchema: z.ZodType<
|
|
|
146
146
|
file_name: z.string(),
|
|
147
147
|
workspace_id: z.string(),
|
|
148
148
|
created: z.string().datetime({ offset: true }).default(
|
|
149
|
-
"2025-10-
|
|
149
|
+
"2025-10-15T05:20:11.223Z",
|
|
150
150
|
).transform(v => new Date(v)),
|
|
151
151
|
}).transform((v) => {
|
|
152
152
|
return remap$(v, {
|
|
@@ -180,7 +180,7 @@ export const FileGetResponseBody$outboundSchema: z.ZodType<
|
|
|
180
180
|
bytes: z.number(),
|
|
181
181
|
fileName: z.string(),
|
|
182
182
|
workspaceId: z.string(),
|
|
183
|
-
created: z.date().default(() => new Date("2025-10-
|
|
183
|
+
created: z.date().default(() => new Date("2025-10-15T05:20:11.223Z"))
|
|
184
184
|
.transform(v => v.toISOString()),
|
|
185
185
|
}).transform((v) => {
|
|
186
186
|
return remap$(v, {
|
|
@@ -196,7 +196,7 @@ export const FileListData$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-10-
|
|
199
|
+
"2025-10-15T05:20:11.223Z",
|
|
200
200
|
).transform(v => new Date(v)),
|
|
201
201
|
}).transform((v) => {
|
|
202
202
|
return remap$(v, {
|
|
@@ -230,7 +230,7 @@ export const FileListData$outboundSchema: z.ZodType<
|
|
|
230
230
|
bytes: z.number(),
|
|
231
231
|
fileName: z.string(),
|
|
232
232
|
workspaceId: z.string(),
|
|
233
|
-
created: z.date().default(() => new Date("2025-10-
|
|
233
|
+
created: z.date().default(() => new Date("2025-10-15T05:20:11.223Z"))
|
|
234
234
|
.transform(v => v.toISOString()),
|
|
235
235
|
}).transform((v) => {
|
|
236
236
|
return remap$(v, {
|
|
@@ -250,7 +250,7 @@ export const FileUploadResponseBody$inboundSchema: z.ZodType<
|
|
|
250
250
|
file_name: z.string(),
|
|
251
251
|
workspace_id: z.string(),
|
|
252
252
|
created: z.string().datetime({ offset: true }).default(
|
|
253
|
-
"2025-10-
|
|
253
|
+
"2025-10-15T05:20:11.223Z",
|
|
254
254
|
).transform(v => new Date(v)),
|
|
255
255
|
}).transform((v) => {
|
|
256
256
|
return remap$(v, {
|
|
@@ -284,7 +284,7 @@ export const FileUploadResponseBody$outboundSchema: z.ZodType<
|
|
|
284
284
|
bytes: z.number(),
|
|
285
285
|
fileName: z.string(),
|
|
286
286
|
workspaceId: z.string(),
|
|
287
|
-
created: z.date().default(() => new Date("2025-10-
|
|
287
|
+
created: z.date().default(() => new Date("2025-10-15T05:20:11.223Z"))
|
|
288
288
|
.transform(v => v.toISOString()),
|
|
289
289
|
}).transform((v) => {
|
|
290
290
|
return remap$(v, {
|
|
@@ -219,7 +219,13 @@ export type GetAgentResponseBody = {
|
|
|
219
219
|
model: GetAgentModel;
|
|
220
220
|
versionHash?: string | undefined;
|
|
221
221
|
/**
|
|
222
|
-
*
|
|
222
|
+
* Entity storage path in the format: `project/folder/subfolder/...`
|
|
223
|
+
*
|
|
224
|
+
* @remarks
|
|
225
|
+
*
|
|
226
|
+
* The first element identifies the project, followed by nested folders (auto-created as needed).
|
|
227
|
+
*
|
|
228
|
+
* With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
|
|
223
229
|
*/
|
|
224
230
|
path: string;
|
|
225
231
|
memoryStores: Array<string>;
|
|
@@ -1003,7 +1009,7 @@ export const GetAgentKnowledgeBases$inboundSchema: z.ZodType<
|
|
|
1003
1009
|
z.ZodTypeDef,
|
|
1004
1010
|
unknown
|
|
1005
1011
|
> = z.object({
|
|
1006
|
-
id: z.string().default("
|
|
1012
|
+
id: z.string().default("01K7K4ZPA8S2QYSVWXB7JMY09V"),
|
|
1007
1013
|
knowledge_id: z.string(),
|
|
1008
1014
|
configuration: z.union([
|
|
1009
1015
|
z.lazy(() =>
|
|
@@ -1034,7 +1040,7 @@ export const GetAgentKnowledgeBases$outboundSchema: z.ZodType<
|
|
|
1034
1040
|
z.ZodTypeDef,
|
|
1035
1041
|
GetAgentKnowledgeBases
|
|
1036
1042
|
> = z.object({
|
|
1037
|
-
id: z.string().default("
|
|
1043
|
+
id: z.string().default("01K7K4ZPA8S2QYSVWXB7JMY09V"),
|
|
1038
1044
|
knowledgeId: z.string(),
|
|
1039
1045
|
configuration: z.union([
|
|
1040
1046
|
z.lazy(() =>
|