@openframe-org/criteria-set-protocol 2.3.1 → 2.4.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.
|
@@ -20,6 +20,7 @@ export declare const metadataSchema: z.ZodObject<{
|
|
|
20
20
|
date: z.ZodDate;
|
|
21
21
|
name: z.ZodString;
|
|
22
22
|
shortName: z.ZodString;
|
|
23
|
+
group: z.ZodString;
|
|
23
24
|
description: z.ZodString;
|
|
24
25
|
documentation: z.ZodOptional<z.ZodString>;
|
|
25
26
|
locales: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -41,6 +42,7 @@ export declare const metadataSchema: z.ZodObject<{
|
|
|
41
42
|
name: string;
|
|
42
43
|
id: string;
|
|
43
44
|
description: string;
|
|
45
|
+
group: string;
|
|
44
46
|
date: Date;
|
|
45
47
|
version: string;
|
|
46
48
|
revision: string;
|
|
@@ -57,6 +59,7 @@ export declare const metadataSchema: z.ZodObject<{
|
|
|
57
59
|
name: string;
|
|
58
60
|
id: string;
|
|
59
61
|
description: string;
|
|
62
|
+
group: string;
|
|
60
63
|
date: Date;
|
|
61
64
|
version: string;
|
|
62
65
|
revision: string;
|
|
@@ -26,6 +26,7 @@ exports.metadataSchema = zod_1.z
|
|
|
26
26
|
date: zod_1.z.date().describe("The date when the criteria set was created"),
|
|
27
27
|
name: zod_1.z.string().describe("The name of the criteria set"),
|
|
28
28
|
shortName: zod_1.z.string().describe("A short version of the name of the criteria set"),
|
|
29
|
+
group: zod_1.z.string().describe("The arbitrary group identifier for the criteria set, used for grouping criteria sets in the UI"),
|
|
29
30
|
description: zod_1.z
|
|
30
31
|
.string()
|
|
31
32
|
.describe("A detailed description of the criteria set"),
|
|
@@ -6,6 +6,7 @@ export declare const criteriaSetsAndVersionsSchema: z.ZodRecord<z.ZodString, z.Z
|
|
|
6
6
|
date: z.ZodDate;
|
|
7
7
|
name: z.ZodString;
|
|
8
8
|
shortName: z.ZodString;
|
|
9
|
+
group: z.ZodString;
|
|
9
10
|
description: z.ZodString;
|
|
10
11
|
documentation: z.ZodOptional<z.ZodString>;
|
|
11
12
|
locales: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -27,6 +28,7 @@ export declare const criteriaSetsAndVersionsSchema: z.ZodRecord<z.ZodString, z.Z
|
|
|
27
28
|
name: string;
|
|
28
29
|
id: string;
|
|
29
30
|
description: string;
|
|
31
|
+
group: string;
|
|
30
32
|
date: Date;
|
|
31
33
|
version: string;
|
|
32
34
|
revision: string;
|
|
@@ -43,6 +45,7 @@ export declare const criteriaSetsAndVersionsSchema: z.ZodRecord<z.ZodString, z.Z
|
|
|
43
45
|
name: string;
|
|
44
46
|
id: string;
|
|
45
47
|
description: string;
|
|
48
|
+
group: string;
|
|
46
49
|
date: Date;
|
|
47
50
|
version: string;
|
|
48
51
|
revision: string;
|
package/package.json
CHANGED