@colyseus/sdk 0.17.34 → 0.17.36

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 (62) hide show
  1. package/LICENSE +1 -2
  2. package/build/3rd_party/discord.cjs +1 -1
  3. package/build/3rd_party/discord.mjs +1 -1
  4. package/build/Auth.cjs +1 -1
  5. package/build/Auth.mjs +1 -1
  6. package/build/Client.cjs +1 -1
  7. package/build/Client.mjs +1 -1
  8. package/build/Connection.cjs +1 -1
  9. package/build/Connection.mjs +1 -1
  10. package/build/HTTP.cjs +1 -1
  11. package/build/HTTP.mjs +1 -1
  12. package/build/Room.cjs +8 -3
  13. package/build/Room.cjs.map +1 -1
  14. package/build/Room.d.ts +6 -0
  15. package/build/Room.mjs +8 -3
  16. package/build/Room.mjs.map +1 -1
  17. package/build/Storage.cjs +1 -1
  18. package/build/Storage.mjs +1 -1
  19. package/build/core/nanoevents.cjs +1 -1
  20. package/build/core/nanoevents.mjs +1 -1
  21. package/build/core/signal.cjs +1 -1
  22. package/build/core/signal.mjs +1 -1
  23. package/build/core/utils.cjs +1 -1
  24. package/build/core/utils.mjs +1 -1
  25. package/build/debug.cjs +12 -11
  26. package/build/debug.cjs.map +1 -1
  27. package/build/debug.mjs +12 -11
  28. package/build/debug.mjs.map +1 -1
  29. package/build/errors/Errors.cjs +1 -1
  30. package/build/errors/Errors.mjs +1 -1
  31. package/build/index.cjs +1 -1
  32. package/build/index.mjs +1 -1
  33. package/build/legacy.cjs +1 -1
  34. package/build/legacy.mjs +1 -1
  35. package/build/serializer/NoneSerializer.cjs +1 -1
  36. package/build/serializer/NoneSerializer.mjs +1 -1
  37. package/build/serializer/SchemaSerializer.cjs +1 -1
  38. package/build/serializer/SchemaSerializer.mjs +1 -1
  39. package/build/serializer/Serializer.cjs +1 -1
  40. package/build/serializer/Serializer.mjs +1 -1
  41. package/build/transport/H3Transport.cjs +1 -1
  42. package/build/transport/H3Transport.mjs +1 -1
  43. package/build/transport/WebSocketTransport.cjs +1 -1
  44. package/build/transport/WebSocketTransport.mjs +1 -1
  45. package/dist/colyseus-cocos-creator.js +8 -3
  46. package/dist/colyseus-cocos-creator.js.map +1 -1
  47. package/dist/colyseus.js +8 -3
  48. package/dist/colyseus.js.map +1 -1
  49. package/dist/debug.js +12 -11
  50. package/dist/debug.js.map +1 -1
  51. package/package.json +2 -2
  52. package/src/Room.ts +15 -2
  53. package/src/debug.ts +11 -10
  54. package/README.md +0 -27
  55. package/build/HTTP.bkp.d.ts +0 -103
  56. package/build/HTTP_bkp.d.ts +0 -18
  57. package/build/Protocol.cjs +0 -34
  58. package/build/Protocol.cjs.map +0 -1
  59. package/build/Protocol.d.ts +0 -21
  60. package/build/Protocol.mjs +0 -34
  61. package/build/Protocol.mjs.map +0 -1
  62. package/dist/colyseus.d.ts +0 -4148
@@ -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.34
6
+ // colyseus.js@0.17.36
7
7
  'use strict';
8
8
 
