@colyseus/sdk 0.17.27 → 0.17.28

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.
Files changed (48) hide show
  1. package/build/3rd_party/discord.cjs +1 -1
  2. package/build/3rd_party/discord.mjs +1 -1
  3. package/build/Auth.cjs +1 -1
  4. package/build/Auth.mjs +1 -1
  5. package/build/Client.cjs +1 -1
  6. package/build/Client.mjs +1 -1
  7. package/build/Connection.cjs +1 -1
  8. package/build/Connection.mjs +1 -1
  9. package/build/HTTP.cjs +3 -3
  10. package/build/HTTP.cjs.map +1 -1
  11. package/build/HTTP.mjs +2 -2
  12. package/build/HTTP.mjs.map +1 -1
  13. package/build/Room.cjs +1 -1
  14. package/build/Room.mjs +1 -1
  15. package/build/Storage.cjs +1 -1
  16. package/build/Storage.mjs +1 -1
  17. package/build/core/nanoevents.cjs +1 -1
  18. package/build/core/nanoevents.mjs +1 -1
  19. package/build/core/signal.cjs +1 -1
  20. package/build/core/signal.mjs +1 -1
  21. package/build/core/utils.cjs +1 -1
  22. package/build/core/utils.mjs +1 -1
  23. package/build/debug.cjs +1 -1
  24. package/build/debug.mjs +1 -1
  25. package/build/errors/Errors.cjs +1 -1
  26. package/build/errors/Errors.mjs +1 -1
  27. package/build/index.cjs +1 -1
  28. package/build/index.mjs +1 -1
  29. package/build/legacy.cjs +1 -1
  30. package/build/legacy.mjs +1 -1
  31. package/build/serializer/NoneSerializer.cjs +1 -1
  32. package/build/serializer/NoneSerializer.mjs +1 -1
  33. package/build/serializer/SchemaSerializer.cjs +1 -1
  34. package/build/serializer/SchemaSerializer.mjs +1 -1
  35. package/build/serializer/Serializer.cjs +1 -1
  36. package/build/serializer/Serializer.mjs +1 -1
  37. package/build/transport/H3Transport.cjs +1 -1
  38. package/build/transport/H3Transport.mjs +1 -1
  39. package/build/transport/WebSocketTransport.cjs +1 -1
  40. package/build/transport/WebSocketTransport.mjs +1 -1
  41. package/dist/colyseus-cocos-creator.js +3 -3
  42. package/dist/colyseus-cocos-creator.js.map +1 -1
  43. package/dist/colyseus.js +3 -3
  44. package/dist/colyseus.js.map +1 -1
  45. package/dist/debug.js +3 -3
  46. package/dist/debug.js.map +1 -1
  47. package/package.json +3 -3
  48. package/src/HTTP.ts +2 -2
package/dist/colyseus.js CHANGED
@@ -3,7 +3,7 @@
3
3
  // This software is released under the MIT License.
4
4
  // https://opensource.org/license/MIT
5
5
  //
6
- // colyseus.js@0.17.27 - @colyseus/schema 4.0.8
6
+ // colyseus.js@0.17.28 - @colyseus/schema 4.0.8
7
7
  (function (global, factory) {
8
8
  typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
9
9
  typeof define === 'function' && define.amd ? define('@colyseus/sdk', ['exports'], factory) :
@@ -9009,7 +9009,7 @@
9009
9009
  }
9010
9010
  executeRequest(method, path, requestOptions) {
9011
9011
  return __awaiter(this, void 0, void 0, function* () {
9012
- var _a, _b, _c;
9012
+ var _a, _b, _c, _d;
9013
9013
  //
9014
9014
  // FIXME: if FormData is provided, merging "baseOptions.body" with
9015
9015
  // "options.body" will not work as intended
@@ -9072,7 +9072,7 @@
9072
9072
  data = yield raw.blob();
9073
9073
  }
9074
9074
  if (!raw.ok) {
9075
- throw new ServerError((_b = data.code) !== null && _b !== void 0 ? _b : raw.status, (_c = data.message) !== null && _c !== void 0 ? _c : raw.statusText, {
9075
+ throw new ServerError((_b = data.code) !== null && _b !== void 0 ? _b : raw.status, (_d = (_c = data.error) !== null && _c !== void 0 ? _c : data.message) !== null && _d !== void 0 ? _d : raw.statusText, {
9076
9076
  headers: raw.headers,
9077
9077
  status: raw.status,
9078
9078
  response: raw,