Skip to content

Commit

Permalink
Merge pull request #196 from d-velop/hotfix/category-id-not-sent-on-u…
Browse files Browse the repository at this point in the history
…pdate

Hotfix: CategoryId not sent on update
  • Loading branch information
LenKlose authored Apr 18, 2024
2 parents 4c8b6b1 + 5a556f3 commit 528258b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/dms/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@dvelop-sdk/dms",
"description": "This package contains functionality for the DMS-App in the d.velop cloud.",
"version": "1.5.4",
"version": "1.5.5",
"license": "Apache-2.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ describe("updateDmsObject", () => {
data: {
"sourceId": params.sourceId,
"alterationText": params.alterationText,
"sourceCategory": params.categoryId,
"sourceProperties": {
"properties": params.properties
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ export function _updateDmsObjectFactory<T>(
data: {
"sourceId": params.sourceId,
"alterationText": params.alterationText,
"sourceCategory": params.categoryId,
"sourceProperties": {
"properties": params.properties
},
Expand Down

0 comments on commit 528258b

Please sign in to comment.