Skip to content

Commit

Permalink
Merge pull request #412 from iljapostnovs/development
Browse files Browse the repository at this point in the history
fix for OData types generation
  • Loading branch information
iljapostnovs authored May 29, 2024
2 parents bbde926 + 34865a7 commit 65f746a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.19.1 (29-05-2024)

- Change Edm.Byte to int for OData to TS type generation

## 1.19.0 (24-05-2024)

- New preference entry added: `ui5.plugin.parsingDelay`. It serves as a delay for parsing, which can be handy for large projects in order to gain better performance.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "ui5plugin",
"displayName": "SAPUI5 Extension",
"description": "Extension for working with UI5 projects",
"version": "1.19.0",
"version": "1.19.1",
"publisher": "iljapostnovs",
"license": "Apache-2.0",
"author": "Ilja Postnovs <ilja.postnovs@gmail.com>",
Expand Down
4 changes: 2 additions & 2 deletions src/classes/utils/xmlmetadata/EdmTypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export class EdmTypes {
"Edm.DateTime": "Date",
"Edm.Date": "Date",
"Edm.DateTimeOffset": "Date",
"Edm.Byte": "string",
"Edm.Byte": "int",
"Edm.SByte": "string",
"Edm.Single": "string",
"Edm.String": "string",
Expand All @@ -37,7 +37,7 @@ export class EdmTypes {
"Edm.Duration": "string",
"Edm.DateTimeOffset": "Date",
"Edm.Stream": "string",
"Edm.Byte": "string",
"Edm.Byte": "int",
"Edm.SByte": "string",
"Edm.Single": "float",
"Edm.TimeOfDay": "string",
Expand Down

0 comments on commit 65f746a

Please sign in to comment.