@orq-ai/node 3.14.43 → 3.14.45
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 +209 -209
- package/bin/mcp-server.js.map +35 -35
- 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/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 +10 -10
- 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/getalltools.js +10 -10
- 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 +10 -10
- 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 +10 -10
- package/package.json +1 -1
- package/packages/orq-rc/README.md +21 -31
- package/packages/orq-rc/docs/sdks/agents/README.md +195 -235
- package/packages/orq-rc/docs/sdks/chunking/README.md +2 -0
- package/packages/orq-rc/docs/sdks/memorystores/README.md +3 -4
- package/packages/orq-rc/docs/sdks/tools/README.md +1 -152
- 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/funcs/agentsCreate.ts +1 -1
- package/packages/orq-rc/src/funcs/agentsInvoke.ts +4 -4
- package/packages/orq-rc/src/funcs/agentsListTasks.ts +4 -4
- package/packages/orq-rc/src/funcs/agentsRetrieveTask.ts +8 -8
- package/packages/orq-rc/src/funcs/agentsRun.ts +4 -4
- package/packages/orq-rc/src/funcs/agentsStream.ts +1 -0
- package/packages/orq-rc/src/funcs/agentsStreamRun.ts +1 -0
- package/packages/orq-rc/src/funcs/memoryStoresCreate.ts +2 -11
- 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 +3 -9
- package/packages/orq-rc/src/models/errors/index.ts +0 -3
- package/packages/orq-rc/src/models/operations/createagent.ts +35 -17
- 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 +2 -2
- package/packages/orq-rc/src/models/operations/createdatasetitem.ts +8 -8
- package/packages/orq-rc/src/models/operations/createdatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/createeval.ts +368 -294
- package/packages/orq-rc/src/models/operations/createknowledge.ts +33 -47
- package/packages/orq-rc/src/models/operations/createtool.ts +198 -161
- package/packages/orq-rc/src/models/operations/deploymentinvoke.ts +17 -24
- 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 -0
- package/packages/orq-rc/src/models/operations/getagenttask.ts +1873 -428
- package/packages/orq-rc/src/models/operations/getalltools.ts +284 -231
- package/packages/orq-rc/src/models/operations/getbudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/getevals.ts +28 -28
- package/packages/orq-rc/src/models/operations/index.ts +0 -3
- package/packages/orq-rc/src/models/operations/invokeagent.ts +319 -299
- package/packages/orq-rc/src/models/operations/listagents.ts +9 -0
- package/packages/orq-rc/src/models/operations/listagenttasks.ts +2029 -540
- package/packages/orq-rc/src/models/operations/listbudgets.ts +2 -2
- package/packages/orq-rc/src/models/operations/listchunks.ts +14 -14
- package/packages/orq-rc/src/models/operations/listcontacts.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +8 -8
- package/packages/orq-rc/src/models/operations/listdatasets.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasources.ts +15 -22
- package/packages/orq-rc/src/models/operations/parse.ts +16 -0
- package/packages/orq-rc/src/models/operations/retrievecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +8 -8
- 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 +168 -132
- package/packages/orq-rc/src/models/operations/runagent.ts +264 -220
- package/packages/orq-rc/src/models/operations/streamagent.ts +7635 -414
- package/packages/orq-rc/src/models/operations/streamrunagent.ts +10745 -3582
- package/packages/orq-rc/src/models/operations/updateagent.ts +56 -31
- 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 -8
- package/packages/orq-rc/src/models/operations/updatedataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/updateeval.ts +28 -28
- package/packages/orq-rc/src/models/operations/updatetool.ts +138 -104
- package/packages/orq-rc/src/sdk/agents.ts +36 -54
- package/packages/orq-rc/src/sdk/tools.ts +0 -36
- 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/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 +10 -10
- 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/getalltools.ts +10 -10
- 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 +10 -10
- 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 +10 -10
- package/packages/orq-rc/src/funcs/agentsDuplicate.ts +0 -179
- package/packages/orq-rc/src/funcs/toolsDuplicate.ts +0 -176
- package/packages/orq-rc/src/funcs/toolsSync.ts +0 -176
- package/packages/orq-rc/src/mcp-server/tools/agentsDuplicate.ts +0 -37
- package/packages/orq-rc/src/mcp-server/tools/toolsDuplicate.ts +0 -37
- package/packages/orq-rc/src/mcp-server/tools/toolsSync.ts +0 -37
- package/packages/orq-rc/src/models/errors/duplicateagent.ts +0 -128
- package/packages/orq-rc/src/models/errors/duplicatetool.ts +0 -78
- package/packages/orq-rc/src/models/errors/getagenttask.ts +0 -67
- package/packages/orq-rc/src/models/operations/duplicateagent.ts +0 -3598
- package/packages/orq-rc/src/models/operations/duplicatetool.ts +0 -2395
- package/packages/orq-rc/src/models/operations/syncmcptool.ts +0 -2603
|
@@ -4,10 +4,8 @@
|
|
|
4
4
|
|
|
5
5
|
import { toolsCreate } from "../funcs/toolsCreate.js";
|
|
6
6
|
import { toolsDelete } from "../funcs/toolsDelete.js";
|
|
7
|
-
import { toolsDuplicate } from "../funcs/toolsDuplicate.js";
|
|
8
7
|
import { toolsList } from "../funcs/toolsList.js";
|
|
9
8
|
import { toolsRetrieve } from "../funcs/toolsRetrieve.js";
|
|
10
|
-
import { toolsSync } from "../funcs/toolsSync.js";
|
|
11
9
|
import { toolsUpdate } from "../funcs/toolsUpdate.js";
|
|
12
10
|
import { ClientSDK, RequestOptions } from "../lib/sdks.js";
|
|
13
11
|
import * as operations from "../models/operations/index.js";
|
|
@@ -98,38 +96,4 @@ export class Tools extends ClientSDK {
|
|
|
98
96
|
options,
|
|
99
97
|
));
|
|
100
98
|
}
|
|
101
|
-
|
|
102
|
-
/**
|
|
103
|
-
* Duplicate tool
|
|
104
|
-
*
|
|
105
|
-
* @remarks
|
|
106
|
-
* Creates a copy of an existing tool with a new id and ID.
|
|
107
|
-
*/
|
|
108
|
-
async duplicate(
|
|
109
|
-
request: operations.DuplicateToolRequest,
|
|
110
|
-
options?: RequestOptions,
|
|
111
|
-
): Promise<operations.DuplicateToolResponseBody> {
|
|
112
|
-
return unwrapAsync(toolsDuplicate(
|
|
113
|
-
this,
|
|
114
|
-
request,
|
|
115
|
-
options,
|
|
116
|
-
));
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
/**
|
|
120
|
-
* Sync MCP tool
|
|
121
|
-
*
|
|
122
|
-
* @remarks
|
|
123
|
-
* Manually triggers tool discovery and synchronization from the MCP server. Fetches the latest tools and updates the tool configuration.
|
|
124
|
-
*/
|
|
125
|
-
async sync(
|
|
126
|
-
request: operations.SyncMcpToolRequest,
|
|
127
|
-
options?: RequestOptions,
|
|
128
|
-
): Promise<operations.SyncMcpToolResponseBody> {
|
|
129
|
-
return unwrapAsync(toolsSync(
|
|
130
|
-
this,
|
|
131
|
-
request,
|
|
132
|
-
options,
|
|
133
|
-
));
|
|
134
|
-
}
|
|
135
99
|
}
|
package/src/lib/config.ts
CHANGED
|
@@ -68,7 +68,7 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
|
|
|
68
68
|
export const SDK_METADATA = {
|
|
69
69
|
language: "typescript",
|
|
70
70
|
openapiDocVersion: "2.0",
|
|
71
|
-
sdkVersion: "3.14.
|
|
71
|
+
sdkVersion: "3.14.45",
|
|
72
72
|
genVersion: "2.755.9",
|
|
73
|
-
userAgent: "speakeasy-sdk/typescript 3.14.
|
|
73
|
+
userAgent: "speakeasy-sdk/typescript 3.14.45 2.755.9 2.0 @orq-ai/node",
|
|
74
74
|
} as const;
|
package/src/mcp-server/server.ts
CHANGED
|
@@ -516,7 +516,7 @@ export const CreateBudgetResponseBody$inboundSchema: z.ZodType<
|
|
|
516
516
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
517
517
|
.optional(),
|
|
518
518
|
updated: z.string().datetime({ offset: true }).default(
|
|
519
|
-
"2025-11-
|
|
519
|
+
"2025-11-21T08:35:30.068Z",
|
|
520
520
|
).transform(v => new Date(v)),
|
|
521
521
|
}).transform((v) => {
|
|
522
522
|
return remap$(v, {
|
|
@@ -553,7 +553,7 @@ export const CreateBudgetResponseBody$outboundSchema: z.ZodType<
|
|
|
553
553
|
isActive: z.boolean(),
|
|
554
554
|
consumption: z.lazy(() => Consumption$outboundSchema).optional(),
|
|
555
555
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
556
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
556
|
+
updated: z.date().default(() => new Date("2025-11-21T08:35:30.068Z"))
|
|
557
557
|
.transform(v => v.toISOString()),
|
|
558
558
|
}).transform((v) => {
|
|
559
559
|
return remap$(v, {
|
|
@@ -167,7 +167,7 @@ export const CreateContactResponseBody$inboundSchema: z.ZodType<
|
|
|
167
167
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
168
168
|
.optional(),
|
|
169
169
|
updated: z.string().datetime({ offset: true }).default(
|
|
170
|
-
"2025-11-
|
|
170
|
+
"2025-11-21T08:35:29.759Z",
|
|
171
171
|
).transform(v => new Date(v)),
|
|
172
172
|
}).transform((v) => {
|
|
173
173
|
return remap$(v, {
|
|
@@ -207,7 +207,7 @@ export const CreateContactResponseBody$outboundSchema: z.ZodType<
|
|
|
207
207
|
tags: z.array(z.string()).optional(),
|
|
208
208
|
metadata: z.record(z.any()).optional(),
|
|
209
209
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
210
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
210
|
+
updated: z.date().default(() => new Date("2025-11-21T08:35:29.759Z"))
|
|
211
211
|
.transform(v => v.toISOString()),
|
|
212
212
|
}).transform((v) => {
|
|
213
213
|
return remap$(v, {
|
|
@@ -187,7 +187,7 @@ export const CreateDatasetResponseBody$inboundSchema: z.ZodType<
|
|
|
187
187
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
188
188
|
.optional(),
|
|
189
189
|
updated: z.string().datetime({ offset: true }).default(
|
|
190
|
-
"2025-11-
|
|
190
|
+
"2025-11-21T08:35:29.759Z",
|
|
191
191
|
).transform(v => new Date(v)),
|
|
192
192
|
}).transform((v) => {
|
|
193
193
|
return remap$(v, {
|
|
@@ -226,7 +226,7 @@ export const CreateDatasetResponseBody$outboundSchema: z.ZodType<
|
|
|
226
226
|
createdById: z.string().optional(),
|
|
227
227
|
updatedById: z.string().optional(),
|
|
228
228
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
229
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
229
|
+
updated: z.date().default(() => new Date("2025-11-21T08:35:29.759Z"))
|
|
230
230
|
.transform(v => v.toISOString()),
|
|
231
231
|
}).transform((v) => {
|
|
232
232
|
return remap$(v, {
|
|
@@ -4929,7 +4929,7 @@ export const Evaluations3$inboundSchema: z.ZodType<
|
|
|
4929
4929
|
source: CreateDatasetItemEvaluationsSource$inboundSchema.default("orq"),
|
|
4930
4930
|
reviewed_by_id: z.string(),
|
|
4931
4931
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
4932
|
-
"2025-11-
|
|
4932
|
+
"2025-11-21T08:35:41.270Z",
|
|
4933
4933
|
).transform(v => new Date(v)),
|
|
4934
4934
|
type: CreateDatasetItemEvaluationsDatasetsType$inboundSchema,
|
|
4935
4935
|
values: z.array(z.string()),
|
|
@@ -4964,7 +4964,7 @@ export const Evaluations3$outboundSchema: z.ZodType<
|
|
|
4964
4964
|
humanReviewId: z.string(),
|
|
4965
4965
|
source: CreateDatasetItemEvaluationsSource$outboundSchema.default("orq"),
|
|
4966
4966
|
reviewedById: z.string(),
|
|
4967
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
4967
|
+
reviewedAt: z.date().default(() => new Date("2025-11-21T08:35:41.270Z"))
|
|
4968
4968
|
.transform(v => v.toISOString()),
|
|
4969
4969
|
type: CreateDatasetItemEvaluationsDatasetsType$outboundSchema,
|
|
4970
4970
|
values: z.array(z.string()),
|
|
@@ -5029,7 +5029,7 @@ export const Evaluations2$inboundSchema: z.ZodType<
|
|
|
5029
5029
|
source: EvaluationsSource$inboundSchema.default("orq"),
|
|
5030
5030
|
reviewed_by_id: z.string(),
|
|
5031
5031
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
5032
|
-
"2025-11-
|
|
5032
|
+
"2025-11-21T08:35:41.269Z",
|
|
5033
5033
|
).transform(v => new Date(v)),
|
|
5034
5034
|
type: CreateDatasetItemEvaluationsType$inboundSchema,
|
|
5035
5035
|
value: z.number(),
|
|
@@ -5064,7 +5064,7 @@ export const Evaluations2$outboundSchema: z.ZodType<
|
|
|
5064
5064
|
humanReviewId: z.string(),
|
|
5065
5065
|
source: EvaluationsSource$outboundSchema.default("orq"),
|
|
5066
5066
|
reviewedById: z.string(),
|
|
5067
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
5067
|
+
reviewedAt: z.date().default(() => new Date("2025-11-21T08:35:41.269Z"))
|
|
5068
5068
|
.transform(v => v.toISOString()),
|
|
5069
5069
|
type: CreateDatasetItemEvaluationsType$outboundSchema,
|
|
5070
5070
|
value: z.number(),
|
|
@@ -5127,7 +5127,7 @@ export const Evaluations1$inboundSchema: z.ZodType<
|
|
|
5127
5127
|
source: Source$inboundSchema.default("orq"),
|
|
5128
5128
|
reviewed_by_id: z.string(),
|
|
5129
5129
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
5130
|
-
"2025-11-
|
|
5130
|
+
"2025-11-21T08:35:41.269Z",
|
|
5131
5131
|
).transform(v => new Date(v)),
|
|
5132
5132
|
type: EvaluationsType$inboundSchema,
|
|
5133
5133
|
value: z.string(),
|
|
@@ -5162,7 +5162,7 @@ export const Evaluations1$outboundSchema: z.ZodType<
|
|
|
5162
5162
|
humanReviewId: z.string(),
|
|
5163
5163
|
source: Source$outboundSchema.default("orq"),
|
|
5164
5164
|
reviewedById: z.string(),
|
|
5165
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
5165
|
+
reviewedAt: z.date().default(() => new Date("2025-11-21T08:35:41.269Z"))
|
|
5166
5166
|
.transform(v => v.toISOString()),
|
|
5167
5167
|
type: EvaluationsType$outboundSchema,
|
|
5168
5168
|
value: z.string(),
|
|
@@ -5267,7 +5267,7 @@ export const CreateDatasetItemResponseBody$inboundSchema: z.ZodType<
|
|
|
5267
5267
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
5268
5268
|
.optional(),
|
|
5269
5269
|
updated: z.string().datetime({ offset: true }).default(
|
|
5270
|
-
"2025-11-
|
|
5270
|
+
"2025-11-21T08:35:29.759Z",
|
|
5271
5271
|
).transform(v => new Date(v)),
|
|
5272
5272
|
}).transform((v) => {
|
|
5273
5273
|
return remap$(v, {
|
|
@@ -5345,7 +5345,7 @@ export const CreateDatasetItemResponseBody$outboundSchema: z.ZodType<
|
|
|
5345
5345
|
createdById: z.string().optional(),
|
|
5346
5346
|
updatedById: z.string().optional(),
|
|
5347
5347
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
5348
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
5348
|
+
updated: z.date().default(() => new Date("2025-11-21T08:35:29.759Z"))
|
|
5349
5349
|
.transform(v => v.toISOString()),
|
|
5350
5350
|
}).transform((v) => {
|
|
5351
5351
|
return remap$(v, {
|
|
@@ -608,7 +608,7 @@ export const CreateDatasourceResponseBody$inboundSchema: z.ZodType<
|
|
|
608
608
|
z.ZodTypeDef,
|
|
609
609
|
unknown
|
|
610
610
|
> = z.object({
|
|
611
|
-
_id: z.string().default("
|
|
611
|
+
_id: z.string().default("01KAJRW2YFPWMGPPMM4GV6VZX7"),
|
|
612
612
|
display_name: z.string(),
|
|
613
613
|
description: z.string().optional(),
|
|
614
614
|
status: CreateDatasourceStatus$inboundSchema,
|
|
@@ -651,7 +651,7 @@ export const CreateDatasourceResponseBody$outboundSchema: z.ZodType<
|
|
|
651
651
|
z.ZodTypeDef,
|
|
652
652
|
CreateDatasourceResponseBody
|
|
653
653
|
> = z.object({
|
|
654
|
-
id: z.string().default("
|
|
654
|
+
id: z.string().default("01KAJRW2YFPWMGPPMM4GV6VZX7"),
|
|
655
655
|
displayName: z.string(),
|
|
656
656
|
description: z.string().optional(),
|
|
657
657
|
status: CreateDatasourceStatus$outboundSchema,
|
|
@@ -2754,8 +2754,8 @@ export const Typescript$inboundSchema: z.ZodType<
|
|
|
2754
2754
|
> = z.object({
|
|
2755
2755
|
_id: z.string(),
|
|
2756
2756
|
description: z.string(),
|
|
2757
|
-
created: z.string().default("2025-11-
|
|
2758
|
-
updated: z.string().default("2025-11-
|
|
2757
|
+
created: z.string().default("2025-11-21T08:35:32.239Z"),
|
|
2758
|
+
updated: z.string().default("2025-11-21T08:35:32.239Z"),
|
|
2759
2759
|
guardrail_config: z.union([
|
|
2760
2760
|
z.lazy(() =>
|
|
2761
2761
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema
|
|
@@ -2797,8 +2797,8 @@ export const Typescript$outboundSchema: z.ZodType<
|
|
|
2797
2797
|
> = z.object({
|
|
2798
2798
|
id: z.string(),
|
|
2799
2799
|
description: z.string(),
|
|
2800
|
-
created: z.string().default("2025-11-
|
|
2801
|
-
updated: z.string().default("2025-11-
|
|
2800
|
+
created: z.string().default("2025-11-21T08:35:32.239Z"),
|
|
2801
|
+
updated: z.string().default("2025-11-21T08:35:32.239Z"),
|
|
2802
2802
|
guardrailConfig: z.union([
|
|
2803
2803
|
z.lazy(() =>
|
|
2804
2804
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema
|
|
@@ -3079,8 +3079,8 @@ export const Ragas$inboundSchema: z.ZodType<Ragas, z.ZodTypeDef, unknown> = z
|
|
|
3079
3079
|
.object({
|
|
3080
3080
|
_id: z.string(),
|
|
3081
3081
|
description: z.string(),
|
|
3082
|
-
created: z.string().default("2025-11-
|
|
3083
|
-
updated: z.string().default("2025-11-
|
|
3082
|
+
created: z.string().default("2025-11-21T08:35:32.239Z"),
|
|
3083
|
+
updated: z.string().default("2025-11-21T08:35:32.239Z"),
|
|
3084
3084
|
guardrail_config: z.union([
|
|
3085
3085
|
z.lazy(() =>
|
|
3086
3086
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema
|
|
@@ -3125,8 +3125,8 @@ export const Ragas$outboundSchema: z.ZodType<
|
|
|
3125
3125
|
> = z.object({
|
|
3126
3126
|
id: z.string(),
|
|
3127
3127
|
description: z.string(),
|
|
3128
|
-
created: z.string().default("2025-11-
|
|
3129
|
-
updated: z.string().default("2025-11-
|
|
3128
|
+
created: z.string().default("2025-11-21T08:35:32.239Z"),
|
|
3129
|
+
updated: z.string().default("2025-11-21T08:35:32.239Z"),
|
|
3130
3130
|
guardrailConfig: z.union([
|
|
3131
3131
|
z.lazy(() =>
|
|
3132
3132
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema
|
|
@@ -5313,8 +5313,8 @@ export const CreateEvalResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
5313
5313
|
> = z.object({
|
|
5314
5314
|
_id: z.string(),
|
|
5315
5315
|
description: z.string(),
|
|
5316
|
-
created: z.string().default("2025-11-
|
|
5317
|
-
updated: z.string().default("2025-11-
|
|
5316
|
+
created: z.string().default("2025-11-21T08:35:32.239Z"),
|
|
5317
|
+
updated: z.string().default("2025-11-21T08:35:32.239Z"),
|
|
5318
5318
|
guardrail_config: z.union([
|
|
5319
5319
|
z.lazy(() =>
|
|
5320
5320
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema
|
|
@@ -5427,8 +5427,8 @@ export const CreateEvalResponseBodyFunction$outboundSchema: z.ZodType<
|
|
|
5427
5427
|
> = z.object({
|
|
5428
5428
|
id: z.string(),
|
|
5429
5429
|
description: z.string(),
|
|
5430
|
-
created: z.string().default("2025-11-
|
|
5431
|
-
updated: z.string().default("2025-11-
|
|
5430
|
+
created: z.string().default("2025-11-21T08:35:32.239Z"),
|
|
5431
|
+
updated: z.string().default("2025-11-21T08:35:32.239Z"),
|
|
5432
5432
|
guardrailConfig: z.union([
|
|
5433
5433
|
z.lazy(() =>
|
|
5434
5434
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema
|
|
@@ -5745,8 +5745,8 @@ export const ResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
5745
5745
|
> = z.object({
|
|
5746
5746
|
_id: z.string(),
|
|
5747
5747
|
description: z.string(),
|
|
5748
|
-
created: z.string().default("2025-11-
|
|
5749
|
-
updated: z.string().default("2025-11-
|
|
5748
|
+
created: z.string().default("2025-11-21T08:35:32.239Z"),
|
|
5749
|
+
updated: z.string().default("2025-11-21T08:35:32.239Z"),
|
|
5750
5750
|
guardrail_config: z.union([
|
|
5751
5751
|
z.lazy(() =>
|
|
5752
5752
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema
|
|
@@ -5787,8 +5787,8 @@ export const ResponseBodyPython$outboundSchema: z.ZodType<
|
|
|
5787
5787
|
> = z.object({
|
|
5788
5788
|
id: z.string(),
|
|
5789
5789
|
description: z.string(),
|
|
5790
|
-
created: z.string().default("2025-11-
|
|
5791
|
-
updated: z.string().default("2025-11-
|
|
5790
|
+
created: z.string().default("2025-11-21T08:35:32.239Z"),
|
|
5791
|
+
updated: z.string().default("2025-11-21T08:35:32.239Z"),
|
|
5792
5792
|
guardrailConfig: z.union([
|
|
5793
5793
|
z.lazy(() =>
|
|
5794
5794
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema
|
|
@@ -6068,8 +6068,8 @@ export const ResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
6068
6068
|
> = z.object({
|
|
6069
6069
|
_id: z.string(),
|
|
6070
6070
|
description: z.string(),
|
|
6071
|
-
created: z.string().default("2025-11-
|
|
6072
|
-
updated: z.string().default("2025-11-
|
|
6071
|
+
created: z.string().default("2025-11-21T08:35:32.239Z"),
|
|
6072
|
+
updated: z.string().default("2025-11-21T08:35:32.239Z"),
|
|
6073
6073
|
guardrail_config: z.union([
|
|
6074
6074
|
z.lazy(() =>
|
|
6075
6075
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema
|
|
@@ -6116,8 +6116,8 @@ export const ResponseBodyHTTP$outboundSchema: z.ZodType<
|
|
|
6116
6116
|
> = z.object({
|
|
6117
6117
|
id: z.string(),
|
|
6118
6118
|
description: z.string(),
|
|
6119
|
-
created: z.string().default("2025-11-
|
|
6120
|
-
updated: z.string().default("2025-11-
|
|
6119
|
+
created: z.string().default("2025-11-21T08:35:32.239Z"),
|
|
6120
|
+
updated: z.string().default("2025-11-21T08:35:32.239Z"),
|
|
6121
6121
|
guardrailConfig: z.union([
|
|
6122
6122
|
z.lazy(() =>
|
|
6123
6123
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema
|
|
@@ -6373,8 +6373,8 @@ export const ResponseBodyJSON$inboundSchema: z.ZodType<
|
|
|
6373
6373
|
> = z.object({
|
|
6374
6374
|
_id: z.string(),
|
|
6375
6375
|
description: z.string(),
|
|
6376
|
-
created: z.string().default("2025-11-
|
|
6377
|
-
updated: z.string().default("2025-11-
|
|
6376
|
+
created: z.string().default("2025-11-21T08:35:32.239Z"),
|
|
6377
|
+
updated: z.string().default("2025-11-21T08:35:32.239Z"),
|
|
6378
6378
|
guardrail_config: z.union([
|
|
6379
6379
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
6380
6380
|
z.lazy(() =>
|
|
@@ -6413,8 +6413,8 @@ export const ResponseBodyJSON$outboundSchema: z.ZodType<
|
|
|
6413
6413
|
> = z.object({
|
|
6414
6414
|
id: z.string(),
|
|
6415
6415
|
description: z.string(),
|
|
6416
|
-
created: z.string().default("2025-11-
|
|
6417
|
-
updated: z.string().default("2025-11-
|
|
6416
|
+
created: z.string().default("2025-11-21T08:35:32.239Z"),
|
|
6417
|
+
updated: z.string().default("2025-11-21T08:35:32.239Z"),
|
|
6418
6418
|
guardrailConfig: z.union([
|
|
6419
6419
|
z.lazy(() =>
|
|
6420
6420
|
CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema
|
|
@@ -6652,8 +6652,8 @@ export const ResponseBodyLLM$inboundSchema: z.ZodType<
|
|
|
6652
6652
|
> = z.object({
|
|
6653
6653
|
_id: z.string(),
|
|
6654
6654
|
description: z.string(),
|
|
6655
|
-
created: z.string().default("2025-11-
|
|
6656
|
-
updated: z.string().default("2025-11-
|
|
6655
|
+
created: z.string().default("2025-11-21T08:35:32.239Z"),
|
|
6656
|
+
updated: z.string().default("2025-11-21T08:35:32.239Z"),
|
|
6657
6657
|
guardrail_config: z.union([
|
|
6658
6658
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
6659
6659
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
@@ -6692,8 +6692,8 @@ export const ResponseBodyLLM$outboundSchema: z.ZodType<
|
|
|
6692
6692
|
> = z.object({
|
|
6693
6693
|
id: z.string(),
|
|
6694
6694
|
description: z.string(),
|
|
6695
|
-
created: z.string().default("2025-11-
|
|
6696
|
-
updated: z.string().default("2025-11-
|
|
6695
|
+
created: z.string().default("2025-11-21T08:35:32.239Z"),
|
|
6696
|
+
updated: z.string().default("2025-11-21T08:35:32.239Z"),
|
|
6697
6697
|
guardrailConfig: z.union([
|
|
6698
6698
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
6699
6699
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
@@ -2112,7 +2112,7 @@ export const ResponseBody5$inboundSchema: z.ZodType<
|
|
|
2112
2112
|
z.ZodTypeDef,
|
|
2113
2113
|
unknown
|
|
2114
2114
|
> = z.object({
|
|
2115
|
-
_id: z.string().default("
|
|
2115
|
+
_id: z.string().default("01KAJRW2TNBWM4NC20YSGY7FHP"),
|
|
2116
2116
|
path: z.string(),
|
|
2117
2117
|
key: z.string(),
|
|
2118
2118
|
display_name: z.string().optional(),
|
|
@@ -2166,7 +2166,7 @@ export const ResponseBody5$outboundSchema: z.ZodType<
|
|
|
2166
2166
|
z.ZodTypeDef,
|
|
2167
2167
|
ResponseBody5
|
|
2168
2168
|
> = z.object({
|
|
2169
|
-
id: z.string().default("
|
|
2169
|
+
id: z.string().default("01KAJRW2TNBWM4NC20YSGY7FHP"),
|
|
2170
2170
|
path: z.string(),
|
|
2171
2171
|
key: z.string(),
|
|
2172
2172
|
displayName: z.string().optional(),
|
|
@@ -2412,7 +2412,7 @@ export const ResponseBody4$inboundSchema: z.ZodType<
|
|
|
2412
2412
|
z.ZodTypeDef,
|
|
2413
2413
|
unknown
|
|
2414
2414
|
> = z.object({
|
|
2415
|
-
_id: z.string().default("
|
|
2415
|
+
_id: z.string().default("01KAJRW2TJR407SW73D1EPCYEV"),
|
|
2416
2416
|
path: z.string(),
|
|
2417
2417
|
key: z.string(),
|
|
2418
2418
|
display_name: z.string().optional(),
|
|
@@ -2465,7 +2465,7 @@ export const ResponseBody4$outboundSchema: z.ZodType<
|
|
|
2465
2465
|
z.ZodTypeDef,
|
|
2466
2466
|
ResponseBody4
|
|
2467
2467
|
> = z.object({
|
|
2468
|
-
id: z.string().default("
|
|
2468
|
+
id: z.string().default("01KAJRW2TJR407SW73D1EPCYEV"),
|
|
2469
2469
|
path: z.string(),
|
|
2470
2470
|
key: z.string(),
|
|
2471
2471
|
displayName: z.string().optional(),
|
|
@@ -2736,7 +2736,7 @@ export const ResponseBody3$inboundSchema: z.ZodType<
|
|
|
2736
2736
|
z.ZodTypeDef,
|
|
2737
2737
|
unknown
|
|
2738
2738
|
> = z.object({
|
|
2739
|
-
_id: z.string().default("
|
|
2739
|
+
_id: z.string().default("01KAJRW2TG0D8JTBYAVWHFESWC"),
|
|
2740
2740
|
path: z.string(),
|
|
2741
2741
|
key: z.string(),
|
|
2742
2742
|
display_name: z.string().optional(),
|
|
@@ -2787,7 +2787,7 @@ export const ResponseBody3$outboundSchema: z.ZodType<
|
|
|
2787
2787
|
z.ZodTypeDef,
|
|
2788
2788
|
ResponseBody3
|
|
2789
2789
|
> = z.object({
|
|
2790
|
-
id: z.string().default("
|
|
2790
|
+
id: z.string().default("01KAJRW2TG0D8JTBYAVWHFESWC"),
|
|
2791
2791
|
path: z.string(),
|
|
2792
2792
|
key: z.string(),
|
|
2793
2793
|
displayName: z.string().optional(),
|
|
@@ -2899,7 +2899,7 @@ export const ResponseBody2$inboundSchema: z.ZodType<
|
|
|
2899
2899
|
z.ZodTypeDef,
|
|
2900
2900
|
unknown
|
|
2901
2901
|
> = z.object({
|
|
2902
|
-
_id: z.string().default("
|
|
2902
|
+
_id: z.string().default("01KAJRW2TFHYVEM5MQQXWMSY5Q"),
|
|
2903
2903
|
path: z.string(),
|
|
2904
2904
|
key: z.string(),
|
|
2905
2905
|
display_name: z.string().optional(),
|
|
@@ -2951,7 +2951,7 @@ export const ResponseBody2$outboundSchema: z.ZodType<
|
|
|
2951
2951
|
z.ZodTypeDef,
|
|
2952
2952
|
ResponseBody2
|
|
2953
2953
|
> = z.object({
|
|
2954
|
-
id: z.string().default("
|
|
2954
|
+
id: z.string().default("01KAJRW2TFHYVEM5MQQXWMSY5Q"),
|
|
2955
2955
|
path: z.string(),
|
|
2956
2956
|
key: z.string(),
|
|
2957
2957
|
displayName: z.string().optional(),
|
|
@@ -3066,7 +3066,7 @@ export const ResponseBody1$inboundSchema: z.ZodType<
|
|
|
3066
3066
|
z.ZodTypeDef,
|
|
3067
3067
|
unknown
|
|
3068
3068
|
> = z.object({
|
|
3069
|
-
_id: z.string().default("
|
|
3069
|
+
_id: z.string().default("01KAJRW2TDP4JGW5HGDWCETTD7"),
|
|
3070
3070
|
path: z.string(),
|
|
3071
3071
|
key: z.string(),
|
|
3072
3072
|
display_name: z.string().optional(),
|
|
@@ -3117,7 +3117,7 @@ export const ResponseBody1$outboundSchema: z.ZodType<
|
|
|
3117
3117
|
z.ZodTypeDef,
|
|
3118
3118
|
ResponseBody1
|
|
3119
3119
|
> = z.object({
|
|
3120
|
-
id: z.string().default("
|
|
3120
|
+
id: z.string().default("01KAJRW2TDP4JGW5HGDWCETTD7"),
|
|
3121
3121
|
path: z.string(),
|
|
3122
3122
|
key: z.string(),
|
|
3123
3123
|
displayName: z.string().optional(),
|
|
@@ -716,7 +716,7 @@ export const DuplicateToolResponseBody5$inboundSchema: z.ZodType<
|
|
|
716
716
|
z.ZodTypeDef,
|
|
717
717
|
unknown
|
|
718
718
|
> = z.object({
|
|
719
|
-
_id: z.string().default("
|
|
719
|
+
_id: z.string().default("01KAJRW2VG9XTTV6D5CE1GDAJ7"),
|
|
720
720
|
path: z.string(),
|
|
721
721
|
key: z.string(),
|
|
722
722
|
display_name: z.string().optional(),
|
|
@@ -771,7 +771,7 @@ export const DuplicateToolResponseBody5$outboundSchema: z.ZodType<
|
|
|
771
771
|
z.ZodTypeDef,
|
|
772
772
|
DuplicateToolResponseBody5
|
|
773
773
|
> = z.object({
|
|
774
|
-
id: z.string().default("
|
|
774
|
+
id: z.string().default("01KAJRW2VG9XTTV6D5CE1GDAJ7"),
|
|
775
775
|
path: z.string(),
|
|
776
776
|
key: z.string(),
|
|
777
777
|
displayName: z.string().optional(),
|
|
@@ -1042,7 +1042,7 @@ export const DuplicateToolResponseBody4$inboundSchema: z.ZodType<
|
|
|
1042
1042
|
z.ZodTypeDef,
|
|
1043
1043
|
unknown
|
|
1044
1044
|
> = z.object({
|
|
1045
|
-
_id: z.string().default("
|
|
1045
|
+
_id: z.string().default("01KAJRW2VFZS43VPVE6DM260W3"),
|
|
1046
1046
|
path: z.string(),
|
|
1047
1047
|
key: z.string(),
|
|
1048
1048
|
display_name: z.string().optional(),
|
|
@@ -1095,7 +1095,7 @@ export const DuplicateToolResponseBody4$outboundSchema: z.ZodType<
|
|
|
1095
1095
|
z.ZodTypeDef,
|
|
1096
1096
|
DuplicateToolResponseBody4
|
|
1097
1097
|
> = z.object({
|
|
1098
|
-
id: z.string().default("
|
|
1098
|
+
id: z.string().default("01KAJRW2VFZS43VPVE6DM260W3"),
|
|
1099
1099
|
path: z.string(),
|
|
1100
1100
|
key: z.string(),
|
|
1101
1101
|
displayName: z.string().optional(),
|
|
@@ -1390,7 +1390,7 @@ export const DuplicateToolResponseBody3$inboundSchema: z.ZodType<
|
|
|
1390
1390
|
z.ZodTypeDef,
|
|
1391
1391
|
unknown
|
|
1392
1392
|
> = z.object({
|
|
1393
|
-
_id: z.string().default("
|
|
1393
|
+
_id: z.string().default("01KAJRW2VDM4FADSH9P5QV3G4V"),
|
|
1394
1394
|
path: z.string(),
|
|
1395
1395
|
key: z.string(),
|
|
1396
1396
|
display_name: z.string().optional(),
|
|
@@ -1443,7 +1443,7 @@ export const DuplicateToolResponseBody3$outboundSchema: z.ZodType<
|
|
|
1443
1443
|
z.ZodTypeDef,
|
|
1444
1444
|
DuplicateToolResponseBody3
|
|
1445
1445
|
> = z.object({
|
|
1446
|
-
id: z.string().default("
|
|
1446
|
+
id: z.string().default("01KAJRW2VDM4FADSH9P5QV3G4V"),
|
|
1447
1447
|
path: z.string(),
|
|
1448
1448
|
key: z.string(),
|
|
1449
1449
|
displayName: z.string().optional(),
|
|
@@ -1565,7 +1565,7 @@ export const DuplicateToolResponseBody2$inboundSchema: z.ZodType<
|
|
|
1565
1565
|
z.ZodTypeDef,
|
|
1566
1566
|
unknown
|
|
1567
1567
|
> = z.object({
|
|
1568
|
-
_id: z.string().default("
|
|
1568
|
+
_id: z.string().default("01KAJRW2VC3JZ9PVF3RRDZZ4GW"),
|
|
1569
1569
|
path: z.string(),
|
|
1570
1570
|
key: z.string(),
|
|
1571
1571
|
display_name: z.string().optional(),
|
|
@@ -1617,7 +1617,7 @@ export const DuplicateToolResponseBody2$outboundSchema: z.ZodType<
|
|
|
1617
1617
|
z.ZodTypeDef,
|
|
1618
1618
|
DuplicateToolResponseBody2
|
|
1619
1619
|
> = z.object({
|
|
1620
|
-
id: z.string().default("
|
|
1620
|
+
id: z.string().default("01KAJRW2VC3JZ9PVF3RRDZZ4GW"),
|
|
1621
1621
|
path: z.string(),
|
|
1622
1622
|
key: z.string(),
|
|
1623
1623
|
displayName: z.string().optional(),
|
|
@@ -1736,7 +1736,7 @@ export const DuplicateToolResponseBody1$inboundSchema: z.ZodType<
|
|
|
1736
1736
|
z.ZodTypeDef,
|
|
1737
1737
|
unknown
|
|
1738
1738
|
> = z.object({
|
|
1739
|
-
_id: z.string().default("
|
|
1739
|
+
_id: z.string().default("01KAJRW2VBPPHA704QM6BD079K"),
|
|
1740
1740
|
path: z.string(),
|
|
1741
1741
|
key: z.string(),
|
|
1742
1742
|
display_name: z.string().optional(),
|
|
@@ -1787,7 +1787,7 @@ export const DuplicateToolResponseBody1$outboundSchema: z.ZodType<
|
|
|
1787
1787
|
z.ZodTypeDef,
|
|
1788
1788
|
DuplicateToolResponseBody1
|
|
1789
1789
|
> = z.object({
|
|
1790
|
-
id: z.string().default("
|
|
1790
|
+
id: z.string().default("01KAJRW2VBPPHA704QM6BD079K"),
|
|
1791
1791
|
path: z.string(),
|
|
1792
1792
|
key: z.string(),
|
|
1793
1793
|
displayName: z.string().optional(),
|
|
@@ -119,7 +119,7 @@ export const FileGetResponseBody$inboundSchema: z.ZodType<
|
|
|
119
119
|
file_name: z.string(),
|
|
120
120
|
workspace_id: z.string(),
|
|
121
121
|
created: z.string().datetime({ offset: true }).default(
|
|
122
|
-
"2025-11-
|
|
122
|
+
"2025-11-21T08:35:33.257Z",
|
|
123
123
|
).transform(v => new Date(v)),
|
|
124
124
|
}).transform((v) => {
|
|
125
125
|
return remap$(v, {
|
|
@@ -152,7 +152,7 @@ export const FileGetResponseBody$outboundSchema: z.ZodType<
|
|
|
152
152
|
bytes: z.number(),
|
|
153
153
|
fileName: z.string(),
|
|
154
154
|
workspaceId: z.string(),
|
|
155
|
-
created: z.date().default(() => new Date("2025-11-
|
|
155
|
+
created: z.date().default(() => new Date("2025-11-21T08:35:33.257Z"))
|
|
156
156
|
.transform(v => v.toISOString()),
|
|
157
157
|
}).transform((v) => {
|
|
158
158
|
return remap$(v, {
|
|
@@ -157,7 +157,7 @@ export const FileListData$inboundSchema: z.ZodType<
|
|
|
157
157
|
file_name: z.string(),
|
|
158
158
|
workspace_id: z.string(),
|
|
159
159
|
created: z.string().datetime({ offset: true }).default(
|
|
160
|
-
"2025-11-
|
|
160
|
+
"2025-11-21T08:35:33.257Z",
|
|
161
161
|
).transform(v => new Date(v)),
|
|
162
162
|
}).transform((v) => {
|
|
163
163
|
return remap$(v, {
|
|
@@ -190,7 +190,7 @@ export const FileListData$outboundSchema: z.ZodType<
|
|
|
190
190
|
bytes: z.number(),
|
|
191
191
|
fileName: z.string(),
|
|
192
192
|
workspaceId: z.string(),
|
|
193
|
-
created: z.date().default(() => new Date("2025-11-
|
|
193
|
+
created: z.date().default(() => new Date("2025-11-21T08:35:33.257Z"))
|
|
194
194
|
.transform(v => v.toISOString()),
|
|
195
195
|
}).transform((v) => {
|
|
196
196
|
return remap$(v, {
|
|
@@ -196,7 +196,7 @@ export const FileUploadResponseBody$inboundSchema: z.ZodType<
|
|
|
196
196
|
file_name: z.string(),
|
|
197
197
|
workspace_id: z.string(),
|
|
198
198
|
created: z.string().datetime({ offset: true }).default(
|
|
199
|
-
"2025-11-
|
|
199
|
+
"2025-11-21T08:35:33.257Z",
|
|
200
200
|
).transform(v => new Date(v)),
|
|
201
201
|
}).transform((v) => {
|
|
202
202
|
return remap$(v, {
|
|
@@ -229,7 +229,7 @@ export const FileUploadResponseBody$outboundSchema: z.ZodType<
|
|
|
229
229
|
bytes: z.number(),
|
|
230
230
|
fileName: z.string(),
|
|
231
231
|
workspaceId: z.string(),
|
|
232
|
-
created: z.date().default(() => new Date("2025-11-
|
|
232
|
+
created: z.date().default(() => new Date("2025-11-21T08:35:33.257Z"))
|
|
233
233
|
.transform(v => v.toISOString()),
|
|
234
234
|
}).transform((v) => {
|
|
235
235
|
return remap$(v, {
|