@openframe-org/criteria-set-protocol 2.2.4 → 2.2.5
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.
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
|
-
import { booleanTypeSchema, certificationDefinitionSchema, certificationDefinitionTypeSchema, colorSchema, criteriaSetOptionsSchema, criteriaSetsAndVersionsSchema, criteriaTreeElementSchema, criteriaTreeElementTypeSchema, criteriaTreeSchema, criterionOptionsSchema, criterionSchema, dashboardCategoryListingTypeSchema, dataMapSchema, documentationItemSchema, elementDataSchema, inlineDocumentationItemSchema, linkDocumentationItemSchema, metadataSchema, numberBasedCertificationDefinitionRulesSchema, numberBasedCertificationDefinitionSchema, numberTypeSchema, pdfDocumentationItemSchema, percentageBasedCertificationDefinitionRulesSchema, percentageBasedCertificationDefinitionSchema, pointOptionSchema, schemaDefinitionSchema, schemaDefinitionsSchema, selectMultipleTypeSchema, selectSingleTypeSchema, taskGroupSchema, taskItemDataSchema, taskItemDefinitionSchema, taskItemOptionsSchema, taskItemScalarValueSchema, taskItemSchema, taskItemValueMapSchema, taskItemValueSchema, taskOptionsSchema, taskSchema, themeOptionsSchema, themeSchema, themeStyleSchema, treeResultSchema } from "../schemas";
|
|
2
|
+
import { booleanTypeSchema, certificationDefinitionSchema, certificationDefinitionTypeSchema, colorSchema, criteriaSetOptionsSchema, criteriaSetsAndVersionsSchema, criteriaTreeElementSchema, criteriaTreeElementTypeSchema, criteriaTreeSchema, criterionOptionsSchema, criterionSchema, dashboardCategoryListingTypeSchema, dataMapSchema, documentationItemSchema, elementDataMapSchema, elementDataSchema, inlineDocumentationItemSchema, linkDocumentationItemSchema, metadataSchema, numberBasedCertificationDefinitionRulesSchema, numberBasedCertificationDefinitionSchema, numberTypeSchema, pdfDocumentationItemSchema, percentageBasedCertificationDefinitionRulesSchema, percentageBasedCertificationDefinitionSchema, pointOptionSchema, schemaDefinitionSchema, schemaDefinitionsSchema, selectMultipleTypeSchema, selectSingleTypeSchema, taskGroupSchema, taskItemDataSchema, taskItemDefinitionSchema, taskItemOptionsSchema, taskItemScalarValueSchema, taskItemSchema, taskItemValueMapSchema, taskItemValueSchema, taskOptionsSchema, taskSchema, themeOptionsSchema, themeSchema, themeStyleSchema, treeResultSchema } from "../schemas";
|
|
3
3
|
export type CertificationDefinitionType = z.infer<typeof certificationDefinitionTypeSchema>;
|
|
4
4
|
export type NumberBasedCertificationDefinitionRules = z.infer<typeof numberBasedCertificationDefinitionRulesSchema>;
|
|
5
5
|
export type PercentageBasedCertificationDefinitionRules = z.infer<typeof percentageBasedCertificationDefinitionRulesSchema>;
|
|
@@ -17,6 +17,7 @@ export type LinkDocumentationItem = z.infer<typeof linkDocumentationItemSchema>;
|
|
|
17
17
|
export type DocumentationItem = z.infer<typeof documentationItemSchema>;
|
|
18
18
|
export type Metadata = z.infer<typeof metadataSchema>;
|
|
19
19
|
export type ElementData = z.infer<typeof elementDataSchema>;
|
|
20
|
+
export type ElementDataMap = z.infer<typeof elementDataMapSchema>;
|
|
20
21
|
export type TaskItemData = z.infer<typeof taskItemDataSchema>;
|
|
21
22
|
export type TaskItemScalarValue = z.infer<typeof taskItemScalarValueSchema>;
|
|
22
23
|
export type TaskItemValue = z.infer<typeof taskItemValueSchema>;
|
package/package.json
CHANGED