Skip to content

Commit

Permalink
Fixed optional parameter in restRequestBuilder.delete()
Browse files Browse the repository at this point in the history
  • Loading branch information
gius committed Dec 19, 2019
1 parent b8387aa commit 63ef008
Show file tree
Hide file tree
Showing 13 changed files with 39 additions and 39 deletions.
16 changes: 8 additions & 8 deletions demo/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@frui.ts/demo",
"private": true,
"version": "0.7.1",
"version": "0.7.2",
"description": "> TODO: description",
"author": "Augustin Šulc <[email protected]>",
"license": "ISC",
Expand All @@ -24,12 +24,12 @@
"proxy": "lcp --proxyUrl https://redmine.dev.eman.cz"
},
"dependencies": {
"@frui.ts/apiclient": "^0.7.1",
"@frui.ts/data": "^0.7.1",
"@frui.ts/datascreens": "^0.7.1",
"@frui.ts/dirtycheck": "^0.7.1",
"@frui.ts/screens": "^0.7.1",
"@frui.ts/validation": "^0.7.1",
"@frui.ts/views": "^0.7.1"
"@frui.ts/apiclient": "^0.7.2",
"@frui.ts/data": "^0.7.2",
"@frui.ts/datascreens": "^0.7.2",
"@frui.ts/dirtycheck": "^0.7.2",
"@frui.ts/screens": "^0.7.2",
"@frui.ts/validation": "^0.7.2",
"@frui.ts/views": "^0.7.2"
}
}
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.7.1",
"version": "0.7.2",
"packages": [
"demo",
"packages/*",
Expand Down
4 changes: 2 additions & 2 deletions packages/apiclient/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"publishConfig": {
"registry": "https://nexus.eman.cz/repository/eman-npm/"
},
"version": "0.7.1",
"version": "0.7.2",
"description": "Frui.ts helpers for http communication",
"author": "Augustin Šulc <[email protected]>",
"license": "ISC",
Expand All @@ -24,6 +24,6 @@
"build": "tsc"
},
"dependencies": {
"@frui.ts/helpers": "^0.7.1"
"@frui.ts/helpers": "^0.7.2"
}
}
2 changes: 1 addition & 1 deletion packages/apiclient/src/restRequestBuilder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export class RestRequestBuilder {
return this.apiConnector.patchJson(this.url, content, this.params);
}

