@wix/evalforge-types 0.58.0 → 0.59.0
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/build/index.js +52 -22
- package/build/index.js.map +4 -4
- package/build/index.mjs +48 -22
- package/build/index.mjs.map +4 -4
- package/build/types/evaluation/eval-run-folder.d.ts +43 -0
- package/build/types/evaluation/index.d.ts +1 -0
- package/package.json +2 -2
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
/**
|
|
3
|
+
* EvalRunFolder schema - a folder for organizing eval runs.
|
|
4
|
+
* Runs can belong to multiple folders (many-to-many).
|
|
5
|
+
*/
|
|
6
|
+
export declare const EvalRunFolderSchema: z.ZodObject<{
|
|
7
|
+
id: z.ZodString;
|
|
8
|
+
name: z.ZodString;
|
|
9
|
+
description: z.ZodString;
|
|
10
|
+
createdAt: z.ZodString;
|
|
11
|
+
updatedAt: z.ZodString;
|
|
12
|
+
deleted: z.ZodOptional<z.ZodBoolean>;
|
|
13
|
+
projectId: z.ZodString;
|
|
14
|
+
}, z.core.$strip>;
|
|
15
|
+
export type EvalRunFolder = z.infer<typeof EvalRunFolderSchema>;
|
|
16
|
+
/**
|
|
17
|
+
* Input schema for creating a new EvalRunFolder.
|
|
18
|
+
*/
|
|
19
|
+
export declare const CreateEvalRunFolderInputSchema: z.ZodObject<{
|
|
20
|
+
name: z.ZodString;
|
|
21
|
+
description: z.ZodString;
|
|
22
|
+
projectId: z.ZodString;
|
|
23
|
+
}, z.core.$strip>;
|
|
24
|
+
export type CreateEvalRunFolderInput = z.infer<typeof CreateEvalRunFolderInputSchema>;
|
|
25
|
+
/**
|
|
26
|
+
* Input schema for updating an EvalRunFolder.
|
|
27
|
+
*/
|
|
28
|
+
export declare const UpdateEvalRunFolderInputSchema: z.ZodObject<{
|
|
29
|
+
name: z.ZodOptional<z.ZodString>;
|
|
30
|
+
description: z.ZodOptional<z.ZodString>;
|
|
31
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
32
|
+
}, z.core.$strip>;
|
|
33
|
+
export type UpdateEvalRunFolderInput = z.infer<typeof UpdateEvalRunFolderInputSchema>;
|
|
34
|
+
/**
|
|
35
|
+
* Folder membership - links an eval run to a folder.
|
|
36
|
+
*/
|
|
37
|
+
export declare const EvalRunFolderMembershipSchema: z.ZodObject<{
|
|
38
|
+
folderId: z.ZodString;
|
|
39
|
+
evalRunId: z.ZodString;
|
|
40
|
+
projectId: z.ZodString;
|
|
41
|
+
createdAt: z.ZodString;
|
|
42
|
+
}, z.core.$strip>;
|
|
43
|
+
export type EvalRunFolderMembership = z.infer<typeof EvalRunFolderMembershipSchema>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/evalforge-types",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.59.0",
|
|
4
4
|
"description": "Unified types for EvalForge agent evaluation system",
|
|
5
5
|
"files": [
|
|
6
6
|
"build"
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"artifactId": "evalforge-types"
|
|
47
47
|
}
|
|
48
48
|
},
|
|
49
|
-
"falconPackageHash": "
|
|
49
|
+
"falconPackageHash": "6bd1f3f247040c221f2806da2ecfdfe7d1375a7293d5fd06f5793957"
|
|
50
50
|
}
|