@sap-ux/edmx-parser
Advanced tools
Comparing version 0.5.6 to 0.5.7
# @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 @@ |
@@ -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
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
235686
4331