delete(content: any) {
delete(content?: any) {
return content
? this.apiConnector.deleteJson(this.url, content, this.params)
: this.apiConnector.delete(this.url, this.params);
Expand Down
8 changes: 4 additions & 4 deletions packages/bootstrap/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"publishConfig": {
"registry": "https://nexus.eman.cz/repository/eman-npm/"
},
"version": "0.7.1",
"version": "0.7.2",
"description": "Bootstrap controls ready for Frui.ts integration",
"author": "Augustin Šulc <[email protected]>",
"license": "ISC",
Expand All @@ -24,9 +24,9 @@
"build": "tsc"
},
"dependencies": {
"@frui.ts/dirtycheck": "^0.7.1",
"@frui.ts/validation": "^0.7.1",
"@frui.ts/views": "^0.7.1",
"@frui.ts/dirtycheck": "^0.7.2",
"@frui.ts/validation": "^0.7.2",
"@frui.ts/views": "^0.7.2",
"bind-decorator": "^1.0.11",
"bootstrap": "^4.3.1",
"react-bootstrap": "^1.0.0-beta.12"
Expand Down
2 changes: 1 addition & 1 deletion packages/data/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"publishConfig": {
"registry": "https://nexus.eman.cz/repository/eman-npm/"
},
"version": "0.7.1",
"version": "0.7.2",
"description": "Helpers and interfaces for handling paged and sorted data sets",
"author": "Augustin Šulc <[email protected]>",
"license": "ISC",
Expand Down
12 changes: 6 additions & 6 deletions packages/datascreens/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"publishConfig": {
"registry": "https://nexus.eman.cz/repository/eman-npm/"
},
"version": "0.7.1",
"version": "0.7.2",
"description": "> TODO: description",
"author": "Augustin Šulc <[email protected]>",
"homepage": "",
Expand All @@ -25,10 +25,10 @@
"build": "tsc"
},
"dependencies": {
"@frui.ts/data": "^0.7.1",
"@frui.ts/dirtycheck": "^0.7.1",
"@frui.ts/helpers": "^0.7.1",
"@frui.ts/screens": "^0.7.1",
"@frui.ts/validation": "^0.7.1"
"@frui.ts/data": "^0.7.2",
"@frui.ts/dirtycheck": "^0.7.2",
"@frui.ts/helpers": "^0.7.2",
"@frui.ts/screens": "^0.7.2",
"@frui.ts/validation": "^0.7.2"
}
}
4 changes: 2 additions & 2 deletions packages/dirtycheck/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"publishConfig": {
"registry": "https://nexus.eman.cz/repository/eman-npm/"
},
"version": "0.7.1",
"version": "0.7.2",
"description": "Observable dirty checking",
"author": "Augustin Šulc <[email protected]>",
"license": "ISC",
Expand All @@ -24,6 +24,6 @@
"build": "tsc"
},
"dependencies": {
"@frui.ts/helpers": "^0.7.1"
"@frui.ts/helpers": "^0.7.2"
}
}
2 changes: 1 addition & 1 deletion packages/helpers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"publishConfig": {
"registry": "https://nexus.eman.cz/repository/eman-npm/"
},
"version": "0.7.1",
"version": "0.7.2",
"description": "Frui.ts helper functions",
"keywords": [
"frui.ts"
Expand Down
4 changes: 2 additions & 2 deletions packages/screens/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"publishConfig": {
"registry": "https://nexus.eman.cz/repository/eman-npm/"
},
"version": "0.7.1",
"version": "0.7.2",
"description": "Frui.ts screens",
"author": "Augustin Šulc <[email protected]>",
"license": "ISC",
Expand All @@ -24,7 +24,7 @@
"build": "tsc"
},
"dependencies": {
"@frui.ts/helpers": "^0.7.1",
"@frui.ts/helpers": "^0.7.2",
"query-string": "^6.9.0"
}
}
4 changes: 2 additions & 2 deletions packages/validation/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"publishConfig": {
"registry": "https://nexus.eman.cz/repository/eman-npm/"
},
"version": "0.7.1",
"version": "0.7.2",
"description": "Observable validation",
"keywords": [
"mobx",
Expand All @@ -28,6 +28,6 @@
"build": "tsc"
},
"dependencies": {
"@frui.ts/helpers": "^0.7.1"
"@frui.ts/helpers": "^0.7.2"
}
}
6 changes: 3 additions & 3 deletions packages/views/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"publishConfig": {
"registry": "https://nexus.eman.cz/repository/eman-npm/"
},
"version": "0.7.1",
"version": "0.7.2",
"description": "> TODO: description",
"author": "Augustin Šulc <[email protected]>",
"homepage": "",
Expand All @@ -25,7 +25,7 @@
"build": "tsc"
},
"dependencies": {
"@frui.ts/helpers": "^0.7.1",
"@frui.ts/screens": "^0.7.1"
"@frui.ts/helpers": "^0.7.2",
"@frui.ts/screens": "^0.7.2"
}
}
12 changes: 6 additions & 6 deletions stories/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@frui.ts/stories",
"private": true,
"version": "0.7.1",
"version": "0.7.2",
"description": "> TODO: description",
"author": "Augustin Šulc <[email protected]>",
"license": "ISC",
Expand All @@ -20,11 +20,11 @@
"prebuild": "rimraf dist"
},
"dependencies": {
"@frui.ts/bootstrap": "^0.7.1",
"@frui.ts/dirtycheck": "^0.7.1",
"@frui.ts/screens": "^0.7.1",
"@frui.ts/validation": "^0.7.1",
"@frui.ts/views": "^0.7.1",
"@frui.ts/bootstrap": "^0.7.2",
"@frui.ts/dirtycheck": "^0.7.2",
"@frui.ts/screens": "^0.7.2",
"@frui.ts/validation": "^0.7.2",
"@frui.ts/views": "^0.7.2",
"bootstrap": "^4.3.1",
"react-bootstrap": "^1.0.0-beta.12"
}
Expand Down

0 comments on commit 63ef008

Please sign in to comment.