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