@orq-ai/node 3.12.17 → 3.12.19
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 +112 -112
- package/bin/mcp-server.js.map +30 -30
- package/examples/package-lock.json +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- 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 +2 -2
- package/models/operations/createdatasource.js +2 -2
- package/models/operations/createeval.js +16 -16
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- 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 +2 -2
- 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 +2 -2
- package/models/operations/retrievedataset.js +2 -2
- package/models/operations/retrievedatasource.js +2 -2
- package/models/operations/updatebudget.js +2 -2
- package/models/operations/updatecontact.js +2 -2
- package/models/operations/updatedatapoint.js +2 -2
- package/models/operations/updatedataset.js +2 -2
- package/models/operations/updatedatasource.js +2 -2
- package/models/operations/updateeval.js +16 -16
- package/package.json +1 -1
- package/packages/orq-rc/examples/package-lock.json +1 -1
- package/packages/orq-rc/jsr.json +1 -1
- package/packages/orq-rc/package-lock.json +2 -2
- package/packages/orq-rc/package.json +1 -1
- package/packages/orq-rc/src/lib/config.ts +3 -3
- package/packages/orq-rc/src/mcp-server/mcp-server.ts +1 -1
- package/packages/orq-rc/src/mcp-server/server.ts +1 -1
- package/packages/orq-rc/src/models/components/httptool.ts +2 -2
- package/packages/orq-rc/src/models/operations/createbudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/createcontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdatasetitem.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/createeval.ts +28 -28
- package/packages/orq-rc/src/models/operations/createtool.ts +14 -14
- package/packages/orq-rc/src/models/operations/duplicatetool.ts +10 -10
- 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 +2 -2
- package/packages/orq-rc/src/models/operations/getalltools.ts +10 -10
- 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/listagents.ts +2 -2
- package/packages/orq-rc/src/models/operations/listbudgets.ts +2 -2
- package/packages/orq-rc/src/models/operations/listcontacts.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasets.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasources.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +2 -2
- 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 +10 -10
- package/packages/orq-rc/src/models/operations/runagent.ts +2 -2
- package/packages/orq-rc/src/models/operations/streamrunagent.ts +2 -2
- 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 +2 -2
- 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 +14 -14
- package/src/lib/config.ts +3 -3
- 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 +2 -2
- package/src/models/operations/createdatasource.ts +2 -2
- package/src/models/operations/createeval.ts +16 -16
- 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/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 +2 -2
- package/src/models/operations/listdatasets.ts +2 -2
- package/src/models/operations/listdatasources.ts +2 -2
- package/src/models/operations/retrievecontact.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +2 -2
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/retrievedatasource.ts +2 -2
- package/src/models/operations/updatebudget.ts +2 -2
- package/src/models/operations/updatecontact.ts +2 -2
- package/src/models/operations/updatedatapoint.ts +2 -2
- package/src/models/operations/updatedataset.ts +2 -2
- package/src/models/operations/updatedatasource.ts +2 -2
- package/src/models/operations/updateeval.ts +16 -16
|
@@ -127,7 +127,7 @@ export const RetrieveContactResponseBody$inboundSchema: z.ZodType<
|
|
|
127
127
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
128
128
|
.optional(),
|
|
129
129
|
updated: z.string().datetime({ offset: true }).default(
|
|
130
|
-
"2025-09-
|
|
130
|
+
"2025-09-25T12:10:29.955Z",
|
|
131
131
|
).transform(v => new Date(v)),
|
|
132
132
|
}).transform((v) => {
|
|
133
133
|
return remap$(v, {
|
|
@@ -165,7 +165,7 @@ export const RetrieveContactResponseBody$outboundSchema: z.ZodType<
|
|
|
165
165
|
tags: z.array(z.string()).optional(),
|
|
166
166
|
metadata: z.record(z.any()).optional(),
|
|
167
167
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
168
|
-
updated: z.date().default(() => new Date("2025-09-
|
|
168
|
+
updated: z.date().default(() => new Date("2025-09-25T12:10:29.955Z"))
|
|
169
169
|
.transform(v => v.toISOString()),
|
|
170
170
|
}).transform((v) => {
|
|
171
171
|
return remap$(v, {
|
|
@@ -2958,7 +2958,7 @@ export const RetrieveDatapointResponseBody$inboundSchema: z.ZodType<
|
|
|
2958
2958
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
2959
2959
|
.optional(),
|
|
2960
2960
|
updated: z.string().datetime({ offset: true }).default(
|
|
2961
|
-
"2025-09-
|
|
2961
|
+
"2025-09-25T12:10:29.955Z",
|
|
2962
2962
|
).transform(v => new Date(v)),
|
|
2963
2963
|
}).transform((v) => {
|
|
2964
2964
|
return remap$(v, {
|
|
@@ -3016,7 +3016,7 @@ export const RetrieveDatapointResponseBody$outboundSchema: z.ZodType<
|
|
|
3016
3016
|
createdById: z.string().optional(),
|
|
3017
3017
|
updatedById: z.string().optional(),
|
|
3018
3018
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
3019
|
-
updated: z.date().default(() => new Date("2025-09-
|
|
3019
|
+
updated: z.date().default(() => new Date("2025-09-25T12:10:29.955Z"))
|
|
3020
3020
|
.transform(v => v.toISOString()),
|
|
3021
3021
|
}).transform((v) => {
|
|
3022
3022
|
return remap$(v, {
|
|
@@ -201,7 +201,7 @@ export const RetrieveDatasetResponseBody$inboundSchema: z.ZodType<
|
|
|
201
201
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
202
202
|
.optional(),
|
|
203
203
|
updated: z.string().datetime({ offset: true }).default(
|
|
204
|
-
"2025-09-
|
|
204
|
+
"2025-09-25T12:10:29.955Z",
|
|
205
205
|
).transform(v => new Date(v)),
|
|
206
206
|
}).transform((v) => {
|
|
207
207
|
return remap$(v, {
|
|
@@ -241,7 +241,7 @@ export const RetrieveDatasetResponseBody$outboundSchema: z.ZodType<
|
|
|
241
241
|
updatedById: z.string().optional(),
|
|
242
242
|
metadata: z.lazy(() => RetrieveDatasetMetadata$outboundSchema),
|
|
243
243
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
244
|
-
updated: z.date().default(() => new Date("2025-09-
|
|
244
|
+
updated: z.date().default(() => new Date("2025-09-25T12:10:29.955Z"))
|
|
245
245
|
.transform(v => v.toISOString()),
|
|
246
246
|
}).transform((v) => {
|
|
247
247
|
return remap$(v, {
|
|
@@ -172,7 +172,7 @@ export const RetrieveDatasourceResponseBody$inboundSchema: z.ZodType<
|
|
|
172
172
|
z.ZodTypeDef,
|
|
173
173
|
unknown
|
|
174
174
|
> = z.object({
|
|
175
|
-
_id: z.string().default("
|
|
175
|
+
_id: z.string().default("01K60CGQ6M39ZNWYVDGTEW4VH2"),
|
|
176
176
|
display_name: z.string(),
|
|
177
177
|
description: z.string().optional(),
|
|
178
178
|
status: RetrieveDatasourceStatus$inboundSchema,
|
|
@@ -216,7 +216,7 @@ export const RetrieveDatasourceResponseBody$outboundSchema: z.ZodType<
|
|
|
216
216
|
z.ZodTypeDef,
|
|
217
217
|
RetrieveDatasourceResponseBody
|
|
218
218
|
> = z.object({
|
|
219
|
-
id: z.string().default("
|
|
219
|
+
id: z.string().default("01K60CGQ6M39ZNWYVDGTEW4VH2"),
|
|
220
220
|
displayName: z.string(),
|
|
221
221
|
description: z.string().optional(),
|
|
222
222
|
status: RetrieveDatasourceStatus$outboundSchema,
|
|
@@ -750,7 +750,7 @@ export const RetrieveToolResponseBody5$inboundSchema: z.ZodType<
|
|
|
750
750
|
z.ZodTypeDef,
|
|
751
751
|
unknown
|
|
752
752
|
> = z.object({
|
|
753
|
-
_id: z.string().default("
|
|
753
|
+
_id: z.string().default("01K60CGQ9YNGPCEYPF2R618W3M"),
|
|
754
754
|
path: z.string(),
|
|
755
755
|
key: z.string(),
|
|
756
756
|
display_name: z.string(),
|
|
@@ -806,7 +806,7 @@ export const RetrieveToolResponseBody5$outboundSchema: z.ZodType<
|
|
|
806
806
|
z.ZodTypeDef,
|
|
807
807
|
RetrieveToolResponseBody5
|
|
808
808
|
> = z.object({
|
|
809
|
-
id: z.string().default("
|
|
809
|
+
id: z.string().default("01K60CGQ9YNGPCEYPF2R618W3M"),
|
|
810
810
|
path: z.string(),
|
|
811
811
|
key: z.string(),
|
|
812
812
|
displayName: z.string(),
|
|
@@ -1190,7 +1190,7 @@ export const RetrieveToolResponseBody4$inboundSchema: z.ZodType<
|
|
|
1190
1190
|
z.ZodTypeDef,
|
|
1191
1191
|
unknown
|
|
1192
1192
|
> = z.object({
|
|
1193
|
-
_id: z.string().default("
|
|
1193
|
+
_id: z.string().default("01K60CGQ9X6TKYQY8SRQS6ZKMS"),
|
|
1194
1194
|
path: z.string(),
|
|
1195
1195
|
key: z.string(),
|
|
1196
1196
|
display_name: z.string(),
|
|
@@ -1244,7 +1244,7 @@ export const RetrieveToolResponseBody4$outboundSchema: z.ZodType<
|
|
|
1244
1244
|
z.ZodTypeDef,
|
|
1245
1245
|
RetrieveToolResponseBody4
|
|
1246
1246
|
> = z.object({
|
|
1247
|
-
id: z.string().default("
|
|
1247
|
+
id: z.string().default("01K60CGQ9X6TKYQY8SRQS6ZKMS"),
|
|
1248
1248
|
path: z.string(),
|
|
1249
1249
|
key: z.string(),
|
|
1250
1250
|
displayName: z.string(),
|
|
@@ -1670,7 +1670,7 @@ export const RetrieveToolResponseBody3$inboundSchema: z.ZodType<
|
|
|
1670
1670
|
z.ZodTypeDef,
|
|
1671
1671
|
unknown
|
|
1672
1672
|
> = z.object({
|
|
1673
|
-
_id: z.string().default("
|
|
1673
|
+
_id: z.string().default("01K60CGQ9XPEK8D3WMGQ0A8F46"),
|
|
1674
1674
|
path: z.string(),
|
|
1675
1675
|
key: z.string(),
|
|
1676
1676
|
display_name: z.string(),
|
|
@@ -1724,7 +1724,7 @@ export const RetrieveToolResponseBody3$outboundSchema: z.ZodType<
|
|
|
1724
1724
|
z.ZodTypeDef,
|
|
1725
1725
|
RetrieveToolResponseBody3
|
|
1726
1726
|
> = z.object({
|
|
1727
|
-
id: z.string().default("
|
|
1727
|
+
id: z.string().default("01K60CGQ9XPEK8D3WMGQ0A8F46"),
|
|
1728
1728
|
path: z.string(),
|
|
1729
1729
|
key: z.string(),
|
|
1730
1730
|
displayName: z.string(),
|
|
@@ -1902,7 +1902,7 @@ export const RetrieveToolResponseBody2$inboundSchema: z.ZodType<
|
|
|
1902
1902
|
z.ZodTypeDef,
|
|
1903
1903
|
unknown
|
|
1904
1904
|
> = z.object({
|
|
1905
|
-
_id: z.string().default("
|
|
1905
|
+
_id: z.string().default("01K60CGQ9X4J7CYB7ZZ3GYYNQP"),
|
|
1906
1906
|
path: z.string(),
|
|
1907
1907
|
key: z.string(),
|
|
1908
1908
|
display_name: z.string(),
|
|
@@ -1955,7 +1955,7 @@ export const RetrieveToolResponseBody2$outboundSchema: z.ZodType<
|
|
|
1955
1955
|
z.ZodTypeDef,
|
|
1956
1956
|
RetrieveToolResponseBody2
|
|
1957
1957
|
> = z.object({
|
|
1958
|
-
id: z.string().default("
|
|
1958
|
+
id: z.string().default("01K60CGQ9X4J7CYB7ZZ3GYYNQP"),
|
|
1959
1959
|
path: z.string(),
|
|
1960
1960
|
key: z.string(),
|
|
1961
1961
|
displayName: z.string(),
|
|
@@ -2127,7 +2127,7 @@ export const RetrieveToolResponseBody1$inboundSchema: z.ZodType<
|
|
|
2127
2127
|
z.ZodTypeDef,
|
|
2128
2128
|
unknown
|
|
2129
2129
|
> = z.object({
|
|
2130
|
-
_id: z.string().default("
|
|
2130
|
+
_id: z.string().default("01K60CGQ9WSVKG9T80S4E04WWD"),
|
|
2131
2131
|
path: z.string(),
|
|
2132
2132
|
key: z.string(),
|
|
2133
2133
|
display_name: z.string(),
|
|
@@ -2179,7 +2179,7 @@ export const RetrieveToolResponseBody1$outboundSchema: z.ZodType<
|
|
|
2179
2179
|
z.ZodTypeDef,
|
|
2180
2180
|
RetrieveToolResponseBody1
|
|
2181
2181
|
> = z.object({
|
|
2182
|
-
id: z.string().default("
|
|
2182
|
+
id: z.string().default("01K60CGQ9WSVKG9T80S4E04WWD"),
|
|
2183
2183
|
path: z.string(),
|
|
2184
2184
|
key: z.string(),
|
|
2185
2185
|
displayName: z.string(),
|
|
@@ -2179,7 +2179,7 @@ export const TwentyFour$inboundSchema: z.ZodType<
|
|
|
2179
2179
|
z.ZodTypeDef,
|
|
2180
2180
|
unknown
|
|
2181
2181
|
> = z.object({
|
|
2182
|
-
_id: z.string().default("
|
|
2182
|
+
_id: z.string().default("01K60CGQ35YREFRTW8EPP79TWP"),
|
|
2183
2183
|
path: z.string(),
|
|
2184
2184
|
key: z.string(),
|
|
2185
2185
|
display_name: z.string(),
|
|
@@ -2218,7 +2218,7 @@ export const TwentyFour$outboundSchema: z.ZodType<
|
|
|
2218
2218
|
z.ZodTypeDef,
|
|
2219
2219
|
TwentyFour
|
|
2220
2220
|
> = z.object({
|
|
2221
|
-
id: z.string().default("
|
|
2221
|
+
id: z.string().default("01K60CGQ35YREFRTW8EPP79TWP"),
|
|
2222
2222
|
path: z.string(),
|
|
2223
2223
|
key: z.string(),
|
|
2224
2224
|
displayName: z.string(),
|
|
@@ -2269,7 +2269,7 @@ export function toolsHttpFromJSON(
|
|
|
2269
2269
|
/** @internal */
|
|
2270
2270
|
export const Tools24$inboundSchema: z.ZodType<Tools24, z.ZodTypeDef, unknown> =
|
|
2271
2271
|
z.object({
|
|
2272
|
-
_id: z.string().default("
|
|
2272
|
+
_id: z.string().default("01K60CGQ3ATEDXVK2YSH8BYK4M"),
|
|
2273
2273
|
path: z.string(),
|
|
2274
2274
|
key: z.string(),
|
|
2275
2275
|
display_name: z.string(),
|
|
@@ -2308,7 +2308,7 @@ export const Tools24$outboundSchema: z.ZodType<
|
|
|
2308
2308
|
z.ZodTypeDef,
|
|
2309
2309
|
Tools24
|
|
2310
2310
|
> = z.object({
|
|
2311
|
-
id: z.string().default("
|
|
2311
|
+
id: z.string().default("01K60CGQ3ATEDXVK2YSH8BYK4M"),
|
|
2312
2312
|
path: z.string(),
|
|
2313
2313
|
key: z.string(),
|
|
2314
2314
|
displayName: z.string(),
|
|
@@ -538,7 +538,7 @@ export const UpdateBudgetResponseBody$inboundSchema: z.ZodType<
|
|
|
538
538
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
539
539
|
.optional(),
|
|
540
540
|
updated: z.string().datetime({ offset: true }).default(
|
|
541
|
-
"2025-09-
|
|
541
|
+
"2025-09-25T12:10:29.955Z",
|
|
542
542
|
).transform(v => new Date(v)),
|
|
543
543
|
}).transform((v) => {
|
|
544
544
|
return remap$(v, {
|
|
@@ -573,7 +573,7 @@ export const UpdateBudgetResponseBody$outboundSchema: z.ZodType<
|
|
|
573
573
|
isActive: z.boolean(),
|
|
574
574
|
consumption: z.lazy(() => UpdateBudgetConsumption$outboundSchema).optional(),
|
|
575
575
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
576
|
-
updated: z.date().default(() => new Date("2025-09-
|
|
576
|
+
updated: z.date().default(() => new Date("2025-09-25T12:10:29.955Z"))
|
|
577
577
|
.transform(v => v.toISOString()),
|
|
578
578
|
}).transform((v) => {
|
|
579
579
|
return remap$(v, {
|
|
@@ -244,7 +244,7 @@ export const UpdateContactResponseBody$inboundSchema: z.ZodType<
|
|
|
244
244
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
245
245
|
.optional(),
|
|
246
246
|
updated: z.string().datetime({ offset: true }).default(
|
|
247
|
-
"2025-09-
|
|
247
|
+
"2025-09-25T12:10:29.955Z",
|
|
248
248
|
).transform(v => new Date(v)),
|
|
249
249
|
}).transform((v) => {
|
|
250
250
|
return remap$(v, {
|
|
@@ -282,7 +282,7 @@ export const UpdateContactResponseBody$outboundSchema: z.ZodType<
|
|
|
282
282
|
tags: z.array(z.string()).optional(),
|
|
283
283
|
metadata: z.record(z.any()).optional(),
|
|
284
284
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
285
|
-
updated: z.date().default(() => new Date("2025-09-
|
|
285
|
+
updated: z.date().default(() => new Date("2025-09-25T12:10:29.955Z"))
|
|
286
286
|
.transform(v => v.toISOString()),
|
|
287
287
|
}).transform((v) => {
|
|
288
288
|
return remap$(v, {
|
|
@@ -6020,7 +6020,7 @@ export const UpdateDatapointResponseBody$inboundSchema: z.ZodType<
|
|
|
6020
6020
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
6021
6021
|
.optional(),
|
|
6022
6022
|
updated: z.string().datetime({ offset: true }).default(
|
|
6023
|
-
"2025-09-
|
|
6023
|
+
"2025-09-25T12:10:29.955Z",
|
|
6024
6024
|
).transform(v => new Date(v)),
|
|
6025
6025
|
}).transform((v) => {
|
|
6026
6026
|
return remap$(v, {
|
|
@@ -6082,7 +6082,7 @@ export const UpdateDatapointResponseBody$outboundSchema: z.ZodType<
|
|
|
6082
6082
|
createdById: z.string().optional(),
|
|
6083
6083
|
updatedById: z.string().optional(),
|
|
6084
6084
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
6085
|
-
updated: z.date().default(() => new Date("2025-09-
|
|
6085
|
+
updated: z.date().default(() => new Date("2025-09-25T12:10:29.955Z"))
|
|
6086
6086
|
.transform(v => v.toISOString()),
|
|
6087
6087
|
}).transform((v) => {
|
|
6088
6088
|
return remap$(v, {
|
|
@@ -302,7 +302,7 @@ export const UpdateDatasetResponseBody$inboundSchema: z.ZodType<
|
|
|
302
302
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
303
303
|
.optional(),
|
|
304
304
|
updated: z.string().datetime({ offset: true }).default(
|
|
305
|
-
"2025-09-
|
|
305
|
+
"2025-09-25T12:10:29.955Z",
|
|
306
306
|
).transform(v => new Date(v)),
|
|
307
307
|
}).transform((v) => {
|
|
308
308
|
return remap$(v, {
|
|
@@ -347,7 +347,7 @@ export const UpdateDatasetResponseBody$outboundSchema: z.ZodType<
|
|
|
347
347
|
parentId: z.string().optional(),
|
|
348
348
|
version: z.string().optional(),
|
|
349
349
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
350
|
-
updated: z.date().default(() => new Date("2025-09-
|
|
350
|
+
updated: z.date().default(() => new Date("2025-09-25T12:10:29.955Z"))
|
|
351
351
|
.transform(v => v.toISOString()),
|
|
352
352
|
}).transform((v) => {
|
|
353
353
|
return remap$(v, {
|
|
@@ -244,7 +244,7 @@ export const UpdateDatasourceResponseBody$inboundSchema: z.ZodType<
|
|
|
244
244
|
z.ZodTypeDef,
|
|
245
245
|
unknown
|
|
246
246
|
> = z.object({
|
|
247
|
-
_id: z.string().default("
|
|
247
|
+
_id: z.string().default("01K60CGQ6NM715AXKAA8NN9BZD"),
|
|
248
248
|
display_name: z.string(),
|
|
249
249
|
description: z.string().optional(),
|
|
250
250
|
status: UpdateDatasourceStatus$inboundSchema,
|
|
@@ -288,7 +288,7 @@ export const UpdateDatasourceResponseBody$outboundSchema: z.ZodType<
|
|
|
288
288
|
z.ZodTypeDef,
|
|
289
289
|
UpdateDatasourceResponseBody
|
|
290
290
|
> = z.object({
|
|
291
|
-
id: z.string().default("
|
|
291
|
+
id: z.string().default("01K60CGQ6NM715AXKAA8NN9BZD"),
|
|
292
292
|
displayName: z.string(),
|
|
293
293
|
description: z.string().optional(),
|
|
294
294
|
status: UpdateDatasourceStatus$outboundSchema,
|
|
@@ -3637,8 +3637,8 @@ export const ResponseBodyTypescript$inboundSchema: z.ZodType<
|
|
|
3637
3637
|
> = z.object({
|
|
3638
3638
|
_id: z.string(),
|
|
3639
3639
|
description: z.string(),
|
|
3640
|
-
created: z.string().default("2025-09-
|
|
3641
|
-
updated: z.string().default("2025-09-
|
|
3640
|
+
created: z.string().default("2025-09-25T12:10:32.197Z"),
|
|
3641
|
+
updated: z.string().default("2025-09-25T12:10:32.197Z"),
|
|
3642
3642
|
guardrail_config: z.union([
|
|
3643
3643
|
z.lazy(() =>
|
|
3644
3644
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema
|
|
@@ -3681,8 +3681,8 @@ export const ResponseBodyTypescript$outboundSchema: z.ZodType<
|
|
|
3681
3681
|
> = z.object({
|
|
3682
3682
|
id: z.string(),
|
|
3683
3683
|
description: z.string(),
|
|
3684
|
-
created: z.string().default("2025-09-
|
|
3685
|
-
updated: z.string().default("2025-09-
|
|
3684
|
+
created: z.string().default("2025-09-25T12:10:32.197Z"),
|
|
3685
|
+
updated: z.string().default("2025-09-25T12:10:32.197Z"),
|
|
3686
3686
|
guardrailConfig: z.union([
|
|
3687
3687
|
z.lazy(() =>
|
|
3688
3688
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema
|
|
@@ -4108,8 +4108,8 @@ export const ResponseBodyRagas$inboundSchema: z.ZodType<
|
|
|
4108
4108
|
> = z.object({
|
|
4109
4109
|
_id: z.string(),
|
|
4110
4110
|
description: z.string(),
|
|
4111
|
-
created: z.string().default("2025-09-
|
|
4112
|
-
updated: z.string().default("2025-09-
|
|
4111
|
+
created: z.string().default("2025-09-25T12:10:32.197Z"),
|
|
4112
|
+
updated: z.string().default("2025-09-25T12:10:32.197Z"),
|
|
4113
4113
|
guardrail_config: z.union([
|
|
4114
4114
|
z.lazy(() =>
|
|
4115
4115
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema
|
|
@@ -4155,8 +4155,8 @@ export const ResponseBodyRagas$outboundSchema: z.ZodType<
|
|
|
4155
4155
|
> = z.object({
|
|
4156
4156
|
id: z.string(),
|
|
4157
4157
|
description: z.string(),
|
|
4158
|
-
created: z.string().default("2025-09-
|
|
4159
|
-
updated: z.string().default("2025-09-
|
|
4158
|
+
created: z.string().default("2025-09-25T12:10:32.197Z"),
|
|
4159
|
+
updated: z.string().default("2025-09-25T12:10:32.197Z"),
|
|
4160
4160
|
guardrailConfig: z.union([
|
|
4161
4161
|
z.lazy(() =>
|
|
4162
4162
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema
|
|
@@ -7663,8 +7663,8 @@ export const UpdateEvalResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
7663
7663
|
> = z.object({
|
|
7664
7664
|
_id: z.string(),
|
|
7665
7665
|
description: z.string(),
|
|
7666
|
-
created: z.string().default("2025-09-
|
|
7667
|
-
updated: z.string().default("2025-09-
|
|
7666
|
+
created: z.string().default("2025-09-25T12:10:32.197Z"),
|
|
7667
|
+
updated: z.string().default("2025-09-25T12:10:32.197Z"),
|
|
7668
7668
|
guardrail_config: z.union([
|
|
7669
7669
|
z.lazy(() =>
|
|
7670
7670
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema
|
|
@@ -7778,8 +7778,8 @@ export const UpdateEvalResponseBodyFunction$outboundSchema: z.ZodType<
|
|
|
7778
7778
|
> = z.object({
|
|
7779
7779
|
id: z.string(),
|
|
7780
7780
|
description: z.string(),
|
|
7781
|
-
created: z.string().default("2025-09-
|
|
7782
|
-
updated: z.string().default("2025-09-
|
|
7781
|
+
created: z.string().default("2025-09-25T12:10:32.197Z"),
|
|
7782
|
+
updated: z.string().default("2025-09-25T12:10:32.197Z"),
|
|
7783
7783
|
guardrailConfig: z.union([
|
|
7784
7784
|
z.lazy(() =>
|
|
7785
7785
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema
|
|
@@ -8221,8 +8221,8 @@ export const UpdateEvalResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
8221
8221
|
> = z.object({
|
|
8222
8222
|
_id: z.string(),
|
|
8223
8223
|
description: z.string(),
|
|
8224
|
-
created: z.string().default("2025-09-
|
|
8225
|
-
updated: z.string().default("2025-09-
|
|
8224
|
+
created: z.string().default("2025-09-25T12:10:32.197Z"),
|
|
8225
|
+
updated: z.string().default("2025-09-25T12:10:32.197Z"),
|
|
8226
8226
|
guardrail_config: z.union([
|
|
8227
8227
|
z.lazy(() =>
|
|
8228
8228
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema
|
|
@@ -8264,8 +8264,8 @@ export const UpdateEvalResponseBodyPython$outboundSchema: z.ZodType<
|
|
|
8264
8264
|
> = z.object({
|
|
8265
8265
|
id: z.string(),
|
|
8266
8266
|
description: z.string(),
|
|
8267
|
-
created: z.string().default("2025-09-
|
|
8268
|
-
updated: z.string().default("2025-09-
|
|
8267
|
+
created: z.string().default("2025-09-25T12:10:32.197Z"),
|
|
8268
|
+
updated: z.string().default("2025-09-25T12:10:32.197Z"),
|
|
8269
8269
|
guardrailConfig: z.union([
|
|
8270
8270
|
z.lazy(() =>
|
|
8271
8271
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema
|
|
@@ -8686,8 +8686,8 @@ export const UpdateEvalResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
8686
8686
|
> = z.object({
|
|
8687
8687
|
_id: z.string(),
|
|
8688
8688
|
description: z.string(),
|
|
8689
|
-
created: z.string().default("2025-09-
|
|
8690
|
-
updated: z.string().default("2025-09-
|
|
8689
|
+
created: z.string().default("2025-09-25T12:10:32.197Z"),
|
|
8690
|
+
updated: z.string().default("2025-09-25T12:10:32.197Z"),
|
|
8691
8691
|
guardrail_config: z.union([
|
|
8692
8692
|
z.lazy(() =>
|
|
8693
8693
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema
|
|
@@ -8735,8 +8735,8 @@ export const UpdateEvalResponseBodyHTTP$outboundSchema: z.ZodType<
|
|
|
8735
8735
|
> = z.object({
|
|
8736
8736
|
id: z.string(),
|
|
8737
8737
|
description: z.string(),
|
|
8738
|
-
created: z.string().default("2025-09-
|
|
8739
|
-
updated: z.string().default("2025-09-
|
|
8738
|
+
created: z.string().default("2025-09-25T12:10:32.197Z"),
|
|
8739
|
+
updated: z.string().default("2025-09-25T12:10:32.197Z"),
|
|
8740
8740
|
guardrailConfig: z.union([
|
|
8741
8741
|
z.lazy(() =>
|
|
8742
8742
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema
|
|
@@ -9126,8 +9126,8 @@ export const UpdateEvalResponseBodyJSON$inboundSchema: z.ZodType<
|
|
|
9126
9126
|
> = z.object({
|
|
9127
9127
|
_id: z.string(),
|
|
9128
9128
|
description: z.string(),
|
|
9129
|
-
created: z.string().default("2025-09-
|
|
9130
|
-
updated: z.string().default("2025-09-
|
|
9129
|
+
created: z.string().default("2025-09-25T12:10:32.197Z"),
|
|
9130
|
+
updated: z.string().default("2025-09-25T12:10:32.197Z"),
|
|
9131
9131
|
guardrail_config: z.union([
|
|
9132
9132
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
9133
9133
|
z.lazy(() =>
|
|
@@ -9167,8 +9167,8 @@ export const UpdateEvalResponseBodyJSON$outboundSchema: z.ZodType<
|
|
|
9167
9167
|
> = z.object({
|
|
9168
9168
|
id: z.string(),
|
|
9169
9169
|
description: z.string(),
|
|
9170
|
-
created: z.string().default("2025-09-
|
|
9171
|
-
updated: z.string().default("2025-09-
|
|
9170
|
+
created: z.string().default("2025-09-25T12:10:32.197Z"),
|
|
9171
|
+
updated: z.string().default("2025-09-25T12:10:32.197Z"),
|
|
9172
9172
|
guardrailConfig: z.union([
|
|
9173
9173
|
z.lazy(() =>
|
|
9174
9174
|
UpdateEvalGuardrailConfigEvalsResponse200Number$outboundSchema
|
|
@@ -9526,8 +9526,8 @@ export const UpdateEvalResponseBodyLLM$inboundSchema: z.ZodType<
|
|
|
9526
9526
|
> = z.object({
|
|
9527
9527
|
_id: z.string(),
|
|
9528
9528
|
description: z.string(),
|
|
9529
|
-
created: z.string().default("2025-09-
|
|
9530
|
-
updated: z.string().default("2025-09-
|
|
9529
|
+
created: z.string().default("2025-09-25T12:10:32.197Z"),
|
|
9530
|
+
updated: z.string().default("2025-09-25T12:10:32.197Z"),
|
|
9531
9531
|
guardrail_config: z.union([
|
|
9532
9532
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
9533
9533
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
@@ -9567,8 +9567,8 @@ export const UpdateEvalResponseBodyLLM$outboundSchema: z.ZodType<
|
|
|
9567
9567
|
> = z.object({
|
|
9568
9568
|
id: z.string(),
|
|
9569
9569
|
description: z.string(),
|
|
9570
|
-
created: z.string().default("2025-09-
|
|
9571
|
-
updated: z.string().default("2025-09-
|
|
9570
|
+
created: z.string().default("2025-09-25T12:10:32.197Z"),
|
|
9571
|
+
updated: z.string().default("2025-09-25T12:10:32.197Z"),
|
|
9572
9572
|
guardrailConfig: z.union([
|
|
9573
9573
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
9574
9574
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
@@ -1940,7 +1940,7 @@ export const UpdateToolRequestBody3$inboundSchema: z.ZodType<
|
|
|
1940
1940
|
z.ZodTypeDef,
|
|
1941
1941
|
unknown
|
|
1942
1942
|
> = z.object({
|
|
1943
|
-
_id: z.string().default("
|
|
1943
|
+
_id: z.string().default("01K60CGQ9T6Z9V3EAXFMJ0FRAY"),
|
|
1944
1944
|
path: z.string().optional(),
|
|
1945
1945
|
display_name: z.string().optional(),
|
|
1946
1946
|
description: z.string().optional(),
|
|
@@ -1974,7 +1974,7 @@ export const UpdateToolRequestBody3$outboundSchema: z.ZodType<
|
|
|
1974
1974
|
z.ZodTypeDef,
|
|
1975
1975
|
UpdateToolRequestBody3
|
|
1976
1976
|
> = z.object({
|
|
1977
|
-
id: z.string().default("
|
|
1977
|
+
id: z.string().default("01K60CGQ9T6Z9V3EAXFMJ0FRAY"),
|
|
1978
1978
|
path: z.string().optional(),
|
|
1979
1979
|
displayName: z.string().optional(),
|
|
1980
1980
|
description: z.string().optional(),
|
|
@@ -2136,7 +2136,7 @@ export const UpdateToolRequestBody2$inboundSchema: z.ZodType<
|
|
|
2136
2136
|
z.ZodTypeDef,
|
|
2137
2137
|
unknown
|
|
2138
2138
|
> = z.object({
|
|
2139
|
-
_id: z.string().default("
|
|
2139
|
+
_id: z.string().default("01K60CGQ9TV0MT91FZ2G0GP2KM"),
|
|
2140
2140
|
path: z.string().optional(),
|
|
2141
2141
|
display_name: z.string().optional(),
|
|
2142
2142
|
description: z.string().optional(),
|
|
@@ -2172,7 +2172,7 @@ export const UpdateToolRequestBody2$outboundSchema: z.ZodType<
|
|
|
2172
2172
|
z.ZodTypeDef,
|
|
2173
2173
|
UpdateToolRequestBody2
|
|
2174
2174
|
> = z.object({
|
|
2175
|
-
id: z.string().default("
|
|
2175
|
+
id: z.string().default("01K60CGQ9TV0MT91FZ2G0GP2KM"),
|
|
2176
2176
|
path: z.string().optional(),
|
|
2177
2177
|
displayName: z.string().optional(),
|
|
2178
2178
|
description: z.string().optional(),
|
|
@@ -2701,7 +2701,7 @@ export const UpdateToolResponseBody5$inboundSchema: z.ZodType<
|
|
|
2701
2701
|
z.ZodTypeDef,
|
|
2702
2702
|
unknown
|
|
2703
2703
|
> = z.object({
|
|
2704
|
-
_id: z.string().default("
|
|
2704
|
+
_id: z.string().default("01K60CGQ9SHDJ6VPDR1WQ92ZH1"),
|
|
2705
2705
|
path: z.string(),
|
|
2706
2706
|
key: z.string(),
|
|
2707
2707
|
display_name: z.string(),
|
|
@@ -2756,7 +2756,7 @@ export const UpdateToolResponseBody5$outboundSchema: z.ZodType<
|
|
|
2756
2756
|
z.ZodTypeDef,
|
|
2757
2757
|
UpdateToolResponseBody5
|
|
2758
2758
|
> = z.object({
|
|
2759
|
-
id: z.string().default("
|
|
2759
|
+
id: z.string().default("01K60CGQ9SHDJ6VPDR1WQ92ZH1"),
|
|
2760
2760
|
path: z.string(),
|
|
2761
2761
|
key: z.string(),
|
|
2762
2762
|
displayName: z.string(),
|
|
@@ -3130,7 +3130,7 @@ export const UpdateToolResponseBody4$inboundSchema: z.ZodType<
|
|
|
3130
3130
|
z.ZodTypeDef,
|
|
3131
3131
|
unknown
|
|
3132
3132
|
> = z.object({
|
|
3133
|
-
_id: z.string().default("
|
|
3133
|
+
_id: z.string().default("01K60CGQ9S7PNZWTWQ8RTH6VM4"),
|
|
3134
3134
|
path: z.string(),
|
|
3135
3135
|
key: z.string(),
|
|
3136
3136
|
display_name: z.string(),
|
|
@@ -3184,7 +3184,7 @@ export const UpdateToolResponseBody4$outboundSchema: z.ZodType<
|
|
|
3184
3184
|
z.ZodTypeDef,
|
|
3185
3185
|
UpdateToolResponseBody4
|
|
3186
3186
|
> = z.object({
|
|
3187
|
-
id: z.string().default("
|
|
3187
|
+
id: z.string().default("01K60CGQ9S7PNZWTWQ8RTH6VM4"),
|
|
3188
3188
|
path: z.string(),
|
|
3189
3189
|
key: z.string(),
|
|
3190
3190
|
displayName: z.string(),
|
|
@@ -3602,7 +3602,7 @@ export const UpdateToolResponseBody3$inboundSchema: z.ZodType<
|
|
|
3602
3602
|
z.ZodTypeDef,
|
|
3603
3603
|
unknown
|
|
3604
3604
|
> = z.object({
|
|
3605
|
-
_id: z.string().default("
|
|
3605
|
+
_id: z.string().default("01K60CGQ9R0MA44KG89EKX7HJ1"),
|
|
3606
3606
|
path: z.string(),
|
|
3607
3607
|
key: z.string(),
|
|
3608
3608
|
display_name: z.string(),
|
|
@@ -3656,7 +3656,7 @@ export const UpdateToolResponseBody3$outboundSchema: z.ZodType<
|
|
|
3656
3656
|
z.ZodTypeDef,
|
|
3657
3657
|
UpdateToolResponseBody3
|
|
3658
3658
|
> = z.object({
|
|
3659
|
-
id: z.string().default("
|
|
3659
|
+
id: z.string().default("01K60CGQ9R0MA44KG89EKX7HJ1"),
|
|
3660
3660
|
path: z.string(),
|
|
3661
3661
|
key: z.string(),
|
|
3662
3662
|
displayName: z.string(),
|
|
@@ -3830,7 +3830,7 @@ export const UpdateToolResponseBody2$inboundSchema: z.ZodType<
|
|
|
3830
3830
|
z.ZodTypeDef,
|
|
3831
3831
|
unknown
|
|
3832
3832
|
> = z.object({
|
|
3833
|
-
_id: z.string().default("
|
|
3833
|
+
_id: z.string().default("01K60CGQ9RVCZSB3YGPA7FW8KB"),
|
|
3834
3834
|
path: z.string(),
|
|
3835
3835
|
key: z.string(),
|
|
3836
3836
|
display_name: z.string(),
|
|
@@ -3883,7 +3883,7 @@ export const UpdateToolResponseBody2$outboundSchema: z.ZodType<
|
|
|
3883
3883
|
z.ZodTypeDef,
|
|
3884
3884
|
UpdateToolResponseBody2
|
|
3885
3885
|
> = z.object({
|
|
3886
|
-
id: z.string().default("
|
|
3886
|
+
id: z.string().default("01K60CGQ9RVCZSB3YGPA7FW8KB"),
|
|
3887
3887
|
path: z.string(),
|
|
3888
3888
|
key: z.string(),
|
|
3889
3889
|
displayName: z.string(),
|
|
@@ -4055,7 +4055,7 @@ export const UpdateToolResponseBody1$inboundSchema: z.ZodType<
|
|
|
4055
4055
|
z.ZodTypeDef,
|
|
4056
4056
|
unknown
|
|
4057
4057
|
> = z.object({
|
|
4058
|
-
_id: z.string().default("
|
|
4058
|
+
_id: z.string().default("01K60CGQ9QRS30JRTGYREZGV6F"),
|
|
4059
4059
|
path: z.string(),
|
|
4060
4060
|
key: z.string(),
|
|
4061
4061
|
display_name: z.string(),
|
|
@@ -4107,7 +4107,7 @@ export const UpdateToolResponseBody1$outboundSchema: z.ZodType<
|
|
|
4107
4107
|
z.ZodTypeDef,
|
|
4108
4108
|
UpdateToolResponseBody1
|
|
4109
4109
|
> = z.object({
|
|
4110
|
-
id: z.string().default("
|
|
4110
|
+
id: z.string().default("01K60CGQ9QRS30JRTGYREZGV6F"),
|
|
4111
4111
|
path: z.string(),
|
|
4112
4112
|
key: z.string(),
|
|
4113
4113
|
displayName: z.string(),
|
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.12.
|
|
72
|
-
genVersion: "2.716.
|
|
73
|
-
userAgent: "speakeasy-sdk/typescript 3.12.
|
|
71
|
+
sdkVersion: "3.12.19",
|
|
72
|
+
genVersion: "2.716.5",
|
|
73
|
+
userAgent: "speakeasy-sdk/typescript 3.12.19 2.716.5 2.0 @orq-ai/node",
|
|
74
74
|
} as const;
|
package/src/mcp-server/server.ts
CHANGED
|
@@ -655,7 +655,7 @@ export const CreateBudgetResponseBody$inboundSchema: z.ZodType<
|
|
|
655
655
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
656
656
|
.optional(),
|
|
657
657
|
updated: z.string().datetime({ offset: true }).default(
|
|
658
|
-
"2025-09-
|
|
658
|
+
"2025-09-25T12:16:33.705Z",
|
|
659
659
|
).transform(v => new Date(v)),
|
|
660
660
|
}).transform((v) => {
|
|
661
661
|
return remap$(v, {
|
|
@@ -693,7 +693,7 @@ export const CreateBudgetResponseBody$outboundSchema: z.ZodType<
|
|
|
693
693
|
isActive: z.boolean(),
|
|
694
694
|
consumption: z.lazy(() => Consumption$outboundSchema).optional(),
|
|
695
695
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
696
|
-
updated: z.date().default(() => new Date("2025-09-
|
|
696
|
+
updated: z.date().default(() => new Date("2025-09-25T12:16:33.705Z"))
|
|
697
697
|
.transform(v => v.toISOString()),
|
|
698
698
|
}).transform((v) => {
|
|
699
699
|
return remap$(v, {
|
|
@@ -182,7 +182,7 @@ export const CreateContactResponseBody$inboundSchema: z.ZodType<
|
|
|
182
182
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
183
183
|
.optional(),
|
|
184
184
|
updated: z.string().datetime({ offset: true }).default(
|
|
185
|
-
"2025-09-
|
|
185
|
+
"2025-09-25T12:16:33.705Z",
|
|
186
186
|
).transform(v => new Date(v)),
|
|
187
187
|
}).transform((v) => {
|
|
188
188
|
return remap$(v, {
|
|
@@ -223,7 +223,7 @@ export const CreateContactResponseBody$outboundSchema: z.ZodType<
|
|
|
223
223
|
tags: z.array(z.string()).optional(),
|
|
224
224
|
metadata: z.record(z.any()).optional(),
|
|
225
225
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
226
|
-
updated: z.date().default(() => new Date("2025-09-
|
|
226
|
+
updated: z.date().default(() => new Date("2025-09-25T12:16:33.705Z"))
|
|
227
227
|
.transform(v => v.toISOString()),
|
|
228
228
|
}).transform((v) => {
|
|
229
229
|
return remap$(v, {
|