@orq-ai/node 3.14.28 → 3.14.29
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 +210 -210
- 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 +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 +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/examples/package-lock.json +1 -1
- package/packages/orq-rc/jsr.json +1 -1
- package/packages/orq-rc/package-lock.json +2 -2
- package/packages/orq-rc/package.json +1 -1
- package/packages/orq-rc/src/lib/config.ts +2 -2
- package/packages/orq-rc/src/mcp-server/mcp-server.ts +1 -1
- package/packages/orq-rc/src/mcp-server/server.ts +1 -1
- package/packages/orq-rc/src/models/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 +28 -28
- package/packages/orq-rc/src/models/operations/createtool.ts +149 -38
- package/packages/orq-rc/src/models/operations/duplicatetool.ts +70 -14
- 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/getalltools.ts +63 -14
- 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/listbudgets.ts +2 -2
- package/packages/orq-rc/src/models/operations/listcontacts.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +8 -8
- 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 +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 +70 -14
- package/packages/orq-rc/src/models/operations/runagent.ts +44 -4
- package/packages/orq-rc/src/models/operations/streamrunagent.ts +53 -4
- 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 +151 -36
- 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 +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
|
@@ -277,6 +277,11 @@ export type DuplicateToolResponseBodyMethod = ClosedEnum<
|
|
|
277
277
|
typeof DuplicateToolResponseBodyMethod
|
|
278
278
|
>;
|
|
279
279
|
|
|
280
|
+
export type DuplicateToolResponseBodyToolsHeaders = {
|
|
281
|
+
value: string;
|
|
282
|
+
encrypted?: boolean | undefined;
|
|
283
|
+
};
|
|
284
|
+
|
|
280
285
|
/**
|
|
281
286
|
* The blueprint for the HTTP request. The `arguments` field will be used to replace the placeholders in the `url`, `headers`, `body`, and `arguments` fields.
|
|
282
287
|
*/
|
|
@@ -292,7 +297,7 @@ export type DuplicateToolResponseBodyBlueprint = {
|
|
|
292
297
|
/**
|
|
293
298
|
* The headers to send with the request.
|
|
294
299
|
*/
|
|
295
|
-
headers?: { [k: string]:
|
|
300
|
+
headers?: { [k: string]: DuplicateToolResponseBodyToolsHeaders } | undefined;
|
|
296
301
|
/**
|
|
297
302
|
* The body to send with the request.
|
|
298
303
|
*/
|
|
@@ -716,7 +721,7 @@ export const DuplicateToolResponseBody5$inboundSchema: z.ZodType<
|
|
|
716
721
|
z.ZodTypeDef,
|
|
717
722
|
unknown
|
|
718
723
|
> = z.object({
|
|
719
|
-
_id: z.string().default("
|
|
724
|
+
_id: z.string().default("01K9PVD4J28KT6D2MQD7A8K0RK"),
|
|
720
725
|
path: z.string(),
|
|
721
726
|
key: z.string(),
|
|
722
727
|
display_name: z.string().optional(),
|
|
@@ -771,7 +776,7 @@ export const DuplicateToolResponseBody5$outboundSchema: z.ZodType<
|
|
|
771
776
|
z.ZodTypeDef,
|
|
772
777
|
DuplicateToolResponseBody5
|
|
773
778
|
> = z.object({
|
|
774
|
-
id: z.string().default("
|
|
779
|
+
id: z.string().default("01K9PVD4J28KT6D2MQD7A8K0RK"),
|
|
775
780
|
path: z.string(),
|
|
776
781
|
key: z.string(),
|
|
777
782
|
displayName: z.string().optional(),
|
|
@@ -1042,7 +1047,7 @@ export const DuplicateToolResponseBody4$inboundSchema: z.ZodType<
|
|
|
1042
1047
|
z.ZodTypeDef,
|
|
1043
1048
|
unknown
|
|
1044
1049
|
> = z.object({
|
|
1045
|
-
_id: z.string().default("
|
|
1050
|
+
_id: z.string().default("01K9PVD4HZW005KP4DABZNV3SY"),
|
|
1046
1051
|
path: z.string(),
|
|
1047
1052
|
key: z.string(),
|
|
1048
1053
|
display_name: z.string().optional(),
|
|
@@ -1095,7 +1100,7 @@ export const DuplicateToolResponseBody4$outboundSchema: z.ZodType<
|
|
|
1095
1100
|
z.ZodTypeDef,
|
|
1096
1101
|
DuplicateToolResponseBody4
|
|
1097
1102
|
> = z.object({
|
|
1098
|
-
id: z.string().default("
|
|
1103
|
+
id: z.string().default("01K9PVD4HZW005KP4DABZNV3SY"),
|
|
1099
1104
|
path: z.string(),
|
|
1100
1105
|
key: z.string(),
|
|
1101
1106
|
displayName: z.string().optional(),
|
|
@@ -1167,6 +1172,51 @@ export const DuplicateToolResponseBodyMethod$outboundSchema: z.ZodNativeEnum<
|
|
|
1167
1172
|
typeof DuplicateToolResponseBodyMethod
|
|
1168
1173
|
> = DuplicateToolResponseBodyMethod$inboundSchema;
|
|
1169
1174
|
|
|
1175
|
+
/** @internal */
|
|
1176
|
+
export const DuplicateToolResponseBodyToolsHeaders$inboundSchema: z.ZodType<
|
|
1177
|
+
DuplicateToolResponseBodyToolsHeaders,
|
|
1178
|
+
z.ZodTypeDef,
|
|
1179
|
+
unknown
|
|
1180
|
+
> = z.object({
|
|
1181
|
+
value: z.string(),
|
|
1182
|
+
encrypted: z.boolean().default(false),
|
|
1183
|
+
});
|
|
1184
|
+
/** @internal */
|
|
1185
|
+
export type DuplicateToolResponseBodyToolsHeaders$Outbound = {
|
|
1186
|
+
value: string;
|
|
1187
|
+
encrypted: boolean;
|
|
1188
|
+
};
|
|
1189
|
+
|
|
1190
|
+
/** @internal */
|
|
1191
|
+
export const DuplicateToolResponseBodyToolsHeaders$outboundSchema: z.ZodType<
|
|
1192
|
+
DuplicateToolResponseBodyToolsHeaders$Outbound,
|
|
1193
|
+
z.ZodTypeDef,
|
|
1194
|
+
DuplicateToolResponseBodyToolsHeaders
|
|
1195
|
+
> = z.object({
|
|
1196
|
+
value: z.string(),
|
|
1197
|
+
encrypted: z.boolean().default(false),
|
|
1198
|
+
});
|
|
1199
|
+
|
|
1200
|
+
export function duplicateToolResponseBodyToolsHeadersToJSON(
|
|
1201
|
+
duplicateToolResponseBodyToolsHeaders: DuplicateToolResponseBodyToolsHeaders,
|
|
1202
|
+
): string {
|
|
1203
|
+
return JSON.stringify(
|
|
1204
|
+
DuplicateToolResponseBodyToolsHeaders$outboundSchema.parse(
|
|
1205
|
+
duplicateToolResponseBodyToolsHeaders,
|
|
1206
|
+
),
|
|
1207
|
+
);
|
|
1208
|
+
}
|
|
1209
|
+
export function duplicateToolResponseBodyToolsHeadersFromJSON(
|
|
1210
|
+
jsonString: string,
|
|
1211
|
+
): SafeParseResult<DuplicateToolResponseBodyToolsHeaders, SDKValidationError> {
|
|
1212
|
+
return safeParse(
|
|
1213
|
+
jsonString,
|
|
1214
|
+
(x) =>
|
|
1215
|
+
DuplicateToolResponseBodyToolsHeaders$inboundSchema.parse(JSON.parse(x)),
|
|
1216
|
+
`Failed to parse 'DuplicateToolResponseBodyToolsHeaders' from JSON`,
|
|
1217
|
+
);
|
|
1218
|
+
}
|
|
1219
|
+
|
|
1170
1220
|
/** @internal */
|
|
1171
1221
|
export const DuplicateToolResponseBodyBlueprint$inboundSchema: z.ZodType<
|
|
1172
1222
|
DuplicateToolResponseBodyBlueprint,
|
|
@@ -1175,14 +1225,18 @@ export const DuplicateToolResponseBodyBlueprint$inboundSchema: z.ZodType<
|
|
|
1175
1225
|
> = z.object({
|
|
1176
1226
|
url: z.string(),
|
|
1177
1227
|
method: DuplicateToolResponseBodyMethod$inboundSchema,
|
|
1178
|
-
headers: z.record(
|
|
1228
|
+
headers: z.record(
|
|
1229
|
+
z.lazy(() => DuplicateToolResponseBodyToolsHeaders$inboundSchema),
|
|
1230
|
+
).optional(),
|
|
1179
1231
|
body: z.record(z.any()).optional(),
|
|
1180
1232
|
});
|
|
1181
1233
|
/** @internal */
|
|
1182
1234
|
export type DuplicateToolResponseBodyBlueprint$Outbound = {
|
|
1183
1235
|
url: string;
|
|
1184
1236
|
method: string;
|
|
1185
|
-
headers?:
|
|
1237
|
+
headers?:
|
|
1238
|
+
| { [k: string]: DuplicateToolResponseBodyToolsHeaders$Outbound }
|
|
1239
|
+
| undefined;
|
|
1186
1240
|
body?: { [k: string]: any } | undefined;
|
|
1187
1241
|
};
|
|
1188
1242
|
|
|
@@ -1194,7 +1248,9 @@ export const DuplicateToolResponseBodyBlueprint$outboundSchema: z.ZodType<
|
|
|
1194
1248
|
> = z.object({
|
|
1195
1249
|
url: z.string(),
|
|
1196
1250
|
method: DuplicateToolResponseBodyMethod$outboundSchema,
|
|
1197
|
-
headers: z.record(
|
|
1251
|
+
headers: z.record(
|
|
1252
|
+
z.lazy(() => DuplicateToolResponseBodyToolsHeaders$outboundSchema),
|
|
1253
|
+
).optional(),
|
|
1198
1254
|
body: z.record(z.any()).optional(),
|
|
1199
1255
|
});
|
|
1200
1256
|
|
|
@@ -1390,7 +1446,7 @@ export const DuplicateToolResponseBody3$inboundSchema: z.ZodType<
|
|
|
1390
1446
|
z.ZodTypeDef,
|
|
1391
1447
|
unknown
|
|
1392
1448
|
> = z.object({
|
|
1393
|
-
_id: z.string().default("
|
|
1449
|
+
_id: z.string().default("01K9PVD4HY6TEK80AZK4MR3XB8"),
|
|
1394
1450
|
path: z.string(),
|
|
1395
1451
|
key: z.string(),
|
|
1396
1452
|
display_name: z.string().optional(),
|
|
@@ -1443,7 +1499,7 @@ export const DuplicateToolResponseBody3$outboundSchema: z.ZodType<
|
|
|
1443
1499
|
z.ZodTypeDef,
|
|
1444
1500
|
DuplicateToolResponseBody3
|
|
1445
1501
|
> = z.object({
|
|
1446
|
-
id: z.string().default("
|
|
1502
|
+
id: z.string().default("01K9PVD4HY6TEK80AZK4MR3XB8"),
|
|
1447
1503
|
path: z.string(),
|
|
1448
1504
|
key: z.string(),
|
|
1449
1505
|
displayName: z.string().optional(),
|
|
@@ -1565,7 +1621,7 @@ export const DuplicateToolResponseBody2$inboundSchema: z.ZodType<
|
|
|
1565
1621
|
z.ZodTypeDef,
|
|
1566
1622
|
unknown
|
|
1567
1623
|
> = z.object({
|
|
1568
|
-
_id: z.string().default("
|
|
1624
|
+
_id: z.string().default("01K9PVD4HW1DKYRCE3NZPT0QRT"),
|
|
1569
1625
|
path: z.string(),
|
|
1570
1626
|
key: z.string(),
|
|
1571
1627
|
display_name: z.string().optional(),
|
|
@@ -1617,7 +1673,7 @@ export const DuplicateToolResponseBody2$outboundSchema: z.ZodType<
|
|
|
1617
1673
|
z.ZodTypeDef,
|
|
1618
1674
|
DuplicateToolResponseBody2
|
|
1619
1675
|
> = z.object({
|
|
1620
|
-
id: z.string().default("
|
|
1676
|
+
id: z.string().default("01K9PVD4HW1DKYRCE3NZPT0QRT"),
|
|
1621
1677
|
path: z.string(),
|
|
1622
1678
|
key: z.string(),
|
|
1623
1679
|
displayName: z.string().optional(),
|
|
@@ -1736,7 +1792,7 @@ export const DuplicateToolResponseBody1$inboundSchema: z.ZodType<
|
|
|
1736
1792
|
z.ZodTypeDef,
|
|
1737
1793
|
unknown
|
|
1738
1794
|
> = z.object({
|
|
1739
|
-
_id: z.string().default("
|
|
1795
|
+
_id: z.string().default("01K9PVD4HV5N1BBF5FNQ2MYCH1"),
|
|
1740
1796
|
path: z.string(),
|
|
1741
1797
|
key: z.string(),
|
|
1742
1798
|
display_name: z.string().optional(),
|
|
@@ -1787,7 +1843,7 @@ export const DuplicateToolResponseBody1$outboundSchema: z.ZodType<
|
|
|
1787
1843
|
z.ZodTypeDef,
|
|
1788
1844
|
DuplicateToolResponseBody1
|
|
1789
1845
|
> = z.object({
|
|
1790
|
-
id: z.string().default("
|
|
1846
|
+
id: z.string().default("01K9PVD4HV5N1BBF5FNQ2MYCH1"),
|
|
1791
1847
|
path: z.string(),
|
|
1792
1848
|
key: z.string(),
|
|
1793
1849
|
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-10T12:21:04.916Z",
|
|
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-10T12:21:04.916Z"))
|
|
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-10T12:21:04.916Z",
|
|
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-10T12:21:04.916Z"))
|
|
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-10T12:21:04.916Z",
|
|
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-10T12:21:04.916Z"))
|
|
233
233
|
.transform(v => v.toISOString()),
|
|
234
234
|
}).transform((v) => {
|
|
235
235
|
return remap$(v, {
|
|
@@ -280,6 +280,11 @@ export const GetAllToolsDataMethod = {
|
|
|
280
280
|
*/
|
|
281
281
|
export type GetAllToolsDataMethod = ClosedEnum<typeof GetAllToolsDataMethod>;
|
|
282
282
|
|
|
283
|
+
export type GetAllToolsDataHeaders = {
|
|
284
|
+
value: string;
|
|
285
|
+
encrypted?: boolean | undefined;
|
|
286
|
+
};
|
|
287
|
+
|
|
283
288
|
/**
|
|
284
289
|
* The blueprint for the HTTP request. The `arguments` field will be used to replace the placeholders in the `url`, `headers`, `body`, and `arguments` fields.
|
|
285
290
|
*/
|
|
@@ -295,7 +300,7 @@ export type DataBlueprint = {
|
|
|
295
300
|
/**
|
|
296
301
|
* The headers to send with the request.
|
|
297
302
|
*/
|
|
298
|
-
headers?: { [k: string]:
|
|
303
|
+
headers?: { [k: string]: GetAllToolsDataHeaders } | undefined;
|
|
299
304
|
/**
|
|
300
305
|
* The body to send with the request.
|
|
301
306
|
*/
|
|
@@ -711,7 +716,7 @@ export function dataCodeToolFromJSON(
|
|
|
711
716
|
/** @internal */
|
|
712
717
|
export const Data5$inboundSchema: z.ZodType<Data5, z.ZodTypeDef, unknown> = z
|
|
713
718
|
.object({
|
|
714
|
-
_id: z.string().default("
|
|
719
|
+
_id: z.string().default("01K9PVD4G840RW8XRPP690P9YF"),
|
|
715
720
|
path: z.string(),
|
|
716
721
|
key: z.string(),
|
|
717
722
|
display_name: z.string().optional(),
|
|
@@ -763,7 +768,7 @@ export const Data5$outboundSchema: z.ZodType<
|
|
|
763
768
|
z.ZodTypeDef,
|
|
764
769
|
Data5
|
|
765
770
|
> = z.object({
|
|
766
|
-
id: z.string().default("
|
|
771
|
+
id: z.string().default("01K9PVD4G840RW8XRPP690P9YF"),
|
|
767
772
|
path: z.string(),
|
|
768
773
|
key: z.string(),
|
|
769
774
|
displayName: z.string().optional(),
|
|
@@ -994,7 +999,7 @@ export function dataMcpFromJSON(
|
|
|
994
999
|
/** @internal */
|
|
995
1000
|
export const Data4$inboundSchema: z.ZodType<Data4, z.ZodTypeDef, unknown> = z
|
|
996
1001
|
.object({
|
|
997
|
-
_id: z.string().default("
|
|
1002
|
+
_id: z.string().default("01K9PVD4G6SSD4EYY3BF7JWKRS"),
|
|
998
1003
|
path: z.string(),
|
|
999
1004
|
key: z.string(),
|
|
1000
1005
|
display_name: z.string().optional(),
|
|
@@ -1045,7 +1050,7 @@ export const Data4$outboundSchema: z.ZodType<
|
|
|
1045
1050
|
z.ZodTypeDef,
|
|
1046
1051
|
Data4
|
|
1047
1052
|
> = z.object({
|
|
1048
|
-
id: z.string().default("
|
|
1053
|
+
id: z.string().default("01K9PVD4G6SSD4EYY3BF7JWKRS"),
|
|
1049
1054
|
path: z.string(),
|
|
1050
1055
|
key: z.string(),
|
|
1051
1056
|
displayName: z.string().optional(),
|
|
@@ -1112,6 +1117,48 @@ export const GetAllToolsDataMethod$outboundSchema: z.ZodNativeEnum<
|
|
|
1112
1117
|
typeof GetAllToolsDataMethod
|
|
1113
1118
|
> = GetAllToolsDataMethod$inboundSchema;
|
|
1114
1119
|
|
|
1120
|
+
/** @internal */
|
|
1121
|
+
export const GetAllToolsDataHeaders$inboundSchema: z.ZodType<
|
|
1122
|
+
GetAllToolsDataHeaders,
|
|
1123
|
+
z.ZodTypeDef,
|
|
1124
|
+
unknown
|
|
1125
|
+
> = z.object({
|
|
1126
|
+
value: z.string(),
|
|
1127
|
+
encrypted: z.boolean().default(false),
|
|
1128
|
+
});
|
|
1129
|
+
/** @internal */
|
|
1130
|
+
export type GetAllToolsDataHeaders$Outbound = {
|
|
1131
|
+
value: string;
|
|
1132
|
+
encrypted: boolean;
|
|
1133
|
+
};
|
|
1134
|
+
|
|
1135
|
+
/** @internal */
|
|
1136
|
+
export const GetAllToolsDataHeaders$outboundSchema: z.ZodType<
|
|
1137
|
+
GetAllToolsDataHeaders$Outbound,
|
|
1138
|
+
z.ZodTypeDef,
|
|
1139
|
+
GetAllToolsDataHeaders
|
|
1140
|
+
> = z.object({
|
|
1141
|
+
value: z.string(),
|
|
1142
|
+
encrypted: z.boolean().default(false),
|
|
1143
|
+
});
|
|
1144
|
+
|
|
1145
|
+
export function getAllToolsDataHeadersToJSON(
|
|
1146
|
+
getAllToolsDataHeaders: GetAllToolsDataHeaders,
|
|
1147
|
+
): string {
|
|
1148
|
+
return JSON.stringify(
|
|
1149
|
+
GetAllToolsDataHeaders$outboundSchema.parse(getAllToolsDataHeaders),
|
|
1150
|
+
);
|
|
1151
|
+
}
|
|
1152
|
+
export function getAllToolsDataHeadersFromJSON(
|
|
1153
|
+
jsonString: string,
|
|
1154
|
+
): SafeParseResult<GetAllToolsDataHeaders, SDKValidationError> {
|
|
1155
|
+
return safeParse(
|
|
1156
|
+
jsonString,
|
|
1157
|
+
(x) => GetAllToolsDataHeaders$inboundSchema.parse(JSON.parse(x)),
|
|
1158
|
+
`Failed to parse 'GetAllToolsDataHeaders' from JSON`,
|
|
1159
|
+
);
|
|
1160
|
+
}
|
|
1161
|
+
|
|
1115
1162
|
/** @internal */
|
|
1116
1163
|
export const DataBlueprint$inboundSchema: z.ZodType<
|
|
1117
1164
|
DataBlueprint,
|
|
@@ -1120,14 +1167,15 @@ export const DataBlueprint$inboundSchema: z.ZodType<
|
|
|
1120
1167
|
> = z.object({
|
|
1121
1168
|
url: z.string(),
|
|
1122
1169
|
method: GetAllToolsDataMethod$inboundSchema,
|
|
1123
|
-
headers: z.record(z.
|
|
1170
|
+
headers: z.record(z.lazy(() => GetAllToolsDataHeaders$inboundSchema))
|
|
1171
|
+
.optional(),
|
|
1124
1172
|
body: z.record(z.any()).optional(),
|
|
1125
1173
|
});
|
|
1126
1174
|
/** @internal */
|
|
1127
1175
|
export type DataBlueprint$Outbound = {
|
|
1128
1176
|
url: string;
|
|
1129
1177
|
method: string;
|
|
1130
|
-
headers?: { [k: string]:
|
|
1178
|
+
headers?: { [k: string]: GetAllToolsDataHeaders$Outbound } | undefined;
|
|
1131
1179
|
body?: { [k: string]: any } | undefined;
|
|
1132
1180
|
};
|
|
1133
1181
|
|
|
@@ -1139,7 +1187,8 @@ export const DataBlueprint$outboundSchema: z.ZodType<
|
|
|
1139
1187
|
> = z.object({
|
|
1140
1188
|
url: z.string(),
|
|
1141
1189
|
method: GetAllToolsDataMethod$outboundSchema,
|
|
1142
|
-
headers: z.record(z.
|
|
1190
|
+
headers: z.record(z.lazy(() => GetAllToolsDataHeaders$outboundSchema))
|
|
1191
|
+
.optional(),
|
|
1143
1192
|
body: z.record(z.any()).optional(),
|
|
1144
1193
|
});
|
|
1145
1194
|
|
|
@@ -1304,7 +1353,7 @@ export function getAllToolsDataHttpFromJSON(
|
|
|
1304
1353
|
/** @internal */
|
|
1305
1354
|
export const Data3$inboundSchema: z.ZodType<Data3, z.ZodTypeDef, unknown> = z
|
|
1306
1355
|
.object({
|
|
1307
|
-
_id: z.string().default("
|
|
1356
|
+
_id: z.string().default("01K9PVD4G4S5NS380DGGMNENAH"),
|
|
1308
1357
|
path: z.string(),
|
|
1309
1358
|
key: z.string(),
|
|
1310
1359
|
display_name: z.string().optional(),
|
|
@@ -1355,7 +1404,7 @@ export const Data3$outboundSchema: z.ZodType<
|
|
|
1355
1404
|
z.ZodTypeDef,
|
|
1356
1405
|
Data3
|
|
1357
1406
|
> = z.object({
|
|
1358
|
-
id: z.string().default("
|
|
1407
|
+
id: z.string().default("01K9PVD4G4S5NS380DGGMNENAH"),
|
|
1359
1408
|
path: z.string(),
|
|
1360
1409
|
key: z.string(),
|
|
1361
1410
|
displayName: z.string().optional(),
|
|
@@ -1460,7 +1509,7 @@ export function dataJsonSchemaFromJSON(
|
|
|
1460
1509
|
/** @internal */
|
|
1461
1510
|
export const Data2$inboundSchema: z.ZodType<Data2, z.ZodTypeDef, unknown> = z
|
|
1462
1511
|
.object({
|
|
1463
|
-
_id: z.string().default("
|
|
1512
|
+
_id: z.string().default("01K9PVD4G359H09Y1VB3SSGPM7"),
|
|
1464
1513
|
path: z.string(),
|
|
1465
1514
|
key: z.string(),
|
|
1466
1515
|
display_name: z.string().optional(),
|
|
@@ -1512,7 +1561,7 @@ export const Data2$outboundSchema: z.ZodType<
|
|
|
1512
1561
|
z.ZodTypeDef,
|
|
1513
1562
|
Data2
|
|
1514
1563
|
> = z.object({
|
|
1515
|
-
id: z.string().default("
|
|
1564
|
+
id: z.string().default("01K9PVD4G359H09Y1VB3SSGPM7"),
|
|
1516
1565
|
path: z.string(),
|
|
1517
1566
|
key: z.string(),
|
|
1518
1567
|
displayName: z.string().optional(),
|
|
@@ -1620,7 +1669,7 @@ export function getAllToolsDataFunctionFromJSON(
|
|
|
1620
1669
|
/** @internal */
|
|
1621
1670
|
export const Data1$inboundSchema: z.ZodType<Data1, z.ZodTypeDef, unknown> = z
|
|
1622
1671
|
.object({
|
|
1623
|
-
_id: z.string().default("
|
|
1672
|
+
_id: z.string().default("01K9PVD4G162E6W06FGC91DSAE"),
|
|
1624
1673
|
path: z.string(),
|
|
1625
1674
|
key: z.string(),
|
|
1626
1675
|
display_name: z.string().optional(),
|
|
@@ -1671,7 +1720,7 @@ export const Data1$outboundSchema: z.ZodType<
|
|
|
1671
1720
|
z.ZodTypeDef,
|
|
1672
1721
|
Data1
|
|
1673
1722
|
> = z.object({
|
|
1674
|
-
id: z.string().default("
|
|
1723
|
+
id: z.string().default("01K9PVD4G162E6W06FGC91DSAE"),
|
|
1675
1724
|
path: z.string(),
|
|
1676
1725
|
key: z.string(),
|
|
1677
1726
|
displayName: z.string().optional(),
|
|
@@ -291,7 +291,7 @@ export const GetBudgetResponseBody$inboundSchema: z.ZodType<
|
|
|
291
291
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
292
292
|
.optional(),
|
|
293
293
|
updated: z.string().datetime({ offset: true }).default(
|
|
294
|
-
"2025-11-
|
|
294
|
+
"2025-11-10T12:21:01.506Z",
|
|
295
295
|
).transform(v => new Date(v)),
|
|
296
296
|
}).transform((v) => {
|
|
297
297
|
return remap$(v, {
|
|
@@ -328,7 +328,7 @@ export const GetBudgetResponseBody$outboundSchema: z.ZodType<
|
|
|
328
328
|
isActive: z.boolean(),
|
|
329
329
|
consumption: z.lazy(() => GetBudgetConsumption$outboundSchema).optional(),
|
|
330
330
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
331
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
331
|
+
updated: z.date().default(() => new Date("2025-11-10T12:21:01.506Z"))
|
|
332
332
|
.transform(v => v.toISOString()),
|
|
333
333
|
}).transform((v) => {
|
|
334
334
|
return remap$(v, {
|
|
@@ -1417,8 +1417,8 @@ export const DataTypescript$inboundSchema: z.ZodType<
|
|
|
1417
1417
|
> = z.object({
|
|
1418
1418
|
_id: z.string(),
|
|
1419
1419
|
description: z.string(),
|
|
1420
|
-
created: z.string().default("2025-11-
|
|
1421
|
-
updated: z.string().default("2025-11-
|
|
1420
|
+
created: z.string().default("2025-11-10T12:21:03.841Z"),
|
|
1421
|
+
updated: z.string().default("2025-11-10T12:21:03.841Z"),
|
|
1422
1422
|
guardrail_config: z.union([
|
|
1423
1423
|
z.lazy(() =>
|
|
1424
1424
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema
|
|
@@ -1459,8 +1459,8 @@ export const DataTypescript$outboundSchema: z.ZodType<
|
|
|
1459
1459
|
> = z.object({
|
|
1460
1460
|
id: z.string(),
|
|
1461
1461
|
description: z.string(),
|
|
1462
|
-
created: z.string().default("2025-11-
|
|
1463
|
-
updated: z.string().default("2025-11-
|
|
1462
|
+
created: z.string().default("2025-11-10T12:21:03.841Z"),
|
|
1463
|
+
updated: z.string().default("2025-11-10T12:21:03.841Z"),
|
|
1464
1464
|
guardrailConfig: z.union([
|
|
1465
1465
|
z.lazy(() =>
|
|
1466
1466
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema
|
|
@@ -1726,8 +1726,8 @@ export const DataRagas$inboundSchema: z.ZodType<
|
|
|
1726
1726
|
> = z.object({
|
|
1727
1727
|
_id: z.string(),
|
|
1728
1728
|
description: z.string(),
|
|
1729
|
-
created: z.string().default("2025-11-
|
|
1730
|
-
updated: z.string().default("2025-11-
|
|
1729
|
+
created: z.string().default("2025-11-10T12:21:03.841Z"),
|
|
1730
|
+
updated: z.string().default("2025-11-10T12:21:03.841Z"),
|
|
1731
1731
|
guardrail_config: z.union([
|
|
1732
1732
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
1733
1733
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema),
|
|
@@ -1767,8 +1767,8 @@ export const DataRagas$outboundSchema: z.ZodType<
|
|
|
1767
1767
|
> = z.object({
|
|
1768
1768
|
id: z.string(),
|
|
1769
1769
|
description: z.string(),
|
|
1770
|
-
created: z.string().default("2025-11-
|
|
1771
|
-
updated: z.string().default("2025-11-
|
|
1770
|
+
created: z.string().default("2025-11-10T12:21:03.841Z"),
|
|
1771
|
+
updated: z.string().default("2025-11-10T12:21:03.841Z"),
|
|
1772
1772
|
guardrailConfig: z.union([
|
|
1773
1773
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
1774
1774
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema),
|
|
@@ -4090,8 +4090,8 @@ export const DataFunction$inboundSchema: z.ZodType<
|
|
|
4090
4090
|
> = z.object({
|
|
4091
4091
|
_id: z.string(),
|
|
4092
4092
|
description: z.string(),
|
|
4093
|
-
created: z.string().default("2025-11-
|
|
4094
|
-
updated: z.string().default("2025-11-
|
|
4093
|
+
created: z.string().default("2025-11-10T12:21:03.841Z"),
|
|
4094
|
+
updated: z.string().default("2025-11-10T12:21:03.841Z"),
|
|
4095
4095
|
guardrail_config: z.union([
|
|
4096
4096
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
4097
4097
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
@@ -4200,8 +4200,8 @@ export const DataFunction$outboundSchema: z.ZodType<
|
|
|
4200
4200
|
> = z.object({
|
|
4201
4201
|
id: z.string(),
|
|
4202
4202
|
description: z.string(),
|
|
4203
|
-
created: z.string().default("2025-11-
|
|
4204
|
-
updated: z.string().default("2025-11-
|
|
4203
|
+
created: z.string().default("2025-11-10T12:21:03.841Z"),
|
|
4204
|
+
updated: z.string().default("2025-11-10T12:21:03.841Z"),
|
|
4205
4205
|
guardrailConfig: z.union([
|
|
4206
4206
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
4207
4207
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
@@ -4467,8 +4467,8 @@ export const DataPython$inboundSchema: z.ZodType<
|
|
|
4467
4467
|
> = z.object({
|
|
4468
4468
|
_id: z.string(),
|
|
4469
4469
|
description: z.string(),
|
|
4470
|
-
created: z.string().default("2025-11-
|
|
4471
|
-
updated: z.string().default("2025-11-
|
|
4470
|
+
created: z.string().default("2025-11-10T12:21:03.841Z"),
|
|
4471
|
+
updated: z.string().default("2025-11-10T12:21:03.841Z"),
|
|
4472
4472
|
guardrail_config: z.union([
|
|
4473
4473
|
z.lazy(() => GetEvalsGuardrailConfigEvalsNumber$inboundSchema),
|
|
4474
4474
|
z.lazy(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema),
|
|
@@ -4505,8 +4505,8 @@ export const DataPython$outboundSchema: z.ZodType<
|
|
|
4505
4505
|
> = z.object({
|
|
4506
4506
|
id: z.string(),
|
|
4507
4507
|
description: z.string(),
|
|
4508
|
-
created: z.string().default("2025-11-
|
|
4509
|
-
updated: z.string().default("2025-11-
|
|
4508
|
+
created: z.string().default("2025-11-10T12:21:03.841Z"),
|
|
4509
|
+
updated: z.string().default("2025-11-10T12:21:03.841Z"),
|
|
4510
4510
|
guardrailConfig: z.union([
|
|
4511
4511
|
z.lazy(() => GetEvalsGuardrailConfigEvalsNumber$outboundSchema),
|
|
4512
4512
|
z.lazy(() => GetEvalsGuardrailConfigEvalsBoolean$outboundSchema),
|
|
@@ -4729,8 +4729,8 @@ export const DataHTTP$inboundSchema: z.ZodType<
|
|
|
4729
4729
|
> = z.object({
|
|
4730
4730
|
_id: z.string(),
|
|
4731
4731
|
description: z.string(),
|
|
4732
|
-
created: z.string().default("2025-11-
|
|
4733
|
-
updated: z.string().default("2025-11-
|
|
4732
|
+
created: z.string().default("2025-11-10T12:21:03.841Z"),
|
|
4733
|
+
updated: z.string().default("2025-11-10T12:21:03.841Z"),
|
|
4734
4734
|
guardrail_config: z.union([
|
|
4735
4735
|
z.lazy(() => GetEvalsGuardrailConfigNumber$inboundSchema),
|
|
4736
4736
|
z.lazy(() => GetEvalsGuardrailConfigBoolean$inboundSchema),
|
|
@@ -4773,8 +4773,8 @@ export const DataHTTP$outboundSchema: z.ZodType<
|
|
|
4773
4773
|
> = z.object({
|
|
4774
4774
|
id: z.string(),
|
|
4775
4775
|
description: z.string(),
|
|
4776
|
-
created: z.string().default("2025-11-
|
|
4777
|
-
updated: z.string().default("2025-11-
|
|
4776
|
+
created: z.string().default("2025-11-10T12:21:03.841Z"),
|
|
4777
|
+
updated: z.string().default("2025-11-10T12:21:03.841Z"),
|
|
4778
4778
|
guardrailConfig: z.union([
|
|
4779
4779
|
z.lazy(() => GetEvalsGuardrailConfigNumber$outboundSchema),
|
|
4780
4780
|
z.lazy(() => GetEvalsGuardrailConfigBoolean$outboundSchema),
|
|
@@ -5020,8 +5020,8 @@ export const DataJSON$inboundSchema: z.ZodType<
|
|
|
5020
5020
|
> = z.object({
|
|
5021
5021
|
_id: z.string(),
|
|
5022
5022
|
description: z.string(),
|
|
5023
|
-
created: z.string().default("2025-11-
|
|
5024
|
-
updated: z.string().default("2025-11-
|
|
5023
|
+
created: z.string().default("2025-11-10T12:21:03.841Z"),
|
|
5024
|
+
updated: z.string().default("2025-11-10T12:21:03.841Z"),
|
|
5025
5025
|
guardrail_config: z.union([
|
|
5026
5026
|
z.lazy(() =>
|
|
5027
5027
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$inboundSchema
|
|
@@ -5062,8 +5062,8 @@ export const DataJSON$outboundSchema: z.ZodType<
|
|
|
5062
5062
|
> = z.object({
|
|
5063
5063
|
id: z.string(),
|
|
5064
5064
|
description: z.string(),
|
|
5065
|
-
created: z.string().default("2025-11-
|
|
5066
|
-
updated: z.string().default("2025-11-
|
|
5065
|
+
created: z.string().default("2025-11-10T12:21:03.841Z"),
|
|
5066
|
+
updated: z.string().default("2025-11-10T12:21:03.841Z"),
|
|
5067
5067
|
guardrailConfig: z.union([
|
|
5068
5068
|
z.lazy(() =>
|
|
5069
5069
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$outboundSchema
|
|
@@ -5329,8 +5329,8 @@ export const DataLLM$inboundSchema: z.ZodType<DataLLM, z.ZodTypeDef, unknown> =
|
|
|
5329
5329
|
z.object({
|
|
5330
5330
|
_id: z.string(),
|
|
5331
5331
|
description: z.string(),
|
|
5332
|
-
created: z.string().default("2025-11-
|
|
5333
|
-
updated: z.string().default("2025-11-
|
|
5332
|
+
created: z.string().default("2025-11-10T12:21:03.841Z"),
|
|
5333
|
+
updated: z.string().default("2025-11-10T12:21:03.841Z"),
|
|
5334
5334
|
guardrail_config: z.union([
|
|
5335
5335
|
z.lazy(() =>
|
|
5336
5336
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema
|
|
@@ -5374,8 +5374,8 @@ export const DataLLM$outboundSchema: z.ZodType<
|
|
|
5374
5374
|
> = z.object({
|
|
5375
5375
|
id: z.string(),
|
|
5376
5376
|
description: z.string(),
|
|
5377
|
-
created: z.string().default("2025-11-
|
|
5378
|
-
updated: z.string().default("2025-11-
|
|
5377
|
+
created: z.string().default("2025-11-10T12:21:03.841Z"),
|
|
5378
|
+
updated: z.string().default("2025-11-10T12:21:03.841Z"),
|
|
5379
5379
|
guardrailConfig: z.union([
|
|
5380
5380
|
z.lazy(() =>
|
|
5381
5381
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema
|
|
@@ -381,7 +381,7 @@ export const ListBudgetsData$inboundSchema: z.ZodType<
|
|
|
381
381
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
382
382
|
.optional(),
|
|
383
383
|
updated: z.string().datetime({ offset: true }).default(
|
|
384
|
-
"2025-11-
|
|
384
|
+
"2025-11-10T12:21:01.506Z",
|
|
385
385
|
).transform(v => new Date(v)),
|
|
386
386
|
}).transform((v) => {
|
|
387
387
|
return remap$(v, {
|
|
@@ -415,7 +415,7 @@ export const ListBudgetsData$outboundSchema: z.ZodType<
|
|
|
415
415
|
isActive: z.boolean(),
|
|
416
416
|
consumption: z.lazy(() => ListBudgetsConsumption$outboundSchema).optional(),
|
|
417
417
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
418
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
418
|
+
updated: z.date().default(() => new Date("2025-11-10T12:21:01.506Z"))
|
|
419
419
|
.transform(v => v.toISOString()),
|
|
420
420
|
}).transform((v) => {
|
|
421
421
|
return remap$(v, {
|
|
@@ -298,7 +298,7 @@ export const Data$inboundSchema: z.ZodType<Data, z.ZodTypeDef, unknown> = z
|
|
|
298
298
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
299
299
|
.optional(),
|
|
300
300
|
updated: z.string().datetime({ offset: true }).default(
|
|
301
|
-
"2025-11-
|
|
301
|
+
"2025-11-10T12:21:01.167Z",
|
|
302
302
|
).transform(v => new Date(v)),
|
|
303
303
|
metrics: z.lazy(() => ListContactsMetrics$inboundSchema),
|
|
304
304
|
}).transform((v) => {
|
|
@@ -334,7 +334,7 @@ export const Data$outboundSchema: z.ZodType<Data$Outbound, z.ZodTypeDef, Data> =
|
|
|
334
334
|
tags: z.array(z.string()).optional(),
|
|
335
335
|
metadata: z.record(z.any()).optional(),
|
|
336
336
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
337
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
337
|
+
updated: z.date().default(() => new Date("2025-11-10T12:21:01.167Z"))
|
|
338
338
|
.transform(v => v.toISOString()),
|
|
339
339
|
metrics: z.lazy(() => ListContactsMetrics$outboundSchema),
|
|
340
340
|
}).transform((v) => {
|