@wix/evalforge-types 0.63.0 → 0.65.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 +12 -5
- package/build/index.js.map +2 -2
- package/build/index.mjs +12 -5
- package/build/index.mjs.map +2 -2
- package/build/types/project/project.d.ts +9 -9
- package/package.json +2 -2
package/build/index.mjs
CHANGED
|
@@ -1316,16 +1316,23 @@ var EvalRunFolderMembershipSchema = z30.object({
|
|
|
1316
1316
|
import { z as z31 } from "zod";
|
|
1317
1317
|
var ProjectSchema = BaseEntitySchema.extend({
|
|
1318
1318
|
appId: z31.string().optional().describe("The ID of the app in Dev Center"),
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1319
|
+
scenarioTags: z31.array(z31.string()).optional().describe("Project-level tag vocabulary for scenarios"),
|
|
1320
|
+
/** Per-project Wix auth token (write-only — never returned in GET responses). null = clear. */
|
|
1321
|
+
wixAuthToken: z31.string().nullable().optional().describe("Wix auth token for CLI/MCP authentication (encrypted at rest)"),
|
|
1322
|
+
/** Per-project Base44 auth file content (write-only — never returned in GET responses). null = clear. */
|
|
1323
|
+
base44AuthFile: z31.string().nullable().optional().describe("Base64-encoded Base44 auth file content (encrypted at rest)"),
|
|
1324
|
+
/** Resolved at runtime from the encrypted Wix auth token */
|
|
1325
|
+
wixAuthEmail: z31.string().optional().describe("Email associated with the Wix auth token (resolved at runtime)"),
|
|
1326
|
+
/** Resolved at runtime from the encrypted Base44 auth file */
|
|
1327
|
+
base44AuthEmail: z31.string().optional().describe("Email from the Base44 auth file (resolved at runtime)")
|
|
1323
1328
|
});
|
|
1324
1329
|
var CreateProjectInputSchema = ProjectSchema.omit({
|
|
1325
1330
|
id: true,
|
|
1326
1331
|
createdAt: true,
|
|
1327
1332
|
updatedAt: true,
|
|
1328
|
-
deleted: true
|
|
1333
|
+
deleted: true,
|
|
1334
|
+
wixAuthEmail: true,
|
|
1335
|
+
base44AuthEmail: true
|
|
1329
1336
|
});
|
|
1330
1337
|
var UpdateProjectInputSchema = CreateProjectInputSchema.partial();
|
|
1331
1338
|
|