@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.
Files changed (170) hide show
  1. package/bin/mcp-server.js +215 -229
  2. package/bin/mcp-server.js.map +44 -44
  3. package/examples/package-lock.json +1 -1
  4. package/jsr.json +1 -1
  5. package/lib/config.d.ts +2 -2
  6. package/lib/config.js +2 -2
  7. package/mcp-server/mcp-server.js +1 -1
  8. package/mcp-server/server.js +1 -1
  9. package/models/components/deployments.d.ts +0 -6
  10. package/models/components/deployments.d.ts.map +1 -1
  11. package/models/components/deployments.js +0 -2
  12. package/models/components/deployments.js.map +1 -1
  13. package/models/operations/createbudget.js +2 -2
  14. package/models/operations/createcontact.js +2 -2
  15. package/models/operations/createdataset.js +2 -2
  16. package/models/operations/createdatasetitem.d.ts +0 -6
  17. package/models/operations/createdatasetitem.d.ts.map +1 -1
  18. package/models/operations/createdatasetitem.js +2 -4
  19. package/models/operations/createdatasetitem.js.map +1 -1
  20. package/models/operations/createdatasource.js +2 -2
  21. package/models/operations/createeval.js +28 -28
  22. package/models/operations/createtool.js +14 -14
  23. package/models/operations/deploymentcreatemetric.d.ts +0 -6
  24. package/models/operations/deploymentcreatemetric.d.ts.map +1 -1
  25. package/models/operations/deploymentcreatemetric.js +0 -2
  26. package/models/operations/deploymentcreatemetric.js.map +1 -1
  27. package/models/operations/deploymentgetconfig.d.ts +0 -6
  28. package/models/operations/deploymentgetconfig.d.ts.map +1 -1
  29. package/models/operations/deploymentgetconfig.js +0 -2
  30. package/models/operations/deploymentgetconfig.js.map +1 -1
  31. package/models/operations/deploymentstream.d.ts +0 -6
  32. package/models/operations/deploymentstream.d.ts.map +1 -1
  33. package/models/operations/deploymentstream.js +0 -2
  34. package/models/operations/deploymentstream.js.map +1 -1
  35. package/models/operations/duplicatetool.js +10 -10
  36. package/models/operations/fileget.js +2 -2
  37. package/models/operations/filelist.js +2 -2
  38. package/models/operations/fileupload.js +2 -2
  39. package/models/operations/getagent.js +2 -2
  40. package/models/operations/getalltools.js +10 -10
  41. package/models/operations/getbudget.js +2 -2
  42. package/models/operations/getevals.js +28 -28
  43. package/models/operations/listagents.js +2 -2
  44. package/models/operations/listbudgets.js +2 -2
  45. package/models/operations/listcontacts.js +2 -2
  46. package/models/operations/listdatasetdatapoints.d.ts +0 -3
  47. package/models/operations/listdatasetdatapoints.d.ts.map +1 -1
  48. package/models/operations/listdatasetdatapoints.js +2 -3
  49. package/models/operations/listdatasetdatapoints.js.map +1 -1
  50. package/models/operations/listdatasets.js +2 -2
  51. package/models/operations/listdatasources.js +2 -2
  52. package/models/operations/retrievecontact.js +2 -2
  53. package/models/operations/retrievedatapoint.d.ts +0 -3
  54. package/models/operations/retrievedatapoint.d.ts.map +1 -1
  55. package/models/operations/retrievedatapoint.js +2 -3
  56. package/models/operations/retrievedatapoint.js.map +1 -1
  57. package/models/operations/retrievedataset.js +2 -2
  58. package/models/operations/retrievedatasource.js +2 -2
  59. package/models/operations/retrievetool.js +10 -10
  60. package/models/operations/runagent.js +2 -2
  61. package/models/operations/streamrunagent.js +2 -2
  62. package/models/operations/updatebudget.js +2 -2
  63. package/models/operations/updatecontact.js +2 -2
  64. package/models/operations/updatedatapoint.d.ts +0 -6
  65. package/models/operations/updatedatapoint.d.ts.map +1 -1
  66. package/models/operations/updatedatapoint.js +2 -4
  67. package/models/operations/updatedatapoint.js.map +1 -1
  68. package/models/operations/updatedataset.js +2 -2
  69. package/models/operations/updatedatasource.js +2 -2
  70. package/models/operations/updateeval.js +28 -28
  71. package/models/operations/updatetool.js +14 -14
  72. package/package.json +1 -1
  73. package/packages/orq-rc/docs/sdks/knowledge/README.md +6 -0
  74. package/packages/orq-rc/examples/package-lock.json +1 -1
  75. package/packages/orq-rc/jsr.json +1 -1
  76. package/packages/orq-rc/package-lock.json +2 -2
  77. package/packages/orq-rc/package.json +1 -1
  78. package/packages/orq-rc/src/lib/config.ts +2 -2
  79. package/packages/orq-rc/src/mcp-server/mcp-server.ts +1 -1
  80. package/packages/orq-rc/src/mcp-server/server.ts +1 -1
  81. package/packages/orq-rc/src/models/components/deployments.ts +0 -2
  82. package/packages/orq-rc/src/models/operations/createbudget.ts +2 -2
  83. package/packages/orq-rc/src/models/operations/createcontact.ts +2 -2
  84. package/packages/orq-rc/src/models/operations/createdataset.ts +9 -3
  85. package/packages/orq-rc/src/models/operations/createdatasetitem.ts +8 -10
  86. package/packages/orq-rc/src/models/operations/createdatasource.ts +2 -2
  87. package/packages/orq-rc/src/models/operations/createeval.ts +236 -201
  88. package/packages/orq-rc/src/models/operations/createknowledge.ts +1231 -275
  89. package/packages/orq-rc/src/models/operations/creatememorystore.ts +7 -1
  90. package/packages/orq-rc/src/models/operations/createprompt.ts +7 -1
  91. package/packages/orq-rc/src/models/operations/createtool.ts +192 -116
  92. package/packages/orq-rc/src/models/operations/deploymentcreatemetric.ts +0 -2
  93. package/packages/orq-rc/src/models/operations/deploymentgetconfig.ts +0 -2
  94. package/packages/orq-rc/src/models/operations/deploymentstream.ts +0 -2
  95. package/packages/orq-rc/src/models/operations/duplicatetool.ts +45 -15
  96. package/packages/orq-rc/src/models/operations/fileget.ts +2 -2
  97. package/packages/orq-rc/src/models/operations/filelist.ts +2 -2
  98. package/packages/orq-rc/src/models/operations/fileupload.ts +2 -2
  99. package/packages/orq-rc/src/models/operations/getagent.ts +9 -3
  100. package/packages/orq-rc/src/models/operations/getalltools.ts +167 -118
  101. package/packages/orq-rc/src/models/operations/getbudget.ts +2 -2
  102. package/packages/orq-rc/src/models/operations/getevals.ts +157 -143
  103. package/packages/orq-rc/src/models/operations/getoneknowledge.ts +912 -166
  104. package/packages/orq-rc/src/models/operations/listagents.ts +9 -3
  105. package/packages/orq-rc/src/models/operations/listbudgets.ts +2 -2
  106. package/packages/orq-rc/src/models/operations/listcontacts.ts +2 -2
  107. package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +8 -9
  108. package/packages/orq-rc/src/models/operations/listdatasets.ts +2 -2
  109. package/packages/orq-rc/src/models/operations/listdatasources.ts +2 -2
  110. package/packages/orq-rc/src/models/operations/listknowledgebases.ts +755 -150
  111. package/packages/orq-rc/src/models/operations/retrievecontact.ts +2 -2
  112. package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +8 -9
  113. package/packages/orq-rc/src/models/operations/retrievedataset.ts +2 -2
  114. package/packages/orq-rc/src/models/operations/retrievedatasource.ts +2 -2
  115. package/packages/orq-rc/src/models/operations/retrievetool.ts +45 -15
  116. package/packages/orq-rc/src/models/operations/runagent.ts +7 -1
  117. package/packages/orq-rc/src/models/operations/searchknowledge.ts +49 -62
  118. package/packages/orq-rc/src/models/operations/streamrunagent.ts +7 -1
  119. package/packages/orq-rc/src/models/operations/updatebudget.ts +2 -2
  120. package/packages/orq-rc/src/models/operations/updatecontact.ts +2 -2
  121. package/packages/orq-rc/src/models/operations/updatedatapoint.ts +8 -10
  122. package/packages/orq-rc/src/models/operations/updatedataset.ts +9 -3
  123. package/packages/orq-rc/src/models/operations/updatedatasource.ts +2 -2
  124. package/packages/orq-rc/src/models/operations/updateeval.ts +56 -32
  125. package/packages/orq-rc/src/models/operations/updateknowledge.ts +1710 -367
  126. package/packages/orq-rc/src/models/operations/updatememorystore.ts +7 -1
  127. package/packages/orq-rc/src/models/operations/updateprompt.ts +7 -1
  128. package/packages/orq-rc/src/models/operations/updatetool.ts +80 -20
  129. package/src/lib/config.ts +2 -2
  130. package/src/mcp-server/mcp-server.ts +1 -1
  131. package/src/mcp-server/server.ts +1 -1
  132. package/src/models/components/deployments.ts +0 -2
  133. package/src/models/operations/createbudget.ts +2 -2
  134. package/src/models/operations/createcontact.ts +2 -2
  135. package/src/models/operations/createdataset.ts +2 -2
  136. package/src/models/operations/createdatasetitem.ts +2 -4
  137. package/src/models/operations/createdatasource.ts +2 -2
  138. package/src/models/operations/createeval.ts +28 -28
  139. package/src/models/operations/createtool.ts +14 -14
  140. package/src/models/operations/deploymentcreatemetric.ts +0 -2
  141. package/src/models/operations/deploymentgetconfig.ts +0 -2
  142. package/src/models/operations/deploymentstream.ts +0 -2
  143. package/src/models/operations/duplicatetool.ts +10 -10
  144. package/src/models/operations/fileget.ts +2 -2
  145. package/src/models/operations/filelist.ts +2 -2
  146. package/src/models/operations/fileupload.ts +2 -2
  147. package/src/models/operations/getagent.ts +2 -2
  148. package/src/models/operations/getalltools.ts +10 -10
  149. package/src/models/operations/getbudget.ts +2 -2
  150. package/src/models/operations/getevals.ts +28 -28
  151. package/src/models/operations/listagents.ts +2 -2
  152. package/src/models/operations/listbudgets.ts +2 -2
  153. package/src/models/operations/listcontacts.ts +2 -2
  154. package/src/models/operations/listdatasetdatapoints.ts +2 -3
  155. package/src/models/operations/listdatasets.ts +2 -2
  156. package/src/models/operations/listdatasources.ts +2 -2
  157. package/src/models/operations/retrievecontact.ts +2 -2
  158. package/src/models/operations/retrievedatapoint.ts +2 -3
  159. package/src/models/operations/retrievedataset.ts +2 -2
  160. package/src/models/operations/retrievedatasource.ts +2 -2
  161. package/src/models/operations/retrievetool.ts +10 -10
  162. package/src/models/operations/runagent.ts +2 -2
  163. package/src/models/operations/streamrunagent.ts +2 -2
  164. package/src/models/operations/updatebudget.ts +2 -2
  165. package/src/models/operations/updatecontact.ts +2 -2
  166. package/src/models/operations/updatedatapoint.ts +2 -4
  167. package/src/models/operations/updatedataset.ts +2 -2
  168. package/src/models/operations/updatedatasource.ts +2 -2
  169. package/src/models/operations/updateeval.ts +28 -28
  170. 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
