@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
|
@@ -262,3 +262,49 @@ export declare const SkillWithLatestVersionSchema: z.ZodObject<{
|
|
|
262
262
|
}, z.core.$strip>>;
|
|
263
263
|
}, z.core.$strip>;
|
|
264
264
|
export type SkillWithLatestVersion = z.infer<typeof SkillWithLatestVersionSchema>;
|
|
265
|
+
/**
|
|
266
|
+
* Input for bulk-importing skills from a parent directory in GitHub.
|
|
267
|
+
* The source path should point to a directory containing skill subdirectories.
|
|
268
|
+
*/
|
|
269
|
+
export declare const BulkImportSkillsInputSchema: z.ZodObject<{
|
|
270
|
+
source: z.ZodObject<{
|
|
271
|
+
owner: z.ZodString;
|
|
272
|
+
repo: z.ZodString;
|
|
273
|
+
path: z.ZodString;
|
|
274
|
+
ref: z.ZodString;
|
|
275
|
+
}, z.core.$strip>;
|
|
276
|
+
}, z.core.$strip>;
|
|
277
|
+
export type BulkImportSkillsInput = z.infer<typeof BulkImportSkillsInputSchema>;
|
|
278
|
+
/**
|
|
279
|
+
* Per-skill result from a bulk import operation.
|
|
280
|
+
*/
|
|
281
|
+
export declare const BulkImportResultItemSchema: z.ZodObject<{
|
|
282
|
+
name: z.ZodString;
|
|
283
|
+
status: z.ZodEnum<{
|
|
284
|
+
created: "created";
|
|
285
|
+
skipped: "skipped";
|
|
286
|
+
failed: "failed";
|
|
287
|
+
}>;
|
|
288
|
+
skillId: z.ZodOptional<z.ZodString>;
|
|
289
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
290
|
+
}, z.core.$strip>;
|
|
291
|
+
export type BulkImportResultItem = z.infer<typeof BulkImportResultItemSchema>;
|
|
292
|
+
/**
|
|
293
|
+
* Full response from a bulk import operation.
|
|
294
|
+
*/
|
|
295
|
+
export declare const BulkImportResultSchema: z.ZodObject<{
|
|
296
|
+
created: z.ZodNumber;
|
|
297
|
+
skipped: z.ZodNumber;
|
|
298
|
+
failed: z.ZodNumber;
|
|
299
|
+
items: z.ZodArray<z.ZodObject<{
|
|
300
|
+
name: z.ZodString;
|
|
301
|
+
status: z.ZodEnum<{
|
|
302
|
+
created: "created";
|
|
303
|
+
skipped: "skipped";
|
|
304
|
+
failed: "failed";
|
|
305
|
+
}>;
|
|
306
|
+
skillId: z.ZodOptional<z.ZodString>;
|
|
307
|
+
reason: z.ZodOptional<z.ZodString>;
|
|
308
|
+
}, z.core.$strip>>;
|
|
309
|
+
}, z.core.$strip>;
|
|
310
|
+
export type BulkImportResult = z.infer<typeof BulkImportResultSchema>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/evalforge-types",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.53.0",
|
|
4
4
|
"description": "Unified types for EvalForge agent evaluation system",
|
|
5
5
|
"files": [
|
|
6
6
|
"build"
|
|
@@ -47,5 +47,5 @@
|
|
|
47
47
|
"artifactId": "evalforge-types"
|
|
48
48
|
}
|
|
49
49
|
},
|
|
50
|
-
"falconPackageHash": "
|
|
50
|
+
"falconPackageHash": "1439388c972fbb9a930cc6f82b078a000e5ca2c1cc0fddbc3c7908e2"
|
|
51
51
|
}
|