@sap-ux/edmx-parser
Advanced tools
Comparing version 0.5.12 to 0.5.13
# @sap-ux/edmx-parser | ||
## 0.5.13 | ||
### Patch Changes | ||
- 29a4f8c: feat: support reverting primitive object to its raw type | ||
## 0.5.12 | ||
@@ -4,0 +10,0 @@ |
@@ -570,2 +570,7 @@ "use strict"; | ||
}; | ||
case 'Float': | ||
return { | ||
type: 'Float', | ||
Float: parseFloat(expression.Float) | ||
}; | ||
case 'Path': | ||
@@ -572,0 +577,0 @@ return { |
{ | ||
"name": "@sap-ux/edmx-parser", | ||
"version": "0.5.12", | ||
"version": "0.5.13", | ||
"description": "SAP Fiori OData - EDMX File parser", | ||
@@ -20,3 +20,3 @@ "repository": { | ||
"devDependencies": { | ||
"@sap-ux/vocabularies-types": "0.6.7" | ||
"@sap-ux/vocabularies-types": "0.6.8" | ||
}, | ||
@@ -23,0 +23,0 @@ "scripts": { |
@@ -809,2 +809,7 @@ // eslint-disable-next-line @typescript-eslint/triple-slash-reference | ||
}; | ||
case 'Float': | ||
return { | ||
type: 'Float', | ||
Float: parseFloat(expression.Float as unknown as string) | ||
}; | ||
case 'Path': | ||
@@ -811,0 +816,0 @@ return { |
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
248037
4522