- * The path where the entity is stored in the project structure. The first element of the path always represents the project name. Any subsequent path element after the project will be created as a folder in the project if it does not exists.
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
- * The path where the entity is stored in the project structure. The first element of the path always represents the project name. Any subsequent path element after the project will be created as a folder in the project if it does not exists.
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
- * The path where the entity is stored in the project structure. The first element of the path always represents the project name. Any subsequent path element after the project will be created as a folder in the project if it does not exists.
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
- * The path where the entity is stored in the project structure. The first element of the path always represents the project name. Any subsequent path element after the project will be created as a folder in the project if it does not exists.
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
- * The path where the entity is stored in the project structure. The first element of the path always represents the project name. Any subsequent path element after the project will be created as a folder in the project if it does not exists.
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("01K7GJX62022YP2JWFYPBGBGHG"),
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("01K7GJX62022YP2JWFYPBGBGHG"),
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("01K7GJX61ZT4B95T0PMQX3Z6FK"),
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("01K7GJX61ZT4B95T0PMQX3Z6FK"),
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("01K7GJX61ZGYP99GYDRVZJNR84"),
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("01K7GJX61ZGYP99GYDRVZJNR84"),
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("01K7GJX61Z883D57SAYYKS7039"),
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("01K7GJX61Z883D57SAYYKS7039"),
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("01K7GJX61YWTT322R9GSCE7JF4"),
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("01K7GJX61YWTT322R9GSCE7JF4"),
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-14T05:25:44.538Z",
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-14T05:25:44.538Z"))
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-14T05:25:44.538Z",
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-14T05:25:44.538Z"))
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-14T05:25:44.538Z",
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-14T05:25:44.538Z"))
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
- * The path where the entity is stored in the project structure. The first element of the path always represents the project name. Any subsequent path element after the project will be created as a folder in the project if it does not exists.
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("01K7GJX5T9N7X5HKSA3TGTYHY2"),
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("01K7GJX5T9N7X5HKSA3TGTYHY2"),
1043
+ id: z.string().default("01K7K4ZPA8S2QYSVWXB7JMY09V"),
1038
1044
  knowledgeId: z.string(),
1039
1045
  configuration: z.union([
1040
1046
  z.lazy(() =>