@api-components/amf-helper-mixin
Advanced tools
Comparing version 4.1.5 to 4.1.6
{ | ||
"name": "@api-components/amf-helper-mixin", | ||
"description": "A mixin with common functions user by most AMF components to compyte AMF values", | ||
"version": "4.1.5", | ||
"version": "4.1.6", | ||
"license": "Apache-2.0", | ||
@@ -6,0 +6,0 @@ "main": "index.js", |
@@ -157,2 +157,3 @@ interface Document { | ||
xmlWrapped: string; | ||
readOnly: string; | ||
} | ||
@@ -274,2 +275,5 @@ | ||
minCount: string; | ||
xone: string; | ||
not: string; | ||
or: string; | ||
} | ||
@@ -276,0 +280,0 @@ |
@@ -168,2 +168,3 @@ | ||
ns.aml.vocabularies.shapes.xmlWrapped = shapesKey + 'xmlWrapped'; | ||
ns.aml.vocabularies.shapes.readOnly = shapesKey + 'readOnly'; | ||
ns.aml.vocabularies.data = {}; | ||
@@ -260,2 +261,5 @@ const dataKey = ns.aml.vocabularies.data.key = ns.aml.vocabularies.key + 'data#'; | ||
ns.w3.shacl.minCount = n2shaclName + 'minCount'; | ||
ns.w3.shacl.xone = n2shaclName + 'xone' | ||
ns.w3.shacl.not = n2shaclName + 'not' | ||
ns.w3.shacl.or = n2shaclName + 'or' | ||
// Hydra shortcuts | ||
@@ -262,0 +266,0 @@ ns.w3.hydra.supportedOperation = contractKey + 'supportedOperation'; |
277464
2222