@openframe-org/criteria-set-protocol 2.7.9 → 2.7.10
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.
|
@@ -106,7 +106,7 @@ export declare const elementDataMapSchema: z.ZodRecord<z.ZodString, z.ZodUnion<[
|
|
|
106
106
|
export declare const dataMapSchema: z.ZodObject<{
|
|
107
107
|
version: z.ZodString;
|
|
108
108
|
revision: z.ZodString;
|
|
109
|
-
|
|
109
|
+
data: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodType<{
|
|
110
110
|
text: string;
|
|
111
111
|
} & ({
|
|
112
112
|
[x: string]: any;
|
|
@@ -13,8 +13,8 @@ exports.dataMapSchema = zod_1.z
|
|
|
13
13
|
.string()
|
|
14
14
|
.describe("The version of the criteria set used to generate the data map"),
|
|
15
15
|
revision: zod_1.z.string().describe("The internal version of this criteria set"),
|
|
16
|
-
|
|
17
|
-
.describe("
|
|
16
|
+
data: exports.elementDataMapSchema
|
|
17
|
+
.describe("Map of element codes to data generated by the criteria set"),
|
|
18
18
|
result: common_1.treeResultSchema.describe("The overall result of the evaluation of the criteria set"),
|
|
19
19
|
certifications: zod_1.z
|
|
20
20
|
.array(zod_1.z.string())
|
package/package.json
CHANGED