rest-client-sdk
Advanced tools
Comparing version 2.0.0-rc.8 to 2.0.0-rc.9
@@ -5,2 +5,5 @@ # Changelog | ||
## 2.0.0-rc.9 | ||
creating or updating an "complex" entity (not a basic JS object) would throw an error | ||
## 2.0.0-rc.8 | ||
@@ -7,0 +10,0 @@ remove `async` method (that already returned a Promise object) |
{ | ||
"name": "rest-client-sdk", | ||
"version": "2.0.0-rc.8", | ||
"version": "2.0.0-rc.9", | ||
"description": "Rest Client SDK for API", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
@@ -70,3 +70,3 @@ import URI from 'urijs'; | ||
method: 'POST', | ||
body: this.serializer.serializeItem(diff, this.metadata), | ||
body: this.serializer.encodeItem(diff, this.metadata), | ||
}), | ||
@@ -100,3 +100,3 @@ 'item' | ||
method: 'PUT', | ||
body: this.serializer.serializeItem(newSerializedModel, this.metadata), | ||
body: this.serializer.encodeItem(newSerializedModel, this.metadata), | ||
}), | ||
@@ -103,0 +103,0 @@ 'item' |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
1852867