@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
- elements: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodType<{
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
- elements: exports.elementDataMapSchema
17
- .describe("The data map consisting of a map of element codes to their data"),
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openframe-org/criteria-set-protocol",
3
- "version": "2.7.9",
3
+ "version": "2.7.10",
4
4
  "description": "A protocol and tools for defining and working with criteria sets",
5
5
  "private": false,
6
6
  "author": "Andrés Angulo <aa@openframe.org>",