@wix/evalforge-types 0.44.0 → 0.45.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 +3 -1
- package/build/index.js.map +2 -2
- package/build/index.mjs +3 -1
- package/build/index.mjs.map +2 -2
- package/build/types/project/project.d.ts +6 -0
- package/package.json +2 -2
package/build/index.mjs
CHANGED
|
@@ -2040,7 +2040,9 @@ var LeanEvaluationResultSchema = z29.object({
|
|
|
2040
2040
|
import { z as z30 } from "zod";
|
|
2041
2041
|
var ProjectSchema = BaseEntitySchema.extend({
|
|
2042
2042
|
appId: z30.string().optional().describe("The ID of the app in Dev Center"),
|
|
2043
|
-
appSecret: z30.string().optional().describe("The secret of the app in Dev Center")
|
|
2043
|
+
appSecret: z30.string().optional().describe("The secret of the app in Dev Center"),
|
|
2044
|
+
useWixAuth: z30.boolean().optional().describe("Enable Wix CLI/MCP auth for evaluations"),
|
|
2045
|
+
useBase44Auth: z30.boolean().optional().describe("Enable Base44 auth for evaluations")
|
|
2044
2046
|
});
|
|
2045
2047
|
var CreateProjectInputSchema = ProjectSchema.omit({
|
|
2046
2048
|
id: true,
|