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.
package/dist/index.umd.js CHANGED
@@ -129,9 +129,9 @@
129
129
  var token = securityCtx ? securityCtx.token() : null;
130
130
  return fetchAsync('PATCH', domain + URL, body, token, headers);
131
131
  },
132
- DELETE: function DELETE(URL, headers) {
132
+ DELETE: function DELETE(URL, body, headers) {
133
133
  var token = securityCtx ? securityCtx.token() : null;
134
- return fetchAsync('DELETE', domain + URL, undefined, token, headers);
134
+ return fetchAsync('DELETE', domain + URL, body, token, headers);
135
135
  }
136
136
  };
137
137
  };