@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.mjs CHANGED
@@ -226,8 +226,10 @@ function isValidSkillFolderName(name) {
226
226
  var SkillMetadataSchema = z7.object({
227
227
  name: z7.string(),
228
228
  description: z7.string(),
229
- allowedTools: z7.array(z7.string()).optional(),
230
- skills: z7.array(z7.string()).optional()
229
+ license: z7.string().optional(),
230
+ compatibility: z7.string().optional(),
231
+ metadata: z7.record(z7.string(), z7.string()).optional(),
232
+ allowedTools: z7.array(z7.string()).optional()
231
233
  });
232
234
  var SkillFileSchema = z7.object({
233
235
  /** Relative path within the skill directory, e.g. "SKILL.md" or "references/API_SPEC.md" */
@@ -1315,15 +1317,23 @@ import { z as z31 } from "zod";
1315
1317
  var ProjectSchema = BaseEntitySchema.extend({
1316
1318
  appId: z31.string().optional().describe("The ID of the app in Dev Center"),
1317
1319
  appSecret: z31.string().optional().describe("The secret of the app in Dev Center"),
1318
- useWixAuth: z31.boolean().optional().describe("Enable Wix CLI/MCP auth for evaluations"),
1319
- useBase44Auth: z31.boolean().optional().describe("Enable Base44 auth for evaluations"),
1320
- scenarioTags: z31.array(z31.string()).optional().describe("Project-level tag vocabulary for scenarios")
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)")
1321
1329
  });
1322
1330
  var CreateProjectInputSchema = ProjectSchema.omit({
1323
1331
  id: true,
1324
1332
  createdAt: true,
1325
1333
  updatedAt: true,
1326
- deleted: true
1334
+ deleted: true,
1335
+ wixAuthEmail: true,
1336
+ base44AuthEmail: true
1327
1337
  });
1328
1338
  var UpdateProjectInputSchema = CreateProjectInputSchema.partial();
1329
1339