9
9
  class ServerError extends Error {
@@ -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.34
6
+ // colyseus.js@0.17.36
7
7
  class ServerError extends Error {
8
8
  code;
9
9
  headers;
package/build/index.cjs 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.34
6
+ // colyseus.js@0.17.36
7
7
  'use strict';
8
8
 
9
9
  require('./legacy.cjs');
package/build/index.mjs 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.34
6
+ // colyseus.js@0.17.36
7
7
  import './legacy.mjs';
8
8
  export { Client, ColyseusSDK } from './Client.mjs';
9
9
  export { Room } from './Room.mjs';
package/build/legacy.cjs 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.34
6
+ // colyseus.js@0.17.36
7
7
  'use strict';
8
8
 
9
9
  //
package/build/legacy.mjs 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.34
6
+ // colyseus.js@0.17.36
7
7
  //
8
8
  // Polyfills for legacy environments
9
9
  //
@@ -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.34
6
+ // colyseus.js@0.17.36
7
7
  'use strict';
8
8
 
9
9
  class NoneSerializer {
@@ -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.34
6
+ // colyseus.js@0.17.36
7
7
  class NoneSerializer {
8
8
  setState(rawState) { }
9
9
  getState() { return null; }
@@ -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.34
6
+ // colyseus.js@0.17.36
7
7
  'use strict';
8
8
 
9
9
  var schema = require('@colyseus/schema');
@@ -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.34
6
+ // colyseus.js@0.17.36
7
7
  import { getDecoderStateCallbacks, Reflection, Decoder } from '@colyseus/schema';
8
8
 
9
9
  //
@@ -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.34
6
+ // colyseus.js@0.17.36
7
7
  'use strict';
8
8
 
9
9
  const serializers = {};
@@ -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.34
6
+ // colyseus.js@0.17.36
7
7
  const serializers = {};
8
8
  function registerSerializer(id, serializer) {
9
9
  serializers[id] = serializer;
@@ -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.34
6
+ // colyseus.js@0.17.36
7
7
  'use strict';
8
8
 
9
9
  var tslib = require('tslib');
@@ -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.34
6
+ // colyseus.js@0.17.36
7
7
  import { encode, decode } from '@colyseus/schema';
8
8
 
9
9
  class H3TransportTransport {
@@ -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.34
6
+ // colyseus.js@0.17.36
7
7
  'use strict';
8
8
 
9
9
  var NodeWebSocket = require('ws');
@@ -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.34
6
+ // colyseus.js@0.17.36
7
7
  import NodeWebSocket from 'ws';
8
8
  import { CloseCode } from '@colyseus/shared-types';
9
9
 
@@ -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.34 - @colyseus/schema 4.0.13
6
+ // colyseus.js@0.17.36 - @colyseus/schema 4.0.13
7
7
  // THIS VERSION USES "XMLHttpRequest" INSTEAD OF "fetch" FOR COMPATIBILITY WITH COCOS CREATOR
8
8
  (function (global, factory) {
9
9
  typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
@@ -8604,6 +8604,7 @@
8604
8604
  this.onJoin = createSignal();
8605
8605
  // reconnection logic
8606
8606
  this.reconnection = {
8607
+ enabled: true,
8607
8608
  retryCount: 0,
8608
8609
  maxRetries: 15,
8609
8610
  delay: 100,
@@ -8651,7 +8652,7 @@
8651
8652
  e.code === CloseCode.GOING_AWAY ||
8652
8653
  e.code === CloseCode.MAY_TRY_RECONNECT) {
8653
8654
  this.onDrop.invoke(e.code, e.reason);
8654
- this.handleReconnection();
8655
+ this.handleReconnection(e.code, e.reason);
8655
8656
  }
8656
8657
  else {
8657
8658
  this.onLeave.invoke(e.code, e.reason);
@@ -8890,7 +8891,11 @@
8890
8891
  default: throw new Error("invalid message type.");
8891
8892
  }
8892
8893
  }
8893
- handleReconnection() {
8894
+ handleReconnection(code, reason) {
8895
+ if (!this.reconnection.enabled) {
8896
+ this.onLeave.invoke(code, reason);
8897
+ return;
8898
+ }
8894
8899
  if (Date.now() - this.joinedAtTime < this.reconnection.minUptime) {
8895
8900
  console.info(`[Colyseus reconnection]: ${String.fromCodePoint(0x274C)} Room has not been up for long enough for automatic reconnection. (min uptime: ${this.reconnection.minUptime}ms)`); // ❌
8896
8901
  this.onLeave.invoke(CloseCode.ABNORMAL_CLOSURE, "Room uptime too short for reconnection.");