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