@sap-ux/annotation-converter
Advanced tools
Comparing version 0.5.16 to 0.5.17
# @sap-ux/annotation-converter | ||
## 0.5.17 | ||
### Patch Changes | ||
- 18aee1c: fix: Remove the unused 'isEntitySet' property from the ActionParameter type | ||
## 0.5.16 | ||
@@ -4,0 +10,0 @@ |
@@ -242,6 +242,3 @@ "use strict"; | ||
} | ||
else if (currentValue._type === 'ActionParameter' && currentValue.isEntitySet) { | ||
currentPath = combinePath(currentValue.type, pathPart); | ||
} | ||
else if (currentValue._type === 'ActionParameter' && !currentValue.isEntitySet) { | ||
else if (currentValue._type === 'ActionParameter') { | ||
currentPath = combinePath(currentTarget.fullyQualifiedName.substring(0, currentTarget.fullyQualifiedName.lastIndexOf('/')), pathPart); | ||
@@ -248,0 +245,0 @@ if (!objectMap[currentPath]) { |
{ | ||
"name": "@sap-ux/annotation-converter", | ||
"version": "0.5.16", | ||
"version": "0.5.17", | ||
"description": "SAP Fiori OData - Annotation converter", | ||
@@ -17,4 +17,4 @@ "repository": { | ||
"devDependencies": { | ||
"@sap-ux/vocabularies-types": "0.6.2", | ||
"@sap-ux/edmx-parser": "0.5.8" | ||
"@sap-ux/vocabularies-types": "0.6.3", | ||
"@sap-ux/edmx-parser": "0.5.9" | ||
}, | ||
@@ -21,0 +21,0 @@ "scripts": { |
@@ -288,5 +288,3 @@ import type { | ||
} | ||
} else if (currentValue._type === 'ActionParameter' && currentValue.isEntitySet) { | ||
currentPath = combinePath(currentValue.type, pathPart); | ||
} else if (currentValue._type === 'ActionParameter' && !currentValue.isEntitySet) { | ||
} else if (currentValue._type === 'ActionParameter') { | ||
currentPath = combinePath( | ||
@@ -293,0 +291,0 @@ currentTarget.fullyQualifiedName.substring(0, currentTarget.fullyQualifiedName.lastIndexOf('/')), |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
276804
4158