@orq-ai/node 4.11.0-rc.27 → 4.11.0-rc.28
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/funcs/budgetsList.js +1 -0
- package/funcs/budgetsList.js.map +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +2 -2
- package/lib/config.js +2 -2
- package/models/components/azurefoundrydeployment.d.ts +3 -0
- package/models/components/azurefoundrydeployment.d.ts.map +1 -1
- package/models/components/azurefoundrydeployment.js +4 -0
- package/models/components/azurefoundrydeployment.js.map +1 -1
- package/models/components/budgetsortfield.d.ts +12 -0
- package/models/components/budgetsortfield.d.ts.map +1 -0
- package/models/components/budgetsortfield.js +49 -0
- package/models/components/budgetsortfield.js.map +1 -0
- package/models/components/index.d.ts +1 -0
- package/models/components/index.d.ts.map +1 -1
- package/models/components/index.js +1 -0
- package/models/components/index.js.map +1 -1
- package/models/components/reasoningpart.js +1 -1
- package/models/operations/budgetlist.d.ts +5 -0
- package/models/operations/budgetlist.d.ts.map +1 -1
- package/models/operations/budgetlist.js +2 -0
- package/models/operations/budgetlist.js.map +1 -1
- package/models/operations/createdataset.js +1 -1
- package/models/operations/createdatasetitem.js +4 -4
- package/models/operations/createdatasource.js +1 -1
- package/models/operations/createeval.js +16 -16
- package/models/operations/createtool.js +6 -6
- package/models/operations/getalltools.js +6 -6
- package/models/operations/getevals.js +16 -16
- package/models/operations/getv2humanevalsets.js +2 -2
- package/models/operations/getv2humanevalsetsid.js +2 -2
- package/models/operations/listdatasetdatapoints.js +4 -4
- package/models/operations/listdatasets.js +1 -1
- package/models/operations/listdatasources.js +1 -1
- package/models/operations/patchv2humanevalsetsid.js +2 -2
- package/models/operations/postv2feedbackevaluation.js +3 -3
- package/models/operations/postv2humanevalsets.js +2 -2
- package/models/operations/retrievedatapoint.js +4 -4
- package/models/operations/retrievedataset.js +1 -1
- package/models/operations/retrievedatasource.js +1 -1
- package/models/operations/retrievetool.js +6 -6
- package/models/operations/runagent.js +1 -1
- package/models/operations/streamrunagent.js +1 -1
- package/models/operations/updatedatapoint.js +4 -4
- package/models/operations/updatedataset.js +1 -1
- package/models/operations/updatedatasource.js +1 -1
- package/models/operations/updateeval.js +16 -16
- package/models/operations/updatetool.js +7 -7
- package/package.json +3 -3
- package/sdk/feedback.d.ts +2 -2
- package/sdk/feedback.js +2 -2
- package/src/funcs/budgetsList.ts +1 -0
- package/src/lib/config.ts +2 -2
- package/src/models/components/azurefoundrydeployment.ts +7 -0
- package/src/models/components/budgetsortfield.ts +19 -0
- package/src/models/components/index.ts +1 -0
- package/src/models/components/reasoningpart.ts +1 -1
- package/src/models/operations/budgetlist.ts +7 -0
- package/src/models/operations/createdataset.ts +1 -1
- package/src/models/operations/createdatasetitem.ts +4 -4
- package/src/models/operations/createdatasource.ts +1 -1
- package/src/models/operations/createeval.ts +16 -16
- package/src/models/operations/createtool.ts +6 -6
- package/src/models/operations/getalltools.ts +6 -6
- package/src/models/operations/getevals.ts +16 -16
- package/src/models/operations/getv2humanevalsets.ts +2 -2
- package/src/models/operations/getv2humanevalsetsid.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +4 -4
- package/src/models/operations/listdatasets.ts +1 -1
- package/src/models/operations/listdatasources.ts +1 -1
- package/src/models/operations/patchv2humanevalsetsid.ts +2 -2
- package/src/models/operations/postv2feedbackevaluation.ts +3 -3
- package/src/models/operations/postv2humanevalsets.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +4 -4
- package/src/models/operations/retrievedataset.ts +1 -1
- package/src/models/operations/retrievedatasource.ts +1 -1
- package/src/models/operations/retrievetool.ts +6 -6
- package/src/models/operations/runagent.ts +1 -1
- package/src/models/operations/streamrunagent.ts +1 -1
- package/src/models/operations/updatedatapoint.ts +4 -4
- package/src/models/operations/updatedataset.ts +1 -1
- package/src/models/operations/updatedatasource.ts +1 -1
- package/src/models/operations/updateeval.ts +16 -16
- package/src/models/operations/updatetool.ts +7 -7
- package/src/sdk/feedback.ts +2 -2
package/sdk/feedback.js
CHANGED
|
@@ -21,10 +21,10 @@ class Feedback extends sdks_js_1.ClientSDK {
|
|
|
21
21
|
return (0, fp_js_1.unwrapAsync)((0, feedbackRemove_js_1.feedbackRemove)(this, request, options));
|
|
22
22
|
}
|
|
23
23
|
/**
|
|
24
|
-
*
|
|
24
|
+
* Upload a file
|
|
25
25
|
*
|
|
26
26
|
* @remarks
|
|
27
|
-
*
|
|
27
|
+
* Files are used to upload documents that can be used with features like Deployments.
|
|
28
28
|
*/
|
|
29
29
|
async create(request, options) {
|
|
30
30
|
return (0, fp_js_1.unwrapAsync)((0, feedbackCreate_js_1.feedbackCreate)(this, request, options));
|
package/src/funcs/budgetsList.ts
CHANGED
package/src/lib/config.ts
CHANGED
|
@@ -58,7 +58,7 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
|
|
|
58
58
|
export const SDK_METADATA = {
|
|
59
59
|
language: "typescript",
|
|
60
60
|
openapiDocVersion: "2.0",
|
|
61
|
-
sdkVersion: "4.11.0-rc.
|
|
61
|
+
sdkVersion: "4.11.0-rc.28",
|
|
62
62
|
genVersion: "2.907.0",
|
|
63
|
-
userAgent: "speakeasy-sdk/typescript 4.11.0-rc.
|
|
63
|
+
userAgent: "speakeasy-sdk/typescript 4.11.0-rc.28 2.907.0 2.0 @orq-ai/node",
|
|
64
64
|
} as const;
|
|
@@ -13,9 +13,12 @@ import {
|
|
|
13
13
|
} from "./azurefoundrydeploymentmasterdata.js";
|
|
14
14
|
|
|
15
15
|
export type AzureFoundryDeployment = {
|
|
16
|
+
baseUrl?: string | undefined;
|
|
16
17
|
id: string;
|
|
17
18
|
masterData?: AzureFoundryDeploymentMasterData | undefined;
|
|
18
19
|
model: string;
|
|
20
|
+
publisher?: string | undefined;
|
|
21
|
+
wire?: string | undefined;
|
|
19
22
|
};
|
|
20
23
|
|
|
21
24
|
/** @internal */
|
|
@@ -24,11 +27,15 @@ export const AzureFoundryDeployment$inboundSchema: z.ZodType<
|
|
|
24
27
|
z.ZodTypeDef,
|
|
25
28
|
unknown
|
|
26
29
|
> = z.object({
|
|
30
|
+
base_url: z.string().optional(),
|
|
27
31
|
id: z.string(),
|
|
28
32
|
master_data: AzureFoundryDeploymentMasterData$inboundSchema.optional(),
|
|
29
33
|
model: z.string(),
|
|
34
|
+
publisher: z.string().optional(),
|
|
35
|
+
wire: z.string().optional(),
|
|
30
36
|
}).transform((v) => {
|
|
31
37
|
return remap$(v, {
|
|
38
|
+
"base_url": "baseUrl",
|
|
32
39
|
"master_data": "masterData",
|
|
33
40
|
});
|
|
34
41
|
});
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
import * as z from "zod/v3";
|
|
6
|
+
import { ClosedEnum } from "../../types/enums.js";
|
|
7
|
+
|
|
8
|
+
export const BudgetSortField = {
|
|
9
|
+
BudgetSortFieldUnspecified: "BUDGET_SORT_FIELD_UNSPECIFIED",
|
|
10
|
+
BudgetSortFieldExpiresAt: "BUDGET_SORT_FIELD_EXPIRES_AT",
|
|
11
|
+
BudgetSortFieldCreatedAt: "BUDGET_SORT_FIELD_CREATED_AT",
|
|
12
|
+
BudgetSortFieldUpdatedAt: "BUDGET_SORT_FIELD_UPDATED_AT",
|
|
13
|
+
} as const;
|
|
14
|
+
export type BudgetSortField = ClosedEnum<typeof BudgetSortField>;
|
|
15
|
+
|
|
16
|
+
/** @internal */
|
|
17
|
+
export const BudgetSortField$outboundSchema: z.ZodNativeEnum<
|
|
18
|
+
typeof BudgetSortField
|
|
19
|
+
> = z.nativeEnum(BudgetSortField);
|
|
@@ -29,6 +29,7 @@ export * from "./budgetperiod.js";
|
|
|
29
29
|
export * from "./budgetrejection.js";
|
|
30
30
|
export * from "./budgetscope.js";
|
|
31
31
|
export * from "./budgetscopekind.js";
|
|
32
|
+
export * from "./budgetsortfield.js";
|
|
32
33
|
export * from "./checkbudgetsrequest.js";
|
|
33
34
|
export * from "./checkbudgetsresponse.js";
|
|
34
35
|
export * from "./conversationparam.js";
|
|
@@ -40,7 +40,7 @@ export const ReasoningPart$inboundSchema: z.ZodType<
|
|
|
40
40
|
z.ZodTypeDef,
|
|
41
41
|
unknown
|
|
42
42
|
> = z.object({
|
|
43
|
-
_id: z.string().default("
|
|
43
|
+
_id: z.string().default("reasoning_01kvag9a432vxhy3ng3mehqfkr"),
|
|
44
44
|
metadata: z.record(z.any()).optional(),
|
|
45
45
|
kind: z.literal("reasoning"),
|
|
46
46
|
reasoning: z.string(),
|
|
@@ -55,6 +55,10 @@ export type BudgetListRequest = {
|
|
|
55
55
|
* the per-workspace `{workspace_id}_budgets` collection.
|
|
56
56
|
*/
|
|
57
57
|
query?: string | undefined;
|
|
58
|
+
/**
|
|
59
|
+
* Field used to order the list. Unset orders by most-recently-updated.
|
|
60
|
+
*/
|
|
61
|
+
sortBy?: components.BudgetSortField | undefined;
|
|
58
62
|
};
|
|
59
63
|
|
|
60
64
|
/** @internal */
|
|
@@ -67,6 +71,7 @@ export type BudgetListRequest$Outbound = {
|
|
|
67
71
|
is_active?: boolean | undefined;
|
|
68
72
|
period?: Array<string> | undefined;
|
|
69
73
|
query?: string | undefined;
|
|
74
|
+
sort_by?: string | undefined;
|
|
70
75
|
};
|
|
71
76
|
|
|
72
77
|
/** @internal */
|
|
@@ -83,6 +88,7 @@ export const BudgetListRequest$outboundSchema: z.ZodType<
|
|
|
83
88
|
isActive: z.boolean().optional(),
|
|
84
89
|
period: z.array(components.BudgetPeriod$outboundSchema).optional(),
|
|
85
90
|
query: z.string().optional(),
|
|
91
|
+
sortBy: components.BudgetSortField$outboundSchema.optional(),
|
|
86
92
|
}).transform((v) => {
|
|
87
93
|
return remap$(v, {
|
|
88
94
|
startingAfter: "starting_after",
|
|
@@ -90,6 +96,7 @@ export const BudgetListRequest$outboundSchema: z.ZodType<
|
|
|
90
96
|
scopeKind: "scope_kind",
|
|
91
97
|
scopeTargetId: "scope_target_id",
|
|
92
98
|
isActive: "is_active",
|
|
99
|
+
sortBy: "sort_by",
|
|
93
100
|
});
|
|
94
101
|
});
|
|
95
102
|
|
|
@@ -138,7 +138,7 @@ export const CreateDatasetResponseBody$inboundSchema: z.ZodType<
|
|
|
138
138
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
139
139
|
.optional(),
|
|
140
140
|
updated: z.string().datetime({ offset: true }).default(
|
|
141
|
-
"2026-06-
|
|
141
|
+
"2026-06-17T09:58:08.470Z",
|
|
142
142
|
).transform(v => new Date(v)),
|
|
143
143
|
}).transform((v) => {
|
|
144
144
|
return remap$(v, {
|
|
@@ -2372,7 +2372,7 @@ export const Evaluations3$inboundSchema: z.ZodType<
|
|
|
2372
2372
|
),
|
|
2373
2373
|
reviewed_by_id: z.string(),
|
|
2374
2374
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
2375
|
-
"2026-06-
|
|
2375
|
+
"2026-06-17T09:58:33.442Z",
|
|
2376
2376
|
).transform(v => new Date(v)),
|
|
2377
2377
|
type: z.literal("string_array"),
|
|
2378
2378
|
values: z.array(z.string()),
|
|
@@ -2417,7 +2417,7 @@ export const Evaluations2$inboundSchema: z.ZodType<
|
|
|
2417
2417
|
source: CreateDatasetItemEvaluationsSource$inboundSchema.default("orq"),
|
|
2418
2418
|
reviewed_by_id: z.string(),
|
|
2419
2419
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
2420
|
-
"2026-06-
|
|
2420
|
+
"2026-06-17T09:58:33.442Z",
|
|
2421
2421
|
).transform(v => new Date(v)),
|
|
2422
2422
|
type: z.literal("number"),
|
|
2423
2423
|
value: z.number(),
|
|
@@ -2463,7 +2463,7 @@ export const Evaluations1$inboundSchema: z.ZodType<
|
|
|
2463
2463
|
source: EvaluationsSource$inboundSchema.default("orq"),
|
|
2464
2464
|
reviewed_by_id: z.string(),
|
|
2465
2465
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
2466
|
-
"2026-06-
|
|
2466
|
+
"2026-06-17T09:58:33.441Z",
|
|
2467
2467
|
).transform(v => new Date(v)),
|
|
2468
2468
|
type: z.literal("string"),
|
|
2469
2469
|
value: z.string(),
|
|
@@ -2546,7 +2546,7 @@ export const CreateDatasetItemResponseBody$inboundSchema: z.ZodType<
|
|
|
2546
2546
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
2547
2547
|
.optional(),
|
|
2548
2548
|
updated: z.string().datetime({ offset: true }).default(
|
|
2549
|
-
"2026-06-
|
|
2549
|
+
"2026-06-17T09:58:08.470Z",
|
|
2550
2550
|
).transform(v => new Date(v)),
|
|
2551
2551
|
}).transform((v) => {
|
|
2552
2552
|
return remap$(v, {
|
|
@@ -409,7 +409,7 @@ export const CreateDatasourceResponseBody$inboundSchema: z.ZodType<
|
|
|
409
409
|
z.ZodTypeDef,
|
|
410
410
|
unknown
|
|
411
411
|
> = z.object({
|
|
412
|
-
_id: z.string().default("
|
|
412
|
+
_id: z.string().default("01KVAG9AMJ8RVKYN57V0SJDFD0"),
|
|
413
413
|
display_name: z.string(),
|
|
414
414
|
description: z.nullable(z.string()).optional(),
|
|
415
415
|
status: CreateDatasourceStatus$inboundSchema,
|
|
@@ -2193,8 +2193,8 @@ export const Typescript$inboundSchema: z.ZodType<
|
|
|
2193
2193
|
> = z.object({
|
|
2194
2194
|
_id: z.string(),
|
|
2195
2195
|
description: z.string(),
|
|
2196
|
-
created: z.string().default("2026-06-
|
|
2197
|
-
updated: z.string().default("2026-06-
|
|
2196
|
+
created: z.string().default("2026-06-17T09:58:09.760Z"),
|
|
2197
|
+
updated: z.string().default("2026-06-17T09:58:09.760Z"),
|
|
2198
2198
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
2199
2199
|
guardrail_config: z.nullable(
|
|
2200
2200
|
z.union([
|
|
@@ -2384,8 +2384,8 @@ export const Ragas$inboundSchema: z.ZodType<Ragas, z.ZodTypeDef, unknown> = z
|
|
|
2384
2384
|
.object({
|
|
2385
2385
|
_id: z.string(),
|
|
2386
2386
|
description: z.string(),
|
|
2387
|
-
created: z.string().default("2026-06-
|
|
2388
|
-
updated: z.string().default("2026-06-
|
|
2387
|
+
created: z.string().default("2026-06-17T09:58:09.760Z"),
|
|
2388
|
+
updated: z.string().default("2026-06-17T09:58:09.760Z"),
|
|
2389
2389
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
2390
2390
|
guardrail_config: z.nullable(
|
|
2391
2391
|
z.union([
|
|
@@ -3210,8 +3210,8 @@ export const CreateEvalResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
3210
3210
|
> = z.object({
|
|
3211
3211
|
_id: z.string(),
|
|
3212
3212
|
description: z.string(),
|
|
3213
|
-
created: z.string().default("2026-06-
|
|
3214
|
-
updated: z.string().default("2026-06-
|
|
3213
|
+
created: z.string().default("2026-06-17T09:58:09.760Z"),
|
|
3214
|
+
updated: z.string().default("2026-06-17T09:58:09.760Z"),
|
|
3215
3215
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
3216
3216
|
guardrail_config: z.nullable(
|
|
3217
3217
|
z.union([
|
|
@@ -3430,8 +3430,8 @@ export const ResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
3430
3430
|
> = z.object({
|
|
3431
3431
|
_id: z.string(),
|
|
3432
3432
|
description: z.string(),
|
|
3433
|
-
created: z.string().default("2026-06-
|
|
3434
|
-
updated: z.string().default("2026-06-
|
|
3433
|
+
created: z.string().default("2026-06-17T09:58:09.760Z"),
|
|
3434
|
+
updated: z.string().default("2026-06-17T09:58:09.760Z"),
|
|
3435
3435
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
3436
3436
|
guardrail_config: z.nullable(
|
|
3437
3437
|
z.union([
|
|
@@ -3612,8 +3612,8 @@ export const CreateEvalResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
3612
3612
|
> = z.object({
|
|
3613
3613
|
_id: z.string(),
|
|
3614
3614
|
description: z.string(),
|
|
3615
|
-
created: z.string().default("2026-06-
|
|
3616
|
-
updated: z.string().default("2026-06-
|
|
3615
|
+
created: z.string().default("2026-06-17T09:58:09.760Z"),
|
|
3616
|
+
updated: z.string().default("2026-06-17T09:58:09.760Z"),
|
|
3617
3617
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
3618
3618
|
guardrail_config: z.nullable(
|
|
3619
3619
|
z.union([
|
|
@@ -3772,8 +3772,8 @@ export const Json$inboundSchema: z.ZodType<Json, z.ZodTypeDef, unknown> = z
|
|
|
3772
3772
|
.object({
|
|
3773
3773
|
_id: z.string(),
|
|
3774
3774
|
description: z.string(),
|
|
3775
|
-
created: z.string().default("2026-06-
|
|
3776
|
-
updated: z.string().default("2026-06-
|
|
3775
|
+
created: z.string().default("2026-06-17T09:58:09.760Z"),
|
|
3776
|
+
updated: z.string().default("2026-06-17T09:58:09.760Z"),
|
|
3777
3777
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
3778
3778
|
guardrail_config: z.nullable(
|
|
3779
3779
|
z.union([
|
|
@@ -4143,8 +4143,8 @@ export const CreateEvalLlm2$inboundSchema: z.ZodType<
|
|
|
4143
4143
|
> = z.object({
|
|
4144
4144
|
_id: z.string(),
|
|
4145
4145
|
description: z.string(),
|
|
4146
|
-
created: z.string().default("2026-06-
|
|
4147
|
-
updated: z.string().default("2026-06-
|
|
4146
|
+
created: z.string().default("2026-06-17T09:58:09.760Z"),
|
|
4147
|
+
updated: z.string().default("2026-06-17T09:58:09.760Z"),
|
|
4148
4148
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
4149
4149
|
guardrail_config: z.nullable(
|
|
4150
4150
|
z.union([
|
|
@@ -4363,8 +4363,8 @@ export const CreateEvalLlm1$inboundSchema: z.ZodType<
|
|
|
4363
4363
|
> = z.object({
|
|
4364
4364
|
_id: z.string(),
|
|
4365
4365
|
description: z.string(),
|
|
4366
|
-
created: z.string().default("2026-06-
|
|
4367
|
-
updated: z.string().default("2026-06-
|
|
4366
|
+
created: z.string().default("2026-06-17T09:58:09.760Z"),
|
|
4367
|
+
updated: z.string().default("2026-06-17T09:58:09.760Z"),
|
|
4368
4368
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
4369
4369
|
guardrail_config: z.nullable(
|
|
4370
4370
|
z.union([
|
|
@@ -1898,7 +1898,7 @@ export const ResponseBodyCodeExecutionTool$inboundSchema: z.ZodType<
|
|
|
1898
1898
|
z.ZodTypeDef,
|
|
1899
1899
|
unknown
|
|
1900
1900
|
> = z.object({
|
|
1901
|
-
_id: z.string().default("
|
|
1901
|
+
_id: z.string().default("tool_01KVAG9AFARNCQYA2JS5JV4MSD"),
|
|
1902
1902
|
path: z.string(),
|
|
1903
1903
|
key: z.string(),
|
|
1904
1904
|
display_name: z.string().optional(),
|
|
@@ -1995,7 +1995,7 @@ export const ResponseBodyTools$inboundSchema: z.ZodType<
|
|
|
1995
1995
|
z.ZodTypeDef,
|
|
1996
1996
|
unknown
|
|
1997
1997
|
> = z.object({
|
|
1998
|
-
id: z.string().default("
|
|
1998
|
+
id: z.string().default("01KVAG9AF9ANEB5EV17A8KJFS4"),
|
|
1999
1999
|
name: z.string(),
|
|
2000
2000
|
description: z.string().optional(),
|
|
2001
2001
|
schema: z.lazy(() => CreateToolResponseBodySchema$inboundSchema),
|
|
@@ -2051,7 +2051,7 @@ export const ResponseBodyMCPTool$inboundSchema: z.ZodType<
|
|
|
2051
2051
|
z.ZodTypeDef,
|
|
2052
2052
|
unknown
|
|
2053
2053
|
> = z.object({
|
|
2054
|
-
_id: z.string().default("
|
|
2054
|
+
_id: z.string().default("tool_01KVAG9AF8CXPDT39CT4PZT0B9"),
|
|
2055
2055
|
path: z.string(),
|
|
2056
2056
|
key: z.string(),
|
|
2057
2057
|
display_name: z.string().optional(),
|
|
@@ -2237,7 +2237,7 @@ export const ResponseBodyHTTPTool$inboundSchema: z.ZodType<
|
|
|
2237
2237
|
z.ZodTypeDef,
|
|
2238
2238
|
unknown
|
|
2239
2239
|
> = z.object({
|
|
2240
|
-
_id: z.string().default("
|
|
2240
|
+
_id: z.string().default("tool_01KVAG9AF5SMRSBV3ZF8HCTA9R"),
|
|
2241
2241
|
path: z.string(),
|
|
2242
2242
|
key: z.string(),
|
|
2243
2243
|
display_name: z.string().optional(),
|
|
@@ -2330,7 +2330,7 @@ export const ResponseBodyJSONSchemaTool$inboundSchema: z.ZodType<
|
|
|
2330
2330
|
z.ZodTypeDef,
|
|
2331
2331
|
unknown
|
|
2332
2332
|
> = z.object({
|
|
2333
|
-
_id: z.string().default("
|
|
2333
|
+
_id: z.string().default("tool_01KVAG9AF30944F9KDH57PGBYH"),
|
|
2334
2334
|
path: z.string(),
|
|
2335
2335
|
key: z.string(),
|
|
2336
2336
|
display_name: z.string().optional(),
|
|
@@ -2431,7 +2431,7 @@ export const ResponseBodyFunctionTool$inboundSchema: z.ZodType<
|
|
|
2431
2431
|
z.ZodTypeDef,
|
|
2432
2432
|
unknown
|
|
2433
2433
|
> = z.object({
|
|
2434
|
-
_id: z.string().default("
|
|
2434
|
+
_id: z.string().default("tool_01KVAG9AF12Q7AA0S69YDEG58Z"),
|
|
2435
2435
|
path: z.string(),
|
|
2436
2436
|
key: z.string(),
|
|
2437
2437
|
display_name: z.string().optional(),
|
|
@@ -767,7 +767,7 @@ export const DataCodeExecutionTool$inboundSchema: z.ZodType<
|
|
|
767
767
|
z.ZodTypeDef,
|
|
768
768
|
unknown
|
|
769
769
|
> = z.object({
|
|
770
|
-
_id: z.string().default("
|
|
770
|
+
_id: z.string().default("tool_01KVAG9AENMYN4ZSXNA1F0ZJVY"),
|
|
771
771
|
path: z.string(),
|
|
772
772
|
key: z.string(),
|
|
773
773
|
display_name: z.string().optional(),
|
|
@@ -864,7 +864,7 @@ export const DataTools$inboundSchema: z.ZodType<
|
|
|
864
864
|
z.ZodTypeDef,
|
|
865
865
|
unknown
|
|
866
866
|
> = z.object({
|
|
867
|
-
id: z.string().default("
|
|
867
|
+
id: z.string().default("01KVAG9AEMSYFC8A9EZAVCZGNQ"),
|
|
868
868
|
name: z.string(),
|
|
869
869
|
description: z.string().optional(),
|
|
870
870
|
schema: z.lazy(() => GetAllToolsDataSchema$inboundSchema),
|
|
@@ -917,7 +917,7 @@ export const DataMCPTool$inboundSchema: z.ZodType<
|
|
|
917
917
|
z.ZodTypeDef,
|
|
918
918
|
unknown
|
|
919
919
|
> = z.object({
|
|
920
|
-
_id: z.string().default("
|
|
920
|
+
_id: z.string().default("tool_01KVAG9AEJESFHJ5J6BX62G1JE"),
|
|
921
921
|
path: z.string(),
|
|
922
922
|
key: z.string(),
|
|
923
923
|
display_name: z.string().optional(),
|
|
@@ -1102,7 +1102,7 @@ export const DataHTTPTool$inboundSchema: z.ZodType<
|
|
|
1102
1102
|
z.ZodTypeDef,
|
|
1103
1103
|
unknown
|
|
1104
1104
|
> = z.object({
|
|
1105
|
-
_id: z.string().default("
|
|
1105
|
+
_id: z.string().default("tool_01KVAG9AEG3MRRDRC7J781HK1D"),
|
|
1106
1106
|
path: z.string(),
|
|
1107
1107
|
key: z.string(),
|
|
1108
1108
|
display_name: z.string().optional(),
|
|
@@ -1195,7 +1195,7 @@ export const DataJSONSchemaTool$inboundSchema: z.ZodType<
|
|
|
1195
1195
|
z.ZodTypeDef,
|
|
1196
1196
|
unknown
|
|
1197
1197
|
> = z.object({
|
|
1198
|
-
_id: z.string().default("
|
|
1198
|
+
_id: z.string().default("tool_01KVAG9AEFQY0VVFPD9RNPAWFJ"),
|
|
1199
1199
|
path: z.string(),
|
|
1200
1200
|
key: z.string(),
|
|
1201
1201
|
display_name: z.string().optional(),
|
|
@@ -1297,7 +1297,7 @@ export const DataFunctionTool$inboundSchema: z.ZodType<
|
|
|
1297
1297
|
z.ZodTypeDef,
|
|
1298
1298
|
unknown
|
|
1299
1299
|
> = z.object({
|
|
1300
|
-
_id: z.string().default("
|
|
1300
|
+
_id: z.string().default("tool_01KVAG9AEDEKN2DGC8SS0DKSC1"),
|
|
1301
1301
|
path: z.string(),
|
|
1302
1302
|
key: z.string(),
|
|
1303
1303
|
display_name: z.string().optional(),
|
|
@@ -1074,8 +1074,8 @@ export const DataTypescript$inboundSchema: z.ZodType<
|
|
|
1074
1074
|
> = z.object({
|
|
1075
1075
|
_id: z.string(),
|
|
1076
1076
|
description: z.string(),
|
|
1077
|
-
created: z.string().default("2026-06-
|
|
1078
|
-
updated: z.string().default("2026-06-
|
|
1077
|
+
created: z.string().default("2026-06-17T09:58:09.760Z"),
|
|
1078
|
+
updated: z.string().default("2026-06-17T09:58:09.760Z"),
|
|
1079
1079
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
1080
1080
|
guardrail_config: z.nullable(
|
|
1081
1081
|
z.union([
|
|
@@ -1256,8 +1256,8 @@ export const DataRagas$inboundSchema: z.ZodType<
|
|
|
1256
1256
|
> = z.object({
|
|
1257
1257
|
_id: z.string(),
|
|
1258
1258
|
description: z.string(),
|
|
1259
|
-
created: z.string().default("2026-06-
|
|
1260
|
-
updated: z.string().default("2026-06-
|
|
1259
|
+
created: z.string().default("2026-06-17T09:58:09.760Z"),
|
|
1260
|
+
updated: z.string().default("2026-06-17T09:58:09.760Z"),
|
|
1261
1261
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
1262
1262
|
guardrail_config: z.nullable(
|
|
1263
1263
|
z.union([
|
|
@@ -2088,8 +2088,8 @@ export const DataFunction$inboundSchema: z.ZodType<
|
|
|
2088
2088
|
> = z.object({
|
|
2089
2089
|
_id: z.string(),
|
|
2090
2090
|
description: z.string(),
|
|
2091
|
-
created: z.string().default("2026-06-
|
|
2092
|
-
updated: z.string().default("2026-06-
|
|
2091
|
+
created: z.string().default("2026-06-17T09:58:09.760Z"),
|
|
2092
|
+
updated: z.string().default("2026-06-17T09:58:09.760Z"),
|
|
2093
2093
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
2094
2094
|
guardrail_config: z.nullable(
|
|
2095
2095
|
z.union([
|
|
@@ -2272,8 +2272,8 @@ export const DataPython$inboundSchema: z.ZodType<
|
|
|
2272
2272
|
> = z.object({
|
|
2273
2273
|
_id: z.string(),
|
|
2274
2274
|
description: z.string(),
|
|
2275
|
-
created: z.string().default("2026-06-
|
|
2276
|
-
updated: z.string().default("2026-06-
|
|
2275
|
+
created: z.string().default("2026-06-17T09:58:09.760Z"),
|
|
2276
|
+
updated: z.string().default("2026-06-17T09:58:09.760Z"),
|
|
2277
2277
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
2278
2278
|
guardrail_config: z.nullable(
|
|
2279
2279
|
z.union([
|
|
@@ -2452,8 +2452,8 @@ export const DataHTTP$inboundSchema: z.ZodType<
|
|
|
2452
2452
|
> = z.object({
|
|
2453
2453
|
_id: z.string(),
|
|
2454
2454
|
description: z.string(),
|
|
2455
|
-
created: z.string().default("2026-06-
|
|
2456
|
-
updated: z.string().default("2026-06-
|
|
2455
|
+
created: z.string().default("2026-06-17T09:58:09.760Z"),
|
|
2456
|
+
updated: z.string().default("2026-06-17T09:58:09.760Z"),
|
|
2457
2457
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
2458
2458
|
guardrail_config: z.nullable(
|
|
2459
2459
|
z.union([
|
|
@@ -2644,8 +2644,8 @@ export const DataJSON$inboundSchema: z.ZodType<
|
|
|
2644
2644
|
> = z.object({
|
|
2645
2645
|
_id: z.string(),
|
|
2646
2646
|
description: z.string(),
|
|
2647
|
-
created: z.string().default("2026-06-
|
|
2648
|
-
updated: z.string().default("2026-06-
|
|
2647
|
+
created: z.string().default("2026-06-17T09:58:09.760Z"),
|
|
2648
|
+
updated: z.string().default("2026-06-17T09:58:09.760Z"),
|
|
2649
2649
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
2650
2650
|
guardrail_config: z.nullable(
|
|
2651
2651
|
z.union([
|
|
@@ -3012,8 +3012,8 @@ export const GetEvalsLlm2$inboundSchema: z.ZodType<
|
|
|
3012
3012
|
> = z.object({
|
|
3013
3013
|
_id: z.string(),
|
|
3014
3014
|
description: z.string(),
|
|
3015
|
-
created: z.string().default("2026-06-
|
|
3016
|
-
updated: z.string().default("2026-06-
|
|
3015
|
+
created: z.string().default("2026-06-17T09:58:09.760Z"),
|
|
3016
|
+
updated: z.string().default("2026-06-17T09:58:09.760Z"),
|
|
3017
3017
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
3018
3018
|
guardrail_config: z.nullable(
|
|
3019
3019
|
z.union([
|
|
@@ -3225,8 +3225,8 @@ export const GetEvalsLlm1$inboundSchema: z.ZodType<
|
|
|
3225
3225
|
> = z.object({
|
|
3226
3226
|
_id: z.string(),
|
|
3227
3227
|
description: z.string(),
|
|
3228
|
-
created: z.string().default("2026-06-
|
|
3229
|
-
updated: z.string().default("2026-06-
|
|
3228
|
+
created: z.string().default("2026-06-17T09:58:09.760Z"),
|
|
3229
|
+
updated: z.string().default("2026-06-17T09:58:09.760Z"),
|
|
3230
3230
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
3231
3231
|
guardrail_config: z.nullable(
|
|
3232
3232
|
z.union([
|
|
@@ -140,7 +140,7 @@ export const GetV2HumanEvalSetsResponseBody2$inboundSchema: z.ZodType<
|
|
|
140
140
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
141
141
|
.optional(),
|
|
142
142
|
updated: z.string().datetime({ offset: true }).default(
|
|
143
|
-
"2026-06-
|
|
143
|
+
"2026-06-17T09:58:08.470Z",
|
|
144
144
|
).transform(v => new Date(v)),
|
|
145
145
|
filter_type: z.literal("name"),
|
|
146
146
|
filter_value: z.string(),
|
|
@@ -185,7 +185,7 @@ export const GetV2HumanEvalSetsResponseBody1$inboundSchema: z.ZodType<
|
|
|
185
185
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
186
186
|
.optional(),
|
|
187
187
|
updated: z.string().datetime({ offset: true }).default(
|
|
188
|
-
"2026-06-
|
|
188
|
+
"2026-06-17T09:58:08.470Z",
|
|
189
189
|
).transform(v => new Date(v)),
|
|
190
190
|
filter_type: z.literal("span_type"),
|
|
191
191
|
filter_values: z.array(z.string()),
|
|
@@ -141,7 +141,7 @@ export const GetV2HumanEvalSetsIdResponseBody2$inboundSchema: z.ZodType<
|
|
|
141
141
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
142
142
|
.optional(),
|
|
143
143
|
updated: z.string().datetime({ offset: true }).default(
|
|
144
|
-
"2026-06-
|
|
144
|
+
"2026-06-17T09:58:08.470Z",
|
|
145
145
|
).transform(v => new Date(v)),
|
|
146
146
|
filter_type: z.literal("name"),
|
|
147
147
|
filter_value: z.string(),
|
|
@@ -186,7 +186,7 @@ export const GetV2HumanEvalSetsIdResponseBody1$inboundSchema: z.ZodType<
|
|
|
186
186
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
187
187
|
.optional(),
|
|
188
188
|
updated: z.string().datetime({ offset: true }).default(
|
|
189
|
-
"2026-06-
|
|
189
|
+
"2026-06-17T09:58:08.470Z",
|
|
190
190
|
).transform(v => new Date(v)),
|
|
191
191
|
filter_type: z.literal("span_type"),
|
|
192
192
|
filter_values: z.array(z.string()),
|
|
@@ -1270,7 +1270,7 @@ export const ListDatasetDatapointsEvaluations3$inboundSchema: z.ZodType<
|
|
|
1270
1270
|
),
|
|
1271
1271
|
reviewed_by_id: z.string(),
|
|
1272
1272
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
1273
|
-
"2026-06-
|
|
1273
|
+
"2026-06-17T09:58:33.426Z",
|
|
1274
1274
|
).transform(v => new Date(v)),
|
|
1275
1275
|
type: z.literal("string_array"),
|
|
1276
1276
|
values: z.array(z.string()),
|
|
@@ -1320,7 +1320,7 @@ export const ListDatasetDatapointsEvaluations2$inboundSchema: z.ZodType<
|
|
|
1320
1320
|
source: ListDatasetDatapointsEvaluationsSource$inboundSchema.default("orq"),
|
|
1321
1321
|
reviewed_by_id: z.string(),
|
|
1322
1322
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
1323
|
-
"2026-06-
|
|
1323
|
+
"2026-06-17T09:58:33.425Z",
|
|
1324
1324
|
).transform(v => new Date(v)),
|
|
1325
1325
|
type: z.literal("number"),
|
|
1326
1326
|
value: z.number(),
|
|
@@ -1369,7 +1369,7 @@ export const ListDatasetDatapointsEvaluations1$inboundSchema: z.ZodType<
|
|
|
1369
1369
|
.default("orq"),
|
|
1370
1370
|
reviewed_by_id: z.string(),
|
|
1371
1371
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
1372
|
-
"2026-06-
|
|
1372
|
+
"2026-06-17T09:58:33.425Z",
|
|
1373
1373
|
).transform(v => new Date(v)),
|
|
1374
1374
|
type: z.literal("string"),
|
|
1375
1375
|
value: z.string(),
|
|
@@ -1448,7 +1448,7 @@ export const ListDatasetDatapointsData$inboundSchema: z.ZodType<
|
|
|
1448
1448
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
1449
1449
|
.optional(),
|
|
1450
1450
|
updated: z.string().datetime({ offset: true }).default(
|
|
1451
|
-
"2026-06-
|
|
1451
|
+
"2026-06-17T09:58:08.470Z",
|
|
1452
1452
|
).transform(v => new Date(v)),
|
|
1453
1453
|
}).transform((v) => {
|
|
1454
1454
|
return remap$(v, {
|
|
@@ -169,7 +169,7 @@ export const ListDatasetsData$inboundSchema: z.ZodType<
|
|
|
169
169
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
170
170
|
.optional(),
|
|
171
171
|
updated: z.string().datetime({ offset: true }).default(
|
|
172
|
-
"2026-06-
|
|
172
|
+
"2026-06-17T09:58:08.470Z",
|
|
173
173
|
).transform(v => new Date(v)),
|
|
174
174
|
}).transform((v) => {
|
|
175
175
|
return remap$(v, {
|
|
@@ -182,7 +182,7 @@ export const ListDatasourcesData$inboundSchema: z.ZodType<
|
|
|
182
182
|
z.ZodTypeDef,
|
|
183
183
|
unknown
|
|
184
184
|
> = z.object({
|
|
185
|
-
_id: z.string().default("
|
|
185
|
+
_id: z.string().default("01KVAG9AMEQXVVQFMEW0JDXCCD"),
|
|
186
186
|
display_name: z.string(),
|
|
187
187
|
description: z.nullable(z.string()).optional(),
|
|
188
188
|
status: ListDatasourcesStatus$inboundSchema,
|
|
@@ -318,7 +318,7 @@ export const PatchV2HumanEvalSetsIdResponseBody2$inboundSchema: z.ZodType<
|
|
|
318
318
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
319
319
|
.optional(),
|
|
320
320
|
updated: z.string().datetime({ offset: true }).default(
|
|
321
|
-
"2026-06-
|
|
321
|
+
"2026-06-17T09:58:08.470Z",
|
|
322
322
|
).transform(v => new Date(v)),
|
|
323
323
|
filter_type: z.literal("name"),
|
|
324
324
|
filter_value: z.string(),
|
|
@@ -364,7 +364,7 @@ export const PatchV2HumanEvalSetsIdResponseBody1$inboundSchema: z.ZodType<
|
|
|
364
364
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
365
365
|
.optional(),
|
|
366
366
|
updated: z.string().datetime({ offset: true }).default(
|
|
367
|
-
"2026-06-
|
|
367
|
+
"2026-06-17T09:58:08.470Z",
|
|
368
368
|
).transform(v => new Date(v)),
|
|
369
369
|
filter_type: z.literal("span_type"),
|
|
370
370
|
filter_values: z.array(z.string()),
|
|
@@ -173,7 +173,7 @@ export const RequestBody3$outboundSchema: z.ZodType<
|
|
|
173
173
|
humanReviewId: z.string(),
|
|
174
174
|
source: PostV2FeedbackEvaluationRequestBodyFeedbackSource$outboundSchema
|
|
175
175
|
.default("orq"),
|
|
176
|
-
reviewedAt: z.date().default(() => new Date("2026-06-
|
|
176
|
+
reviewedAt: z.date().default(() => new Date("2026-06-17T09:58:33.604Z"))
|
|
177
177
|
.transform(v => v.toISOString()),
|
|
178
178
|
type: z.literal("string_array"),
|
|
179
179
|
values: z.array(z.string()),
|
|
@@ -225,7 +225,7 @@ export const PostV2FeedbackEvaluationRequestBody2$outboundSchema: z.ZodType<
|
|
|
225
225
|
source: PostV2FeedbackEvaluationRequestBodySource$outboundSchema.default(
|
|
226
226
|
"orq",
|
|
227
227
|
),
|
|
228
|
-
reviewedAt: z.date().default(() => new Date("2026-06-
|
|
228
|
+
reviewedAt: z.date().default(() => new Date("2026-06-17T09:58:33.603Z"))
|
|
229
229
|
.transform(v => v.toISOString()),
|
|
230
230
|
type: z.literal("number"),
|
|
231
231
|
value: z.number(),
|
|
@@ -281,7 +281,7 @@ export const PostV2FeedbackEvaluationRequestBody1$outboundSchema: z.ZodType<
|
|
|
281
281
|
evaluationType: EvaluationType$outboundSchema,
|
|
282
282
|
humanReviewId: z.string(),
|
|
283
283
|
source: RequestBodySource$outboundSchema.default("orq"),
|
|
284
|
-
reviewedAt: z.date().default(() => new Date("2026-06-
|
|
284
|
+
reviewedAt: z.date().default(() => new Date("2026-06-17T09:58:33.602Z"))
|
|
285
285
|
.transform(v => v.toISOString()),
|
|
286
286
|
type: z.literal("string"),
|
|
287
287
|
value: z.string(),
|
|
@@ -271,7 +271,7 @@ export const PostV2HumanEvalSetsResponseBody2$inboundSchema: z.ZodType<
|
|
|
271
271
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
272
272
|
.optional(),
|
|
273
273
|
updated: z.string().datetime({ offset: true }).default(
|
|
274
|
-
"2026-06-
|
|
274
|
+
"2026-06-17T09:58:08.470Z",
|
|
275
275
|
).transform(v => new Date(v)),
|
|
276
276
|
filter_type: z.literal("name"),
|
|
277
277
|
filter_value: z.string(),
|
|
@@ -316,7 +316,7 @@ export const PostV2HumanEvalSetsResponseBody1$inboundSchema: z.ZodType<
|
|
|
316
316
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
317
317
|
.optional(),
|
|
318
318
|
updated: z.string().datetime({ offset: true }).default(
|
|
319
|
-
"2026-06-
|
|
319
|
+
"2026-06-17T09:58:08.470Z",
|
|
320
320
|
).transform(v => new Date(v)),
|
|
321
321
|
filter_type: z.literal("span_type"),
|
|
322
322
|
filter_values: z.array(z.string()),
|