@feathersjs/client 5.0.0-pre.31 → 5.0.0-pre.32

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/CHANGELOG.md CHANGED
@@ -3,6 +3,10 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [5.0.0-pre.32](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.31...v5.0.0-pre.32) (2022-10-26)
7
+
8
+ **Note:** Version bump only for package @feathersjs/client
9
+
6
10
  # [5.0.0-pre.31](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.30...v5.0.0-pre.31) (2022-10-12)
7
11
 
8
12
  **Note:** Version bump only for package @feathersjs/client
package/dist/feathers.js CHANGED
@@ -748,7 +748,7 @@ var FeathersError = /*#__PURE__*/function (_Error) {
748
748
  if (Array.isArray(_data)) {
749
749
  properties.data = _data;
750
750
  } else if (_typeof(err) === 'object' || _data !== undefined) {
751
- var _ref = _typeof(err) === 'object' ? err : _data,
751
+ var _ref = err !== null && _typeof(err) === 'object' ? err : _data,
752
752
  message = _ref.message,
753
753
  errors = _ref.errors,
754
754
  rest = _objectWithoutProperties(_ref, _excluded);