ywana-core8 0.0.863 → 0.0.864

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -127,9 +127,9 @@ var HTTPClient = function HTTPClient(domain, securityCtx) {
127
127
  var token = securityCtx ? securityCtx.token() : null;
128
128
  return fetchAsync('PATCH', domain + URL, body, token, headers);
129
129
  },
130
- DELETE: function DELETE(URL, headers) {
130
+ DELETE: function DELETE(URL, body, headers) {
131
131
  var token = securityCtx ? securityCtx.token() : null;
132
- return fetchAsync('DELETE', domain + URL, undefined, token, headers);
132
+ return fetchAsync('DELETE', domain + URL, body, token, headers);
133
133
  }
134
134
  };
135
135
  };