@wix/evalforge-types 0.52.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.js +21 -0
- package/build/index.js.map +2 -2
- package/build/index.mjs +18 -0
- package/build/index.mjs.map +2 -2
- package/build/types/target/skill.d.ts +46 -0
- package/package.json +2 -2
package/build/index.mjs
CHANGED
|
@@ -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,
|