@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.js
CHANGED
|
@@ -1517,15 +1517,23 @@ var import_zod31 = require("zod");
|
|
|
1517
1517
|
var ProjectSchema = BaseEntitySchema.extend({
|
|
1518
1518
|
appId: import_zod31.z.string().optional().describe("The ID of the app in Dev Center"),
|
|
1519
1519
|
appSecret: import_zod31.z.string().optional().describe("The secret of the app in Dev Center"),
|
|
1520
|
-
|
|
1521
|
-
|
|
1522
|
-
|
|
1520
|
+
scenarioTags: import_zod31.z.array(import_zod31.z.string()).optional().describe("Project-level tag vocabulary for scenarios"),
|
|
1521
|
+
/** Per-project Wix auth token (write-only — never returned in GET responses). null = clear. */
|
|
1522
|
+
wixAuthToken: import_zod31.z.string().nullable().optional().describe("Wix auth token for CLI/MCP authentication (encrypted at rest)"),
|
|
1523
|
+
/** Per-project Base44 auth file content (write-only — never returned in GET responses). null = clear. */
|
|
1524
|
+
base44AuthFile: import_zod31.z.string().nullable().optional().describe("Base64-encoded Base44 auth file content (encrypted at rest)"),
|
|
1525
|
+
/** Resolved at runtime from the encrypted Wix auth token */
|
|
1526
|
+
wixAuthEmail: import_zod31.z.string().optional().describe("Email associated with the Wix auth token (resolved at runtime)"),
|
|
1527
|
+
/** Resolved at runtime from the encrypted Base44 auth file */
|
|
1528
|
+
base44AuthEmail: import_zod31.z.string().optional().describe("Email from the Base44 auth file (resolved at runtime)")
|
|
1523
1529
|
});
|
|
1524
1530
|
var CreateProjectInputSchema = ProjectSchema.omit({
|
|
1525
1531
|
id: true,
|
|
1526
1532
|
createdAt: true,
|
|
1527
1533
|
updatedAt: true,
|
|
1528
|
-
deleted: true
|
|
1534
|
+
deleted: true,
|
|
1535
|
+
wixAuthEmail: true,
|
|
1536
|
+
base44AuthEmail: true
|
|
1529
1537
|
});
|
|
1530
1538
|
var UpdateProjectInputSchema = CreateProjectInputSchema.partial();
|
|
1531
1539
|
|