@wix/evalforge-types 0.62.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 +16 -6
- package/build/index.js.map +2 -2
- package/build/index.mjs +16 -6
- package/build/index.mjs.map +2 -2
- package/build/types/project/project.d.ts +9 -6
- package/build/types/target/skill.d.ts +7 -3
- package/package.json +2 -2
package/build/index.js
CHANGED
|
@@ -426,8 +426,10 @@ function isValidSkillFolderName(name) {
|
|
|
426
426
|
var SkillMetadataSchema = import_zod7.z.object({
|
|
427
427
|
name: import_zod7.z.string(),
|
|
428
428
|
description: import_zod7.z.string(),
|
|
429
|
-
|
|
430
|
-
|
|
429
|
+
license: import_zod7.z.string().optional(),
|
|
430
|
+
compatibility: import_zod7.z.string().optional(),
|
|
431
|
+
metadata: import_zod7.z.record(import_zod7.z.string(), import_zod7.z.string()).optional(),
|
|
432
|
+
allowedTools: import_zod7.z.array(import_zod7.z.string()).optional()
|
|
431
433
|
});
|
|
432
434
|
var SkillFileSchema = import_zod7.z.object({
|
|
433
435
|
/** Relative path within the skill directory, e.g. "SKILL.md" or "references/API_SPEC.md" */
|
|
@@ -1515,15 +1517,23 @@ var import_zod31 = require("zod");
|
|
|
1515
1517
|
var ProjectSchema = BaseEntitySchema.extend({
|
|
1516
1518
|
appId: import_zod31.z.string().optional().describe("The ID of the app in Dev Center"),
|
|
1517
1519
|
appSecret: import_zod31.z.string().optional().describe("The secret of the app in Dev Center"),
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
|
|
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)")
|
|
1521
1529
|
});
|
|
1522
1530
|
var CreateProjectInputSchema = ProjectSchema.omit({
|
|
1523
1531
|
id: true,
|
|
1524
1532
|
createdAt: true,
|
|
1525
1533
|
updatedAt: true,
|
|
1526
|
-
deleted: true
|
|
1534
|
+
deleted: true,
|
|
1535
|
+
wixAuthEmail: true,
|
|
1536
|
+
base44AuthEmail: true
|
|
1527
1537
|
});
|
|
1528
1538
|
var UpdateProjectInputSchema = CreateProjectInputSchema.partial();
|
|
1529
1539
|
|