Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@sap-ux/annotation-converter

Package Overview
Dependencies
Maintainers
3
Versions
76
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sap-ux/annotation-converter - npm Package Compare versions

Comparing version 0.6.2 to 0.6.3

6

CHANGELOG.md
# @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 @@

6

dist/converter.js

@@ -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) {

2

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc