@sap-ux/annotation-converter
Advanced tools
Comparing version 0.6.2 to 0.6.3
# @sap-ux/annotation-converter | ||
## 0.6.3 | ||
### Patch Changes | ||
- e922bf7: Fix simple name resolution for action target -> unbound action | ||
## 0.6.2 | ||
@@ -4,0 +10,0 @@ |
@@ -738,3 +738,7 @@ "use strict"; | ||
getConvertedActionImport(fullyQualifiedName) { | ||
return this.convertedOutput.actionImports.by_fullyQualifiedName(fullyQualifiedName); | ||
let actionImport = this.convertedOutput.actionImports.by_fullyQualifiedName(fullyQualifiedName); | ||
if (!actionImport) { | ||
actionImport = this.convertedOutput.actionImports.by_name(fullyQualifiedName); | ||
} | ||
return actionImport; | ||
} | ||
@@ -741,0 +745,0 @@ getConvertedAction(fullyQualifiedName) { |
{ | ||
"name": "@sap-ux/annotation-converter", | ||
"version": "0.6.2", | ||
"version": "0.6.3", | ||
"description": "SAP Fiori OData - Annotation converter", | ||
@@ -5,0 +5,0 @@ "repository": { |
@@ -1039,3 +1039,7 @@ import type { | ||
getConvertedActionImport(fullyQualifiedName: FullyQualifiedName) { | ||
return this.convertedOutput.actionImports.by_fullyQualifiedName(fullyQualifiedName); | ||
let actionImport = this.convertedOutput.actionImports.by_fullyQualifiedName(fullyQualifiedName); | ||
if (!actionImport) { | ||
actionImport = this.convertedOutput.actionImports.by_name(fullyQualifiedName); | ||
} | ||
return actionImport; | ||
} | ||
@@ -1042,0 +1046,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
304944
4503