-
Notifications
You must be signed in to change notification settings - Fork 204
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
File upload fixes (end-to-end) (#1706)
* feat(backoffice-v2): added a cell for downloading files * feat(backoffice-v2): extended the image viewer to allow downloading files * fix(backoffice-v2): fixed wrong file location for download file svg * refactor(backoffice-v2): removed DownloadFile from the cells map as its no longer a cell * feat(backoffice-v2): provided fallback to image viewer item for download only files * refactor(*): improved file upload handling by providing fallback to mime type and extension * refactor(*): removed changes unrelated to pr * fix(workflow-core): fixed error on trying to transform optional response and added a clearer error * fix(*): re-introduced file type into the system - missing type broke the backoffice * revert(common): removed unintended mime types from schema * revert(workflows-service): removed unintended file type from filter * refactor(*): made changes to address pr comments * refactor(workflows-service): added missing pr comment change * fix(workflows-service): fixed failing ci actions * refactor(workflows-service): updated getMimeType * fix(workflows-service): fixed file system upload flow failing to get mime type and extension also removed null from mime type / file extension helpers * feat(*): added logs as requested from pr comments * chore(*): ran version-packages * fix(*): fixed pnpm lockfile
- Loading branch information
Showing
40 changed files
with
396 additions
and
79 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
"private": false, | ||
"name": "@ballerine/common", | ||
"author": "Ballerine <[email protected]>", | ||
"version": "0.7.27", | ||
"version": "0.7.28", | ||
"description": "common", | ||
"module": "./dist/esm/index.js", | ||
"main": "./dist/cjs/index.js", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "@ballerine/workflow-core", | ||
"author": "Ballerine <[email protected]>", | ||
"version": "0.5.26", | ||
"version": "0.5.27", | ||
"description": "workflow-core", | ||
"module": "./dist/esm/index.js", | ||
"main": "./dist/cjs/index.js", | ||
|
@@ -31,7 +31,7 @@ | |
"node": ">=12" | ||
}, | ||
"dependencies": { | ||
"@ballerine/common": "0.7.27", | ||
"@ballerine/common": "0.7.28", | ||
"ajv": "^8.12.0", | ||
"i18n-iso-countries": "^7.6.0", | ||
"jmespath": "^0.16.0", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.