@orq-ai/node 4.2.0-rc.50 → 4.2.0-rc.52
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 +231 -231
- package/bin/mcp-server.js.map +49 -49
- 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/conversationresponse.js +2 -2
- package/models/components/conversationwithmessagesresponse.js +2 -2
- package/models/components/partdoneevent.js +2 -2
- package/models/components/reasoningpart.js +2 -2
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createconversation.js +2 -2
- package/models/operations/createconversationresponse.js +4 -4
- 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/createidentity.js +2 -2
- package/models/operations/creatememory.d.ts +4 -1
- package/models/operations/creatememory.d.ts.map +1 -1
- package/models/operations/creatememory.js.map +1 -1
- 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/getallmemories.d.ts +4 -1
- package/models/operations/getallmemories.d.ts.map +1 -1
- package/models/operations/getallmemories.js.map +1 -1
- package/models/operations/getalltools.js +12 -12
- package/models/operations/getevals.js +28 -28
- 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/listidentities.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/retrieveidentity.js +2 -2
- package/models/operations/retrievememory.d.ts +4 -1
- package/models/operations/retrievememory.d.ts.map +1 -1
- package/models/operations/retrievememory.js.map +1 -1
- package/models/operations/retrievetool.js +12 -12
- package/models/operations/runagent.js +2 -2
- package/models/operations/streamrunagent.js +2 -2
- 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/updateidentity.js +2 -2
- package/models/operations/updatememory.d.ts +4 -1
- package/models/operations/updatememory.d.ts.map +1 -1
- package/models/operations/updatememory.js.map +1 -1
- package/models/operations/updatetool.js +14 -14
- package/package.json +1 -1
- package/src/lib/config.ts +2 -2
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/components/conversationresponse.ts +2 -2
- package/src/models/components/conversationwithmessagesresponse.ts +2 -2
- package/src/models/components/partdoneevent.ts +2 -2
- package/src/models/components/reasoningpart.ts +2 -2
- package/src/models/operations/createcontact.ts +2 -2
- package/src/models/operations/createconversation.ts +2 -2
- package/src/models/operations/createconversationresponse.ts +4 -4
- 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/createidentity.ts +2 -2
- package/src/models/operations/creatememory.ts +4 -1
- 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/getallmemories.ts +4 -1
- package/src/models/operations/getalltools.ts +12 -12
- package/src/models/operations/getevals.ts +28 -28
- 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/listidentities.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/retrieveidentity.ts +2 -2
- package/src/models/operations/retrievememory.ts +4 -1
- 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/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/updateidentity.ts +2 -2
- package/src/models/operations/updatememory.ts +4 -1
- package/src/models/operations/updatetool.ts +14 -14
|
@@ -1878,7 +1878,7 @@ export const RetrieveDatapointEvaluations3$inboundSchema: z.ZodType<
|
|
|
1878
1878
|
.default("orq"),
|
|
1879
1879
|
reviewed_by_id: z.string(),
|
|
1880
1880
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
1881
|
-
"2026-01-
|
|
1881
|
+
"2026-01-20T15:51:20.260Z",
|
|
1882
1882
|
).transform(v => new Date(v)),
|
|
1883
1883
|
type: z.literal("string_array"),
|
|
1884
1884
|
values: z.array(z.string()),
|
|
@@ -1915,7 +1915,7 @@ export const RetrieveDatapointEvaluations3$outboundSchema: z.ZodType<
|
|
|
1915
1915
|
source: RetrieveDatapointEvaluationsDatasetsResponseSource$outboundSchema
|
|
1916
1916
|
.default("orq"),
|
|
1917
1917
|
reviewedById: z.string(),
|
|
1918
|
-
reviewedAt: z.date().default(() => new Date("2026-01-
|
|
1918
|
+
reviewedAt: z.date().default(() => new Date("2026-01-20T15:51:20.260Z"))
|
|
1919
1919
|
.transform(v => v.toISOString()),
|
|
1920
1920
|
type: z.literal("string_array"),
|
|
1921
1921
|
values: z.array(z.string()),
|
|
@@ -1980,7 +1980,7 @@ export const RetrieveDatapointEvaluations2$inboundSchema: z.ZodType<
|
|
|
1980
1980
|
),
|
|
1981
1981
|
reviewed_by_id: z.string(),
|
|
1982
1982
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
1983
|
-
"2026-01-
|
|
1983
|
+
"2026-01-20T15:51:20.259Z",
|
|
1984
1984
|
).transform(v => new Date(v)),
|
|
1985
1985
|
type: z.literal("number"),
|
|
1986
1986
|
value: z.number(),
|
|
@@ -2018,7 +2018,7 @@ export const RetrieveDatapointEvaluations2$outboundSchema: z.ZodType<
|
|
|
2018
2018
|
"orq",
|
|
2019
2019
|
),
|
|
2020
2020
|
reviewedById: z.string(),
|
|
2021
|
-
reviewedAt: z.date().default(() => new Date("2026-01-
|
|
2021
|
+
reviewedAt: z.date().default(() => new Date("2026-01-20T15:51:20.259Z"))
|
|
2022
2022
|
.transform(v => v.toISOString()),
|
|
2023
2023
|
type: z.literal("number"),
|
|
2024
2024
|
value: z.number(),
|
|
@@ -2080,7 +2080,7 @@ export const RetrieveDatapointEvaluations1$inboundSchema: z.ZodType<
|
|
|
2080
2080
|
source: RetrieveDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
2081
2081
|
reviewed_by_id: z.string(),
|
|
2082
2082
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
2083
|
-
"2026-01-
|
|
2083
|
+
"2026-01-20T15:51:20.258Z",
|
|
2084
2084
|
).transform(v => new Date(v)),
|
|
2085
2085
|
type: z.literal("string"),
|
|
2086
2086
|
value: z.string(),
|
|
@@ -2115,7 +2115,7 @@ export const RetrieveDatapointEvaluations1$outboundSchema: z.ZodType<
|
|
|
2115
2115
|
humanReviewId: z.string(),
|
|
2116
2116
|
source: RetrieveDatapointEvaluationsSource$outboundSchema.default("orq"),
|
|
2117
2117
|
reviewedById: z.string(),
|
|
2118
|
-
reviewedAt: z.date().default(() => new Date("2026-01-
|
|
2118
|
+
reviewedAt: z.date().default(() => new Date("2026-01-20T15:51:20.258Z"))
|
|
2119
2119
|
.transform(v => v.toISOString()),
|
|
2120
2120
|
type: z.literal("string"),
|
|
2121
2121
|
value: z.string(),
|
|
@@ -2226,7 +2226,7 @@ export const RetrieveDatapointResponseBody$inboundSchema: z.ZodType<
|
|
|
2226
2226
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
2227
2227
|
.optional(),
|
|
2228
2228
|
updated: z.string().datetime({ offset: true }).default(
|
|
2229
|
-
"2026-01-
|
|
2229
|
+
"2026-01-20T15:51:06.085Z",
|
|
2230
2230
|
).transform(v => new Date(v)),
|
|
2231
2231
|
}).transform((v) => {
|
|
2232
2232
|
return remap$(v, {
|
|
@@ -2300,7 +2300,7 @@ export const RetrieveDatapointResponseBody$outboundSchema: z.ZodType<
|
|
|
2300
2300
|
createdById: z.string().optional(),
|
|
2301
2301
|
updatedById: z.string().optional(),
|
|
2302
2302
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
2303
|
-
updated: z.date().default(() => new Date("2026-01-
|
|
2303
|
+
updated: z.date().default(() => new Date("2026-01-20T15:51:06.085Z"))
|
|
2304
2304
|
.transform(v => v.toISOString()),
|
|
2305
2305
|
}).transform((v) => {
|
|
2306
2306
|
return remap$(v, {
|
|
@@ -174,7 +174,7 @@ export const RetrieveDatasetResponseBody$inboundSchema: z.ZodType<
|
|
|
174
174
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
175
175
|
.optional(),
|
|
176
176
|
updated: z.string().datetime({ offset: true }).default(
|
|
177
|
-
"2026-01-
|
|
177
|
+
"2026-01-20T15:51:06.085Z",
|
|
178
178
|
).transform(v => new Date(v)),
|
|
179
179
|
}).transform((v) => {
|
|
180
180
|
return remap$(v, {
|
|
@@ -213,7 +213,7 @@ export const RetrieveDatasetResponseBody$outboundSchema: z.ZodType<
|
|
|
213
213
|
createdById: z.string().optional(),
|
|
214
214
|
updatedById: z.string().optional(),
|
|
215
215
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
216
|
-
updated: z.date().default(() => new Date("2026-01-
|
|
216
|
+
updated: z.date().default(() => new Date("2026-01-20T15:51:06.085Z"))
|
|
217
217
|
.transform(v => v.toISOString()),
|
|
218
218
|
}).transform((v) => {
|
|
219
219
|
return remap$(v, {
|
|
@@ -145,7 +145,7 @@ export const RetrieveDatasourceResponseBody$inboundSchema: z.ZodType<
|
|
|
145
145
|
z.ZodTypeDef,
|
|
146
146
|
unknown
|
|
147
147
|
> = z.object({
|
|
148
|
-
_id: z.string().default("
|
|
148
|
+
_id: z.string().default("01KFE1MXAJB0D2539Y8D8YKJCX"),
|
|
149
149
|
display_name: z.string(),
|
|
150
150
|
description: z.string().optional(),
|
|
151
151
|
status: RetrieveDatasourceStatus$inboundSchema,
|
|
@@ -188,7 +188,7 @@ export const RetrieveDatasourceResponseBody$outboundSchema: z.ZodType<
|
|
|
188
188
|
z.ZodTypeDef,
|
|
189
189
|
RetrieveDatasourceResponseBody
|
|
190
190
|
> = z.object({
|
|
191
|
-
id: z.string().default("
|
|
191
|
+
id: z.string().default("01KFE1MXAJB0D2539Y8D8YKJCX"),
|
|
192
192
|
displayName: z.string(),
|
|
193
193
|
description: z.string().optional(),
|
|
194
194
|
status: RetrieveDatasourceStatus$outboundSchema,
|
|
@@ -112,7 +112,7 @@ export const RetrieveIdentityResponseBody$inboundSchema: z.ZodType<
|
|
|
112
112
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
113
113
|
.optional(),
|
|
114
114
|
updated: z.string().datetime({ offset: true }).default(
|
|
115
|
-
"2026-01-
|
|
115
|
+
"2026-01-20T15:51:06.085Z",
|
|
116
116
|
).transform(v => new Date(v)),
|
|
117
117
|
}).transform((v) => {
|
|
118
118
|
return remap$(v, {
|
|
@@ -149,7 +149,7 @@ export const RetrieveIdentityResponseBody$outboundSchema: z.ZodType<
|
|
|
149
149
|
tags: z.array(z.string()).optional(),
|
|
150
150
|
metadata: z.record(z.any()).optional(),
|
|
151
151
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
152
|
-
updated: z.date().default(() => new Date("2026-01-
|
|
152
|
+
updated: z.date().default(() => new Date("2026-01-20T15:51:06.085Z"))
|
|
153
153
|
.transform(v => v.toISOString()),
|
|
154
154
|
}).transform((v) => {
|
|
155
155
|
return remap$(v, {
|
|
@@ -23,9 +23,12 @@ export type RetrieveMemoryRequest = {
|
|
|
23
23
|
* Memory successfully retrieved.
|
|
24
24
|
*/
|
|
25
25
|
export type RetrieveMemoryResponseBody = {
|
|
26
|
+
/**
|
|
27
|
+
* Unique identifier for the memory. This is automatically generated by the system.
|
|
28
|
+
*/
|
|
26
29
|
id: string;
|
|
27
30
|
/**
|
|
28
|
-
* This
|
|
31
|
+
* Customer provided entity ID for the memory. This is used to link the memory to a specific user/company/session/etc. Has to be unique within the memory store.
|
|
29
32
|
*
|
|
30
33
|
* @deprecated field: This will be removed in a future release, please migrate away from it as soon as possible.
|
|
31
34
|
*/
|
|
@@ -858,7 +858,7 @@ export const RetrieveToolResponseBodyCodeExecutionTool$inboundSchema: z.ZodType<
|
|
|
858
858
|
z.ZodTypeDef,
|
|
859
859
|
unknown
|
|
860
860
|
> = z.object({
|
|
861
|
-
_id: z.string().default("
|
|
861
|
+
_id: z.string().default("tool_01KFE1MX6VJG5SC5SE6R0B4Z1P"),
|
|
862
862
|
path: z.string(),
|
|
863
863
|
key: z.string(),
|
|
864
864
|
display_name: z.string().optional(),
|
|
@@ -913,7 +913,7 @@ export const RetrieveToolResponseBodyCodeExecutionTool$outboundSchema:
|
|
|
913
913
|
z.ZodTypeDef,
|
|
914
914
|
RetrieveToolResponseBodyCodeExecutionTool
|
|
915
915
|
> = z.object({
|
|
916
|
-
id: z.string().default("
|
|
916
|
+
id: z.string().default("tool_01KFE1MX6VJG5SC5SE6R0B4Z1P"),
|
|
917
917
|
path: z.string(),
|
|
918
918
|
key: z.string(),
|
|
919
919
|
displayName: z.string().optional(),
|
|
@@ -1092,7 +1092,7 @@ export const RetrieveToolResponseBodyTools$inboundSchema: z.ZodType<
|
|
|
1092
1092
|
z.ZodTypeDef,
|
|
1093
1093
|
unknown
|
|
1094
1094
|
> = z.object({
|
|
1095
|
-
id: z.string().default("
|
|
1095
|
+
id: z.string().default("01KFE1MX6TC1FEX2G19J1J1K7X"),
|
|
1096
1096
|
name: z.string(),
|
|
1097
1097
|
description: z.string().optional(),
|
|
1098
1098
|
schema: z.lazy(() => RetrieveToolResponseBodyToolsSchema$inboundSchema),
|
|
@@ -1111,7 +1111,7 @@ export const RetrieveToolResponseBodyTools$outboundSchema: z.ZodType<
|
|
|
1111
1111
|
z.ZodTypeDef,
|
|
1112
1112
|
RetrieveToolResponseBodyTools
|
|
1113
1113
|
> = z.object({
|
|
1114
|
-
id: z.string().default("
|
|
1114
|
+
id: z.string().default("01KFE1MX6TC1FEX2G19J1J1K7X"),
|
|
1115
1115
|
name: z.string(),
|
|
1116
1116
|
description: z.string().optional(),
|
|
1117
1117
|
schema: z.lazy(() => RetrieveToolResponseBodyToolsSchema$outboundSchema),
|
|
@@ -1217,7 +1217,7 @@ export const RetrieveToolResponseBodyMCPTool$inboundSchema: z.ZodType<
|
|
|
1217
1217
|
z.ZodTypeDef,
|
|
1218
1218
|
unknown
|
|
1219
1219
|
> = z.object({
|
|
1220
|
-
_id: z.string().default("
|
|
1220
|
+
_id: z.string().default("tool_01KFE1MX6S42187QTHHKEEAHHN"),
|
|
1221
1221
|
path: z.string(),
|
|
1222
1222
|
key: z.string(),
|
|
1223
1223
|
display_name: z.string().optional(),
|
|
@@ -1270,7 +1270,7 @@ export const RetrieveToolResponseBodyMCPTool$outboundSchema: z.ZodType<
|
|
|
1270
1270
|
z.ZodTypeDef,
|
|
1271
1271
|
RetrieveToolResponseBodyMCPTool
|
|
1272
1272
|
> = z.object({
|
|
1273
|
-
id: z.string().default("
|
|
1273
|
+
id: z.string().default("tool_01KFE1MX6S42187QTHHKEEAHHN"),
|
|
1274
1274
|
path: z.string(),
|
|
1275
1275
|
key: z.string(),
|
|
1276
1276
|
displayName: z.string().optional(),
|
|
@@ -1641,7 +1641,7 @@ export const RetrieveToolResponseBodyHTTPTool$inboundSchema: z.ZodType<
|
|
|
1641
1641
|
z.ZodTypeDef,
|
|
1642
1642
|
unknown
|
|
1643
1643
|
> = z.object({
|
|
1644
|
-
_id: z.string().default("
|
|
1644
|
+
_id: z.string().default("tool_01KFE1MX6R0THN393AASSRGMBQ"),
|
|
1645
1645
|
path: z.string(),
|
|
1646
1646
|
key: z.string(),
|
|
1647
1647
|
display_name: z.string().optional(),
|
|
@@ -1694,7 +1694,7 @@ export const RetrieveToolResponseBodyHTTPTool$outboundSchema: z.ZodType<
|
|
|
1694
1694
|
z.ZodTypeDef,
|
|
1695
1695
|
RetrieveToolResponseBodyHTTPTool
|
|
1696
1696
|
> = z.object({
|
|
1697
|
-
id: z.string().default("
|
|
1697
|
+
id: z.string().default("tool_01KFE1MX6R0THN393AASSRGMBQ"),
|
|
1698
1698
|
path: z.string(),
|
|
1699
1699
|
key: z.string(),
|
|
1700
1700
|
displayName: z.string().optional(),
|
|
@@ -1868,7 +1868,7 @@ export const RetrieveToolResponseBodyJSONSchemaTool$inboundSchema: z.ZodType<
|
|
|
1868
1868
|
z.ZodTypeDef,
|
|
1869
1869
|
unknown
|
|
1870
1870
|
> = z.object({
|
|
1871
|
-
_id: z.string().default("
|
|
1871
|
+
_id: z.string().default("tool_01KFE1MX6PX6TG15GYXD6J8FTJ"),
|
|
1872
1872
|
path: z.string(),
|
|
1873
1873
|
key: z.string(),
|
|
1874
1874
|
display_name: z.string().optional(),
|
|
@@ -1920,7 +1920,7 @@ export const RetrieveToolResponseBodyJSONSchemaTool$outboundSchema: z.ZodType<
|
|
|
1920
1920
|
z.ZodTypeDef,
|
|
1921
1921
|
RetrieveToolResponseBodyJSONSchemaTool
|
|
1922
1922
|
> = z.object({
|
|
1923
|
-
id: z.string().default("
|
|
1923
|
+
id: z.string().default("tool_01KFE1MX6PX6TG15GYXD6J8FTJ"),
|
|
1924
1924
|
path: z.string(),
|
|
1925
1925
|
key: z.string(),
|
|
1926
1926
|
displayName: z.string().optional(),
|
|
@@ -2113,7 +2113,7 @@ export const RetrieveToolResponseBodyFunctionTool$inboundSchema: z.ZodType<
|
|
|
2113
2113
|
z.ZodTypeDef,
|
|
2114
2114
|
unknown
|
|
2115
2115
|
> = z.object({
|
|
2116
|
-
_id: z.string().default("
|
|
2116
|
+
_id: z.string().default("tool_01KFE1MX6NCWSP4BES461GND2M"),
|
|
2117
2117
|
path: z.string(),
|
|
2118
2118
|
key: z.string(),
|
|
2119
2119
|
display_name: z.string().optional(),
|
|
@@ -2164,7 +2164,7 @@ export const RetrieveToolResponseBodyFunctionTool$outboundSchema: z.ZodType<
|
|
|
2164
2164
|
z.ZodTypeDef,
|
|
2165
2165
|
RetrieveToolResponseBodyFunctionTool
|
|
2166
2166
|
> = z.object({
|
|
2167
|
-
id: z.string().default("
|
|
2167
|
+
id: z.string().default("tool_01KFE1MX6NCWSP4BES461GND2M"),
|
|
2168
2168
|
path: z.string(),
|
|
2169
2169
|
key: z.string(),
|
|
2170
2170
|
displayName: z.string().optional(),
|
|
@@ -4569,7 +4569,7 @@ export function agentToolInputRunSchemaFromJSON(
|
|
|
4569
4569
|
/** @internal */
|
|
4570
4570
|
export const Tools$inboundSchema: z.ZodType<Tools, z.ZodTypeDef, unknown> = z
|
|
4571
4571
|
.object({
|
|
4572
|
-
id: z.string().default("
|
|
4572
|
+
id: z.string().default("01KFE1MWNTWXDAV3G73QJ5Q8RM"),
|
|
4573
4573
|
name: z.string(),
|
|
4574
4574
|
description: z.string().optional(),
|
|
4575
4575
|
schema: z.lazy(() => AgentToolInputRunSchema$inboundSchema),
|
|
@@ -4588,7 +4588,7 @@ export const Tools$outboundSchema: z.ZodType<
|
|
|
4588
4588
|
z.ZodTypeDef,
|
|
4589
4589
|
Tools
|
|
4590
4590
|
> = z.object({
|
|
4591
|
-
id: z.string().default("
|
|
4591
|
+
id: z.string().default("01KFE1MWNTWXDAV3G73QJ5Q8RM"),
|
|
4592
4592
|
name: z.string(),
|
|
4593
4593
|
description: z.string().optional(),
|
|
4594
4594
|
schema: z.lazy(() => AgentToolInputRunSchema$outboundSchema),
|
|
@@ -4703,7 +4703,7 @@ export const AgentToolInputRunTools$inboundSchema: z.ZodType<
|
|
|
4703
4703
|
z.ZodTypeDef,
|
|
4704
4704
|
unknown
|
|
4705
4705
|
> = z.object({
|
|
4706
|
-
id: z.string().default("
|
|
4706
|
+
id: z.string().default("01KFE1MWRFMVSF1Q4PMVYX29MX"),
|
|
4707
4707
|
name: z.string(),
|
|
4708
4708
|
description: z.string().optional(),
|
|
4709
4709
|
schema: z.lazy(() =>
|
|
@@ -4724,7 +4724,7 @@ export const AgentToolInputRunTools$outboundSchema: z.ZodType<
|
|
|
4724
4724
|
z.ZodTypeDef,
|
|
4725
4725
|
AgentToolInputRunTools
|
|
4726
4726
|
> = z.object({
|
|
4727
|
-
id: z.string().default("
|
|
4727
|
+
id: z.string().default("01KFE1MWRFMVSF1Q4PMVYX29MX"),
|
|
4728
4728
|
name: z.string(),
|
|
4729
4729
|
description: z.string().optional(),
|
|
4730
4730
|
schema: z.lazy(() =>
|
|
@@ -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
|
-
"2026-01-
|
|
217
|
+
"2026-01-20T15:51:06.085Z",
|
|
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("2026-01-
|
|
254
|
+
updated: z.date().default(() => new Date("2026-01-20T15:51:06.085Z"))
|
|
255
255
|
.transform(v => v.toISOString()),
|
|
256
256
|
}).transform((v) => {
|
|
257
257
|
return remap$(v, {
|
|
@@ -316,7 +316,7 @@ export const UpdateConversationResponseBody$inboundSchema: z.ZodType<
|
|
|
316
316
|
z.ZodTypeDef,
|
|
317
317
|
unknown
|
|
318
318
|
> = z.object({
|
|
319
|
-
_id: z.string().default("
|
|
319
|
+
_id: z.string().default("conv_01kfe1mwtk9pf9zrs7r8esh3b5"),
|
|
320
320
|
kind: UpdateConversationKind$inboundSchema,
|
|
321
321
|
displayName: z.string(),
|
|
322
322
|
createdAt: z.number(),
|
|
@@ -348,7 +348,7 @@ export const UpdateConversationResponseBody$outboundSchema: z.ZodType<
|
|
|
348
348
|
z.ZodTypeDef,
|
|
349
349
|
UpdateConversationResponseBody
|
|
350
350
|
> = z.object({
|
|
351
|
-
id: z.string().default("
|
|
351
|
+
id: z.string().default("conv_01kfe1mwtk9pf9zrs7r8esh3b5"),
|
|
352
352
|
kind: UpdateConversationKind$outboundSchema,
|
|
353
353
|
displayName: z.string(),
|
|
354
354
|
createdAt: z.number(),
|
|
@@ -3598,7 +3598,7 @@ export const UpdateDatapointEvaluations3$inboundSchema: z.ZodType<
|
|
|
3598
3598
|
.default("orq"),
|
|
3599
3599
|
reviewed_by_id: z.string(),
|
|
3600
3600
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
3601
|
-
"2026-01-
|
|
3601
|
+
"2026-01-20T15:51:20.321Z",
|
|
3602
3602
|
).transform(v => new Date(v)),
|
|
3603
3603
|
type: z.literal("string_array"),
|
|
3604
3604
|
values: z.array(z.string()),
|
|
@@ -3635,7 +3635,7 @@ export const UpdateDatapointEvaluations3$outboundSchema: z.ZodType<
|
|
|
3635
3635
|
source: UpdateDatapointEvaluationsDatasetsResponseSource$outboundSchema
|
|
3636
3636
|
.default("orq"),
|
|
3637
3637
|
reviewedById: z.string(),
|
|
3638
|
-
reviewedAt: z.date().default(() => new Date("2026-01-
|
|
3638
|
+
reviewedAt: z.date().default(() => new Date("2026-01-20T15:51:20.321Z"))
|
|
3639
3639
|
.transform(v => v.toISOString()),
|
|
3640
3640
|
type: z.literal("string_array"),
|
|
3641
3641
|
values: z.array(z.string()),
|
|
@@ -3698,7 +3698,7 @@ export const UpdateDatapointEvaluations2$inboundSchema: z.ZodType<
|
|
|
3698
3698
|
source: UpdateDatapointEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
3699
3699
|
reviewed_by_id: z.string(),
|
|
3700
3700
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
3701
|
-
"2026-01-
|
|
3701
|
+
"2026-01-20T15:51:20.321Z",
|
|
3702
3702
|
).transform(v => new Date(v)),
|
|
3703
3703
|
type: z.literal("number"),
|
|
3704
3704
|
value: z.number(),
|
|
@@ -3736,7 +3736,7 @@ export const UpdateDatapointEvaluations2$outboundSchema: z.ZodType<
|
|
|
3736
3736
|
"orq",
|
|
3737
3737
|
),
|
|
3738
3738
|
reviewedById: z.string(),
|
|
3739
|
-
reviewedAt: z.date().default(() => new Date("2026-01-
|
|
3739
|
+
reviewedAt: z.date().default(() => new Date("2026-01-20T15:51:20.321Z"))
|
|
3740
3740
|
.transform(v => v.toISOString()),
|
|
3741
3741
|
type: z.literal("number"),
|
|
3742
3742
|
value: z.number(),
|
|
@@ -3798,7 +3798,7 @@ export const UpdateDatapointEvaluations1$inboundSchema: z.ZodType<
|
|
|
3798
3798
|
source: UpdateDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
3799
3799
|
reviewed_by_id: z.string(),
|
|
3800
3800
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
3801
|
-
"2026-01-
|
|
3801
|
+
"2026-01-20T15:51:20.320Z",
|
|
3802
3802
|
).transform(v => new Date(v)),
|
|
3803
3803
|
type: z.literal("string"),
|
|
3804
3804
|
value: z.string(),
|
|
@@ -3833,7 +3833,7 @@ export const UpdateDatapointEvaluations1$outboundSchema: z.ZodType<
|
|
|
3833
3833
|
humanReviewId: z.string(),
|
|
3834
3834
|
source: UpdateDatapointEvaluationsSource$outboundSchema.default("orq"),
|
|
3835
3835
|
reviewedById: z.string(),
|
|
3836
|
-
reviewedAt: z.date().default(() => new Date("2026-01-
|
|
3836
|
+
reviewedAt: z.date().default(() => new Date("2026-01-20T15:51:20.320Z"))
|
|
3837
3837
|
.transform(v => v.toISOString()),
|
|
3838
3838
|
type: z.literal("string"),
|
|
3839
3839
|
value: z.string(),
|
|
@@ -3946,7 +3946,7 @@ export const UpdateDatapointResponseBody$inboundSchema: z.ZodType<
|
|
|
3946
3946
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
3947
3947
|
.optional(),
|
|
3948
3948
|
updated: z.string().datetime({ offset: true }).default(
|
|
3949
|
-
"2026-01-
|
|
3949
|
+
"2026-01-20T15:51:06.085Z",
|
|
3950
3950
|
).transform(v => new Date(v)),
|
|
3951
3951
|
}).transform((v) => {
|
|
3952
3952
|
return remap$(v, {
|
|
@@ -4024,7 +4024,7 @@ export const UpdateDatapointResponseBody$outboundSchema: z.ZodType<
|
|
|
4024
4024
|
createdById: z.string().optional(),
|
|
4025
4025
|
updatedById: z.string().optional(),
|
|
4026
4026
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
4027
|
-
updated: z.date().default(() => new Date("2026-01-
|
|
4027
|
+
updated: z.date().default(() => new Date("2026-01-20T15:51:06.085Z"))
|
|
4028
4028
|
.transform(v => v.toISOString()),
|
|
4029
4029
|
}).transform((v) => {
|
|
4030
4030
|
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
|
-
"2026-01-
|
|
259
|
+
"2026-01-20T15:51:06.085Z",
|
|
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("2026-01-
|
|
298
|
+
updated: z.date().default(() => new Date("2026-01-20T15:51:06.085Z"))
|
|
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("01KFE1MXAPJW257A3E3CN9QZ1G"),
|
|
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("01KFE1MXAPJW257A3E3CN9QZ1G"),
|
|
249
249
|
displayName: z.string(),
|
|
250
250
|
description: z.string().optional(),
|
|
251
251
|
status: UpdateDatasourceStatus$outboundSchema,
|
|
@@ -2345,8 +2345,8 @@ export const ResponseBodyTypescript$inboundSchema: z.ZodType<
|
|
|
2345
2345
|
> = z.object({
|
|
2346
2346
|
_id: z.string(),
|
|
2347
2347
|
description: z.string(),
|
|
2348
|
-
created: z.string().default("2026-01-
|
|
2349
|
-
updated: z.string().default("2026-01-
|
|
2348
|
+
created: z.string().default("2026-01-20T15:51:09.007Z"),
|
|
2349
|
+
updated: z.string().default("2026-01-20T15:51:09.007Z"),
|
|
2350
2350
|
guardrail_config: z.union([
|
|
2351
2351
|
z.lazy(() =>
|
|
2352
2352
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$inboundSchema
|
|
@@ -2387,8 +2387,8 @@ export const ResponseBodyTypescript$outboundSchema: z.ZodType<
|
|
|
2387
2387
|
> = z.object({
|
|
2388
2388
|
id: z.string(),
|
|
2389
2389
|
description: z.string(),
|
|
2390
|
-
created: z.string().default("2026-01-
|
|
2391
|
-
updated: z.string().default("2026-01-
|
|
2390
|
+
created: z.string().default("2026-01-20T15:51:09.007Z"),
|
|
2391
|
+
updated: z.string().default("2026-01-20T15:51:09.007Z"),
|
|
2392
2392
|
guardrailConfig: z.union([
|
|
2393
2393
|
z.lazy(() =>
|
|
2394
2394
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$outboundSchema
|
|
@@ -2656,8 +2656,8 @@ export const ResponseBodyRagas$inboundSchema: z.ZodType<
|
|
|
2656
2656
|
> = z.object({
|
|
2657
2657
|
_id: z.string(),
|
|
2658
2658
|
description: z.string(),
|
|
2659
|
-
created: z.string().default("2026-01-
|
|
2660
|
-
updated: z.string().default("2026-01-
|
|
2659
|
+
created: z.string().default("2026-01-20T15:51:09.007Z"),
|
|
2660
|
+
updated: z.string().default("2026-01-20T15:51:09.007Z"),
|
|
2661
2661
|
guardrail_config: z.union([
|
|
2662
2662
|
z.lazy(() =>
|
|
2663
2663
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$inboundSchema
|
|
@@ -2701,8 +2701,8 @@ export const ResponseBodyRagas$outboundSchema: z.ZodType<
|
|
|
2701
2701
|
> = z.object({
|
|
2702
2702
|
id: z.string(),
|
|
2703
2703
|
description: z.string(),
|
|
2704
|
-
created: z.string().default("2026-01-
|
|
2705
|
-
updated: z.string().default("2026-01-
|
|
2704
|
+
created: z.string().default("2026-01-20T15:51:09.007Z"),
|
|
2705
|
+
updated: z.string().default("2026-01-20T15:51:09.007Z"),
|
|
2706
2706
|
guardrailConfig: z.union([
|
|
2707
2707
|
z.lazy(() =>
|
|
2708
2708
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$outboundSchema
|
|
@@ -4360,8 +4360,8 @@ export const ResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
4360
4360
|
> = z.object({
|
|
4361
4361
|
_id: z.string(),
|
|
4362
4362
|
description: z.string(),
|
|
4363
|
-
created: z.string().default("2026-01-
|
|
4364
|
-
updated: z.string().default("2026-01-
|
|
4363
|
+
created: z.string().default("2026-01-20T15:51:09.007Z"),
|
|
4364
|
+
updated: z.string().default("2026-01-20T15:51:09.007Z"),
|
|
4365
4365
|
guardrail_config: z.union([
|
|
4366
4366
|
z.lazy(() =>
|
|
4367
4367
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$inboundSchema
|
|
@@ -4468,8 +4468,8 @@ export const ResponseBodyFunction$outboundSchema: z.ZodType<
|
|
|
4468
4468
|
> = z.object({
|
|
4469
4469
|
id: z.string(),
|
|
4470
4470
|
description: z.string(),
|
|
4471
|
-
created: z.string().default("2026-01-
|
|
4472
|
-
updated: z.string().default("2026-01-
|
|
4471
|
+
created: z.string().default("2026-01-20T15:51:09.007Z"),
|
|
4472
|
+
updated: z.string().default("2026-01-20T15:51:09.007Z"),
|
|
4473
4473
|
guardrailConfig: z.union([
|
|
4474
4474
|
z.lazy(() =>
|
|
4475
4475
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$outboundSchema
|
|
@@ -4762,8 +4762,8 @@ export const UpdateEvalResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
4762
4762
|
> = z.object({
|
|
4763
4763
|
_id: z.string(),
|
|
4764
4764
|
description: z.string(),
|
|
4765
|
-
created: z.string().default("2026-01-
|
|
4766
|
-
updated: z.string().default("2026-01-
|
|
4765
|
+
created: z.string().default("2026-01-20T15:51:09.007Z"),
|
|
4766
|
+
updated: z.string().default("2026-01-20T15:51:09.007Z"),
|
|
4767
4767
|
guardrail_config: z.union([
|
|
4768
4768
|
z.lazy(() =>
|
|
4769
4769
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema
|
|
@@ -4804,8 +4804,8 @@ export const UpdateEvalResponseBodyPython$outboundSchema: z.ZodType<
|
|
|
4804
4804
|
> = z.object({
|
|
4805
4805
|
id: z.string(),
|
|
4806
4806
|
description: z.string(),
|
|
4807
|
-
created: z.string().default("2026-01-
|
|
4808
|
-
updated: z.string().default("2026-01-
|
|
4807
|
+
created: z.string().default("2026-01-20T15:51:09.007Z"),
|
|
4808
|
+
updated: z.string().default("2026-01-20T15:51:09.007Z"),
|
|
4809
4809
|
guardrailConfig: z.union([
|
|
4810
4810
|
z.lazy(() =>
|
|
4811
4811
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema
|
|
@@ -5071,8 +5071,8 @@ export const UpdateEvalResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
5071
5071
|
> = z.object({
|
|
5072
5072
|
_id: z.string(),
|
|
5073
5073
|
description: z.string(),
|
|
5074
|
-
created: z.string().default("2026-01-
|
|
5075
|
-
updated: z.string().default("2026-01-
|
|
5074
|
+
created: z.string().default("2026-01-20T15:51:09.007Z"),
|
|
5075
|
+
updated: z.string().default("2026-01-20T15:51:09.007Z"),
|
|
5076
5076
|
guardrail_config: z.union([
|
|
5077
5077
|
z.lazy(() =>
|
|
5078
5078
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema
|
|
@@ -5119,8 +5119,8 @@ export const UpdateEvalResponseBodyHTTP$outboundSchema: z.ZodType<
|
|
|
5119
5119
|
> = z.object({
|
|
5120
5120
|
id: z.string(),
|
|
5121
5121
|
description: z.string(),
|
|
5122
|
-
created: z.string().default("2026-01-
|
|
5123
|
-
updated: z.string().default("2026-01-
|
|
5122
|
+
created: z.string().default("2026-01-20T15:51:09.007Z"),
|
|
5123
|
+
updated: z.string().default("2026-01-20T15:51:09.007Z"),
|
|
5124
5124
|
guardrailConfig: z.union([
|
|
5125
5125
|
z.lazy(() =>
|
|
5126
5126
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema
|
|
@@ -5370,8 +5370,8 @@ export const UpdateEvalResponseBodyJSON$inboundSchema: z.ZodType<
|
|
|
5370
5370
|
> = z.object({
|
|
5371
5371
|
_id: z.string(),
|
|
5372
5372
|
description: z.string(),
|
|
5373
|
-
created: z.string().default("2026-01-
|
|
5374
|
-
updated: z.string().default("2026-01-
|
|
5373
|
+
created: z.string().default("2026-01-20T15:51:09.007Z"),
|
|
5374
|
+
updated: z.string().default("2026-01-20T15:51:09.007Z"),
|
|
5375
5375
|
guardrail_config: z.union([
|
|
5376
5376
|
z.lazy(() =>
|
|
5377
5377
|
UpdateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema
|
|
@@ -5410,8 +5410,8 @@ export const UpdateEvalResponseBodyJSON$outboundSchema: z.ZodType<
|
|
|
5410
5410
|
> = z.object({
|
|
5411
5411
|
id: z.string(),
|
|
5412
5412
|
description: z.string(),
|
|
5413
|
-
created: z.string().default("2026-01-
|
|
5414
|
-
updated: z.string().default("2026-01-
|
|
5413
|
+
created: z.string().default("2026-01-20T15:51:09.007Z"),
|
|
5414
|
+
updated: z.string().default("2026-01-20T15:51:09.007Z"),
|
|
5415
5415
|
guardrailConfig: z.union([
|
|
5416
5416
|
z.lazy(() =>
|
|
5417
5417
|
UpdateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema
|
|
@@ -5645,8 +5645,8 @@ export const UpdateEvalResponseBodyLLM$inboundSchema: z.ZodType<
|
|
|
5645
5645
|
> = z.object({
|
|
5646
5646
|
_id: z.string(),
|
|
5647
5647
|
description: z.string(),
|
|
5648
|
-
created: z.string().default("2026-01-
|
|
5649
|
-
updated: z.string().default("2026-01-
|
|
5648
|
+
created: z.string().default("2026-01-20T15:51:09.007Z"),
|
|
5649
|
+
updated: z.string().default("2026-01-20T15:51:09.007Z"),
|
|
5650
5650
|
guardrail_config: z.union([
|
|
5651
5651
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
5652
5652
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
@@ -5685,8 +5685,8 @@ export const UpdateEvalResponseBodyLLM$outboundSchema: z.ZodType<
|
|
|
5685
5685
|
> = z.object({
|
|
5686
5686
|
id: z.string(),
|
|
5687
5687
|
description: z.string(),
|
|
5688
|
-
created: z.string().default("2026-01-
|
|
5689
|
-
updated: z.string().default("2026-01-
|
|
5688
|
+
created: z.string().default("2026-01-20T15:51:09.007Z"),
|
|
5689
|
+
updated: z.string().default("2026-01-20T15:51:09.007Z"),
|
|
5690
5690
|
guardrailConfig: z.union([
|
|
5691
5691
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
5692
5692
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
@@ -215,7 +215,7 @@ export const UpdateIdentityResponseBody$inboundSchema: z.ZodType<
|
|
|
215
215
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
216
216
|
.optional(),
|
|
217
217
|
updated: z.string().datetime({ offset: true }).default(
|
|
218
|
-
"2026-01-
|
|
218
|
+
"2026-01-20T15:51:06.085Z",
|
|
219
219
|
).transform(v => new Date(v)),
|
|
220
220
|
}).transform((v) => {
|
|
221
221
|
return remap$(v, {
|
|
@@ -252,7 +252,7 @@ export const UpdateIdentityResponseBody$outboundSchema: z.ZodType<
|
|
|
252
252
|
tags: z.array(z.string()).optional(),
|
|
253
253
|
metadata: z.record(z.any()).optional(),
|
|
254
254
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
255
|
-
updated: z.date().default(() => new Date("2026-01-
|
|
255
|
+
updated: z.date().default(() => new Date("2026-01-20T15:51:06.085Z"))
|
|
256
256
|
.transform(v => v.toISOString()),
|
|
257
257
|
}).transform((v) => {
|
|
258
258
|
return remap$(v, {
|
|
@@ -28,9 +28,12 @@ export type UpdateMemoryRequest = {
|
|
|
28
28
|
* Memory successfully updated.
|
|
29
29
|
*/
|
|
30
30
|
export type UpdateMemoryResponseBody = {
|
|
31
|
+
/**
|
|
32
|
+
* Unique identifier for the memory. This is automatically generated by the system.
|
|
33
|
+
*/
|
|
31
34
|
id: string;
|
|
32
35
|
/**
|
|
33
|
-
* This
|
|
36
|
+
* Customer provided entity ID for the memory. This is used to link the memory to a specific user/company/session/etc. Has to be unique within the memory store.
|
|
34
37
|
*
|
|
35
38
|
* @deprecated field: This will be removed in a future release, please migrate away from it as soon as possible.
|
|
36
39
|
*/
|