@orq-ai/node 3.13.12 → 3.13.13
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 +253 -221
- package/bin/mcp-server.js.map +39 -39
- 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/createagent.d.ts +38 -0
- package/models/operations/createagent.d.ts.map +1 -1
- package/models/operations/createagent.js +35 -1
- package/models/operations/createagent.js.map +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 +28 -28
- package/models/operations/createtool.js +14 -14
- 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 +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/retrievetool.js +10 -10
- package/models/operations/runagent.d.ts +15 -15
- package/models/operations/runagent.d.ts.map +1 -1
- package/models/operations/runagent.js +20 -18
- package/models/operations/runagent.js.map +1 -1
- package/models/operations/updateagent.d.ts +53 -18
- package/models/operations/updateagent.d.ts.map +1 -1
- package/models/operations/updateagent.js +54 -19
- package/models/operations/updateagent.js.map +1 -1
- 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 +28 -28
- package/models/operations/updatetool.js +14 -14
- package/package.json +1 -1
- package/packages/orq-rc/docs/sdks/prompts/README.md +47 -13
- package/packages/orq-rc/docs/sdks/tools/README.md +7 -3
- package/packages/orq-rc/examples/package-lock.json +1 -1
- package/packages/orq-rc/jsr.json +1 -1
- package/packages/orq-rc/package-lock.json +2 -2
- package/packages/orq-rc/package.json +1 -1
- package/packages/orq-rc/src/funcs/promptsCreate.ts +4 -4
- package/packages/orq-rc/src/funcs/promptsRetrieve.ts +4 -4
- package/packages/orq-rc/src/funcs/promptsUpdate.ts +4 -4
- package/packages/orq-rc/src/funcs/toolsList.ts +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/mcp-server/tools/toolsList.ts +1 -1
- package/packages/orq-rc/src/models/operations/createagent.ts +73 -0
- 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 +60 -56
- package/packages/orq-rc/src/models/operations/creatememorystore.ts +108 -40
- package/packages/orq-rc/src/models/operations/createprompt.ts +4603 -1478
- package/packages/orq-rc/src/models/operations/createtool.ts +10 -10
- 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/getallmemorystores.ts +56 -20
- package/packages/orq-rc/src/models/operations/getallprompts.ts +48 -52
- package/packages/orq-rc/src/models/operations/getalltools.ts +14 -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/getoneprompt.ts +22 -22
- 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/retrievememorystore.ts +56 -20
- package/packages/orq-rc/src/models/operations/retrievetool.ts +10 -10
- package/packages/orq-rc/src/models/operations/runagent.ts +30 -24
- package/packages/orq-rc/src/models/operations/updateagent.ts +110 -28
- 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 +57 -57
- package/packages/orq-rc/src/models/operations/updatememorystore.ts +52 -20
- package/packages/orq-rc/src/models/operations/updateprompt.ts +5018 -1772
- package/packages/orq-rc/src/models/operations/updatetool.ts +10 -10
- package/packages/orq-rc/src/sdk/prompts.ts +3 -3
- package/packages/orq-rc/src/sdk/tools.ts +1 -1
- 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/createagent.ts +73 -0
- 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 +28 -28
- package/src/models/operations/createtool.ts +14 -14
- 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 +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/retrievetool.ts +10 -10
- package/src/models/operations/runagent.ts +30 -24
- package/src/models/operations/updateagent.ts +110 -28
- 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 +28 -28
- package/src/models/operations/updatetool.ts +14 -14
|
@@ -11,7 +11,7 @@ import { SDKValidationError } from "../errors/sdkvalidationerror.js";
|
|
|
11
11
|
|
|
12
12
|
export type GetAllToolsRequest = {
|
|
13
13
|
/**
|
|
14
|
-
*
|
|
14
|
+
* Maximum number of tools per page (1-200). Omit to return all tools.
|
|
15
15
|
*/
|
|
16
16
|
limit?: number | undefined;
|
|
17
17
|
/**
|
|
@@ -588,7 +588,7 @@ export const GetAllToolsRequest$inboundSchema: z.ZodType<
|
|
|
588
588
|
z.ZodTypeDef,
|
|
589
589
|
unknown
|
|
590
590
|
> = z.object({
|
|
591
|
-
limit: z.number().
|
|
591
|
+
limit: z.number().optional(),
|
|
592
592
|
starting_after: z.string().optional(),
|
|
593
593
|
ending_before: z.string().optional(),
|
|
594
594
|
}).transform((v) => {
|
|
@@ -600,7 +600,7 @@ export const GetAllToolsRequest$inboundSchema: z.ZodType<
|
|
|
600
600
|
|
|
601
601
|
/** @internal */
|
|
602
602
|
export type GetAllToolsRequest$Outbound = {
|
|
603
|
-
limit
|
|
603
|
+
limit?: number | undefined;
|
|
604
604
|
starting_after?: string | undefined;
|
|
605
605
|
ending_before?: string | undefined;
|
|
606
606
|
};
|
|
@@ -611,7 +611,7 @@ export const GetAllToolsRequest$outboundSchema: z.ZodType<
|
|
|
611
611
|
z.ZodTypeDef,
|
|
612
612
|
GetAllToolsRequest
|
|
613
613
|
> = z.object({
|
|
614
|
-
limit: z.number().
|
|
614
|
+
limit: z.number().optional(),
|
|
615
615
|
startingAfter: z.string().optional(),
|
|
616
616
|
endingBefore: z.string().optional(),
|
|
617
617
|
}).transform((v) => {
|
|
@@ -798,7 +798,7 @@ export function dataCodeToolFromJSON(
|
|
|
798
798
|
/** @internal */
|
|
799
799
|
export const Data5$inboundSchema: z.ZodType<Data5, z.ZodTypeDef, unknown> = z
|
|
800
800
|
.object({
|
|
801
|
-
_id: z.string().default("
|
|
801
|
+
_id: z.string().default("01K83MSAXMF8FWW395H84A1RAE"),
|
|
802
802
|
path: z.string(),
|
|
803
803
|
key: z.string(),
|
|
804
804
|
display_name: z.string().optional(),
|
|
@@ -851,7 +851,7 @@ export const Data5$outboundSchema: z.ZodType<
|
|
|
851
851
|
z.ZodTypeDef,
|
|
852
852
|
Data5
|
|
853
853
|
> = z.object({
|
|
854
|
-
id: z.string().default("
|
|
854
|
+
id: z.string().default("01K83MSAXMF8FWW395H84A1RAE"),
|
|
855
855
|
path: z.string(),
|
|
856
856
|
key: z.string(),
|
|
857
857
|
displayName: z.string().optional(),
|
|
@@ -1194,7 +1194,7 @@ export function dataMcpFromJSON(
|
|
|
1194
1194
|
/** @internal */
|
|
1195
1195
|
export const Data4$inboundSchema: z.ZodType<Data4, z.ZodTypeDef, unknown> = z
|
|
1196
1196
|
.object({
|
|
1197
|
-
_id: z.string().default("
|
|
1197
|
+
_id: z.string().default("01K83MSAXMNG6Q4QY23S3T6EHJ"),
|
|
1198
1198
|
path: z.string(),
|
|
1199
1199
|
key: z.string(),
|
|
1200
1200
|
display_name: z.string().optional(),
|
|
@@ -1246,7 +1246,7 @@ export const Data4$outboundSchema: z.ZodType<
|
|
|
1246
1246
|
z.ZodTypeDef,
|
|
1247
1247
|
Data4
|
|
1248
1248
|
> = z.object({
|
|
1249
|
-
id: z.string().default("
|
|
1249
|
+
id: z.string().default("01K83MSAXMNG6Q4QY23S3T6EHJ"),
|
|
1250
1250
|
path: z.string(),
|
|
1251
1251
|
key: z.string(),
|
|
1252
1252
|
displayName: z.string().optional(),
|
|
@@ -1629,7 +1629,7 @@ export function getAllToolsDataHttpFromJSON(
|
|
|
1629
1629
|
/** @internal */
|
|
1630
1630
|
export const Data3$inboundSchema: z.ZodType<Data3, z.ZodTypeDef, unknown> = z
|
|
1631
1631
|
.object({
|
|
1632
|
-
_id: z.string().default("
|
|
1632
|
+
_id: z.string().default("01K83MSAXK497GE95ACHS4J32X"),
|
|
1633
1633
|
path: z.string(),
|
|
1634
1634
|
key: z.string(),
|
|
1635
1635
|
display_name: z.string().optional(),
|
|
@@ -1681,7 +1681,7 @@ export const Data3$outboundSchema: z.ZodType<
|
|
|
1681
1681
|
z.ZodTypeDef,
|
|
1682
1682
|
Data3
|
|
1683
1683
|
> = z.object({
|
|
1684
|
-
id: z.string().default("
|
|
1684
|
+
id: z.string().default("01K83MSAXK497GE95ACHS4J32X"),
|
|
1685
1685
|
path: z.string(),
|
|
1686
1686
|
key: z.string(),
|
|
1687
1687
|
displayName: z.string().optional(),
|
|
@@ -1842,7 +1842,7 @@ export const GetAllToolsData2$inboundSchema: z.ZodType<
|
|
|
1842
1842
|
z.ZodTypeDef,
|
|
1843
1843
|
unknown
|
|
1844
1844
|
> = z.object({
|
|
1845
|
-
_id: z.string().default("
|
|
1845
|
+
_id: z.string().default("01K83MSAXK7XA69Q1AFBP7MYB7"),
|
|
1846
1846
|
path: z.string(),
|
|
1847
1847
|
key: z.string(),
|
|
1848
1848
|
display_name: z.string().optional(),
|
|
@@ -1895,7 +1895,7 @@ export const GetAllToolsData2$outboundSchema: z.ZodType<
|
|
|
1895
1895
|
z.ZodTypeDef,
|
|
1896
1896
|
GetAllToolsData2
|
|
1897
1897
|
> = z.object({
|
|
1898
|
-
id: z.string().default("
|
|
1898
|
+
id: z.string().default("01K83MSAXK7XA69Q1AFBP7MYB7"),
|
|
1899
1899
|
path: z.string(),
|
|
1900
1900
|
key: z.string(),
|
|
1901
1901
|
displayName: z.string().optional(),
|
|
@@ -2063,7 +2063,7 @@ export const GetAllToolsData1$inboundSchema: z.ZodType<
|
|
|
2063
2063
|
z.ZodTypeDef,
|
|
2064
2064
|
unknown
|
|
2065
2065
|
> = z.object({
|
|
2066
|
-
_id: z.string().default("
|
|
2066
|
+
_id: z.string().default("01K83MSAXK74MPH6P8937D25WA"),
|
|
2067
2067
|
path: z.string(),
|
|
2068
2068
|
key: z.string(),
|
|
2069
2069
|
display_name: z.string().optional(),
|
|
@@ -2115,7 +2115,7 @@ export const GetAllToolsData1$outboundSchema: z.ZodType<
|
|
|
2115
2115
|
z.ZodTypeDef,
|
|
2116
2116
|
GetAllToolsData1
|
|
2117
2117
|
> = z.object({
|
|
2118
|
-
id: z.string().default("
|
|
2118
|
+
id: z.string().default("01K83MSAXK74MPH6P8937D25WA"),
|
|
2119
2119
|
path: z.string(),
|
|
2120
2120
|
key: z.string(),
|
|
2121
2121
|
displayName: z.string().optional(),
|
|
@@ -351,7 +351,7 @@ export const GetBudgetResponseBody$inboundSchema: z.ZodType<
|
|
|
351
351
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
352
352
|
.optional(),
|
|
353
353
|
updated: z.string().datetime({ offset: true }).default(
|
|
354
|
-
"2025-10-
|
|
354
|
+
"2025-10-21T15:04:06.875Z",
|
|
355
355
|
).transform(v => new Date(v)),
|
|
356
356
|
}).transform((v) => {
|
|
357
357
|
return remap$(v, {
|
|
@@ -386,7 +386,7 @@ export const GetBudgetResponseBody$outboundSchema: z.ZodType<
|
|
|
386
386
|
isActive: z.boolean(),
|
|
387
387
|
consumption: z.lazy(() => GetBudgetConsumption$outboundSchema).optional(),
|
|
388
388
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
389
|
-
updated: z.date().default(() => new Date("2025-10-
|
|
389
|
+
updated: z.date().default(() => new Date("2025-10-21T15:04:06.875Z"))
|
|
390
390
|
.transform(v => v.toISOString()),
|
|
391
391
|
}).transform((v) => {
|
|
392
392
|
return remap$(v, {
|
|
@@ -1562,8 +1562,8 @@ export const DataTypescript$inboundSchema: z.ZodType<
|
|
|
1562
1562
|
> = z.object({
|
|
1563
1563
|
_id: z.string(),
|
|
1564
1564
|
description: z.string(),
|
|
1565
|
-
created: z.string().default("2025-10-
|
|
1566
|
-
updated: z.string().default("2025-10-
|
|
1565
|
+
created: z.string().default("2025-10-21T15:04:09.282Z"),
|
|
1566
|
+
updated: z.string().default("2025-10-21T15:04:09.282Z"),
|
|
1567
1567
|
guardrail_config: z.union([
|
|
1568
1568
|
z.lazy(() =>
|
|
1569
1569
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema
|
|
@@ -1606,8 +1606,8 @@ export const DataTypescript$outboundSchema: z.ZodType<
|
|
|
1606
1606
|
> = z.object({
|
|
1607
1607
|
id: z.string(),
|
|
1608
1608
|
description: z.string(),
|
|
1609
|
-
created: z.string().default("2025-10-
|
|
1610
|
-
updated: z.string().default("2025-10-
|
|
1609
|
+
created: z.string().default("2025-10-21T15:04:09.282Z"),
|
|
1610
|
+
updated: z.string().default("2025-10-21T15:04:09.282Z"),
|
|
1611
1611
|
guardrailConfig: z.union([
|
|
1612
1612
|
z.lazy(() =>
|
|
1613
1613
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema
|
|
@@ -2010,8 +2010,8 @@ export const DataRagas$inboundSchema: z.ZodType<
|
|
|
2010
2010
|
> = z.object({
|
|
2011
2011
|
_id: z.string(),
|
|
2012
2012
|
description: z.string(),
|
|
2013
|
-
created: z.string().default("2025-10-
|
|
2014
|
-
updated: z.string().default("2025-10-
|
|
2013
|
+
created: z.string().default("2025-10-21T15:04:09.282Z"),
|
|
2014
|
+
updated: z.string().default("2025-10-21T15:04:09.282Z"),
|
|
2015
2015
|
guardrail_config: z.union([
|
|
2016
2016
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
2017
2017
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema),
|
|
@@ -2053,8 +2053,8 @@ export const DataRagas$outboundSchema: z.ZodType<
|
|
|
2053
2053
|
> = z.object({
|
|
2054
2054
|
id: z.string(),
|
|
2055
2055
|
description: z.string(),
|
|
2056
|
-
created: z.string().default("2025-10-
|
|
2057
|
-
updated: z.string().default("2025-10-
|
|
2056
|
+
created: z.string().default("2025-10-21T15:04:09.282Z"),
|
|
2057
|
+
updated: z.string().default("2025-10-21T15:04:09.282Z"),
|
|
2058
2058
|
guardrailConfig: z.union([
|
|
2059
2059
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
2060
2060
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema),
|
|
@@ -5524,8 +5524,8 @@ export const DataFunction$inboundSchema: z.ZodType<
|
|
|
5524
5524
|
> = z.object({
|
|
5525
5525
|
_id: z.string(),
|
|
5526
5526
|
description: z.string(),
|
|
5527
|
-
created: z.string().default("2025-10-
|
|
5528
|
-
updated: z.string().default("2025-10-
|
|
5527
|
+
created: z.string().default("2025-10-21T15:04:09.282Z"),
|
|
5528
|
+
updated: z.string().default("2025-10-21T15:04:09.282Z"),
|
|
5529
5529
|
guardrail_config: z.union([
|
|
5530
5530
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
5531
5531
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
@@ -5635,8 +5635,8 @@ export const DataFunction$outboundSchema: z.ZodType<
|
|
|
5635
5635
|
> = z.object({
|
|
5636
5636
|
id: z.string(),
|
|
5637
5637
|
description: z.string(),
|
|
5638
|
-
created: z.string().default("2025-10-
|
|
5639
|
-
updated: z.string().default("2025-10-
|
|
5638
|
+
created: z.string().default("2025-10-21T15:04:09.282Z"),
|
|
5639
|
+
updated: z.string().default("2025-10-21T15:04:09.282Z"),
|
|
5640
5640
|
guardrailConfig: z.union([
|
|
5641
5641
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
5642
5642
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
@@ -6018,8 +6018,8 @@ export const DataPython$inboundSchema: z.ZodType<
|
|
|
6018
6018
|
> = z.object({
|
|
6019
6019
|
_id: z.string(),
|
|
6020
6020
|
description: z.string(),
|
|
6021
|
-
created: z.string().default("2025-10-
|
|
6022
|
-
updated: z.string().default("2025-10-
|
|
6021
|
+
created: z.string().default("2025-10-21T15:04:09.282Z"),
|
|
6022
|
+
updated: z.string().default("2025-10-21T15:04:09.282Z"),
|
|
6023
6023
|
guardrail_config: z.union([
|
|
6024
6024
|
z.lazy(() => GetEvalsGuardrailConfigEvalsNumber$inboundSchema),
|
|
6025
6025
|
z.lazy(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema),
|
|
@@ -6057,8 +6057,8 @@ export const DataPython$outboundSchema: z.ZodType<
|
|
|
6057
6057
|
> = z.object({
|
|
6058
6058
|
id: z.string(),
|
|
6059
6059
|
description: z.string(),
|
|
6060
|
-
created: z.string().default("2025-10-
|
|
6061
|
-
updated: z.string().default("2025-10-
|
|
6060
|
+
created: z.string().default("2025-10-21T15:04:09.282Z"),
|
|
6061
|
+
updated: z.string().default("2025-10-21T15:04:09.282Z"),
|
|
6062
6062
|
guardrailConfig: z.union([
|
|
6063
6063
|
z.lazy(() => GetEvalsGuardrailConfigEvalsNumber$outboundSchema),
|
|
6064
6064
|
z.lazy(() => GetEvalsGuardrailConfigEvalsBoolean$outboundSchema),
|
|
@@ -6404,8 +6404,8 @@ export const DataHTTP$inboundSchema: z.ZodType<
|
|
|
6404
6404
|
> = z.object({
|
|
6405
6405
|
_id: z.string(),
|
|
6406
6406
|
description: z.string(),
|
|
6407
|
-
created: z.string().default("2025-10-
|
|
6408
|
-
updated: z.string().default("2025-10-
|
|
6407
|
+
created: z.string().default("2025-10-21T15:04:09.282Z"),
|
|
6408
|
+
updated: z.string().default("2025-10-21T15:04:09.282Z"),
|
|
6409
6409
|
guardrail_config: z.union([
|
|
6410
6410
|
z.lazy(() => GetEvalsGuardrailConfigNumber$inboundSchema),
|
|
6411
6411
|
z.lazy(() => GetEvalsGuardrailConfigBoolean$inboundSchema),
|
|
@@ -6449,8 +6449,8 @@ export const DataHTTP$outboundSchema: z.ZodType<
|
|
|
6449
6449
|
> = z.object({
|
|
6450
6450
|
id: z.string(),
|
|
6451
6451
|
description: z.string(),
|
|
6452
|
-
created: z.string().default("2025-10-
|
|
6453
|
-
updated: z.string().default("2025-10-
|
|
6452
|
+
created: z.string().default("2025-10-21T15:04:09.282Z"),
|
|
6453
|
+
updated: z.string().default("2025-10-21T15:04:09.282Z"),
|
|
6454
6454
|
guardrailConfig: z.union([
|
|
6455
6455
|
z.lazy(() => GetEvalsGuardrailConfigNumber$outboundSchema),
|
|
6456
6456
|
z.lazy(() => GetEvalsGuardrailConfigBoolean$outboundSchema),
|
|
@@ -6815,8 +6815,8 @@ export const DataJSON$inboundSchema: z.ZodType<
|
|
|
6815
6815
|
> = z.object({
|
|
6816
6816
|
_id: z.string(),
|
|
6817
6817
|
description: z.string(),
|
|
6818
|
-
created: z.string().default("2025-10-
|
|
6819
|
-
updated: z.string().default("2025-10-
|
|
6818
|
+
created: z.string().default("2025-10-21T15:04:09.282Z"),
|
|
6819
|
+
updated: z.string().default("2025-10-21T15:04:09.282Z"),
|
|
6820
6820
|
guardrail_config: z.union([
|
|
6821
6821
|
z.lazy(() =>
|
|
6822
6822
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$inboundSchema
|
|
@@ -6858,8 +6858,8 @@ export const DataJSON$outboundSchema: z.ZodType<
|
|
|
6858
6858
|
> = z.object({
|
|
6859
6859
|
id: z.string(),
|
|
6860
6860
|
description: z.string(),
|
|
6861
|
-
created: z.string().default("2025-10-
|
|
6862
|
-
updated: z.string().default("2025-10-
|
|
6861
|
+
created: z.string().default("2025-10-21T15:04:09.282Z"),
|
|
6862
|
+
updated: z.string().default("2025-10-21T15:04:09.282Z"),
|
|
6863
6863
|
guardrailConfig: z.union([
|
|
6864
6864
|
z.lazy(() =>
|
|
6865
6865
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$outboundSchema
|
|
@@ -7243,8 +7243,8 @@ export const DataLLM$inboundSchema: z.ZodType<DataLLM, z.ZodTypeDef, unknown> =
|
|
|
7243
7243
|
z.object({
|
|
7244
7244
|
_id: z.string(),
|
|
7245
7245
|
description: z.string(),
|
|
7246
|
-
created: z.string().default("2025-10-
|
|
7247
|
-
updated: z.string().default("2025-10-
|
|
7246
|
+
created: z.string().default("2025-10-21T15:04:09.282Z"),
|
|
7247
|
+
updated: z.string().default("2025-10-21T15:04:09.282Z"),
|
|
7248
7248
|
guardrail_config: z.union([
|
|
7249
7249
|
z.lazy(() =>
|
|
7250
7250
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema
|
|
@@ -7288,8 +7288,8 @@ export const DataLLM$outboundSchema: z.ZodType<
|
|
|
7288
7288
|
> = z.object({
|
|
7289
7289
|
id: z.string(),
|
|
7290
7290
|
description: z.string(),
|
|
7291
|
-
created: z.string().default("2025-10-
|
|
7292
|
-
updated: z.string().default("2025-10-
|
|
7291
|
+
created: z.string().default("2025-10-21T15:04:09.282Z"),
|
|
7292
|
+
updated: z.string().default("2025-10-21T15:04:09.282Z"),
|
|
7293
7293
|
guardrailConfig: z.union([
|
|
7294
7294
|
z.lazy(() =>
|
|
7295
7295
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema
|
|
@@ -547,9 +547,9 @@ export type GetOnePromptMetadata = {
|
|
|
547
547
|
};
|
|
548
548
|
|
|
549
549
|
/**
|
|
550
|
-
*
|
|
550
|
+
* A prompt entity with configuration, metadata, and versioning.
|
|
551
551
|
*/
|
|
552
|
-
export type
|
|
552
|
+
export type GetOnePromptPrompt = {
|
|
553
553
|
id: string;
|
|
554
554
|
type: GetOnePromptType;
|
|
555
555
|
owner: string;
|
|
@@ -2362,8 +2362,8 @@ export function getOnePromptMetadataFromJSON(
|
|
|
2362
2362
|
}
|
|
2363
2363
|
|
|
2364
2364
|
/** @internal */
|
|
2365
|
-
export const
|
|
2366
|
-
|
|
2365
|
+
export const GetOnePromptPrompt$inboundSchema: z.ZodType<
|
|
2366
|
+
GetOnePromptPrompt,
|
|
2367
2367
|
z.ZodTypeDef,
|
|
2368
2368
|
unknown
|
|
2369
2369
|
> = z.object({
|
|
@@ -2391,7 +2391,7 @@ export const GetOnePromptResponseBody$inboundSchema: z.ZodType<
|
|
|
2391
2391
|
});
|
|
2392
2392
|
|
|
2393
2393
|
/** @internal */
|
|
2394
|
-
export type
|
|
2394
|
+
export type GetOnePromptPrompt$Outbound = {
|
|
2395
2395
|
_id: string;
|
|
2396
2396
|
type: string;
|
|
2397
2397
|
owner: string;
|
|
@@ -2407,10 +2407,10 @@ export type GetOnePromptResponseBody$Outbound = {
|
|
|
2407
2407
|
};
|
|
2408
2408
|
|
|
2409
2409
|
/** @internal */
|
|
2410
|
-
export const
|
|
2411
|
-
|
|
2410
|
+
export const GetOnePromptPrompt$outboundSchema: z.ZodType<
|
|
2411
|
+
GetOnePromptPrompt$Outbound,
|
|
2412
2412
|
z.ZodTypeDef,
|
|
2413
|
-
|
|
2413
|
+
GetOnePromptPrompt
|
|
2414
2414
|
> = z.object({
|
|
2415
2415
|
id: z.string(),
|
|
2416
2416
|
type: GetOnePromptType$outboundSchema,
|
|
@@ -2439,29 +2439,29 @@ export const GetOnePromptResponseBody$outboundSchema: z.ZodType<
|
|
|
2439
2439
|
* @internal
|
|
2440
2440
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
2441
2441
|
*/
|
|
2442
|
-
export namespace
|
|
2443
|
-
/** @deprecated use `
|
|
2444
|
-
export const inboundSchema =
|
|
2445
|
-
/** @deprecated use `
|
|
2446
|
-
export const outboundSchema =
|
|
2447
|
-
/** @deprecated use `
|
|
2448
|
-
export type Outbound =
|
|
2442
|
+
export namespace GetOnePromptPrompt$ {
|
|
2443
|
+
/** @deprecated use `GetOnePromptPrompt$inboundSchema` instead. */
|
|
2444
|
+
export const inboundSchema = GetOnePromptPrompt$inboundSchema;
|
|
2445
|
+
/** @deprecated use `GetOnePromptPrompt$outboundSchema` instead. */
|
|
2446
|
+
export const outboundSchema = GetOnePromptPrompt$outboundSchema;
|
|
2447
|
+
/** @deprecated use `GetOnePromptPrompt$Outbound` instead. */
|
|
2448
|
+
export type Outbound = GetOnePromptPrompt$Outbound;
|
|
2449
2449
|
}
|
|
2450
2450
|
|
|
2451
|
-
export function
|
|
2452
|
-
|
|
2451
|
+
export function getOnePromptPromptToJSON(
|
|
2452
|
+
getOnePromptPrompt: GetOnePromptPrompt,
|
|
2453
2453
|
): string {
|
|
2454
2454
|
return JSON.stringify(
|
|
2455
|
-
|
|
2455
|
+
GetOnePromptPrompt$outboundSchema.parse(getOnePromptPrompt),
|
|
2456
2456
|
);
|
|
2457
2457
|
}
|
|
2458
2458
|
|
|
2459
|
-
export function
|
|
2459
|
+
export function getOnePromptPromptFromJSON(
|
|
2460
2460
|
jsonString: string,
|
|
2461
|
-
): SafeParseResult<
|
|
2461
|
+
): SafeParseResult<GetOnePromptPrompt, SDKValidationError> {
|
|
2462
2462
|
return safeParse(
|
|
2463
2463
|
jsonString,
|
|
2464
|
-
(x) =>
|
|
2465
|
-
`Failed to parse '
|
|
2464
|
+
(x) => GetOnePromptPrompt$inboundSchema.parse(JSON.parse(x)),
|
|
2465
|
+
`Failed to parse 'GetOnePromptPrompt' from JSON`,
|
|
2466
2466
|
);
|
|
2467
2467
|
}
|
|
@@ -464,7 +464,7 @@ export const ListBudgetsData$inboundSchema: z.ZodType<
|
|
|
464
464
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
465
465
|
.optional(),
|
|
466
466
|
updated: z.string().datetime({ offset: true }).default(
|
|
467
|
-
"2025-10-
|
|
467
|
+
"2025-10-21T15:04:06.875Z",
|
|
468
468
|
).transform(v => new Date(v)),
|
|
469
469
|
}).transform((v) => {
|
|
470
470
|
return remap$(v, {
|
|
@@ -499,7 +499,7 @@ export const ListBudgetsData$outboundSchema: z.ZodType<
|
|
|
499
499
|
isActive: z.boolean(),
|
|
500
500
|
consumption: z.lazy(() => ListBudgetsConsumption$outboundSchema).optional(),
|
|
501
501
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
502
|
-
updated: z.date().default(() => new Date("2025-10-
|
|
502
|
+
updated: z.date().default(() => new Date("2025-10-21T15:04:06.875Z"))
|
|
503
503
|
.transform(v => v.toISOString()),
|
|
504
504
|
}).transform((v) => {
|
|
505
505
|
return remap$(v, {
|
|
@@ -352,7 +352,7 @@ export const Data$inboundSchema: z.ZodType<Data, z.ZodTypeDef, unknown> = z
|
|
|
352
352
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
353
353
|
.optional(),
|
|
354
354
|
updated: z.string().datetime({ offset: true }).default(
|
|
355
|
-
"2025-10-
|
|
355
|
+
"2025-10-21T15:04:06.875Z",
|
|
356
356
|
).transform(v => new Date(v)),
|
|
357
357
|
metrics: z.lazy(() => ListContactsMetrics$inboundSchema),
|
|
358
358
|
}).transform((v) => {
|
|
@@ -389,7 +389,7 @@ export const Data$outboundSchema: z.ZodType<Data$Outbound, z.ZodTypeDef, Data> =
|
|
|
389
389
|
tags: z.array(z.string()).optional(),
|
|
390
390
|
metadata: z.record(z.any()).optional(),
|
|
391
391
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
392
|
-
updated: z.date().default(() => new Date("2025-10-
|
|
392
|
+
updated: z.date().default(() => new Date("2025-10-21T15:04:06.875Z"))
|
|
393
393
|
.transform(v => v.toISOString()),
|
|
394
394
|
metrics: z.lazy(() => ListContactsMetrics$outboundSchema),
|
|
395
395
|
}).transform((v) => {
|
|
@@ -3338,7 +3338,7 @@ export const ListDatasetDatapointsEvaluations3$inboundSchema: z.ZodType<
|
|
|
3338
3338
|
source: ListDatasetDatapointsEvaluationsSource$inboundSchema.default("orq"),
|
|
3339
3339
|
reviewed_by_id: z.string(),
|
|
3340
3340
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
3341
|
-
"2025-10-
|
|
3341
|
+
"2025-10-21T15:04:16.411Z",
|
|
3342
3342
|
).transform(v => new Date(v)),
|
|
3343
3343
|
type: ListDatasetDatapointsEvaluationsDatasetsType$inboundSchema,
|
|
3344
3344
|
values: z.array(z.string()),
|
|
@@ -3374,7 +3374,7 @@ export const ListDatasetDatapointsEvaluations3$outboundSchema: z.ZodType<
|
|
|
3374
3374
|
humanReviewId: z.string(),
|
|
3375
3375
|
source: ListDatasetDatapointsEvaluationsSource$outboundSchema.default("orq"),
|
|
3376
3376
|
reviewedById: z.string(),
|
|
3377
|
-
reviewedAt: z.date().default(() => new Date("2025-10-
|
|
3377
|
+
reviewedAt: z.date().default(() => new Date("2025-10-21T15:04:16.411Z"))
|
|
3378
3378
|
.transform(v => v.toISOString()),
|
|
3379
3379
|
type: ListDatasetDatapointsEvaluationsDatasetsType$outboundSchema,
|
|
3380
3380
|
values: z.array(z.string()),
|
|
@@ -3512,7 +3512,7 @@ export const ListDatasetDatapointsEvaluations2$inboundSchema: z.ZodType<
|
|
|
3512
3512
|
.default("orq"),
|
|
3513
3513
|
reviewed_by_id: z.string(),
|
|
3514
3514
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
3515
|
-
"2025-10-
|
|
3515
|
+
"2025-10-21T15:04:16.411Z",
|
|
3516
3516
|
).transform(v => new Date(v)),
|
|
3517
3517
|
type: ListDatasetDatapointsEvaluationsType$inboundSchema,
|
|
3518
3518
|
value: z.number(),
|
|
@@ -3550,7 +3550,7 @@ export const ListDatasetDatapointsEvaluations2$outboundSchema: z.ZodType<
|
|
|
3550
3550
|
source: ListDatasetDatapointsEvaluationsDatasetsResponseSource$outboundSchema
|
|
3551
3551
|
.default("orq"),
|
|
3552
3552
|
reviewedById: z.string(),
|
|
3553
|
-
reviewedAt: z.date().default(() => new Date("2025-10-
|
|
3553
|
+
reviewedAt: z.date().default(() => new Date("2025-10-21T15:04:16.411Z"))
|
|
3554
3554
|
.transform(v => v.toISOString()),
|
|
3555
3555
|
type: ListDatasetDatapointsEvaluationsType$outboundSchema,
|
|
3556
3556
|
value: z.number(),
|
|
@@ -3683,7 +3683,7 @@ export const ListDatasetDatapointsEvaluations1$inboundSchema: z.ZodType<
|
|
|
3683
3683
|
),
|
|
3684
3684
|
reviewed_by_id: z.string(),
|
|
3685
3685
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
3686
|
-
"2025-10-
|
|
3686
|
+
"2025-10-21T15:04:16.410Z",
|
|
3687
3687
|
).transform(v => new Date(v)),
|
|
3688
3688
|
type: ListDatasetDatapointsEvaluationsDatasetsResponseType$inboundSchema,
|
|
3689
3689
|
value: z.string(),
|
|
@@ -3722,7 +3722,7 @@ export const ListDatasetDatapointsEvaluations1$outboundSchema: z.ZodType<
|
|
|
3722
3722
|
"orq",
|
|
3723
3723
|
),
|
|
3724
3724
|
reviewedById: z.string(),
|
|
3725
|
-
reviewedAt: z.date().default(() => new Date("2025-10-
|
|
3725
|
+
reviewedAt: z.date().default(() => new Date("2025-10-21T15:04:16.410Z"))
|
|
3726
3726
|
.transform(v => v.toISOString()),
|
|
3727
3727
|
type: ListDatasetDatapointsEvaluationsDatasetsResponseType$outboundSchema,
|
|
3728
3728
|
value: z.string(),
|
|
@@ -3865,7 +3865,7 @@ export const ListDatasetDatapointsData$inboundSchema: z.ZodType<
|
|
|
3865
3865
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
3866
3866
|
.optional(),
|
|
3867
3867
|
updated: z.string().datetime({ offset: true }).default(
|
|
3868
|
-
"2025-10-
|
|
3868
|
+
"2025-10-21T15:04:06.875Z",
|
|
3869
3869
|
).transform(v => new Date(v)),
|
|
3870
3870
|
}).transform((v) => {
|
|
3871
3871
|
return remap$(v, {
|
|
@@ -3946,7 +3946,7 @@ export const ListDatasetDatapointsData$outboundSchema: z.ZodType<
|
|
|
3946
3946
|
createdById: z.string().optional(),
|
|
3947
3947
|
updatedById: z.string().optional(),
|
|
3948
3948
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
3949
|
-
updated: z.date().default(() => new Date("2025-10-
|
|
3949
|
+
updated: z.date().default(() => new Date("2025-10-21T15:04:06.875Z"))
|
|
3950
3950
|
.transform(v => v.toISOString()),
|
|
3951
3951
|
}).transform((v) => {
|
|
3952
3952
|
return remap$(v, {
|
|
@@ -253,7 +253,7 @@ export const ListDatasetsData$inboundSchema: z.ZodType<
|
|
|
253
253
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
254
254
|
.optional(),
|
|
255
255
|
updated: z.string().datetime({ offset: true }).default(
|
|
256
|
-
"2025-10-
|
|
256
|
+
"2025-10-21T15:04:06.875Z",
|
|
257
257
|
).transform(v => new Date(v)),
|
|
258
258
|
}).transform((v) => {
|
|
259
259
|
return remap$(v, {
|
|
@@ -293,7 +293,7 @@ export const ListDatasetsData$outboundSchema: z.ZodType<
|
|
|
293
293
|
createdById: z.string().optional(),
|
|
294
294
|
updatedById: z.string().optional(),
|
|
295
295
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
296
|
-
updated: z.date().default(() => new Date("2025-10-
|
|
296
|
+
updated: z.date().default(() => new Date("2025-10-21T15:04:06.875Z"))
|
|
297
297
|
.transform(v => v.toISOString()),
|
|
298
298
|
}).transform((v) => {
|
|
299
299
|
return remap$(v, {
|
|
@@ -285,7 +285,7 @@ export const ListDatasourcesData$inboundSchema: z.ZodType<
|
|
|
285
285
|
z.ZodTypeDef,
|
|
286
286
|
unknown
|
|
287
287
|
> = z.object({
|
|
288
|
-
_id: z.string().default("
|
|
288
|
+
_id: z.string().default("01K83MSATHZKHA6MPE6PDBK33K"),
|
|
289
289
|
display_name: z.string(),
|
|
290
290
|
description: z.string().optional(),
|
|
291
291
|
status: ListDatasourcesStatus$inboundSchema,
|
|
@@ -329,7 +329,7 @@ export const ListDatasourcesData$outboundSchema: z.ZodType<
|
|
|
329
329
|
z.ZodTypeDef,
|
|
330
330
|
ListDatasourcesData
|
|
331
331
|
> = z.object({
|
|
332
|
-
id: z.string().default("
|
|
332
|
+
id: z.string().default("01K83MSATHZKHA6MPE6PDBK33K"),
|
|
333
333
|
displayName: z.string(),
|
|
334
334
|
description: z.string().optional(),
|
|
335
335
|
status: ListDatasourcesStatus$outboundSchema,
|
|
@@ -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-10-
|
|
130
|
+
"2025-10-21T15:04:06.875Z",
|
|
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-10-
|
|
168
|
+
updated: z.date().default(() => new Date("2025-10-21T15:04:06.875Z"))
|
|
169
169
|
.transform(v => v.toISOString()),
|
|
170
170
|
}).transform((v) => {
|
|
171
171
|
return remap$(v, {
|
|
@@ -3197,7 +3197,7 @@ export const RetrieveDatapointEvaluations3$inboundSchema: z.ZodType<
|
|
|
3197
3197
|
.default("orq"),
|
|
3198
3198
|
reviewed_by_id: z.string(),
|
|
3199
3199
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
3200
|
-
"2025-10-
|
|
3200
|
+
"2025-10-21T15:04:16.413Z",
|
|
3201
3201
|
).transform(v => new Date(v)),
|
|
3202
3202
|
type: RetrieveDatapointEvaluationsDatasetsResponseType$inboundSchema,
|
|
3203
3203
|
values: z.array(z.string()),
|
|
@@ -3235,7 +3235,7 @@ export const RetrieveDatapointEvaluations3$outboundSchema: z.ZodType<
|
|
|
3235
3235
|
source: RetrieveDatapointEvaluationsDatasetsResponseSource$outboundSchema
|
|
3236
3236
|
.default("orq"),
|
|
3237
3237
|
reviewedById: z.string(),
|
|
3238
|
-
reviewedAt: z.date().default(() => new Date("2025-10-
|
|
3238
|
+
reviewedAt: z.date().default(() => new Date("2025-10-21T15:04:16.413Z"))
|
|
3239
3239
|
.transform(v => v.toISOString()),
|
|
3240
3240
|
type: RetrieveDatapointEvaluationsDatasetsResponseType$outboundSchema,
|
|
3241
3241
|
values: z.array(z.string()),
|
|
@@ -3365,7 +3365,7 @@ export const RetrieveDatapointEvaluations2$inboundSchema: z.ZodType<
|
|
|
3365
3365
|
),
|
|
3366
3366
|
reviewed_by_id: z.string(),
|
|
3367
3367
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
3368
|
-
"2025-10-
|
|
3368
|
+
"2025-10-21T15:04:16.413Z",
|
|
3369
3369
|
).transform(v => new Date(v)),
|
|
3370
3370
|
type: RetrieveDatapointEvaluationsDatasetsType$inboundSchema,
|
|
3371
3371
|
value: z.number(),
|
|
@@ -3404,7 +3404,7 @@ export const RetrieveDatapointEvaluations2$outboundSchema: z.ZodType<
|
|
|
3404
3404
|
"orq",
|
|
3405
3405
|
),
|
|
3406
3406
|
reviewedById: z.string(),
|
|
3407
|
-
reviewedAt: z.date().default(() => new Date("2025-10-
|
|
3407
|
+
reviewedAt: z.date().default(() => new Date("2025-10-21T15:04:16.413Z"))
|
|
3408
3408
|
.transform(v => v.toISOString()),
|
|
3409
3409
|
type: RetrieveDatapointEvaluationsDatasetsType$outboundSchema,
|
|
3410
3410
|
value: z.number(),
|
|
@@ -3528,7 +3528,7 @@ export const RetrieveDatapointEvaluations1$inboundSchema: z.ZodType<
|
|
|
3528
3528
|
source: RetrieveDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
3529
3529
|
reviewed_by_id: z.string(),
|
|
3530
3530
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
3531
|
-
"2025-10-
|
|
3531
|
+
"2025-10-21T15:04:16.413Z",
|
|
3532
3532
|
).transform(v => new Date(v)),
|
|
3533
3533
|
type: RetrieveDatapointEvaluationsType$inboundSchema,
|
|
3534
3534
|
value: z.string(),
|
|
@@ -3564,7 +3564,7 @@ export const RetrieveDatapointEvaluations1$outboundSchema: z.ZodType<
|
|
|
3564
3564
|
humanReviewId: z.string(),
|
|
3565
3565
|
source: RetrieveDatapointEvaluationsSource$outboundSchema.default("orq"),
|
|
3566
3566
|
reviewedById: z.string(),
|
|
3567
|
-
reviewedAt: z.date().default(() => new Date("2025-10-
|
|
3567
|
+
reviewedAt: z.date().default(() => new Date("2025-10-21T15:04:16.413Z"))
|
|
3568
3568
|
.transform(v => v.toISOString()),
|
|
3569
3569
|
type: RetrieveDatapointEvaluationsType$outboundSchema,
|
|
3570
3570
|
value: z.string(),
|
|
@@ -3704,7 +3704,7 @@ export const RetrieveDatapointResponseBody$inboundSchema: z.ZodType<
|
|
|
3704
3704
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
3705
3705
|
.optional(),
|
|
3706
3706
|
updated: z.string().datetime({ offset: true }).default(
|
|
3707
|
-
"2025-10-
|
|
3707
|
+
"2025-10-21T15:04:06.875Z",
|
|
3708
3708
|
).transform(v => new Date(v)),
|
|
3709
3709
|
}).transform((v) => {
|
|
3710
3710
|
return remap$(v, {
|
|
@@ -3779,7 +3779,7 @@ export const RetrieveDatapointResponseBody$outboundSchema: z.ZodType<
|
|
|
3779
3779
|
createdById: z.string().optional(),
|
|
3780
3780
|
updatedById: z.string().optional(),
|
|
3781
3781
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
3782
|
-
updated: z.date().default(() => new Date("2025-10-
|
|
3782
|
+
updated: z.date().default(() => new Date("2025-10-21T15:04:06.875Z"))
|
|
3783
3783
|
.transform(v => v.toISOString()),
|
|
3784
3784
|
}).transform((v) => {
|
|
3785
3785
|
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-10-
|
|
204
|
+
"2025-10-21T15:04:06.875Z",
|
|
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
|
createdById: z.string().optional(),
|
|
242
242
|
updatedById: z.string().optional(),
|
|
243
243
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
244
|
-
updated: z.date().default(() => new Date("2025-10-
|
|
244
|
+
updated: z.date().default(() => new Date("2025-10-21T15:04:06.875Z"))
|
|
245
245
|
.transform(v => v.toISOString()),
|
|
246
246
|
}).transform((v) => {
|
|
247
247
|
return remap$(v, {
|