@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,180 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
import * as z from "zod/v3";
|
|
6
|
+
import { remap as remap$ } from "../../lib/primitives.js";
|
|
7
|
+
import { safeParse } from "../../lib/schemas.js";
|
|
8
|
+
import { Result as SafeParseResult } from "../../types/fp.js";
|
|
9
|
+
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
|
|
10
|
+
|
|
11
|
+
export type RetrieveIdentityRequest = {
|
|
12
|
+
/**
|
|
13
|
+
* Unique identity id or external id
|
|
14
|
+
*/
|
|
15
|
+
id: string;
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* Identity details
|
|
20
|
+
*/
|
|
21
|
+
export type RetrieveIdentityResponseBody = {
|
|
22
|
+
/**
|
|
23
|
+
* Unique ULID (Universally Unique Lexicographically Sortable Identifier) for the contact
|
|
24
|
+
*/
|
|
25
|
+
id: string;
|
|
26
|
+
/**
|
|
27
|
+
* Unique string value to identify the contact user in the customer's system. This should be the same ID you use in your system to reference this user.
|
|
28
|
+
*/
|
|
29
|
+
externalId: string;
|
|
30
|
+
/**
|
|
31
|
+
* Display name or nickname of the contact user. This is typically shown in user interfaces.
|
|
32
|
+
*/
|
|
33
|
+
displayName?: string | null | undefined;
|
|
34
|
+
/**
|
|
35
|
+
* Email address of the contact user
|
|
36
|
+
*/
|
|
37
|
+
email?: string | null | undefined;
|
|
38
|
+
/**
|
|
39
|
+
* URL linking to the contact user's avatar image
|
|
40
|
+
*/
|
|
41
|
+
avatarUrl?: string | null | undefined;
|
|
42
|
+
/**
|
|
43
|
+
* Array of tags associated with the contact. Useful for organizing and filtering contacts by categories, departments, or custom classifications.
|
|
44
|
+
*/
|
|
45
|
+
tags?: Array<string> | undefined;
|
|
46
|
+
/**
|
|
47
|
+
* Additional custom metadata associated with the contact as key-value pairs. Use this to store any extra information specific to your application.
|
|
48
|
+
*/
|
|
49
|
+
metadata?: { [k: string]: any } | undefined;
|
|
50
|
+
/**
|
|
51
|
+
* The date and time the resource was created
|
|
52
|
+
*/
|
|
53
|
+
created?: Date | undefined;
|
|
54
|
+
/**
|
|
55
|
+
* The date and time the resource was last updated
|
|
56
|
+
*/
|
|
57
|
+
updated?: Date | undefined;
|
|
58
|
+
};
|
|
59
|
+
|
|
60
|
+
/** @internal */
|
|
61
|
+
export const RetrieveIdentityRequest$inboundSchema: z.ZodType<
|
|
62
|
+
RetrieveIdentityRequest,
|
|
63
|
+
z.ZodTypeDef,
|
|
64
|
+
unknown
|
|
65
|
+
> = z.object({
|
|
66
|
+
id: z.string(),
|
|
67
|
+
});
|
|
68
|
+
/** @internal */
|
|
69
|
+
export type RetrieveIdentityRequest$Outbound = {
|
|
70
|
+
id: string;
|
|
71
|
+
};
|
|
72
|
+
|
|
73
|
+
/** @internal */
|
|
74
|
+
export const RetrieveIdentityRequest$outboundSchema: z.ZodType<
|
|
75
|
+
RetrieveIdentityRequest$Outbound,
|
|
76
|
+
z.ZodTypeDef,
|
|
77
|
+
RetrieveIdentityRequest
|
|
78
|
+
> = z.object({
|
|
79
|
+
id: z.string(),
|
|
80
|
+
});
|
|
81
|
+
|
|
82
|
+
export function retrieveIdentityRequestToJSON(
|
|
83
|
+
retrieveIdentityRequest: RetrieveIdentityRequest,
|
|
84
|
+
): string {
|
|
85
|
+
return JSON.stringify(
|
|
86
|
+
RetrieveIdentityRequest$outboundSchema.parse(retrieveIdentityRequest),
|
|
87
|
+
);
|
|
88
|
+
}
|
|
89
|
+
export function retrieveIdentityRequestFromJSON(
|
|
90
|
+
jsonString: string,
|
|
91
|
+
): SafeParseResult<RetrieveIdentityRequest, SDKValidationError> {
|
|
92
|
+
return safeParse(
|
|
93
|
+
jsonString,
|
|
94
|
+
(x) => RetrieveIdentityRequest$inboundSchema.parse(JSON.parse(x)),
|
|
95
|
+
`Failed to parse 'RetrieveIdentityRequest' from JSON`,
|
|
96
|
+
);
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
/** @internal */
|
|
100
|
+
export const RetrieveIdentityResponseBody$inboundSchema: z.ZodType<
|
|
101
|
+
RetrieveIdentityResponseBody,
|
|
102
|
+
z.ZodTypeDef,
|
|
103
|
+
unknown
|
|
104
|
+
> = z.object({
|
|
105
|
+
_id: z.string(),
|
|
106
|
+
external_id: z.string(),
|
|
107
|
+
display_name: z.nullable(z.string()).optional(),
|
|
108
|
+
email: z.nullable(z.string()).optional(),
|
|
109
|
+
avatar_url: z.nullable(z.string()).optional(),
|
|
110
|
+
tags: z.array(z.string()).optional(),
|
|
111
|
+
metadata: z.record(z.any()).optional(),
|
|
112
|
+
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
113
|
+
.optional(),
|
|
114
|
+
updated: z.string().datetime({ offset: true }).default(
|
|
115
|
+
"2026-01-15T04:13:15.987Z",
|
|
116
|
+
).transform(v => new Date(v)),
|
|
117
|
+
}).transform((v) => {
|
|
118
|
+
return remap$(v, {
|
|
119
|
+
"_id": "id",
|
|
120
|
+
"external_id": "externalId",
|
|
121
|
+
"display_name": "displayName",
|
|
122
|
+
"avatar_url": "avatarUrl",
|
|
123
|
+
});
|
|
124
|
+
});
|
|
125
|
+
/** @internal */
|
|
126
|
+
export type RetrieveIdentityResponseBody$Outbound = {
|
|
127
|
+
_id: string;
|
|
128
|
+
external_id: string;
|
|
129
|
+
display_name?: string | null | undefined;
|
|
130
|
+
email?: string | null | undefined;
|
|
131
|
+
avatar_url?: string | null | undefined;
|
|
132
|
+
tags?: Array<string> | undefined;
|
|
133
|
+
metadata?: { [k: string]: any } | undefined;
|
|
134
|
+
created?: string | undefined;
|
|
135
|
+
updated: string;
|
|
136
|
+
};
|
|
137
|
+
|
|
138
|
+
/** @internal */
|
|
139
|
+
export const RetrieveIdentityResponseBody$outboundSchema: z.ZodType<
|
|
140
|
+
RetrieveIdentityResponseBody$Outbound,
|
|
141
|
+
z.ZodTypeDef,
|
|
142
|
+
RetrieveIdentityResponseBody
|
|
143
|
+
> = z.object({
|
|
144
|
+
id: z.string(),
|
|
145
|
+
externalId: z.string(),
|
|
146
|
+
displayName: z.nullable(z.string()).optional(),
|
|
147
|
+
email: z.nullable(z.string()).optional(),
|
|
148
|
+
avatarUrl: z.nullable(z.string()).optional(),
|
|
149
|
+
tags: z.array(z.string()).optional(),
|
|
150
|
+
metadata: z.record(z.any()).optional(),
|
|
151
|
+
created: z.date().transform(v => v.toISOString()).optional(),
|
|
152
|
+
updated: z.date().default(() => new Date("2026-01-15T04:13:15.987Z"))
|
|
153
|
+
.transform(v => v.toISOString()),
|
|
154
|
+
}).transform((v) => {
|
|
155
|
+
return remap$(v, {
|
|
156
|
+
id: "_id",
|
|
157
|
+
externalId: "external_id",
|
|
158
|
+
displayName: "display_name",
|
|
159
|
+
avatarUrl: "avatar_url",
|
|
160
|
+
});
|
|
161
|
+
});
|
|
162
|
+
|
|
163
|
+
export function retrieveIdentityResponseBodyToJSON(
|
|
164
|
+
retrieveIdentityResponseBody: RetrieveIdentityResponseBody,
|
|
165
|
+
): string {
|
|
166
|
+
return JSON.stringify(
|
|
167
|
+
RetrieveIdentityResponseBody$outboundSchema.parse(
|
|
168
|
+
retrieveIdentityResponseBody,
|
|
169
|
+
),
|
|
170
|
+
);
|
|
171
|
+
}
|
|
172
|
+
export function retrieveIdentityResponseBodyFromJSON(
|
|
173
|
+
jsonString: string,
|
|
174
|
+
): SafeParseResult<RetrieveIdentityResponseBody, SDKValidationError> {
|
|
175
|
+
return safeParse(
|
|
176
|
+
jsonString,
|
|
177
|
+
(x) => RetrieveIdentityResponseBody$inboundSchema.parse(JSON.parse(x)),
|
|
178
|
+
`Failed to parse 'RetrieveIdentityResponseBody' from JSON`,
|
|
179
|
+
);
|
|
180
|
+
}
|
|
@@ -858,7 +858,7 @@ export const RetrieveToolResponseBodyCodeExecutionTool$inboundSchema: z.ZodType<
|
|
|
858
858
|
z.ZodTypeDef,
|
|
859
859
|
unknown
|
|
860
860
|
> = z.object({
|
|
861
|
-
_id: z.string().default("
|
|
861
|
+
_id: z.string().default("tool_01KEZXQGNPEF3GAS467T7J3T8A"),
|
|
862
862
|
path: z.string(),
|
|
863
863
|
key: z.string(),
|
|
864
864
|
display_name: z.string().optional(),
|
|
@@ -913,7 +913,7 @@ export const RetrieveToolResponseBodyCodeExecutionTool$outboundSchema:
|
|
|
913
913
|
z.ZodTypeDef,
|
|
914
914
|
RetrieveToolResponseBodyCodeExecutionTool
|
|
915
915
|
> = z.object({
|
|
916
|
-
id: z.string().default("
|
|
916
|
+
id: z.string().default("tool_01KEZXQGNPEF3GAS467T7J3T8A"),
|
|
917
917
|
path: z.string(),
|
|
918
918
|
key: z.string(),
|
|
919
919
|
displayName: z.string().optional(),
|
|
@@ -1092,7 +1092,7 @@ export const RetrieveToolResponseBodyTools$inboundSchema: z.ZodType<
|
|
|
1092
1092
|
z.ZodTypeDef,
|
|
1093
1093
|
unknown
|
|
1094
1094
|
> = z.object({
|
|
1095
|
-
id: z.string().default("
|
|
1095
|
+
id: z.string().default("01KEZXQGNNKKS6D6TT14H3QNQ3"),
|
|
1096
1096
|
name: z.string(),
|
|
1097
1097
|
description: z.string().optional(),
|
|
1098
1098
|
schema: z.lazy(() => RetrieveToolResponseBodyToolsSchema$inboundSchema),
|
|
@@ -1111,7 +1111,7 @@ export const RetrieveToolResponseBodyTools$outboundSchema: z.ZodType<
|
|
|
1111
1111
|
z.ZodTypeDef,
|
|
1112
1112
|
RetrieveToolResponseBodyTools
|
|
1113
1113
|
> = z.object({
|
|
1114
|
-
id: z.string().default("
|
|
1114
|
+
id: z.string().default("01KEZXQGNNKKS6D6TT14H3QNQ3"),
|
|
1115
1115
|
name: z.string(),
|
|
1116
1116
|
description: z.string().optional(),
|
|
1117
1117
|
schema: z.lazy(() => RetrieveToolResponseBodyToolsSchema$outboundSchema),
|
|
@@ -1217,7 +1217,7 @@ export const RetrieveToolResponseBodyMCPTool$inboundSchema: z.ZodType<
|
|
|
1217
1217
|
z.ZodTypeDef,
|
|
1218
1218
|
unknown
|
|
1219
1219
|
> = z.object({
|
|
1220
|
-
_id: z.string().default("
|
|
1220
|
+
_id: z.string().default("tool_01KEZXQGNMSH82EX413660EFWC"),
|
|
1221
1221
|
path: z.string(),
|
|
1222
1222
|
key: z.string(),
|
|
1223
1223
|
display_name: z.string().optional(),
|
|
@@ -1270,7 +1270,7 @@ export const RetrieveToolResponseBodyMCPTool$outboundSchema: z.ZodType<
|
|
|
1270
1270
|
z.ZodTypeDef,
|
|
1271
1271
|
RetrieveToolResponseBodyMCPTool
|
|
1272
1272
|
> = z.object({
|
|
1273
|
-
id: z.string().default("
|
|
1273
|
+
id: z.string().default("tool_01KEZXQGNMSH82EX413660EFWC"),
|
|
1274
1274
|
path: z.string(),
|
|
1275
1275
|
key: z.string(),
|
|
1276
1276
|
displayName: z.string().optional(),
|
|
@@ -1641,7 +1641,7 @@ export const RetrieveToolResponseBodyHTTPTool$inboundSchema: z.ZodType<
|
|
|
1641
1641
|
z.ZodTypeDef,
|
|
1642
1642
|
unknown
|
|
1643
1643
|
> = z.object({
|
|
1644
|
-
_id: z.string().default("
|
|
1644
|
+
_id: z.string().default("tool_01KEZXQGNJJ98HZ7E1487KRS7M"),
|
|
1645
1645
|
path: z.string(),
|
|
1646
1646
|
key: z.string(),
|
|
1647
1647
|
display_name: z.string().optional(),
|
|
@@ -1694,7 +1694,7 @@ export const RetrieveToolResponseBodyHTTPTool$outboundSchema: z.ZodType<
|
|
|
1694
1694
|
z.ZodTypeDef,
|
|
1695
1695
|
RetrieveToolResponseBodyHTTPTool
|
|
1696
1696
|
> = z.object({
|
|
1697
|
-
id: z.string().default("
|
|
1697
|
+
id: z.string().default("tool_01KEZXQGNJJ98HZ7E1487KRS7M"),
|
|
1698
1698
|
path: z.string(),
|
|
1699
1699
|
key: z.string(),
|
|
1700
1700
|
displayName: z.string().optional(),
|
|
@@ -1868,7 +1868,7 @@ export const RetrieveToolResponseBodyJSONSchemaTool$inboundSchema: z.ZodType<
|
|
|
1868
1868
|
z.ZodTypeDef,
|
|
1869
1869
|
unknown
|
|
1870
1870
|
> = z.object({
|
|
1871
|
-
_id: z.string().default("
|
|
1871
|
+
_id: z.string().default("tool_01KEZXQGNHPAWCR3YTW25ZPPWR"),
|
|
1872
1872
|
path: z.string(),
|
|
1873
1873
|
key: z.string(),
|
|
1874
1874
|
display_name: z.string().optional(),
|
|
@@ -1920,7 +1920,7 @@ export const RetrieveToolResponseBodyJSONSchemaTool$outboundSchema: z.ZodType<
|
|
|
1920
1920
|
z.ZodTypeDef,
|
|
1921
1921
|
RetrieveToolResponseBodyJSONSchemaTool
|
|
1922
1922
|
> = z.object({
|
|
1923
|
-
id: z.string().default("
|
|
1923
|
+
id: z.string().default("tool_01KEZXQGNHPAWCR3YTW25ZPPWR"),
|
|
1924
1924
|
path: z.string(),
|
|
1925
1925
|
key: z.string(),
|
|
1926
1926
|
displayName: z.string().optional(),
|
|
@@ -2113,7 +2113,7 @@ export const RetrieveToolResponseBodyFunctionTool$inboundSchema: z.ZodType<
|
|
|
2113
2113
|
z.ZodTypeDef,
|
|
2114
2114
|
unknown
|
|
2115
2115
|
> = z.object({
|
|
2116
|
-
_id: z.string().default("
|
|
2116
|
+
_id: z.string().default("tool_01KEZXQGNGJ3P9P5QK852EZ5GG"),
|
|
2117
2117
|
path: z.string(),
|
|
2118
2118
|
key: z.string(),
|
|
2119
2119
|
display_name: z.string().optional(),
|
|
@@ -2164,7 +2164,7 @@ export const RetrieveToolResponseBodyFunctionTool$outboundSchema: z.ZodType<
|
|
|
2164
2164
|
z.ZodTypeDef,
|
|
2165
2165
|
RetrieveToolResponseBodyFunctionTool
|
|
2166
2166
|
> = z.object({
|
|
2167
|
-
id: z.string().default("
|
|
2167
|
+
id: z.string().default("tool_01KEZXQGNGJ3P9P5QK852EZ5GG"),
|
|
2168
2168
|
path: z.string(),
|
|
2169
2169
|
key: z.string(),
|
|
2170
2170
|
displayName: z.string().optional(),
|
|
@@ -4569,7 +4569,7 @@ export function agentToolInputRunSchemaFromJSON(
|
|
|
4569
4569
|
/** @internal */
|
|
4570
4570
|
export const Tools$inboundSchema: z.ZodType<Tools, z.ZodTypeDef, unknown> = z
|
|
4571
4571
|
.object({
|
|
4572
|
-
id: z.string().default("
|
|
4572
|
+
id: z.string().default("01KEZXQG5059VXKDNM4QGXCES2"),
|
|
4573
4573
|
name: z.string(),
|
|
4574
4574
|
description: z.string().optional(),
|
|
4575
4575
|
schema: z.lazy(() => AgentToolInputRunSchema$inboundSchema),
|
|
@@ -4588,7 +4588,7 @@ export const Tools$outboundSchema: z.ZodType<
|
|
|
4588
4588
|
z.ZodTypeDef,
|
|
4589
4589
|
Tools
|
|
4590
4590
|
> = z.object({
|
|
4591
|
-
id: z.string().default("
|
|
4591
|
+
id: z.string().default("01KEZXQG5059VXKDNM4QGXCES2"),
|
|
4592
4592
|
name: z.string(),
|
|
4593
4593
|
description: z.string().optional(),
|
|
4594
4594
|
schema: z.lazy(() => AgentToolInputRunSchema$outboundSchema),
|
|
@@ -4703,7 +4703,7 @@ export const AgentToolInputRunTools$inboundSchema: z.ZodType<
|
|
|
4703
4703
|
z.ZodTypeDef,
|
|
4704
4704
|
unknown
|
|
4705
4705
|
> = z.object({
|
|
4706
|
-
id: z.string().default("
|
|
4706
|
+
id: z.string().default("01KEZXQG8YZS3VXH27V94481DZ"),
|
|
4707
4707
|
name: z.string(),
|
|
4708
4708
|
description: z.string().optional(),
|
|
4709
4709
|
schema: z.lazy(() =>
|
|
@@ -4724,7 +4724,7 @@ export const AgentToolInputRunTools$outboundSchema: z.ZodType<
|
|
|
4724
4724
|
z.ZodTypeDef,
|
|
4725
4725
|
AgentToolInputRunTools
|
|
4726
4726
|
> = z.object({
|
|
4727
|
-
id: z.string().default("
|
|
4727
|
+
id: z.string().default("01KEZXQG8YZS3VXH27V94481DZ"),
|
|
4728
4728
|
name: z.string(),
|
|
4729
4729
|
description: z.string().optional(),
|
|
4730
4730
|
schema: z.lazy(() =>
|
|
@@ -214,7 +214,7 @@ export const UpdateContactResponseBody$inboundSchema: z.ZodType<
|
|
|
214
214
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
215
215
|
.optional(),
|
|
216
216
|
updated: z.string().datetime({ offset: true }).default(
|
|
217
|
-
"2026-01-
|
|
217
|
+
"2026-01-15T04:13:15.987Z",
|
|
218
218
|
).transform(v => new Date(v)),
|
|
219
219
|
}).transform((v) => {
|
|
220
220
|
return remap$(v, {
|
|
@@ -251,7 +251,7 @@ export const UpdateContactResponseBody$outboundSchema: z.ZodType<
|
|
|
251
251
|
tags: z.array(z.string()).optional(),
|
|
252
252
|
metadata: z.record(z.any()).optional(),
|
|
253
253
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
254
|
-
updated: z.date().default(() => new Date("2026-01-
|
|
254
|
+
updated: z.date().default(() => new Date("2026-01-15T04:13:15.987Z"))
|
|
255
255
|
.transform(v => v.toISOString()),
|
|
256
256
|
}).transform((v) => {
|
|
257
257
|
return remap$(v, {
|
|
@@ -316,7 +316,7 @@ export const UpdateConversationResponseBody$inboundSchema: z.ZodType<
|
|
|
316
316
|
z.ZodTypeDef,
|
|
317
317
|
unknown
|
|
318
318
|
> = z.object({
|
|
319
|
-
_id: z.string().default("
|
|
319
|
+
_id: z.string().default("conv_01kezxqgbcn7vbhth0j64wgsk4"),
|
|
320
320
|
kind: UpdateConversationKind$inboundSchema,
|
|
321
321
|
displayName: z.string(),
|
|
322
322
|
createdAt: z.number(),
|
|
@@ -348,7 +348,7 @@ export const UpdateConversationResponseBody$outboundSchema: z.ZodType<
|
|
|
348
348
|
z.ZodTypeDef,
|
|
349
349
|
UpdateConversationResponseBody
|
|
350
350
|
> = z.object({
|
|
351
|
-
id: z.string().default("
|
|
351
|
+
id: z.string().default("conv_01kezxqgbcn7vbhth0j64wgsk4"),
|
|
352
352
|
kind: UpdateConversationKind$outboundSchema,
|
|
353
353
|
displayName: z.string(),
|
|
354
354
|
createdAt: z.number(),
|
|
@@ -3598,7 +3598,7 @@ export const UpdateDatapointEvaluations3$inboundSchema: z.ZodType<
|
|
|
3598
3598
|
.default("orq"),
|
|
3599
3599
|
reviewed_by_id: z.string(),
|
|
3600
3600
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
3601
|
-
"2026-01-
|
|
3601
|
+
"2026-01-15T04:13:29.432Z",
|
|
3602
3602
|
).transform(v => new Date(v)),
|
|
3603
3603
|
type: z.literal("string_array"),
|
|
3604
3604
|
values: z.array(z.string()),
|
|
@@ -3635,7 +3635,7 @@ export const UpdateDatapointEvaluations3$outboundSchema: z.ZodType<
|
|
|
3635
3635
|
source: UpdateDatapointEvaluationsDatasetsResponseSource$outboundSchema
|
|
3636
3636
|
.default("orq"),
|
|
3637
3637
|
reviewedById: z.string(),
|
|
3638
|
-
reviewedAt: z.date().default(() => new Date("2026-01-
|
|
3638
|
+
reviewedAt: z.date().default(() => new Date("2026-01-15T04:13:29.432Z"))
|
|
3639
3639
|
.transform(v => v.toISOString()),
|
|
3640
3640
|
type: z.literal("string_array"),
|
|
3641
3641
|
values: z.array(z.string()),
|
|
@@ -3698,7 +3698,7 @@ export const UpdateDatapointEvaluations2$inboundSchema: z.ZodType<
|
|
|
3698
3698
|
source: UpdateDatapointEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
3699
3699
|
reviewed_by_id: z.string(),
|
|
3700
3700
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
3701
|
-
"2026-01-
|
|
3701
|
+
"2026-01-15T04:13:29.431Z",
|
|
3702
3702
|
).transform(v => new Date(v)),
|
|
3703
3703
|
type: z.literal("number"),
|
|
3704
3704
|
value: z.number(),
|
|
@@ -3736,7 +3736,7 @@ export const UpdateDatapointEvaluations2$outboundSchema: z.ZodType<
|
|
|
3736
3736
|
"orq",
|
|
3737
3737
|
),
|
|
3738
3738
|
reviewedById: z.string(),
|
|
3739
|
-
reviewedAt: z.date().default(() => new Date("2026-01-
|
|
3739
|
+
reviewedAt: z.date().default(() => new Date("2026-01-15T04:13:29.431Z"))
|
|
3740
3740
|
.transform(v => v.toISOString()),
|
|
3741
3741
|
type: z.literal("number"),
|
|
3742
3742
|
value: z.number(),
|
|
@@ -3798,7 +3798,7 @@ export const UpdateDatapointEvaluations1$inboundSchema: z.ZodType<
|
|
|
3798
3798
|
source: UpdateDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
3799
3799
|
reviewed_by_id: z.string(),
|
|
3800
3800
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
3801
|
-
"2026-01-
|
|
3801
|
+
"2026-01-15T04:13:29.431Z",
|
|
3802
3802
|
).transform(v => new Date(v)),
|
|
3803
3803
|
type: z.literal("string"),
|
|
3804
3804
|
value: z.string(),
|
|
@@ -3833,7 +3833,7 @@ export const UpdateDatapointEvaluations1$outboundSchema: z.ZodType<
|
|
|
3833
3833
|
humanReviewId: z.string(),
|
|
3834
3834
|
source: UpdateDatapointEvaluationsSource$outboundSchema.default("orq"),
|
|
3835
3835
|
reviewedById: z.string(),
|
|
3836
|
-
reviewedAt: z.date().default(() => new Date("2026-01-
|
|
3836
|
+
reviewedAt: z.date().default(() => new Date("2026-01-15T04:13:29.431Z"))
|
|
3837
3837
|
.transform(v => v.toISOString()),
|
|
3838
3838
|
type: z.literal("string"),
|
|
3839
3839
|
value: z.string(),
|
|
@@ -3946,7 +3946,7 @@ export const UpdateDatapointResponseBody$inboundSchema: z.ZodType<
|
|
|
3946
3946
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
3947
3947
|
.optional(),
|
|
3948
3948
|
updated: z.string().datetime({ offset: true }).default(
|
|
3949
|
-
"2026-01-
|
|
3949
|
+
"2026-01-15T04:13:15.987Z",
|
|
3950
3950
|
).transform(v => new Date(v)),
|
|
3951
3951
|
}).transform((v) => {
|
|
3952
3952
|
return remap$(v, {
|
|
@@ -4024,7 +4024,7 @@ export const UpdateDatapointResponseBody$outboundSchema: z.ZodType<
|
|
|
4024
4024
|
createdById: z.string().optional(),
|
|
4025
4025
|
updatedById: z.string().optional(),
|
|
4026
4026
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
4027
|
-
updated: z.date().default(() => new Date("2026-01-
|
|
4027
|
+
updated: z.date().default(() => new Date("2026-01-15T04:13:15.987Z"))
|
|
4028
4028
|
.transform(v => v.toISOString()),
|
|
4029
4029
|
}).transform((v) => {
|
|
4030
4030
|
return remap$(v, {
|
|
@@ -256,7 +256,7 @@ export const UpdateDatasetResponseBody$inboundSchema: z.ZodType<
|
|
|
256
256
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
257
257
|
.optional(),
|
|
258
258
|
updated: z.string().datetime({ offset: true }).default(
|
|
259
|
-
"2026-01-
|
|
259
|
+
"2026-01-15T04:13:15.987Z",
|
|
260
260
|
).transform(v => new Date(v)),
|
|
261
261
|
}).transform((v) => {
|
|
262
262
|
return remap$(v, {
|
|
@@ -295,7 +295,7 @@ export const UpdateDatasetResponseBody$outboundSchema: z.ZodType<
|
|
|
295
295
|
createdById: z.string().optional(),
|
|
296
296
|
updatedById: z.string().optional(),
|
|
297
297
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
298
|
-
updated: z.date().default(() => new Date("2026-01-
|
|
298
|
+
updated: z.date().default(() => new Date("2026-01-15T04:13:15.987Z"))
|
|
299
299
|
.transform(v => v.toISOString()),
|
|
300
300
|
}).transform((v) => {
|
|
301
301
|
return remap$(v, {
|
|
@@ -202,7 +202,7 @@ export const UpdateDatasourceResponseBody$inboundSchema: z.ZodType<
|
|
|
202
202
|
z.ZodTypeDef,
|
|
203
203
|
unknown
|
|
204
204
|
> = z.object({
|
|
205
|
-
_id: z.string().default("
|
|
205
|
+
_id: z.string().default("01KEZXQGSJKEWPMQEE8TS10177"),
|
|
206
206
|
display_name: z.string(),
|
|
207
207
|
description: z.string().optional(),
|
|
208
208
|
status: UpdateDatasourceStatus$inboundSchema,
|
|
@@ -245,7 +245,7 @@ export const UpdateDatasourceResponseBody$outboundSchema: z.ZodType<
|
|
|
245
245
|
z.ZodTypeDef,
|
|
246
246
|
UpdateDatasourceResponseBody
|
|
247
247
|
> = z.object({
|
|
248
|
-
id: z.string().default("
|
|
248
|
+
id: z.string().default("01KEZXQGSJKEWPMQEE8TS10177"),
|
|
249
249
|
displayName: z.string(),
|
|
250
250
|
description: z.string().optional(),
|
|
251
251
|
status: UpdateDatasourceStatus$outboundSchema,
|
|
@@ -2345,8 +2345,8 @@ export const ResponseBodyTypescript$inboundSchema: z.ZodType<
|
|
|
2345
2345
|
> = z.object({
|
|
2346
2346
|
_id: z.string(),
|
|
2347
2347
|
description: z.string(),
|
|
2348
|
-
created: z.string().default("2026-01-
|
|
2349
|
-
updated: z.string().default("2026-01-
|
|
2348
|
+
created: z.string().default("2026-01-15T04:13:18.456Z"),
|
|
2349
|
+
updated: z.string().default("2026-01-15T04:13:18.456Z"),
|
|
2350
2350
|
guardrail_config: z.union([
|
|
2351
2351
|
z.lazy(() =>
|
|
2352
2352
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$inboundSchema
|
|
@@ -2387,8 +2387,8 @@ export const ResponseBodyTypescript$outboundSchema: z.ZodType<
|
|
|
2387
2387
|
> = z.object({
|
|
2388
2388
|
id: z.string(),
|
|
2389
2389
|
description: z.string(),
|
|
2390
|
-
created: z.string().default("2026-01-
|
|
2391
|
-
updated: z.string().default("2026-01-
|
|
2390
|
+
created: z.string().default("2026-01-15T04:13:18.456Z"),
|
|
2391
|
+
updated: z.string().default("2026-01-15T04:13:18.456Z"),
|
|
2392
2392
|
guardrailConfig: z.union([
|
|
2393
2393
|
z.lazy(() =>
|
|
2394
2394
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$outboundSchema
|
|
@@ -2656,8 +2656,8 @@ export const ResponseBodyRagas$inboundSchema: z.ZodType<
|
|
|
2656
2656
|
> = z.object({
|
|
2657
2657
|
_id: z.string(),
|
|
2658
2658
|
description: z.string(),
|
|
2659
|
-
created: z.string().default("2026-01-
|
|
2660
|
-
updated: z.string().default("2026-01-
|
|
2659
|
+
created: z.string().default("2026-01-15T04:13:18.456Z"),
|
|
2660
|
+
updated: z.string().default("2026-01-15T04:13:18.456Z"),
|
|
2661
2661
|
guardrail_config: z.union([
|
|
2662
2662
|
z.lazy(() =>
|
|
2663
2663
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$inboundSchema
|
|
@@ -2701,8 +2701,8 @@ export const ResponseBodyRagas$outboundSchema: z.ZodType<
|
|
|
2701
2701
|
> = z.object({
|
|
2702
2702
|
id: z.string(),
|
|
2703
2703
|
description: z.string(),
|
|
2704
|
-
created: z.string().default("2026-01-
|
|
2705
|
-
updated: z.string().default("2026-01-
|
|
2704
|
+
created: z.string().default("2026-01-15T04:13:18.456Z"),
|
|
2705
|
+
updated: z.string().default("2026-01-15T04:13:18.456Z"),
|
|
2706
2706
|
guardrailConfig: z.union([
|
|
2707
2707
|
z.lazy(() =>
|
|
2708
2708
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$outboundSchema
|
|
@@ -4360,8 +4360,8 @@ export const ResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
4360
4360
|
> = z.object({
|
|
4361
4361
|
_id: z.string(),
|
|
4362
4362
|
description: z.string(),
|
|
4363
|
-
created: z.string().default("2026-01-
|
|
4364
|
-
updated: z.string().default("2026-01-
|
|
4363
|
+
created: z.string().default("2026-01-15T04:13:18.456Z"),
|
|
4364
|
+
updated: z.string().default("2026-01-15T04:13:18.456Z"),
|
|
4365
4365
|
guardrail_config: z.union([
|
|
4366
4366
|
z.lazy(() =>
|
|
4367
4367
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$inboundSchema
|
|
@@ -4468,8 +4468,8 @@ export const ResponseBodyFunction$outboundSchema: z.ZodType<
|
|
|
4468
4468
|
> = z.object({
|
|
4469
4469
|
id: z.string(),
|
|
4470
4470
|
description: z.string(),
|
|
4471
|
-
created: z.string().default("2026-01-
|
|
4472
|
-
updated: z.string().default("2026-01-
|
|
4471
|
+
created: z.string().default("2026-01-15T04:13:18.456Z"),
|
|
4472
|
+
updated: z.string().default("2026-01-15T04:13:18.456Z"),
|
|
4473
4473
|
guardrailConfig: z.union([
|
|
4474
4474
|
z.lazy(() =>
|
|
4475
4475
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$outboundSchema
|
|
@@ -4762,8 +4762,8 @@ export const UpdateEvalResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
4762
4762
|
> = z.object({
|
|
4763
4763
|
_id: z.string(),
|
|
4764
4764
|
description: z.string(),
|
|
4765
|
-
created: z.string().default("2026-01-
|
|
4766
|
-
updated: z.string().default("2026-01-
|
|
4765
|
+
created: z.string().default("2026-01-15T04:13:18.456Z"),
|
|
4766
|
+
updated: z.string().default("2026-01-15T04:13:18.456Z"),
|
|
4767
4767
|
guardrail_config: z.union([
|
|
4768
4768
|
z.lazy(() =>
|
|
4769
4769
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema
|
|
@@ -4804,8 +4804,8 @@ export const UpdateEvalResponseBodyPython$outboundSchema: z.ZodType<
|
|
|
4804
4804
|
> = z.object({
|
|
4805
4805
|
id: z.string(),
|
|
4806
4806
|
description: z.string(),
|
|
4807
|
-
created: z.string().default("2026-01-
|
|
4808
|
-
updated: z.string().default("2026-01-
|
|
4807
|
+
created: z.string().default("2026-01-15T04:13:18.456Z"),
|
|
4808
|
+
updated: z.string().default("2026-01-15T04:13:18.456Z"),
|
|
4809
4809
|
guardrailConfig: z.union([
|
|
4810
4810
|
z.lazy(() =>
|
|
4811
4811
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema
|
|
@@ -5071,8 +5071,8 @@ export const UpdateEvalResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
5071
5071
|
> = z.object({
|
|
5072
5072
|
_id: z.string(),
|
|
5073
5073
|
description: z.string(),
|
|
5074
|
-
created: z.string().default("2026-01-
|
|
5075
|
-
updated: z.string().default("2026-01-
|
|
5074
|
+
created: z.string().default("2026-01-15T04:13:18.456Z"),
|
|
5075
|
+
updated: z.string().default("2026-01-15T04:13:18.456Z"),
|
|
5076
5076
|
guardrail_config: z.union([
|
|
5077
5077
|
z.lazy(() =>
|
|
5078
5078
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema
|
|
@@ -5119,8 +5119,8 @@ export const UpdateEvalResponseBodyHTTP$outboundSchema: z.ZodType<
|
|
|
5119
5119
|
> = z.object({
|
|
5120
5120
|
id: z.string(),
|
|
5121
5121
|
description: z.string(),
|
|
5122
|
-
created: z.string().default("2026-01-
|
|
5123
|
-
updated: z.string().default("2026-01-
|
|
5122
|
+
created: z.string().default("2026-01-15T04:13:18.456Z"),
|
|
5123
|
+
updated: z.string().default("2026-01-15T04:13:18.456Z"),
|
|
5124
5124
|
guardrailConfig: z.union([
|
|
5125
5125
|
z.lazy(() =>
|
|
5126
5126
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema
|
|
@@ -5370,8 +5370,8 @@ export const UpdateEvalResponseBodyJSON$inboundSchema: z.ZodType<
|
|
|
5370
5370
|
> = z.object({
|
|
5371
5371
|
_id: z.string(),
|
|
5372
5372
|
description: z.string(),
|
|
5373
|
-
created: z.string().default("2026-01-
|
|
5374
|
-
updated: z.string().default("2026-01-
|
|
5373
|
+
created: z.string().default("2026-01-15T04:13:18.456Z"),
|
|
5374
|
+
updated: z.string().default("2026-01-15T04:13:18.456Z"),
|
|
5375
5375
|
guardrail_config: z.union([
|
|
5376
5376
|
z.lazy(() =>
|
|
5377
5377
|
UpdateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema
|
|
@@ -5410,8 +5410,8 @@ export const UpdateEvalResponseBodyJSON$outboundSchema: z.ZodType<
|
|
|
5410
5410
|
> = z.object({
|
|
5411
5411
|
id: z.string(),
|
|
5412
5412
|
description: z.string(),
|
|
5413
|
-
created: z.string().default("2026-01-
|
|
5414
|
-
updated: z.string().default("2026-01-
|
|
5413
|
+
created: z.string().default("2026-01-15T04:13:18.456Z"),
|
|
5414
|
+
updated: z.string().default("2026-01-15T04:13:18.456Z"),
|
|
5415
5415
|
guardrailConfig: z.union([
|
|
5416
5416
|
z.lazy(() =>
|
|
5417
5417
|
UpdateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema
|
|
@@ -5645,8 +5645,8 @@ export const UpdateEvalResponseBodyLLM$inboundSchema: z.ZodType<
|
|
|
5645
5645
|
> = z.object({
|
|
5646
5646
|
_id: z.string(),
|
|
5647
5647
|
description: z.string(),
|
|
5648
|
-
created: z.string().default("2026-01-
|
|
5649
|
-
updated: z.string().default("2026-01-
|
|
5648
|
+
created: z.string().default("2026-01-15T04:13:18.456Z"),
|
|
5649
|
+
updated: z.string().default("2026-01-15T04:13:18.456Z"),
|
|
5650
5650
|
guardrail_config: z.union([
|
|
5651
5651
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
5652
5652
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
@@ -5685,8 +5685,8 @@ export const UpdateEvalResponseBodyLLM$outboundSchema: z.ZodType<
|
|
|
5685
5685
|
> = z.object({
|
|
5686
5686
|
id: z.string(),
|
|
5687
5687
|
description: z.string(),
|
|
5688
|
-
created: z.string().default("2026-01-
|
|
5689
|
-
updated: z.string().default("2026-01-
|
|
5688
|
+
created: z.string().default("2026-01-15T04:13:18.456Z"),
|
|
5689
|
+
updated: z.string().default("2026-01-15T04:13:18.456Z"),
|
|
5690
5690
|
guardrailConfig: z.union([
|
|
5691
5691
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
5692
5692
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|