@orq-ai/node 4.0.0-rc.1 → 4.0.0-rc.3
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 +223 -223
- package/bin/mcp-server.js.map +36 -36
- 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.d.ts +4 -4
- package/models/operations/createtool.d.ts.map +1 -1
- package/models/operations/createtool.js +14 -14
- package/models/operations/createtool.js.map +1 -1
- package/models/operations/duplicatetool.d.ts +2 -2
- package/models/operations/duplicatetool.d.ts.map +1 -1
- package/models/operations/duplicatetool.js +12 -12
- package/models/operations/duplicatetool.js.map +1 -1
- 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.d.ts +2 -2
- package/models/operations/getalltools.d.ts.map +1 -1
- package/models/operations/getalltools.js +12 -12
- package/models/operations/getalltools.js.map +1 -1
- 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.d.ts +2 -2
- package/models/operations/retrievetool.d.ts.map +1 -1
- package/models/operations/retrievetool.js +12 -12
- package/models/operations/retrievetool.js.map +1 -1
- 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.d.ts +4 -4
- package/models/operations/updatetool.d.ts.map +1 -1
- package/models/operations/updatetool.js +14 -14
- package/models/operations/updatetool.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/config.ts +2 -2
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/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 +18 -18
- package/src/models/operations/duplicatetool.ts +14 -14
- 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 +14 -14
- 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 +14 -14
- 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 +18 -18
|
@@ -384,7 +384,7 @@ export type RequestBodyJsonSchema = {
|
|
|
384
384
|
/**
|
|
385
385
|
* Whether to enable strict schema adherence when generating the output. If set to true, the model will always follow the exact schema defined in the `schema` field. Only a subset of JSON Schema is supported when `strict` is `true`. Only compatible with `OpenAI` models.
|
|
386
386
|
*/
|
|
387
|
-
strict?: boolean |
|
|
387
|
+
strict?: boolean | undefined;
|
|
388
388
|
};
|
|
389
389
|
|
|
390
390
|
/**
|
|
@@ -912,7 +912,7 @@ export type ResponseBodyJsonSchema = {
|
|
|
912
912
|
/**
|
|
913
913
|
* Whether to enable strict schema adherence when generating the output. If set to true, the model will always follow the exact schema defined in the `schema` field. Only a subset of JSON Schema is supported when `strict` is `true`. Only compatible with `OpenAI` models.
|
|
914
914
|
*/
|
|
915
|
-
strict?: boolean |
|
|
915
|
+
strict?: boolean | undefined;
|
|
916
916
|
};
|
|
917
917
|
|
|
918
918
|
export type ResponseBody2 = {
|
|
@@ -2084,7 +2084,7 @@ export const RequestBodyJsonSchema$inboundSchema: z.ZodType<
|
|
|
2084
2084
|
name: z.string(),
|
|
2085
2085
|
description: z.string().optional(),
|
|
2086
2086
|
schema: z.record(z.any()),
|
|
2087
|
-
strict: z.
|
|
2087
|
+
strict: z.boolean().optional(),
|
|
2088
2088
|
});
|
|
2089
2089
|
|
|
2090
2090
|
/** @internal */
|
|
@@ -2092,7 +2092,7 @@ export type RequestBodyJsonSchema$Outbound = {
|
|
|
2092
2092
|
name: string;
|
|
2093
2093
|
description?: string | undefined;
|
|
2094
2094
|
schema: { [k: string]: any };
|
|
2095
|
-
strict
|
|
2095
|
+
strict?: boolean | undefined;
|
|
2096
2096
|
};
|
|
2097
2097
|
|
|
2098
2098
|
/** @internal */
|
|
@@ -2104,7 +2104,7 @@ export const RequestBodyJsonSchema$outboundSchema: z.ZodType<
|
|
|
2104
2104
|
name: z.string(),
|
|
2105
2105
|
description: z.string().optional(),
|
|
2106
2106
|
schema: z.record(z.any()),
|
|
2107
|
-
strict: z.
|
|
2107
|
+
strict: z.boolean().optional(),
|
|
2108
2108
|
});
|
|
2109
2109
|
|
|
2110
2110
|
/**
|
|
@@ -2601,7 +2601,7 @@ export const ResponseBody5$inboundSchema: z.ZodType<
|
|
|
2601
2601
|
z.ZodTypeDef,
|
|
2602
2602
|
unknown
|
|
2603
2603
|
> = z.object({
|
|
2604
|
-
_id: z.string().default("
|
|
2604
|
+
_id: z.string().default("01K953912Y18KC9VWGF4020CWN"),
|
|
2605
2605
|
path: z.string(),
|
|
2606
2606
|
key: z.string(),
|
|
2607
2607
|
display_name: z.string().optional(),
|
|
@@ -2656,7 +2656,7 @@ export const ResponseBody5$outboundSchema: z.ZodType<
|
|
|
2656
2656
|
z.ZodTypeDef,
|
|
2657
2657
|
ResponseBody5
|
|
2658
2658
|
> = z.object({
|
|
2659
|
-
id: z.string().default("
|
|
2659
|
+
id: z.string().default("01K953912Y18KC9VWGF4020CWN"),
|
|
2660
2660
|
path: z.string(),
|
|
2661
2661
|
key: z.string(),
|
|
2662
2662
|
displayName: z.string().optional(),
|
|
@@ -3015,7 +3015,7 @@ export const ResponseBody4$inboundSchema: z.ZodType<
|
|
|
3015
3015
|
z.ZodTypeDef,
|
|
3016
3016
|
unknown
|
|
3017
3017
|
> = z.object({
|
|
3018
|
-
_id: z.string().default("
|
|
3018
|
+
_id: z.string().default("01K953912VKZVQX19KJ2XZKJE0"),
|
|
3019
3019
|
path: z.string(),
|
|
3020
3020
|
key: z.string(),
|
|
3021
3021
|
display_name: z.string().optional(),
|
|
@@ -3069,7 +3069,7 @@ export const ResponseBody4$outboundSchema: z.ZodType<
|
|
|
3069
3069
|
z.ZodTypeDef,
|
|
3070
3070
|
ResponseBody4
|
|
3071
3071
|
> = z.object({
|
|
3072
|
-
id: z.string().default("
|
|
3072
|
+
id: z.string().default("01K953912VKZVQX19KJ2XZKJE0"),
|
|
3073
3073
|
path: z.string(),
|
|
3074
3074
|
key: z.string(),
|
|
3075
3075
|
displayName: z.string().optional(),
|
|
@@ -3467,7 +3467,7 @@ export const ResponseBody3$inboundSchema: z.ZodType<
|
|
|
3467
3467
|
z.ZodTypeDef,
|
|
3468
3468
|
unknown
|
|
3469
3469
|
> = z.object({
|
|
3470
|
-
_id: z.string().default("
|
|
3470
|
+
_id: z.string().default("01K953912RVP7KDGM6N39VWNT2"),
|
|
3471
3471
|
path: z.string(),
|
|
3472
3472
|
key: z.string(),
|
|
3473
3473
|
display_name: z.string().optional(),
|
|
@@ -3519,7 +3519,7 @@ export const ResponseBody3$outboundSchema: z.ZodType<
|
|
|
3519
3519
|
z.ZodTypeDef,
|
|
3520
3520
|
ResponseBody3
|
|
3521
3521
|
> = z.object({
|
|
3522
|
-
id: z.string().default("
|
|
3522
|
+
id: z.string().default("01K953912RVP7KDGM6N39VWNT2"),
|
|
3523
3523
|
path: z.string(),
|
|
3524
3524
|
key: z.string(),
|
|
3525
3525
|
displayName: z.string().optional(),
|
|
@@ -3624,7 +3624,7 @@ export const ResponseBodyJsonSchema$inboundSchema: z.ZodType<
|
|
|
3624
3624
|
name: z.string(),
|
|
3625
3625
|
description: z.string().optional(),
|
|
3626
3626
|
schema: z.record(z.any()),
|
|
3627
|
-
strict: z.
|
|
3627
|
+
strict: z.boolean().optional(),
|
|
3628
3628
|
});
|
|
3629
3629
|
|
|
3630
3630
|
/** @internal */
|
|
@@ -3632,7 +3632,7 @@ export type ResponseBodyJsonSchema$Outbound = {
|
|
|
3632
3632
|
name: string;
|
|
3633
3633
|
description?: string | undefined;
|
|
3634
3634
|
schema: { [k: string]: any };
|
|
3635
|
-
strict
|
|
3635
|
+
strict?: boolean | undefined;
|
|
3636
3636
|
};
|
|
3637
3637
|
|
|
3638
3638
|
/** @internal */
|
|
@@ -3644,7 +3644,7 @@ export const ResponseBodyJsonSchema$outboundSchema: z.ZodType<
|
|
|
3644
3644
|
name: z.string(),
|
|
3645
3645
|
description: z.string().optional(),
|
|
3646
3646
|
schema: z.record(z.any()),
|
|
3647
|
-
strict: z.
|
|
3647
|
+
strict: z.boolean().optional(),
|
|
3648
3648
|
});
|
|
3649
3649
|
|
|
3650
3650
|
/**
|
|
@@ -3684,7 +3684,7 @@ export const ResponseBody2$inboundSchema: z.ZodType<
|
|
|
3684
3684
|
z.ZodTypeDef,
|
|
3685
3685
|
unknown
|
|
3686
3686
|
> = z.object({
|
|
3687
|
-
_id: z.string().default("
|
|
3687
|
+
_id: z.string().default("01K953912PB81FTFSVSP56MVWZ"),
|
|
3688
3688
|
path: z.string(),
|
|
3689
3689
|
key: z.string(),
|
|
3690
3690
|
display_name: z.string().optional(),
|
|
@@ -3737,7 +3737,7 @@ export const ResponseBody2$outboundSchema: z.ZodType<
|
|
|
3737
3737
|
z.ZodTypeDef,
|
|
3738
3738
|
ResponseBody2
|
|
3739
3739
|
> = z.object({
|
|
3740
|
-
id: z.string().default("
|
|
3740
|
+
id: z.string().default("01K953912PB81FTFSVSP56MVWZ"),
|
|
3741
3741
|
path: z.string(),
|
|
3742
3742
|
key: z.string(),
|
|
3743
3743
|
displayName: z.string().optional(),
|
|
@@ -3905,7 +3905,7 @@ export const ResponseBody1$inboundSchema: z.ZodType<
|
|
|
3905
3905
|
z.ZodTypeDef,
|
|
3906
3906
|
unknown
|
|
3907
3907
|
> = z.object({
|
|
3908
|
-
_id: z.string().default("
|
|
3908
|
+
_id: z.string().default("01K953912M3EKB7MSX4CKZSC7J"),
|
|
3909
3909
|
path: z.string(),
|
|
3910
3910
|
key: z.string(),
|
|
3911
3911
|
display_name: z.string().optional(),
|
|
@@ -3957,7 +3957,7 @@ export const ResponseBody1$outboundSchema: z.ZodType<
|
|
|
3957
3957
|
z.ZodTypeDef,
|
|
3958
3958
|
ResponseBody1
|
|
3959
3959
|
> = z.object({
|
|
3960
|
-
id: z.string().default("
|
|
3960
|
+
id: z.string().default("01K953912M3EKB7MSX4CKZSC7J"),
|
|
3961
3961
|
path: z.string(),
|
|
3962
3962
|
key: z.string(),
|
|
3963
3963
|
displayName: z.string().optional(),
|
|
@@ -434,7 +434,7 @@ export type DuplicateToolResponseBodyJsonSchema = {
|
|
|
434
434
|
/**
|
|
435
435
|
* Whether to enable strict schema adherence when generating the output. If set to true, the model will always follow the exact schema defined in the `schema` field. Only a subset of JSON Schema is supported when `strict` is `true`. Only compatible with `OpenAI` models.
|
|
436
436
|
*/
|
|
437
|
-
strict?: boolean |
|
|
437
|
+
strict?: boolean | undefined;
|
|
438
438
|
};
|
|
439
439
|
|
|
440
440
|
export type DuplicateToolResponseBody2 = {
|
|
@@ -788,7 +788,7 @@ export const DuplicateToolResponseBody5$inboundSchema: z.ZodType<
|
|
|
788
788
|
z.ZodTypeDef,
|
|
789
789
|
unknown
|
|
790
790
|
> = z.object({
|
|
791
|
-
_id: z.string().default("
|
|
791
|
+
_id: z.string().default("01K953914X55Q901EJ2NC5YRES"),
|
|
792
792
|
path: z.string(),
|
|
793
793
|
key: z.string(),
|
|
794
794
|
display_name: z.string().optional(),
|
|
@@ -844,7 +844,7 @@ export const DuplicateToolResponseBody5$outboundSchema: z.ZodType<
|
|
|
844
844
|
z.ZodTypeDef,
|
|
845
845
|
DuplicateToolResponseBody5
|
|
846
846
|
> = z.object({
|
|
847
|
-
id: z.string().default("
|
|
847
|
+
id: z.string().default("01K953914X55Q901EJ2NC5YRES"),
|
|
848
848
|
path: z.string(),
|
|
849
849
|
key: z.string(),
|
|
850
850
|
displayName: z.string().optional(),
|
|
@@ -1232,7 +1232,7 @@ export const DuplicateToolResponseBody4$inboundSchema: z.ZodType<
|
|
|
1232
1232
|
z.ZodTypeDef,
|
|
1233
1233
|
unknown
|
|
1234
1234
|
> = z.object({
|
|
1235
|
-
_id: z.string().default("
|
|
1235
|
+
_id: z.string().default("01K953914THJWR4GYA98SM2RWX"),
|
|
1236
1236
|
path: z.string(),
|
|
1237
1237
|
key: z.string(),
|
|
1238
1238
|
display_name: z.string().optional(),
|
|
@@ -1286,7 +1286,7 @@ export const DuplicateToolResponseBody4$outboundSchema: z.ZodType<
|
|
|
1286
1286
|
z.ZodTypeDef,
|
|
1287
1287
|
DuplicateToolResponseBody4
|
|
1288
1288
|
> = z.object({
|
|
1289
|
-
id: z.string().default("
|
|
1289
|
+
id: z.string().default("01K953914THJWR4GYA98SM2RWX"),
|
|
1290
1290
|
path: z.string(),
|
|
1291
1291
|
key: z.string(),
|
|
1292
1292
|
displayName: z.string().optional(),
|
|
@@ -1713,7 +1713,7 @@ export const DuplicateToolResponseBody3$inboundSchema: z.ZodType<
|
|
|
1713
1713
|
z.ZodTypeDef,
|
|
1714
1714
|
unknown
|
|
1715
1715
|
> = z.object({
|
|
1716
|
-
_id: z.string().default("
|
|
1716
|
+
_id: z.string().default("01K953914Q5X92WXZYTD8R6XBE"),
|
|
1717
1717
|
path: z.string(),
|
|
1718
1718
|
key: z.string(),
|
|
1719
1719
|
display_name: z.string().optional(),
|
|
@@ -1767,7 +1767,7 @@ export const DuplicateToolResponseBody3$outboundSchema: z.ZodType<
|
|
|
1767
1767
|
z.ZodTypeDef,
|
|
1768
1768
|
DuplicateToolResponseBody3
|
|
1769
1769
|
> = z.object({
|
|
1770
|
-
id: z.string().default("
|
|
1770
|
+
id: z.string().default("01K953914Q5X92WXZYTD8R6XBE"),
|
|
1771
1771
|
path: z.string(),
|
|
1772
1772
|
key: z.string(),
|
|
1773
1773
|
displayName: z.string().optional(),
|
|
@@ -1882,7 +1882,7 @@ export const DuplicateToolResponseBodyJsonSchema$inboundSchema: z.ZodType<
|
|
|
1882
1882
|
name: z.string(),
|
|
1883
1883
|
description: z.string().optional(),
|
|
1884
1884
|
schema: z.record(z.any()),
|
|
1885
|
-
strict: z.
|
|
1885
|
+
strict: z.boolean().optional(),
|
|
1886
1886
|
});
|
|
1887
1887
|
|
|
1888
1888
|
/** @internal */
|
|
@@ -1890,7 +1890,7 @@ export type DuplicateToolResponseBodyJsonSchema$Outbound = {
|
|
|
1890
1890
|
name: string;
|
|
1891
1891
|
description?: string | undefined;
|
|
1892
1892
|
schema: { [k: string]: any };
|
|
1893
|
-
strict
|
|
1893
|
+
strict?: boolean | undefined;
|
|
1894
1894
|
};
|
|
1895
1895
|
|
|
1896
1896
|
/** @internal */
|
|
@@ -1902,7 +1902,7 @@ export const DuplicateToolResponseBodyJsonSchema$outboundSchema: z.ZodType<
|
|
|
1902
1902
|
name: z.string(),
|
|
1903
1903
|
description: z.string().optional(),
|
|
1904
1904
|
schema: z.record(z.any()),
|
|
1905
|
-
strict: z.
|
|
1905
|
+
strict: z.boolean().optional(),
|
|
1906
1906
|
});
|
|
1907
1907
|
|
|
1908
1908
|
/**
|
|
@@ -1947,7 +1947,7 @@ export const DuplicateToolResponseBody2$inboundSchema: z.ZodType<
|
|
|
1947
1947
|
z.ZodTypeDef,
|
|
1948
1948
|
unknown
|
|
1949
1949
|
> = z.object({
|
|
1950
|
-
_id: z.string().default("
|
|
1950
|
+
_id: z.string().default("01K953914J5W7XKJW57A8QPTGJ"),
|
|
1951
1951
|
path: z.string(),
|
|
1952
1952
|
key: z.string(),
|
|
1953
1953
|
display_name: z.string().optional(),
|
|
@@ -2000,7 +2000,7 @@ export const DuplicateToolResponseBody2$outboundSchema: z.ZodType<
|
|
|
2000
2000
|
z.ZodTypeDef,
|
|
2001
2001
|
DuplicateToolResponseBody2
|
|
2002
2002
|
> = z.object({
|
|
2003
|
-
id: z.string().default("
|
|
2003
|
+
id: z.string().default("01K953914J5W7XKJW57A8QPTGJ"),
|
|
2004
2004
|
path: z.string(),
|
|
2005
2005
|
key: z.string(),
|
|
2006
2006
|
displayName: z.string().optional(),
|
|
@@ -2173,7 +2173,7 @@ export const DuplicateToolResponseBody1$inboundSchema: z.ZodType<
|
|
|
2173
2173
|
z.ZodTypeDef,
|
|
2174
2174
|
unknown
|
|
2175
2175
|
> = z.object({
|
|
2176
|
-
_id: z.string().default("
|
|
2176
|
+
_id: z.string().default("01K953914E23WGK1YX2PJZD2ZG"),
|
|
2177
2177
|
path: z.string(),
|
|
2178
2178
|
key: z.string(),
|
|
2179
2179
|
display_name: z.string().optional(),
|
|
@@ -2225,7 +2225,7 @@ export const DuplicateToolResponseBody1$outboundSchema: z.ZodType<
|
|
|
2225
2225
|
z.ZodTypeDef,
|
|
2226
2226
|
DuplicateToolResponseBody1
|
|
2227
2227
|
> = z.object({
|
|
2228
|
-
id: z.string().default("
|
|
2228
|
+
id: z.string().default("01K953914E23WGK1YX2PJZD2ZG"),
|
|
2229
2229
|
path: z.string(),
|
|
2230
2230
|
key: z.string(),
|
|
2231
2231
|
displayName: z.string().optional(),
|
|
@@ -146,7 +146,7 @@ export const FileGetResponseBody$inboundSchema: z.ZodType<
|
|
|
146
146
|
file_name: z.string(),
|
|
147
147
|
workspace_id: z.string(),
|
|
148
148
|
created: z.string().datetime({ offset: true }).default(
|
|
149
|
-
"2025-11-
|
|
149
|
+
"2025-11-03T14:52:19.544Z",
|
|
150
150
|
).transform(v => new Date(v)),
|
|
151
151
|
}).transform((v) => {
|
|
152
152
|
return remap$(v, {
|
|
@@ -180,7 +180,7 @@ export const FileGetResponseBody$outboundSchema: z.ZodType<
|
|
|
180
180
|
bytes: z.number(),
|
|
181
181
|
fileName: z.string(),
|
|
182
182
|
workspaceId: z.string(),
|
|
183
|
-
created: z.date().default(() => new Date("2025-11-
|
|
183
|
+
created: z.date().default(() => new Date("2025-11-03T14:52:19.544Z"))
|
|
184
184
|
.transform(v => v.toISOString()),
|
|
185
185
|
}).transform((v) => {
|
|
186
186
|
return remap$(v, {
|
|
@@ -196,7 +196,7 @@ export const FileListData$inboundSchema: z.ZodType<
|
|
|
196
196
|
file_name: z.string(),
|
|
197
197
|
workspace_id: z.string(),
|
|
198
198
|
created: z.string().datetime({ offset: true }).default(
|
|
199
|
-
"2025-11-
|
|
199
|
+
"2025-11-03T14:52:19.544Z",
|
|
200
200
|
).transform(v => new Date(v)),
|
|
201
201
|
}).transform((v) => {
|
|
202
202
|
return remap$(v, {
|
|
@@ -230,7 +230,7 @@ export const FileListData$outboundSchema: z.ZodType<
|
|
|
230
230
|
bytes: z.number(),
|
|
231
231
|
fileName: z.string(),
|
|
232
232
|
workspaceId: z.string(),
|
|
233
|
-
created: z.date().default(() => new Date("2025-11-
|
|
233
|
+
created: z.date().default(() => new Date("2025-11-03T14:52:19.544Z"))
|
|
234
234
|
.transform(v => v.toISOString()),
|
|
235
235
|
}).transform((v) => {
|
|
236
236
|
return remap$(v, {
|
|
@@ -250,7 +250,7 @@ export const FileUploadResponseBody$inboundSchema: z.ZodType<
|
|
|
250
250
|
file_name: z.string(),
|
|
251
251
|
workspace_id: z.string(),
|
|
252
252
|
created: z.string().datetime({ offset: true }).default(
|
|
253
|
-
"2025-11-
|
|
253
|
+
"2025-11-03T14:52:19.544Z",
|
|
254
254
|
).transform(v => new Date(v)),
|
|
255
255
|
}).transform((v) => {
|
|
256
256
|
return remap$(v, {
|
|
@@ -284,7 +284,7 @@ export const FileUploadResponseBody$outboundSchema: z.ZodType<
|
|
|
284
284
|
bytes: z.number(),
|
|
285
285
|
fileName: z.string(),
|
|
286
286
|
workspaceId: z.string(),
|
|
287
|
-
created: z.date().default(() => new Date("2025-11-
|
|
287
|
+
created: z.date().default(() => new Date("2025-11-03T14:52:19.544Z"))
|
|
288
288
|
.transform(v => v.toISOString()),
|
|
289
289
|
}).transform((v) => {
|
|
290
290
|
return remap$(v, {
|
|
@@ -435,7 +435,7 @@ export type DataJsonSchema = {
|
|
|
435
435
|
/**
|
|
436
436
|
* Whether to enable strict schema adherence when generating the output. If set to true, the model will always follow the exact schema defined in the `schema` field. Only a subset of JSON Schema is supported when `strict` is `true`. Only compatible with `OpenAI` models.
|
|
437
437
|
*/
|
|
438
|
-
strict?: boolean |
|
|
438
|
+
strict?: boolean | undefined;
|
|
439
439
|
};
|
|
440
440
|
|
|
441
441
|
export type Data2 = {
|
|
@@ -793,7 +793,7 @@ export function dataCodeToolFromJSON(
|
|
|
793
793
|
/** @internal */
|
|
794
794
|
export const Data5$inboundSchema: z.ZodType<Data5, z.ZodTypeDef, unknown> = z
|
|
795
795
|
.object({
|
|
796
|
-
_id: z.string().default("
|
|
796
|
+
_id: z.string().default("01K9539126ZWNCZEEDRAF47K63"),
|
|
797
797
|
path: z.string(),
|
|
798
798
|
key: z.string(),
|
|
799
799
|
display_name: z.string().optional(),
|
|
@@ -846,7 +846,7 @@ export const Data5$outboundSchema: z.ZodType<
|
|
|
846
846
|
z.ZodTypeDef,
|
|
847
847
|
Data5
|
|
848
848
|
> = z.object({
|
|
849
|
-
id: z.string().default("
|
|
849
|
+
id: z.string().default("01K9539126ZWNCZEEDRAF47K63"),
|
|
850
850
|
path: z.string(),
|
|
851
851
|
key: z.string(),
|
|
852
852
|
displayName: z.string().optional(),
|
|
@@ -1189,7 +1189,7 @@ export function dataMcpFromJSON(
|
|
|
1189
1189
|
/** @internal */
|
|
1190
1190
|
export const Data4$inboundSchema: z.ZodType<Data4, z.ZodTypeDef, unknown> = z
|
|
1191
1191
|
.object({
|
|
1192
|
-
_id: z.string().default("
|
|
1192
|
+
_id: z.string().default("01K95391231MY4DCM3J65X5DPS"),
|
|
1193
1193
|
path: z.string(),
|
|
1194
1194
|
key: z.string(),
|
|
1195
1195
|
display_name: z.string().optional(),
|
|
@@ -1241,7 +1241,7 @@ export const Data4$outboundSchema: z.ZodType<
|
|
|
1241
1241
|
z.ZodTypeDef,
|
|
1242
1242
|
Data4
|
|
1243
1243
|
> = z.object({
|
|
1244
|
-
id: z.string().default("
|
|
1244
|
+
id: z.string().default("01K95391231MY4DCM3J65X5DPS"),
|
|
1245
1245
|
path: z.string(),
|
|
1246
1246
|
key: z.string(),
|
|
1247
1247
|
displayName: z.string().optional(),
|
|
@@ -1624,7 +1624,7 @@ export function getAllToolsDataHttpFromJSON(
|
|
|
1624
1624
|
/** @internal */
|
|
1625
1625
|
export const Data3$inboundSchema: z.ZodType<Data3, z.ZodTypeDef, unknown> = z
|
|
1626
1626
|
.object({
|
|
1627
|
-
_id: z.string().default("
|
|
1627
|
+
_id: z.string().default("01K953911YV5N7XAQRQ24V3JJ8"),
|
|
1628
1628
|
path: z.string(),
|
|
1629
1629
|
key: z.string(),
|
|
1630
1630
|
display_name: z.string().optional(),
|
|
@@ -1676,7 +1676,7 @@ export const Data3$outboundSchema: z.ZodType<
|
|
|
1676
1676
|
z.ZodTypeDef,
|
|
1677
1677
|
Data3
|
|
1678
1678
|
> = z.object({
|
|
1679
|
-
id: z.string().default("
|
|
1679
|
+
id: z.string().default("01K953911YV5N7XAQRQ24V3JJ8"),
|
|
1680
1680
|
path: z.string(),
|
|
1681
1681
|
key: z.string(),
|
|
1682
1682
|
displayName: z.string().optional(),
|
|
@@ -1781,7 +1781,7 @@ export const DataJsonSchema$inboundSchema: z.ZodType<
|
|
|
1781
1781
|
name: z.string(),
|
|
1782
1782
|
description: z.string().optional(),
|
|
1783
1783
|
schema: z.record(z.any()),
|
|
1784
|
-
strict: z.
|
|
1784
|
+
strict: z.boolean().optional(),
|
|
1785
1785
|
});
|
|
1786
1786
|
|
|
1787
1787
|
/** @internal */
|
|
@@ -1789,7 +1789,7 @@ export type DataJsonSchema$Outbound = {
|
|
|
1789
1789
|
name: string;
|
|
1790
1790
|
description?: string | undefined;
|
|
1791
1791
|
schema: { [k: string]: any };
|
|
1792
|
-
strict
|
|
1792
|
+
strict?: boolean | undefined;
|
|
1793
1793
|
};
|
|
1794
1794
|
|
|
1795
1795
|
/** @internal */
|
|
@@ -1801,7 +1801,7 @@ export const DataJsonSchema$outboundSchema: z.ZodType<
|
|
|
1801
1801
|
name: z.string(),
|
|
1802
1802
|
description: z.string().optional(),
|
|
1803
1803
|
schema: z.record(z.any()),
|
|
1804
|
-
strict: z.
|
|
1804
|
+
strict: z.boolean().optional(),
|
|
1805
1805
|
});
|
|
1806
1806
|
|
|
1807
1807
|
/**
|
|
@@ -1834,7 +1834,7 @@ export function dataJsonSchemaFromJSON(
|
|
|
1834
1834
|
/** @internal */
|
|
1835
1835
|
export const Data2$inboundSchema: z.ZodType<Data2, z.ZodTypeDef, unknown> = z
|
|
1836
1836
|
.object({
|
|
1837
|
-
_id: z.string().default("
|
|
1837
|
+
_id: z.string().default("01K953911JDZGQNPRFEDW8WNRJ"),
|
|
1838
1838
|
path: z.string(),
|
|
1839
1839
|
key: z.string(),
|
|
1840
1840
|
display_name: z.string().optional(),
|
|
@@ -1887,7 +1887,7 @@ export const Data2$outboundSchema: z.ZodType<
|
|
|
1887
1887
|
z.ZodTypeDef,
|
|
1888
1888
|
Data2
|
|
1889
1889
|
> = z.object({
|
|
1890
|
-
id: z.string().default("
|
|
1890
|
+
id: z.string().default("01K953911JDZGQNPRFEDW8WNRJ"),
|
|
1891
1891
|
path: z.string(),
|
|
1892
1892
|
key: z.string(),
|
|
1893
1893
|
displayName: z.string().optional(),
|
|
@@ -2048,7 +2048,7 @@ export function getAllToolsDataFunctionFromJSON(
|
|
|
2048
2048
|
/** @internal */
|
|
2049
2049
|
export const Data1$inboundSchema: z.ZodType<Data1, z.ZodTypeDef, unknown> = z
|
|
2050
2050
|
.object({
|
|
2051
|
-
_id: z.string().default("
|
|
2051
|
+
_id: z.string().default("01K953911GAQ9JNEVW0CYGXAHV"),
|
|
2052
2052
|
path: z.string(),
|
|
2053
2053
|
key: z.string(),
|
|
2054
2054
|
display_name: z.string().optional(),
|
|
@@ -2100,7 +2100,7 @@ export const Data1$outboundSchema: z.ZodType<
|
|
|
2100
2100
|
z.ZodTypeDef,
|
|
2101
2101
|
Data1
|
|
2102
2102
|
> = z.object({
|
|
2103
|
-
id: z.string().default("
|
|
2103
|
+
id: z.string().default("01K953911GAQ9JNEVW0CYGXAHV"),
|
|
2104
2104
|
path: z.string(),
|
|
2105
2105
|
key: z.string(),
|
|
2106
2106
|
displayName: z.string().optional(),
|
|
@@ -360,7 +360,7 @@ export const GetBudgetResponseBody$inboundSchema: z.ZodType<
|
|
|
360
360
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
361
361
|
.optional(),
|
|
362
362
|
updated: z.string().datetime({ offset: true }).default(
|
|
363
|
-
"2025-11-
|
|
363
|
+
"2025-11-03T14:52:16.094Z",
|
|
364
364
|
).transform(v => new Date(v)),
|
|
365
365
|
}).transform((v) => {
|
|
366
366
|
return remap$(v, {
|
|
@@ -398,7 +398,7 @@ export const GetBudgetResponseBody$outboundSchema: z.ZodType<
|
|
|
398
398
|
isActive: z.boolean(),
|
|
399
399
|
consumption: z.lazy(() => GetBudgetConsumption$outboundSchema).optional(),
|
|
400
400
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
401
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
401
|
+
updated: z.date().default(() => new Date("2025-11-03T14:52:16.094Z"))
|
|
402
402
|
.transform(v => v.toISOString()),
|
|
403
403
|
}).transform((v) => {
|
|
404
404
|
return remap$(v, {
|
|
@@ -1554,8 +1554,8 @@ export const DataTypescript$inboundSchema: z.ZodType<
|
|
|
1554
1554
|
> = z.object({
|
|
1555
1555
|
_id: z.string(),
|
|
1556
1556
|
description: z.string(),
|
|
1557
|
-
created: z.string().default("2025-11-
|
|
1558
|
-
updated: z.string().default("2025-11-
|
|
1557
|
+
created: z.string().default("2025-11-03T14:52:18.441Z"),
|
|
1558
|
+
updated: z.string().default("2025-11-03T14:52:18.441Z"),
|
|
1559
1559
|
guardrail_config: z.union([
|
|
1560
1560
|
z.lazy(() =>
|
|
1561
1561
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema
|
|
@@ -1597,8 +1597,8 @@ export const DataTypescript$outboundSchema: z.ZodType<
|
|
|
1597
1597
|
> = z.object({
|
|
1598
1598
|
id: z.string(),
|
|
1599
1599
|
description: z.string(),
|
|
1600
|
-
created: z.string().default("2025-11-
|
|
1601
|
-
updated: z.string().default("2025-11-
|
|
1600
|
+
created: z.string().default("2025-11-03T14:52:18.441Z"),
|
|
1601
|
+
updated: z.string().default("2025-11-03T14:52:18.441Z"),
|
|
1602
1602
|
guardrailConfig: z.union([
|
|
1603
1603
|
z.lazy(() =>
|
|
1604
1604
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema
|
|
@@ -1996,8 +1996,8 @@ export const DataRagas$inboundSchema: z.ZodType<
|
|
|
1996
1996
|
> = z.object({
|
|
1997
1997
|
_id: z.string(),
|
|
1998
1998
|
description: z.string(),
|
|
1999
|
-
created: z.string().default("2025-11-
|
|
2000
|
-
updated: z.string().default("2025-11-
|
|
1999
|
+
created: z.string().default("2025-11-03T14:52:18.441Z"),
|
|
2000
|
+
updated: z.string().default("2025-11-03T14:52:18.441Z"),
|
|
2001
2001
|
guardrail_config: z.union([
|
|
2002
2002
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
2003
2003
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema),
|
|
@@ -2038,8 +2038,8 @@ export const DataRagas$outboundSchema: z.ZodType<
|
|
|
2038
2038
|
> = z.object({
|
|
2039
2039
|
id: z.string(),
|
|
2040
2040
|
description: z.string(),
|
|
2041
|
-
created: z.string().default("2025-11-
|
|
2042
|
-
updated: z.string().default("2025-11-
|
|
2041
|
+
created: z.string().default("2025-11-03T14:52:18.441Z"),
|
|
2042
|
+
updated: z.string().default("2025-11-03T14:52:18.441Z"),
|
|
2043
2043
|
guardrailConfig: z.union([
|
|
2044
2044
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
2045
2045
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema),
|
|
@@ -5506,8 +5506,8 @@ export const DataFunction$inboundSchema: z.ZodType<
|
|
|
5506
5506
|
> = z.object({
|
|
5507
5507
|
_id: z.string(),
|
|
5508
5508
|
description: z.string(),
|
|
5509
|
-
created: z.string().default("2025-11-
|
|
5510
|
-
updated: z.string().default("2025-11-
|
|
5509
|
+
created: z.string().default("2025-11-03T14:52:18.441Z"),
|
|
5510
|
+
updated: z.string().default("2025-11-03T14:52:18.441Z"),
|
|
5511
5511
|
guardrail_config: z.union([
|
|
5512
5512
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
5513
5513
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
@@ -5617,8 +5617,8 @@ export const DataFunction$outboundSchema: z.ZodType<
|
|
|
5617
5617
|
> = z.object({
|
|
5618
5618
|
id: z.string(),
|
|
5619
5619
|
description: z.string(),
|
|
5620
|
-
created: z.string().default("2025-11-
|
|
5621
|
-
updated: z.string().default("2025-11-
|
|
5620
|
+
created: z.string().default("2025-11-03T14:52:18.441Z"),
|
|
5621
|
+
updated: z.string().default("2025-11-03T14:52:18.441Z"),
|
|
5622
5622
|
guardrailConfig: z.union([
|
|
5623
5623
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
5624
5624
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
@@ -6000,8 +6000,8 @@ export const DataPython$inboundSchema: z.ZodType<
|
|
|
6000
6000
|
> = z.object({
|
|
6001
6001
|
_id: z.string(),
|
|
6002
6002
|
description: z.string(),
|
|
6003
|
-
created: z.string().default("2025-11-
|
|
6004
|
-
updated: z.string().default("2025-11-
|
|
6003
|
+
created: z.string().default("2025-11-03T14:52:18.441Z"),
|
|
6004
|
+
updated: z.string().default("2025-11-03T14:52:18.441Z"),
|
|
6005
6005
|
guardrail_config: z.union([
|
|
6006
6006
|
z.lazy(() => GetEvalsGuardrailConfigEvalsNumber$inboundSchema),
|
|
6007
6007
|
z.lazy(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema),
|
|
@@ -6039,8 +6039,8 @@ export const DataPython$outboundSchema: z.ZodType<
|
|
|
6039
6039
|
> = z.object({
|
|
6040
6040
|
id: z.string(),
|
|
6041
6041
|
description: z.string(),
|
|
6042
|
-
created: z.string().default("2025-11-
|
|
6043
|
-
updated: z.string().default("2025-11-
|
|
6042
|
+
created: z.string().default("2025-11-03T14:52:18.441Z"),
|
|
6043
|
+
updated: z.string().default("2025-11-03T14:52:18.441Z"),
|
|
6044
6044
|
guardrailConfig: z.union([
|
|
6045
6045
|
z.lazy(() => GetEvalsGuardrailConfigEvalsNumber$outboundSchema),
|
|
6046
6046
|
z.lazy(() => GetEvalsGuardrailConfigEvalsBoolean$outboundSchema),
|
|
@@ -6386,8 +6386,8 @@ export const DataHTTP$inboundSchema: z.ZodType<
|
|
|
6386
6386
|
> = z.object({
|
|
6387
6387
|
_id: z.string(),
|
|
6388
6388
|
description: z.string(),
|
|
6389
|
-
created: z.string().default("2025-11-
|
|
6390
|
-
updated: z.string().default("2025-11-
|
|
6389
|
+
created: z.string().default("2025-11-03T14:52:18.441Z"),
|
|
6390
|
+
updated: z.string().default("2025-11-03T14:52:18.441Z"),
|
|
6391
6391
|
guardrail_config: z.union([
|
|
6392
6392
|
z.lazy(() => GetEvalsGuardrailConfigNumber$inboundSchema),
|
|
6393
6393
|
z.lazy(() => GetEvalsGuardrailConfigBoolean$inboundSchema),
|
|
@@ -6431,8 +6431,8 @@ export const DataHTTP$outboundSchema: z.ZodType<
|
|
|
6431
6431
|
> = z.object({
|
|
6432
6432
|
id: z.string(),
|
|
6433
6433
|
description: z.string(),
|
|
6434
|
-
created: z.string().default("2025-11-
|
|
6435
|
-
updated: z.string().default("2025-11-
|
|
6434
|
+
created: z.string().default("2025-11-03T14:52:18.441Z"),
|
|
6435
|
+
updated: z.string().default("2025-11-03T14:52:18.441Z"),
|
|
6436
6436
|
guardrailConfig: z.union([
|
|
6437
6437
|
z.lazy(() => GetEvalsGuardrailConfigNumber$outboundSchema),
|
|
6438
6438
|
z.lazy(() => GetEvalsGuardrailConfigBoolean$outboundSchema),
|
|
@@ -6795,8 +6795,8 @@ export const DataJSON$inboundSchema: z.ZodType<
|
|
|
6795
6795
|
> = z.object({
|
|
6796
6796
|
_id: z.string(),
|
|
6797
6797
|
description: z.string(),
|
|
6798
|
-
created: z.string().default("2025-11-
|
|
6799
|
-
updated: z.string().default("2025-11-
|
|
6798
|
+
created: z.string().default("2025-11-03T14:52:18.441Z"),
|
|
6799
|
+
updated: z.string().default("2025-11-03T14:52:18.441Z"),
|
|
6800
6800
|
guardrail_config: z.union([
|
|
6801
6801
|
z.lazy(() =>
|
|
6802
6802
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$inboundSchema
|
|
@@ -6838,8 +6838,8 @@ export const DataJSON$outboundSchema: z.ZodType<
|
|
|
6838
6838
|
> = z.object({
|
|
6839
6839
|
id: z.string(),
|
|
6840
6840
|
description: z.string(),
|
|
6841
|
-
created: z.string().default("2025-11-
|
|
6842
|
-
updated: z.string().default("2025-11-
|
|
6841
|
+
created: z.string().default("2025-11-03T14:52:18.441Z"),
|
|
6842
|
+
updated: z.string().default("2025-11-03T14:52:18.441Z"),
|
|
6843
6843
|
guardrailConfig: z.union([
|
|
6844
6844
|
z.lazy(() =>
|
|
6845
6845
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$outboundSchema
|
|
@@ -7227,8 +7227,8 @@ export const DataLLM$inboundSchema: z.ZodType<DataLLM, z.ZodTypeDef, unknown> =
|
|
|
7227
7227
|
z.object({
|
|
7228
7228
|
_id: z.string(),
|
|
7229
7229
|
description: z.string(),
|
|
7230
|
-
created: z.string().default("2025-11-
|
|
7231
|
-
updated: z.string().default("2025-11-
|
|
7230
|
+
created: z.string().default("2025-11-03T14:52:18.441Z"),
|
|
7231
|
+
updated: z.string().default("2025-11-03T14:52:18.441Z"),
|
|
7232
7232
|
guardrail_config: z.union([
|
|
7233
7233
|
z.lazy(() =>
|
|
7234
7234
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema
|
|
@@ -7273,8 +7273,8 @@ export const DataLLM$outboundSchema: z.ZodType<
|
|
|
7273
7273
|
> = z.object({
|
|
7274
7274
|
id: z.string(),
|
|
7275
7275
|
description: z.string(),
|
|
7276
|
-
created: z.string().default("2025-11-
|
|
7277
|
-
updated: z.string().default("2025-11-
|
|
7276
|
+
created: z.string().default("2025-11-03T14:52:18.441Z"),
|
|
7277
|
+
updated: z.string().default("2025-11-03T14:52:18.441Z"),
|
|
7278
7278
|
guardrailConfig: z.union([
|
|
7279
7279
|
z.lazy(() =>
|
|
7280
7280
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema
|
|
@@ -474,7 +474,7 @@ export const ListBudgetsData$inboundSchema: z.ZodType<
|
|
|
474
474
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
475
475
|
.optional(),
|
|
476
476
|
updated: z.string().datetime({ offset: true }).default(
|
|
477
|
-
"2025-11-
|
|
477
|
+
"2025-11-03T14:52:16.094Z",
|
|
478
478
|
).transform(v => new Date(v)),
|
|
479
479
|
}).transform((v) => {
|
|
480
480
|
return remap$(v, {
|
|
@@ -509,7 +509,7 @@ export const ListBudgetsData$outboundSchema: z.ZodType<
|
|
|
509
509
|
isActive: z.boolean(),
|
|
510
510
|
consumption: z.lazy(() => ListBudgetsConsumption$outboundSchema).optional(),
|
|
511
511
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
512
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
512
|
+
updated: z.date().default(() => new Date("2025-11-03T14:52:16.094Z"))
|
|
513
513
|
.transform(v => v.toISOString()),
|
|
514
514
|
}).transform((v) => {
|
|
515
515
|
return remap$(v, {
|
|
@@ -355,7 +355,7 @@ export const Data$inboundSchema: z.ZodType<Data, z.ZodTypeDef, unknown> = z
|
|
|
355
355
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
356
356
|
.optional(),
|
|
357
357
|
updated: z.string().datetime({ offset: true }).default(
|
|
358
|
-
"2025-11-
|
|
358
|
+
"2025-11-03T14:52:15.707Z",
|
|
359
359
|
).transform(v => new Date(v)),
|
|
360
360
|
metrics: z.lazy(() => ListContactsMetrics$inboundSchema),
|
|
361
361
|
}).transform((v) => {
|
|
@@ -392,7 +392,7 @@ export const Data$outboundSchema: z.ZodType<Data$Outbound, z.ZodTypeDef, Data> =
|
|
|
392
392
|
tags: z.array(z.string()).optional(),
|
|
393
393
|
metadata: z.record(z.any()).optional(),
|
|
394
394
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
395
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
395
|
+
updated: z.date().default(() => new Date("2025-11-03T14:52:15.707Z"))
|
|
396
396
|
.transform(v => v.toISOString()),
|
|
397
397
|
metrics: z.lazy(() => ListContactsMetrics$outboundSchema),
|
|
398
398
|
}).transform((v) => {
|