@wix/evalforge-types 0.84.0 → 0.85.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.
|
@@ -3,6 +3,7 @@ export declare const RuleTypeSchema: z.ZodEnum<{
|
|
|
3
3
|
"claude-md": "claude-md";
|
|
4
4
|
"agents-md": "agents-md";
|
|
5
5
|
"cursor-rule": "cursor-rule";
|
|
6
|
+
generic: "generic";
|
|
6
7
|
}>;
|
|
7
8
|
export type RuleType = z.infer<typeof RuleTypeSchema>;
|
|
8
9
|
export declare const RuleSchema: z.ZodObject<{
|
|
@@ -17,8 +18,10 @@ export declare const RuleSchema: z.ZodObject<{
|
|
|
17
18
|
"claude-md": "claude-md";
|
|
18
19
|
"agents-md": "agents-md";
|
|
19
20
|
"cursor-rule": "cursor-rule";
|
|
21
|
+
generic: "generic";
|
|
20
22
|
}>;
|
|
21
23
|
content: z.ZodString;
|
|
24
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
22
25
|
}, z.core.$strip>;
|
|
23
26
|
export type Rule = z.infer<typeof RuleSchema>;
|
|
24
27
|
export declare const CreateRuleInputSchema: z.ZodObject<{
|
|
@@ -29,8 +32,10 @@ export declare const CreateRuleInputSchema: z.ZodObject<{
|
|
|
29
32
|
"claude-md": "claude-md";
|
|
30
33
|
"agents-md": "agents-md";
|
|
31
34
|
"cursor-rule": "cursor-rule";
|
|
35
|
+
generic: "generic";
|
|
32
36
|
}>;
|
|
33
37
|
content: z.ZodString;
|
|
38
|
+
directory: z.ZodOptional<z.ZodString>;
|
|
34
39
|
}, z.core.$strip>;
|
|
35
40
|
export type CreateRuleInput = z.infer<typeof CreateRuleInputSchema>;
|
|
36
41
|
export declare const UpdateRuleInputSchema: z.ZodObject<{
|
|
@@ -41,7 +46,9 @@ export declare const UpdateRuleInputSchema: z.ZodObject<{
|
|
|
41
46
|
"claude-md": "claude-md";
|
|
42
47
|
"agents-md": "agents-md";
|
|
43
48
|
"cursor-rule": "cursor-rule";
|
|
49
|
+
generic: "generic";
|
|
44
50
|
}>>;
|
|
45
51
|
content: z.ZodOptional<z.ZodString>;
|
|
52
|
+
directory: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
46
53
|
}, z.core.$strip>;
|
|
47
54
|
export type UpdateRuleInput = z.infer<typeof UpdateRuleInputSchema>;
|
|
@@ -35,8 +35,9 @@ export interface SubAgentContent {
|
|
|
35
35
|
}
|
|
36
36
|
/** Rule version content: rule type + markdown content */
|
|
37
37
|
export interface RuleContent {
|
|
38
|
-
ruleType: 'claude-md' | 'agents-md' | 'cursor-rule';
|
|
38
|
+
ruleType: 'claude-md' | 'agents-md' | 'cursor-rule' | 'generic';
|
|
39
39
|
content: string;
|
|
40
|
+
directory?: string;
|
|
40
41
|
}
|
|
41
42
|
/** MCP version content: keyed server config for .mcp.json */
|
|
42
43
|
export interface McpContent {
|
|
@@ -67,7 +68,8 @@ export interface CachedRule {
|
|
|
67
68
|
name: string;
|
|
68
69
|
content: string;
|
|
69
70
|
path: string;
|
|
70
|
-
ruleType: 'claude-md' | 'agents-md' | 'cursor-rule';
|
|
71
|
+
ruleType: 'claude-md' | 'agents-md' | 'cursor-rule' | 'generic';
|
|
72
|
+
directory?: string;
|
|
71
73
|
}
|
|
72
74
|
/** An MCP server discovered inside a plugin's .mcp.json */
|
|
73
75
|
export interface CachedMcp {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/evalforge-types",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.85.0",
|
|
4
4
|
"description": "Unified types for EvalForge agent evaluation system",
|
|
5
5
|
"files": [
|
|
6
6
|
"build"
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"artifactId": "evalforge-types"
|
|
47
47
|
}
|
|
48
48
|
},
|
|
49
|
-
"falconPackageHash": "
|
|
49
|
+
"falconPackageHash": "d3c51614a0cbb3bb85120aa0c847f7f95eb67344c2517d25202dca7a"
|
|
50
50
|
}
|