@wix/evalforge-types 0.51.0 → 0.53.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
@@ -942,7 +942,6 @@ var WebhookIdentityType;
942
942
 
943
943
  // src/common/models.ts
944
944
  var ClaudeModel2 = {
945
- CLAUDE_3_7_SONNET_1_0: AnthropicModel.CLAUDE_3_7_SONNET_1_0,
946
945
  CLAUDE_4_SONNET_1_0: AnthropicModel.CLAUDE_4_SONNET_1_0,
947
946
  CLAUDE_4_OPUS_1_0: AnthropicModel.CLAUDE_4_OPUS_1_0,
948
947
  CLAUDE_4_5_SONNET_1_0: AnthropicModel.CLAUDE_4_5_SONNET_1_0,
@@ -996,7 +995,8 @@ var ModelConfigSchema = z4.object({
996
995
  nullToUndefined,
997
996
  z4.number().min(0).max(1).optional()
998
997
  ),
999
- maxTokens: z4.preprocess(nullToUndefined, z4.number().min(1).optional())
998
+ maxTokens: z4.preprocess(nullToUndefined, z4.number().min(1).optional()),
999
+ maxTurns: z4.preprocess(nullToUndefined, z4.number().int().min(1).optional())
1000
1000
  });
1001
1001
 
1002
1002
  // src/common/rule.ts
@@ -1168,6 +1168,21 @@ var UpdateSkillInputSchema = SkillInputBaseSchema.partial().refine(
1168
1168
  var SkillWithLatestVersionSchema = SkillSchema.extend({
1169
1169
  latestVersion: SkillVersionSchema.optional()
1170
1170
  });
1171
+ var BulkImportSkillsInputSchema = z7.object({
1172
+ source: GitHubSourceSchema
1173
+ });
1174
+ var BulkImportResultItemSchema = z7.object({
1175
+ name: z7.string(),
1176
+ status: z7.enum(["created", "skipped", "failed"]),
1177
+ skillId: z7.string().optional(),
1178
+ reason: z7.string().optional()
1179
+ });
1180
+ var BulkImportResultSchema = z7.object({
1181
+ created: z7.number(),
1182
+ skipped: z7.number(),
1183
+ failed: z7.number(),
1184
+ items: z7.array(BulkImportResultItemSchema)
1185
+ });
1171
1186
 
1172
1187
  // src/target/sub-agent.ts
1173
1188
  import { z as z8 } from "zod";
@@ -2355,6 +2370,9 @@ export {
2355
2370
  BuildCheckTestSchema,
2356
2371
  BuildPassedAssertionSchema,
2357
2372
  BuildPassedConfigSchema,
2373
+ BulkImportResultItemSchema,
2374
+ BulkImportResultSchema,
2375
+ BulkImportSkillsInputSchema,
2358
2376
  ClaudeModel2 as ClaudeModel,
2359
2377
  ClaudeModelSchema,
2360
2378
  CommandExecutionSchema,