@wix/evalforge-types 0.73.0 → 0.74.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 +4 -0
- package/build/index.js.map +2 -2
- package/build/index.mjs +4 -0
- package/build/index.mjs.map +2 -2
- package/build/types/project/project.d.ts +5 -2
- package/package.json +2 -2
|
@@ -26,25 +26,28 @@ export type Project = z.infer<typeof ProjectSchema>;
|
|
|
26
26
|
/**
|
|
27
27
|
* Input schema for creating a new Project.
|
|
28
28
|
* Omits read-only / runtime-resolved fields.
|
|
29
|
+
* Requires appId for proper app-credential scoping and tenancy isolation.
|
|
29
30
|
*/
|
|
30
31
|
export declare const CreateProjectInputSchema: z.ZodObject<{
|
|
31
32
|
name: z.ZodString;
|
|
32
33
|
description: z.ZodString;
|
|
33
|
-
appId: z.ZodOptional<z.ZodString>;
|
|
34
34
|
scenarioTags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
35
35
|
wixAuthToken: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
36
36
|
base44AuthFile: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
37
|
+
appId: z.ZodString;
|
|
37
38
|
}, z.core.$strip>;
|
|
38
39
|
export type CreateProjectInput = z.infer<typeof CreateProjectInputSchema>;
|
|
39
40
|
/**
|
|
40
41
|
* Input schema for updating a Project.
|
|
42
|
+
* AppId is mutable — allows project reassignment to different apps if needed.
|
|
43
|
+
* Requires current app credentials to change (enforced by appAuthProjectGuard).
|
|
41
44
|
*/
|
|
42
45
|
export declare const UpdateProjectInputSchema: z.ZodObject<{
|
|
43
46
|
name: z.ZodOptional<z.ZodString>;
|
|
44
47
|
description: z.ZodOptional<z.ZodString>;
|
|
45
|
-
appId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
46
48
|
scenarioTags: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString>>>;
|
|
47
49
|
wixAuthToken: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
48
50
|
base44AuthFile: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
51
|
+
appId: z.ZodOptional<z.ZodString>;
|
|
49
52
|
}, z.core.$strip>;
|
|
50
53
|
export type UpdateProjectInput = z.infer<typeof UpdateProjectInputSchema>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/evalforge-types",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.74.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": "2d95416da22b2c81af5afb54bb6d3b5cbc1fac31d48f866a49a53523"
|
|
50
50
|
}
|