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

@sap-ux/edmx-parser

Package Overview
Dependencies
Maintainers
3
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sap-ux/edmx-parser - npm Package Compare versions

Comparing version 0.5.6 to 0.5.7

6

CHANGELOG.md
# @sap-ux/edmx-parser
## 0.5.7
### Patch Changes
- 747c020: feat: add flag for collection-valued action parameters
## 0.5.6

@@ -4,0 +10,0 @@

6

dist/parser.js

@@ -359,3 +359,4 @@ "use strict";

type: param._attributes.Type,
isEntitySet: param._attributes.Name === action._attributes.EntitySetPath
isEntitySet: param._attributes.Name === action._attributes.EntitySetPath,
isCollection: param._attributes.Type.match(/^Collection\(.+\)$/) !== null
};

@@ -384,3 +385,4 @@ }),

type: param._attributes.Type,
isEntitySet: false
isEntitySet: false,
isCollection: param._attributes.Type.match(/^Collection\(.+\)$/) !== null
};

@@ -387,0 +389,0 @@ }),

{
"name": "@sap-ux/edmx-parser",
"version": "0.5.6",
"version": "0.5.7",
"description": "SAP Fiori OData - EDMX File parser",

@@ -20,3 +20,3 @@ "repository": {

"devDependencies": {
"@sap-ux/vocabularies-types": "0.6.0"
"@sap-ux/vocabularies-types": "0.6.1"
},

@@ -23,0 +23,0 @@ "scripts": {

@@ -526,3 +526,4 @@ // eslint-disable-next-line @typescript-eslint/triple-slash-reference

type: param._attributes.Type,
isEntitySet: param._attributes.Name === action._attributes.EntitySetPath
isEntitySet: param._attributes.Name === action._attributes.EntitySetPath,
isCollection: param._attributes.Type.match(/^Collection\(.+\)$/) !== null
};

@@ -556,3 +557,4 @@ }),

type: param._attributes.Type,
isEntitySet: false
isEntitySet: false,
isCollection: param._attributes.Type.match(/^Collection\(.+\)$/) !== null
};

@@ -559,0 +561,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