@orq-ai/node 4.2.0-rc.29 → 4.2.0-rc.30
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/FUNCTIONS.md +7 -17
- package/README.md +82 -118
- package/bin/mcp-server.js +1687 -692
- package/bin/mcp-server.js.map +67 -49
- package/examples/feedbackCreate.example.ts +32 -0
- package/examples/package-lock.json +2 -2
- package/funcs/contactsCreate.d.ts +2 -0
- package/funcs/contactsCreate.d.ts.map +1 -1
- package/funcs/contactsCreate.js +2 -0
- package/funcs/contactsCreate.js.map +1 -1
- package/funcs/contactsDelete.d.ts +2 -0
- package/funcs/contactsDelete.d.ts.map +1 -1
- package/funcs/contactsDelete.js +2 -0
- package/funcs/contactsDelete.js.map +1 -1
- package/funcs/contactsList.d.ts +2 -0
- package/funcs/contactsList.d.ts.map +1 -1
- package/funcs/contactsList.js +2 -0
- package/funcs/contactsList.js.map +1 -1
- package/funcs/contactsRetrieve.d.ts +2 -0
- package/funcs/contactsRetrieve.d.ts.map +1 -1
- package/funcs/contactsRetrieve.js +2 -0
- package/funcs/contactsRetrieve.js.map +1 -1
- package/funcs/contactsUpdate.d.ts +2 -0
- package/funcs/contactsUpdate.d.ts.map +1 -1
- package/funcs/contactsUpdate.js +2 -0
- package/funcs/contactsUpdate.js.map +1 -1
- package/funcs/identitiesCreate.d.ts +17 -0
- package/funcs/identitiesCreate.d.ts.map +1 -0
- package/funcs/identitiesCreate.js +116 -0
- package/funcs/identitiesCreate.js.map +1 -0
- package/funcs/identitiesDelete.d.ts +18 -0
- package/funcs/identitiesDelete.d.ts.map +1 -0
- package/funcs/identitiesDelete.js +124 -0
- package/funcs/identitiesDelete.js.map +1 -0
- package/funcs/identitiesList.d.ts +17 -0
- package/funcs/identitiesList.d.ts.map +1 -0
- package/funcs/identitiesList.js +122 -0
- package/funcs/identitiesList.js.map +1 -0
- package/funcs/identitiesRetrieve.d.ts +18 -0
- package/funcs/identitiesRetrieve.d.ts.map +1 -0
- package/funcs/identitiesRetrieve.js +123 -0
- package/funcs/identitiesRetrieve.js.map +1 -0
- package/funcs/identitiesUpdate.d.ts +18 -0
- package/funcs/identitiesUpdate.d.ts.map +1 -0
- package/funcs/identitiesUpdate.js +124 -0
- package/funcs/identitiesUpdate.js.map +1 -0
- 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.d.ts.map +1 -1
- package/mcp-server/server.js +11 -1
- package/mcp-server/server.js.map +1 -1
- package/mcp-server/tools/identitiesCreate.d.ts +8 -0
- package/mcp-server/tools/identitiesCreate.d.ts.map +1 -0
- package/mcp-server/tools/identitiesCreate.js +64 -0
- package/mcp-server/tools/identitiesCreate.js.map +1 -0
- package/mcp-server/tools/identitiesDelete.d.ts +8 -0
- package/mcp-server/tools/identitiesDelete.d.ts.map +1 -0
- package/mcp-server/tools/identitiesDelete.js +63 -0
- package/mcp-server/tools/identitiesDelete.js.map +1 -0
- package/mcp-server/tools/identitiesList.d.ts +8 -0
- package/mcp-server/tools/identitiesList.d.ts.map +1 -0
- package/mcp-server/tools/identitiesList.js +64 -0
- package/mcp-server/tools/identitiesList.js.map +1 -0
- package/mcp-server/tools/identitiesRetrieve.d.ts +8 -0
- package/mcp-server/tools/identitiesRetrieve.d.ts.map +1 -0
- package/mcp-server/tools/identitiesRetrieve.js +64 -0
- package/mcp-server/tools/identitiesRetrieve.js.map +1 -0
- package/mcp-server/tools/identitiesUpdate.d.ts +8 -0
- package/mcp-server/tools/identitiesUpdate.d.ts.map +1 -0
- package/mcp-server/tools/identitiesUpdate.js +64 -0
- package/mcp-server/tools/identitiesUpdate.js.map +1 -0
- package/models/components/conversationresponse.js +2 -2
- package/models/components/conversationwithmessagesresponse.js +2 -2
- package/models/components/partdoneevent.js +2 -2
- package/models/components/reasoningpart.js +2 -2
- package/models/errors/deleteidentity.d.ts +36 -0
- package/models/errors/deleteidentity.d.ts.map +1 -0
- package/models/errors/deleteidentity.js +77 -0
- package/models/errors/deleteidentity.js.map +1 -0
- package/models/errors/index.d.ts +3 -0
- package/models/errors/index.d.ts.map +1 -1
- package/models/errors/index.js +3 -0
- package/models/errors/index.js.map +1 -1
- package/models/errors/retrieveidentity.d.ts +36 -0
- package/models/errors/retrieveidentity.d.ts.map +1 -0
- package/models/errors/retrieveidentity.js +77 -0
- package/models/errors/retrieveidentity.js.map +1 -0
- package/models/errors/updateidentity.d.ts +32 -0
- package/models/errors/updateidentity.d.ts.map +1 -0
- package/models/errors/updateidentity.js +74 -0
- package/models/errors/updateidentity.js.map +1 -0
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createconversation.js +2 -2
- package/models/operations/createconversationresponse.js +4 -4
- 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/createidentity.d.ts +120 -0
- package/models/operations/createidentity.d.ts.map +1 -0
- package/models/operations/createidentity.js +133 -0
- package/models/operations/createidentity.js.map +1 -0
- package/models/operations/createtool.js +12 -12
- package/models/operations/deleteidentity.d.ts +20 -0
- package/models/operations/deleteidentity.d.ts.map +1 -0
- package/models/operations/deleteidentity.js +58 -0
- package/models/operations/deleteidentity.js.map +1 -0
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/generateconversationname.js +2 -2
- package/models/operations/getalltools.js +12 -12
- package/models/operations/getevals.js +28 -28
- package/models/operations/index.d.ts +5 -0
- package/models/operations/index.d.ts.map +1 -1
- package/models/operations/index.js +5 -0
- package/models/operations/index.js.map +1 -1
- package/models/operations/listcontacts.d.ts +8 -8
- package/models/operations/listcontacts.d.ts.map +1 -1
- package/models/operations/listcontacts.js +15 -13
- package/models/operations/listcontacts.js.map +1 -1
- package/models/operations/listdatasetdatapoints.js +8 -8
- package/models/operations/listdatasets.js +2 -2
- package/models/operations/listdatasources.js +2 -2
- package/models/operations/listidentities.d.ts +183 -0
- package/models/operations/listidentities.d.ts.map +1 -0
- package/models/operations/listidentities.js +220 -0
- package/models/operations/listidentities.js.map +1 -0
- 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/retrieveidentity.d.ts +83 -0
- package/models/operations/retrieveidentity.d.ts.map +1 -0
- package/models/operations/retrieveidentity.js +107 -0
- package/models/operations/retrieveidentity.js.map +1 -0
- package/models/operations/retrievetool.js +12 -12
- package/models/operations/runagent.js +2 -2
- package/models/operations/streamrunagent.js +2 -2
- package/models/operations/updatecontact.js +2 -2
- package/models/operations/updateconversation.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/updateidentity.d.ts +131 -0
- package/models/operations/updateidentity.d.ts.map +1 -0
- package/models/operations/updateidentity.js +152 -0
- package/models/operations/updateidentity.js.map +1 -0
- package/models/operations/updatetool.js +14 -14
- package/package.json +2 -2
- package/sdk/contacts.d.ts +10 -0
- package/sdk/contacts.d.ts.map +1 -1
- package/sdk/contacts.js +10 -0
- package/sdk/contacts.js.map +1 -1
- package/sdk/identities.d.ts +40 -0
- package/sdk/identities.d.ts.map +1 -0
- package/sdk/identities.js +62 -0
- package/sdk/identities.js.map +1 -0
- package/sdk/sdk.d.ts +3 -0
- package/sdk/sdk.d.ts.map +1 -1
- package/sdk/sdk.js +4 -0
- package/sdk/sdk.js.map +1 -1
- package/src/funcs/contactsCreate.ts +2 -0
- package/src/funcs/contactsDelete.ts +2 -0
- package/src/funcs/contactsList.ts +2 -0
- package/src/funcs/contactsRetrieve.ts +2 -0
- package/src/funcs/contactsUpdate.ts +2 -0
- package/src/funcs/identitiesCreate.ts +165 -0
- package/src/funcs/identitiesDelete.ts +176 -0
- package/src/funcs/identitiesList.ts +170 -0
- package/src/funcs/identitiesRetrieve.ts +175 -0
- package/src/funcs/identitiesUpdate.ts +176 -0
- package/src/lib/config.ts +3 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +11 -1
- package/src/mcp-server/tools/identitiesCreate.ts +37 -0
- package/src/mcp-server/tools/identitiesDelete.ts +35 -0
- package/src/mcp-server/tools/identitiesList.ts +37 -0
- package/src/mcp-server/tools/identitiesRetrieve.ts +37 -0
- package/src/mcp-server/tools/identitiesUpdate.ts +37 -0
- package/src/models/components/conversationresponse.ts +2 -2
- package/src/models/components/conversationwithmessagesresponse.ts +2 -2
- package/src/models/components/partdoneevent.ts +2 -2
- package/src/models/components/reasoningpart.ts +2 -2
- package/src/models/errors/deleteidentity.ts +78 -0
- package/src/models/errors/index.ts +3 -0
- package/src/models/errors/retrieveidentity.ts +78 -0
- package/src/models/errors/updateidentity.ts +70 -0
- package/src/models/operations/createcontact.ts +2 -2
- package/src/models/operations/createconversation.ts +2 -2
- package/src/models/operations/createconversationresponse.ts +4 -4
- 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/createidentity.ts +237 -0
- package/src/models/operations/createtool.ts +12 -12
- package/src/models/operations/deleteidentity.ts +54 -0
- 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/generateconversationname.ts +2 -2
- package/src/models/operations/getalltools.ts +12 -12
- package/src/models/operations/getevals.ts +28 -28
- package/src/models/operations/index.ts +5 -0
- package/src/models/operations/listcontacts.ts +24 -20
- 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/listidentities.ts +432 -0
- 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/retrieveidentity.ts +180 -0
- package/src/models/operations/retrievetool.ts +12 -12
- package/src/models/operations/runagent.ts +2 -2
- package/src/models/operations/streamrunagent.ts +2 -2
- package/src/models/operations/updatecontact.ts +2 -2
- package/src/models/operations/updateconversation.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/updateidentity.ts +281 -0
- package/src/models/operations/updatetool.ts +14 -14
- package/src/sdk/contacts.ts +10 -0
- package/src/sdk/identities.ts +99 -0
- package/src/sdk/sdk.ts +6 -0
- package/examples/contactsCreate.example.ts +0 -42
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
import * as z from "zod/v3";
|
|
6
|
+
import { OrqError } from "./orqerror.js";
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* Identity not found
|
|
10
|
+
*/
|
|
11
|
+
export type DeleteIdentityResponseBodyData = {
|
|
12
|
+
/**
|
|
13
|
+
* Error message
|
|
14
|
+
*/
|
|
15
|
+
error: string;
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* Identity not found
|
|
20
|
+
*/
|
|
21
|
+
export class DeleteIdentityResponseBody extends OrqError {
|
|
22
|
+
/**
|
|
23
|
+
* Error message
|
|
24
|
+
*/
|
|
25
|
+
error: string;
|
|
26
|
+
|
|
27
|
+
/** The original data that was passed to this error instance. */
|
|
28
|
+
data$: DeleteIdentityResponseBodyData;
|
|
29
|
+
|
|
30
|
+
constructor(
|
|
31
|
+
err: DeleteIdentityResponseBodyData,
|
|
32
|
+
httpMeta: { response: Response; request: Request; body: string },
|
|
33
|
+
) {
|
|
34
|
+
const message = "message" in err && typeof err.message === "string"
|
|
35
|
+
? err.message
|
|
36
|
+
: `API error occurred: ${JSON.stringify(err)}`;
|
|
37
|
+
super(message, httpMeta);
|
|
38
|
+
this.data$ = err;
|
|
39
|
+
this.error = err.error;
|
|
40
|
+
|
|
41
|
+
this.name = "DeleteIdentityResponseBody";
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
/** @internal */
|
|
46
|
+
export const DeleteIdentityResponseBody$inboundSchema: z.ZodType<
|
|
47
|
+
DeleteIdentityResponseBody,
|
|
48
|
+
z.ZodTypeDef,
|
|
49
|
+
unknown
|
|
50
|
+
> = z.object({
|
|
51
|
+
error: z.string(),
|
|
52
|
+
request$: z.instanceof(Request),
|
|
53
|
+
response$: z.instanceof(Response),
|
|
54
|
+
body$: z.string(),
|
|
55
|
+
})
|
|
56
|
+
.transform((v) => {
|
|
57
|
+
return new DeleteIdentityResponseBody(v, {
|
|
58
|
+
request: v.request$,
|
|
59
|
+
response: v.response$,
|
|
60
|
+
body: v.body$,
|
|
61
|
+
});
|
|
62
|
+
});
|
|
63
|
+
|
|
64
|
+
/** @internal */
|
|
65
|
+
export type DeleteIdentityResponseBody$Outbound = {
|
|
66
|
+
error: string;
|
|
67
|
+
};
|
|
68
|
+
|
|
69
|
+
/** @internal */
|
|
70
|
+
export const DeleteIdentityResponseBody$outboundSchema: z.ZodType<
|
|
71
|
+
DeleteIdentityResponseBody$Outbound,
|
|
72
|
+
z.ZodTypeDef,
|
|
73
|
+
DeleteIdentityResponseBody
|
|
74
|
+
> = z.instanceof(DeleteIdentityResponseBody)
|
|
75
|
+
.transform(v => v.data$)
|
|
76
|
+
.pipe(z.object({
|
|
77
|
+
error: z.string(),
|
|
78
|
+
}));
|
|
@@ -8,6 +8,7 @@ export * from "./deleteagent.js";
|
|
|
8
8
|
export * from "./deletecontact.js";
|
|
9
9
|
export * from "./deleteconversation.js";
|
|
10
10
|
export * from "./deleteeval.js";
|
|
11
|
+
export * from "./deleteidentity.js";
|
|
11
12
|
export * from "./generateconversationname.js";
|
|
12
13
|
export * from "./getevals.js";
|
|
13
14
|
export * from "./getpromptversion.js";
|
|
@@ -22,6 +23,7 @@ export * from "./responsevalidationerror.js";
|
|
|
22
23
|
export * from "./retrieveagentrequest.js";
|
|
23
24
|
export * from "./retrievecontact.js";
|
|
24
25
|
export * from "./retrieveconversation.js";
|
|
26
|
+
export * from "./retrieveidentity.js";
|
|
25
27
|
export * from "./sdkvalidationerror.js";
|
|
26
28
|
export * from "./streamagent.js";
|
|
27
29
|
export * from "./streamrunagent.js";
|
|
@@ -29,5 +31,6 @@ export * from "./updateagent.js";
|
|
|
29
31
|
export * from "./updatecontact.js";
|
|
30
32
|
export * from "./updateconversation.js";
|
|
31
33
|
export * from "./updateeval.js";
|
|
34
|
+
export * from "./updateidentity.js";
|
|
32
35
|
export * from "./updateprompt.js";
|
|
33
36
|
export * from "./updatetool.js";
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
import * as z from "zod/v3";
|
|
6
|
+
import { OrqError } from "./orqerror.js";
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* Identity not found
|
|
10
|
+
*/
|
|
11
|
+
export type RetrieveIdentityResponseBodyData = {
|
|
12
|
+
/**
|
|
13
|
+
* Error message
|
|
14
|
+
*/
|
|
15
|
+
error: string;
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* Identity not found
|
|
20
|
+
*/
|
|
21
|
+
export class RetrieveIdentityResponseBody extends OrqError {
|
|
22
|
+
/**
|
|
23
|
+
* Error message
|
|
24
|
+
*/
|
|
25
|
+
error: string;
|
|
26
|
+
|
|
27
|
+
/** The original data that was passed to this error instance. */
|
|
28
|
+
data$: RetrieveIdentityResponseBodyData;
|
|
29
|
+
|
|
30
|
+
constructor(
|
|
31
|
+
err: RetrieveIdentityResponseBodyData,
|
|
32
|
+
httpMeta: { response: Response; request: Request; body: string },
|
|
33
|
+
) {
|
|
34
|
+
const message = "message" in err && typeof err.message === "string"
|
|
35
|
+
? err.message
|
|
36
|
+
: `API error occurred: ${JSON.stringify(err)}`;
|
|
37
|
+
super(message, httpMeta);
|
|
38
|
+
this.data$ = err;
|
|
39
|
+
this.error = err.error;
|
|
40
|
+
|
|
41
|
+
this.name = "RetrieveIdentityResponseBody";
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
/** @internal */
|
|
46
|
+
export const RetrieveIdentityResponseBody$inboundSchema: z.ZodType<
|
|
47
|
+
RetrieveIdentityResponseBody,
|
|
48
|
+
z.ZodTypeDef,
|
|
49
|
+
unknown
|
|
50
|
+
> = z.object({
|
|
51
|
+
error: z.string(),
|
|
52
|
+
request$: z.instanceof(Request),
|
|
53
|
+
response$: z.instanceof(Response),
|
|
54
|
+
body$: z.string(),
|
|
55
|
+
})
|
|
56
|
+
.transform((v) => {
|
|
57
|
+
return new RetrieveIdentityResponseBody(v, {
|
|
58
|
+
request: v.request$,
|
|
59
|
+
response: v.response$,
|
|
60
|
+
body: v.body$,
|
|
61
|
+
});
|
|
62
|
+
});
|
|
63
|
+
|
|
64
|
+
/** @internal */
|
|
65
|
+
export type RetrieveIdentityResponseBody$Outbound = {
|
|
66
|
+
error: string;
|
|
67
|
+
};
|
|
68
|
+
|
|
69
|
+
/** @internal */
|
|
70
|
+
export const RetrieveIdentityResponseBody$outboundSchema: z.ZodType<
|
|
71
|
+
RetrieveIdentityResponseBody$Outbound,
|
|
72
|
+
z.ZodTypeDef,
|
|
73
|
+
RetrieveIdentityResponseBody
|
|
74
|
+
> = z.instanceof(RetrieveIdentityResponseBody)
|
|
75
|
+
.transform(v => v.data$)
|
|
76
|
+
.pipe(z.object({
|
|
77
|
+
error: z.string(),
|
|
78
|
+
}));
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
import * as z from "zod/v3";
|
|
6
|
+
import { OrqError } from "./orqerror.js";
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* Identity not found
|
|
10
|
+
*/
|
|
11
|
+
export type UpdateIdentityResponseBodyData = {
|
|
12
|
+
/**
|
|
13
|
+
* Error message
|
|
14
|
+
*/
|
|
15
|
+
message: string;
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* Identity not found
|
|
20
|
+
*/
|
|
21
|
+
export class UpdateIdentityResponseBody extends OrqError {
|
|
22
|
+
/** The original data that was passed to this error instance. */
|
|
23
|
+
data$: UpdateIdentityResponseBodyData;
|
|
24
|
+
|
|
25
|
+
constructor(
|
|
26
|
+
err: UpdateIdentityResponseBodyData,
|
|
27
|
+
httpMeta: { response: Response; request: Request; body: string },
|
|
28
|
+
) {
|
|
29
|
+
const message = err.message || `API error occurred: ${JSON.stringify(err)}`;
|
|
30
|
+
super(message, httpMeta);
|
|
31
|
+
this.data$ = err;
|
|
32
|
+
|
|
33
|
+
this.name = "UpdateIdentityResponseBody";
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
/** @internal */
|
|
38
|
+
export const UpdateIdentityResponseBody$inboundSchema: z.ZodType<
|
|
39
|
+
UpdateIdentityResponseBody,
|
|
40
|
+
z.ZodTypeDef,
|
|
41
|
+
unknown
|
|
42
|
+
> = z.object({
|
|
43
|
+
message: z.string(),
|
|
44
|
+
request$: z.instanceof(Request),
|
|
45
|
+
response$: z.instanceof(Response),
|
|
46
|
+
body$: z.string(),
|
|
47
|
+
})
|
|
48
|
+
.transform((v) => {
|
|
49
|
+
return new UpdateIdentityResponseBody(v, {
|
|
50
|
+
request: v.request$,
|
|
51
|
+
response: v.response$,
|
|
52
|
+
body: v.body$,
|
|
53
|
+
});
|
|
54
|
+
});
|
|
55
|
+
|
|
56
|
+
/** @internal */
|
|
57
|
+
export type UpdateIdentityResponseBody$Outbound = {
|
|
58
|
+
message: string;
|
|
59
|
+
};
|
|
60
|
+
|
|
61
|
+
/** @internal */
|
|
62
|
+
export const UpdateIdentityResponseBody$outboundSchema: z.ZodType<
|
|
63
|
+
UpdateIdentityResponseBody$Outbound,
|
|
64
|
+
z.ZodTypeDef,
|
|
65
|
+
UpdateIdentityResponseBody
|
|
66
|
+
> = z.instanceof(UpdateIdentityResponseBody)
|
|
67
|
+
.transform(v => v.data$)
|
|
68
|
+
.pipe(z.object({
|
|
69
|
+
message: z.string(),
|
|
70
|
+
}));
|
|
@@ -167,7 +167,7 @@ export const CreateContactResponseBody$inboundSchema: z.ZodType<
|
|
|
167
167
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
168
168
|
.optional(),
|
|
169
169
|
updated: z.string().datetime({ offset: true }).default(
|
|
170
|
-
"2026-01-
|
|
170
|
+
"2026-01-15T04:13:15.987Z",
|
|
171
171
|
).transform(v => new Date(v)),
|
|
172
172
|
}).transform((v) => {
|
|
173
173
|
return remap$(v, {
|
|
@@ -207,7 +207,7 @@ export const CreateContactResponseBody$outboundSchema: z.ZodType<
|
|
|
207
207
|
tags: z.array(z.string()).optional(),
|
|
208
208
|
metadata: z.record(z.any()).optional(),
|
|
209
209
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
210
|
-
updated: z.date().default(() => new Date("2026-01-
|
|
210
|
+
updated: z.date().default(() => new Date("2026-01-15T04:13:15.987Z"))
|
|
211
211
|
.transform(v => v.toISOString()),
|
|
212
212
|
}).transform((v) => {
|
|
213
213
|
return remap$(v, {
|
|
@@ -270,7 +270,7 @@ export const CreateConversationResponseBody$inboundSchema: z.ZodType<
|
|
|
270
270
|
z.ZodTypeDef,
|
|
271
271
|
unknown
|
|
272
272
|
> = z.object({
|
|
273
|
-
_id: z.string().default("
|
|
273
|
+
_id: z.string().default("conv_01kezxqgb2hrmvy68z4296f9ya"),
|
|
274
274
|
kind: CreateConversationKind$inboundSchema,
|
|
275
275
|
displayName: z.string(),
|
|
276
276
|
createdAt: z.number(),
|
|
@@ -302,7 +302,7 @@ export const CreateConversationResponseBody$outboundSchema: z.ZodType<
|
|
|
302
302
|
z.ZodTypeDef,
|
|
303
303
|
CreateConversationResponseBody
|
|
304
304
|
> = z.object({
|
|
305
|
-
id: z.string().default("
|
|
305
|
+
id: z.string().default("conv_01kezxqgb2hrmvy68z4296f9ya"),
|
|
306
306
|
kind: CreateConversationKind$outboundSchema,
|
|
307
307
|
displayName: z.string(),
|
|
308
308
|
createdAt: z.number(),
|
|
@@ -337,7 +337,7 @@ export const PartReasoningPart$inboundSchema: z.ZodType<
|
|
|
337
337
|
z.ZodTypeDef,
|
|
338
338
|
unknown
|
|
339
339
|
> = z.object({
|
|
340
|
-
_id: z.string().default("
|
|
340
|
+
_id: z.string().default("reasoning_01kezxqgbzrp6wwpv7s4gys90p"),
|
|
341
341
|
metadata: z.record(z.any()).optional(),
|
|
342
342
|
kind: PartKind$inboundSchema,
|
|
343
343
|
reasoning: z.string(),
|
|
@@ -362,7 +362,7 @@ export const PartReasoningPart$outboundSchema: z.ZodType<
|
|
|
362
362
|
z.ZodTypeDef,
|
|
363
363
|
PartReasoningPart
|
|
364
364
|
> = z.object({
|
|
365
|
-
id: z.string().default("
|
|
365
|
+
id: z.string().default("reasoning_01kezxqgbzrp6wwpv7s4gys90p"),
|
|
366
366
|
metadata: z.record(z.any()).optional(),
|
|
367
367
|
kind: PartKind$outboundSchema,
|
|
368
368
|
reasoning: z.string(),
|
|
@@ -510,7 +510,7 @@ export const ReasoningPart$inboundSchema: z.ZodType<
|
|
|
510
510
|
z.ZodTypeDef,
|
|
511
511
|
unknown
|
|
512
512
|
> = z.object({
|
|
513
|
-
_id: z.string().default("
|
|
513
|
+
_id: z.string().default("reasoning_01kezxqgbva58jpqg7btdv9g5j"),
|
|
514
514
|
metadata: z.record(z.any()).optional(),
|
|
515
515
|
kind: DeltaKind$inboundSchema,
|
|
516
516
|
reasoning: z.string(),
|
|
@@ -535,7 +535,7 @@ export const ReasoningPart$outboundSchema: z.ZodType<
|
|
|
535
535
|
z.ZodTypeDef,
|
|
536
536
|
ReasoningPart
|
|
537
537
|
> = z.object({
|
|
538
|
-
id: z.string().default("
|
|
538
|
+
id: z.string().default("reasoning_01kezxqgbva58jpqg7btdv9g5j"),
|
|
539
539
|
metadata: z.record(z.any()).optional(),
|
|
540
540
|
kind: DeltaKind$outboundSchema,
|
|
541
541
|
reasoning: z.string(),
|
|
@@ -187,7 +187,7 @@ export const CreateDatasetResponseBody$inboundSchema: z.ZodType<
|
|
|
187
187
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
188
188
|
.optional(),
|
|
189
189
|
updated: z.string().datetime({ offset: true }).default(
|
|
190
|
-
"2026-01-
|
|
190
|
+
"2026-01-15T04:13:15.987Z",
|
|
191
191
|
).transform(v => new Date(v)),
|
|
192
192
|
}).transform((v) => {
|
|
193
193
|
return remap$(v, {
|
|
@@ -226,7 +226,7 @@ export const CreateDatasetResponseBody$outboundSchema: z.ZodType<
|
|
|
226
226
|
createdById: z.string().optional(),
|
|
227
227
|
updatedById: z.string().optional(),
|
|
228
228
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
229
|
-
updated: z.date().default(() => new Date("2026-01-
|
|
229
|
+
updated: z.date().default(() => new Date("2026-01-15T04:13:15.987Z"))
|
|
230
230
|
.transform(v => v.toISOString()),
|
|
231
231
|
}).transform((v) => {
|
|
232
232
|
return remap$(v, {
|
|
@@ -3616,7 +3616,7 @@ export const Evaluations3$inboundSchema: z.ZodType<
|
|
|
3616
3616
|
),
|
|
3617
3617
|
reviewed_by_id: z.string(),
|
|
3618
3618
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
3619
|
-
"2026-01-
|
|
3619
|
+
"2026-01-15T04:13:29.373Z",
|
|
3620
3620
|
).transform(v => new Date(v)),
|
|
3621
3621
|
type: z.literal("string_array"),
|
|
3622
3622
|
values: z.array(z.string()),
|
|
@@ -3653,7 +3653,7 @@ export const Evaluations3$outboundSchema: z.ZodType<
|
|
|
3653
3653
|
"orq",
|
|
3654
3654
|
),
|
|
3655
3655
|
reviewedById: z.string(),
|
|
3656
|
-
reviewedAt: z.date().default(() => new Date("2026-01-
|
|
3656
|
+
reviewedAt: z.date().default(() => new Date("2026-01-15T04:13:29.373Z"))
|
|
3657
3657
|
.transform(v => v.toISOString()),
|
|
3658
3658
|
type: z.literal("string_array"),
|
|
3659
3659
|
values: z.array(z.string()),
|
|
@@ -3709,7 +3709,7 @@ export const Evaluations2$inboundSchema: z.ZodType<
|
|
|
3709
3709
|
source: CreateDatasetItemEvaluationsSource$inboundSchema.default("orq"),
|
|
3710
3710
|
reviewed_by_id: z.string(),
|
|
3711
3711
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
3712
|
-
"2026-01-
|
|
3712
|
+
"2026-01-15T04:13:29.372Z",
|
|
3713
3713
|
).transform(v => new Date(v)),
|
|
3714
3714
|
type: z.literal("number"),
|
|
3715
3715
|
value: z.number(),
|
|
@@ -3744,7 +3744,7 @@ export const Evaluations2$outboundSchema: z.ZodType<
|
|
|
3744
3744
|
humanReviewId: z.string(),
|
|
3745
3745
|
source: CreateDatasetItemEvaluationsSource$outboundSchema.default("orq"),
|
|
3746
3746
|
reviewedById: z.string(),
|
|
3747
|
-
reviewedAt: z.date().default(() => new Date("2026-01-
|
|
3747
|
+
reviewedAt: z.date().default(() => new Date("2026-01-15T04:13:29.372Z"))
|
|
3748
3748
|
.transform(v => v.toISOString()),
|
|
3749
3749
|
type: z.literal("number"),
|
|
3750
3750
|
value: z.number(),
|
|
@@ -3800,7 +3800,7 @@ export const Evaluations1$inboundSchema: z.ZodType<
|
|
|
3800
3800
|
source: EvaluationsSource$inboundSchema.default("orq"),
|
|
3801
3801
|
reviewed_by_id: z.string(),
|
|
3802
3802
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
3803
|
-
"2026-01-
|
|
3803
|
+
"2026-01-15T04:13:29.371Z",
|
|
3804
3804
|
).transform(v => new Date(v)),
|
|
3805
3805
|
type: z.literal("string"),
|
|
3806
3806
|
value: z.string(),
|
|
@@ -3835,7 +3835,7 @@ export const Evaluations1$outboundSchema: z.ZodType<
|
|
|
3835
3835
|
humanReviewId: z.string(),
|
|
3836
3836
|
source: EvaluationsSource$outboundSchema.default("orq"),
|
|
3837
3837
|
reviewedById: z.string(),
|
|
3838
|
-
reviewedAt: z.date().default(() => new Date("2026-01-
|
|
3838
|
+
reviewedAt: z.date().default(() => new Date("2026-01-15T04:13:29.371Z"))
|
|
3839
3839
|
.transform(v => v.toISOString()),
|
|
3840
3840
|
type: z.literal("string"),
|
|
3841
3841
|
value: z.string(),
|
|
@@ -3940,7 +3940,7 @@ export const CreateDatasetItemResponseBody$inboundSchema: z.ZodType<
|
|
|
3940
3940
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
3941
3941
|
.optional(),
|
|
3942
3942
|
updated: z.string().datetime({ offset: true }).default(
|
|
3943
|
-
"2026-01-
|
|
3943
|
+
"2026-01-15T04:13:15.987Z",
|
|
3944
3944
|
).transform(v => new Date(v)),
|
|
3945
3945
|
}).transform((v) => {
|
|
3946
3946
|
return remap$(v, {
|
|
@@ -4018,7 +4018,7 @@ export const CreateDatasetItemResponseBody$outboundSchema: z.ZodType<
|
|
|
4018
4018
|
createdById: z.string().optional(),
|
|
4019
4019
|
updatedById: z.string().optional(),
|
|
4020
4020
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
4021
|
-
updated: z.date().default(() => new Date("2026-01-
|
|
4021
|
+
updated: z.date().default(() => new Date("2026-01-15T04:13:15.987Z"))
|
|
4022
4022
|
.transform(v => v.toISOString()),
|
|
4023
4023
|
}).transform((v) => {
|
|
4024
4024
|
return remap$(v, {
|
|
@@ -576,7 +576,7 @@ export const CreateDatasourceResponseBody$inboundSchema: z.ZodType<
|
|
|
576
576
|
z.ZodTypeDef,
|
|
577
577
|
unknown
|
|
578
578
|
> = z.object({
|
|
579
|
-
_id: z.string().default("
|
|
579
|
+
_id: z.string().default("01KEZXQGSEVVZ4CN3XN2CYA7PW"),
|
|
580
580
|
display_name: z.string(),
|
|
581
581
|
description: z.string().optional(),
|
|
582
582
|
status: CreateDatasourceStatus$inboundSchema,
|
|
@@ -619,7 +619,7 @@ export const CreateDatasourceResponseBody$outboundSchema: z.ZodType<
|
|
|
619
619
|
z.ZodTypeDef,
|
|
620
620
|
CreateDatasourceResponseBody
|
|
621
621
|
> = z.object({
|
|
622
|
-
id: z.string().default("
|
|
622
|
+
id: z.string().default("01KEZXQGSEVVZ4CN3XN2CYA7PW"),
|
|
623
623
|
displayName: z.string(),
|
|
624
624
|
description: z.string().optional(),
|
|
625
625
|
status: CreateDatasourceStatus$outboundSchema,
|
|
@@ -2124,8 +2124,8 @@ export const Typescript$inboundSchema: z.ZodType<
|
|
|
2124
2124
|
> = z.object({
|
|
2125
2125
|
_id: z.string(),
|
|
2126
2126
|
description: z.string(),
|
|
2127
|
-
created: z.string().default("2026-01-
|
|
2128
|
-
updated: z.string().default("2026-01-
|
|
2127
|
+
created: z.string().default("2026-01-15T04:13:18.456Z"),
|
|
2128
|
+
updated: z.string().default("2026-01-15T04:13:18.456Z"),
|
|
2129
2129
|
guardrail_config: z.union([
|
|
2130
2130
|
z.lazy(() =>
|
|
2131
2131
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$inboundSchema
|
|
@@ -2166,8 +2166,8 @@ export const Typescript$outboundSchema: z.ZodType<
|
|
|
2166
2166
|
> = z.object({
|
|
2167
2167
|
id: z.string(),
|
|
2168
2168
|
description: z.string(),
|
|
2169
|
-
created: z.string().default("2026-01-
|
|
2170
|
-
updated: z.string().default("2026-01-
|
|
2169
|
+
created: z.string().default("2026-01-15T04:13:18.456Z"),
|
|
2170
|
+
updated: z.string().default("2026-01-15T04:13:18.456Z"),
|
|
2171
2171
|
guardrailConfig: z.union([
|
|
2172
2172
|
z.lazy(() =>
|
|
2173
2173
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$outboundSchema
|
|
@@ -2426,8 +2426,8 @@ export const Ragas$inboundSchema: z.ZodType<Ragas, z.ZodTypeDef, unknown> = z
|
|
|
2426
2426
|
.object({
|
|
2427
2427
|
_id: z.string(),
|
|
2428
2428
|
description: z.string(),
|
|
2429
|
-
created: z.string().default("2026-01-
|
|
2430
|
-
updated: z.string().default("2026-01-
|
|
2429
|
+
created: z.string().default("2026-01-15T04:13:18.456Z"),
|
|
2430
|
+
updated: z.string().default("2026-01-15T04:13:18.456Z"),
|
|
2431
2431
|
guardrail_config: z.union([
|
|
2432
2432
|
z.lazy(() =>
|
|
2433
2433
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$inboundSchema
|
|
@@ -2471,8 +2471,8 @@ export const Ragas$outboundSchema: z.ZodType<
|
|
|
2471
2471
|
> = z.object({
|
|
2472
2472
|
id: z.string(),
|
|
2473
2473
|
description: z.string(),
|
|
2474
|
-
created: z.string().default("2026-01-
|
|
2475
|
-
updated: z.string().default("2026-01-
|
|
2474
|
+
created: z.string().default("2026-01-15T04:13:18.456Z"),
|
|
2475
|
+
updated: z.string().default("2026-01-15T04:13:18.456Z"),
|
|
2476
2476
|
guardrailConfig: z.union([
|
|
2477
2477
|
z.lazy(() =>
|
|
2478
2478
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$outboundSchema
|
|
@@ -4000,8 +4000,8 @@ export const CreateEvalResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
4000
4000
|
> = z.object({
|
|
4001
4001
|
_id: z.string(),
|
|
4002
4002
|
description: z.string(),
|
|
4003
|
-
created: z.string().default("2026-01-
|
|
4004
|
-
updated: z.string().default("2026-01-
|
|
4003
|
+
created: z.string().default("2026-01-15T04:13:18.456Z"),
|
|
4004
|
+
updated: z.string().default("2026-01-15T04:13:18.456Z"),
|
|
4005
4005
|
guardrail_config: z.union([
|
|
4006
4006
|
z.lazy(() =>
|
|
4007
4007
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$inboundSchema
|
|
@@ -4108,8 +4108,8 @@ export const CreateEvalResponseBodyFunction$outboundSchema: z.ZodType<
|
|
|
4108
4108
|
> = z.object({
|
|
4109
4109
|
id: z.string(),
|
|
4110
4110
|
description: z.string(),
|
|
4111
|
-
created: z.string().default("2026-01-
|
|
4112
|
-
updated: z.string().default("2026-01-
|
|
4111
|
+
created: z.string().default("2026-01-15T04:13:18.456Z"),
|
|
4112
|
+
updated: z.string().default("2026-01-15T04:13:18.456Z"),
|
|
4113
4113
|
guardrailConfig: z.union([
|
|
4114
4114
|
z.lazy(() =>
|
|
4115
4115
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$outboundSchema
|
|
@@ -4404,8 +4404,8 @@ export const ResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
4404
4404
|
> = z.object({
|
|
4405
4405
|
_id: z.string(),
|
|
4406
4406
|
description: z.string(),
|
|
4407
|
-
created: z.string().default("2026-01-
|
|
4408
|
-
updated: z.string().default("2026-01-
|
|
4407
|
+
created: z.string().default("2026-01-15T04:13:18.456Z"),
|
|
4408
|
+
updated: z.string().default("2026-01-15T04:13:18.456Z"),
|
|
4409
4409
|
guardrail_config: z.union([
|
|
4410
4410
|
z.lazy(() =>
|
|
4411
4411
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema
|
|
@@ -4446,8 +4446,8 @@ export const ResponseBodyPython$outboundSchema: z.ZodType<
|
|
|
4446
4446
|
> = z.object({
|
|
4447
4447
|
id: z.string(),
|
|
4448
4448
|
description: z.string(),
|
|
4449
|
-
created: z.string().default("2026-01-
|
|
4450
|
-
updated: z.string().default("2026-01-
|
|
4449
|
+
created: z.string().default("2026-01-15T04:13:18.456Z"),
|
|
4450
|
+
updated: z.string().default("2026-01-15T04:13:18.456Z"),
|
|
4451
4451
|
guardrailConfig: z.union([
|
|
4452
4452
|
z.lazy(() =>
|
|
4453
4453
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema
|
|
@@ -4708,8 +4708,8 @@ export const ResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
4708
4708
|
> = z.object({
|
|
4709
4709
|
_id: z.string(),
|
|
4710
4710
|
description: z.string(),
|
|
4711
|
-
created: z.string().default("2026-01-
|
|
4712
|
-
updated: z.string().default("2026-01-
|
|
4711
|
+
created: z.string().default("2026-01-15T04:13:18.456Z"),
|
|
4712
|
+
updated: z.string().default("2026-01-15T04:13:18.456Z"),
|
|
4713
4713
|
guardrail_config: z.union([
|
|
4714
4714
|
z.lazy(() =>
|
|
4715
4715
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema
|
|
@@ -4756,8 +4756,8 @@ export const ResponseBodyHTTP$outboundSchema: z.ZodType<
|
|
|
4756
4756
|
> = z.object({
|
|
4757
4757
|
id: z.string(),
|
|
4758
4758
|
description: z.string(),
|
|
4759
|
-
created: z.string().default("2026-01-
|
|
4760
|
-
updated: z.string().default("2026-01-
|
|
4759
|
+
created: z.string().default("2026-01-15T04:13:18.456Z"),
|
|
4760
|
+
updated: z.string().default("2026-01-15T04:13:18.456Z"),
|
|
4761
4761
|
guardrailConfig: z.union([
|
|
4762
4762
|
z.lazy(() =>
|
|
4763
4763
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema
|
|
@@ -4994,8 +4994,8 @@ export const ResponseBodyJSON$inboundSchema: z.ZodType<
|
|
|
4994
4994
|
> = z.object({
|
|
4995
4995
|
_id: z.string(),
|
|
4996
4996
|
description: z.string(),
|
|
4997
|
-
created: z.string().default("2026-01-
|
|
4998
|
-
updated: z.string().default("2026-01-
|
|
4997
|
+
created: z.string().default("2026-01-15T04:13:18.456Z"),
|
|
4998
|
+
updated: z.string().default("2026-01-15T04:13:18.456Z"),
|
|
4999
4999
|
guardrail_config: z.union([
|
|
5000
5000
|
z.lazy(() =>
|
|
5001
5001
|
CreateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema
|
|
@@ -5034,8 +5034,8 @@ export const ResponseBodyJSON$outboundSchema: z.ZodType<
|
|
|
5034
5034
|
> = z.object({
|
|
5035
5035
|
id: z.string(),
|
|
5036
5036
|
description: z.string(),
|
|
5037
|
-
created: z.string().default("2026-01-
|
|
5038
|
-
updated: z.string().default("2026-01-
|
|
5037
|
+
created: z.string().default("2026-01-15T04:13:18.456Z"),
|
|
5038
|
+
updated: z.string().default("2026-01-15T04:13:18.456Z"),
|
|
5039
5039
|
guardrailConfig: z.union([
|
|
5040
5040
|
z.lazy(() =>
|
|
5041
5041
|
CreateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema
|
|
@@ -5268,8 +5268,8 @@ export const ResponseBodyLLM$inboundSchema: z.ZodType<
|
|
|
5268
5268
|
> = z.object({
|
|
5269
5269
|
_id: z.string(),
|
|
5270
5270
|
description: z.string(),
|
|
5271
|
-
created: z.string().default("2026-01-
|
|
5272
|
-
updated: z.string().default("2026-01-
|
|
5271
|
+
created: z.string().default("2026-01-15T04:13:18.456Z"),
|
|
5272
|
+
updated: z.string().default("2026-01-15T04:13:18.456Z"),
|
|
5273
5273
|
guardrail_config: z.union([
|
|
5274
5274
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
5275
5275
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
@@ -5308,8 +5308,8 @@ export const ResponseBodyLLM$outboundSchema: z.ZodType<
|
|
|
5308
5308
|
> = z.object({
|
|
5309
5309
|
id: z.string(),
|
|
5310
5310
|
description: z.string(),
|
|
5311
|
-
created: z.string().default("2026-01-
|
|
5312
|
-
updated: z.string().default("2026-01-
|
|
5311
|
+
created: z.string().default("2026-01-15T04:13:18.456Z"),
|
|
5312
|
+
updated: z.string().default("2026-01-15T04:13:18.456Z"),
|
|
5313
5313
|
guardrailConfig: z.union([
|
|
5314
5314
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
5315
5315
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|