@eleven-am/pondsocket 0.1.127 → 0.1.129

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 (2) hide show
  1. package/package.json +4 -4
  2. package/types.d.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eleven-am/pondsocket",
3
- "version": "0.1.127",
3
+ "version": "0.1.129",
4
4
  "description": "PondSocket is a fast simple socket server",
5
5
  "keywords": [
6
6
  "socket",
@@ -34,16 +34,16 @@
34
34
  "url": "git+https://github.com/Eleven-am/pondSocket.git"
35
35
  },
36
36
  "dependencies": {
37
- "@eleven-am/pondsocket-common": "^0.0.5",
37
+ "@eleven-am/pondsocket-common": "^0.0.7",
38
38
  "ws": "^8.16.0",
39
39
  "zod": "^3.22.4"
40
40
  },
41
41
  "devDependencies": {
42
42
  "@types/jest": "^29.5.11",
43
- "@types/node": "^20.10.6",
43
+ "@types/node": "^20.11.4",
44
44
  "@types/websocket": "^1.0.10",
45
45
  "@types/ws": "^8.5.10",
46
- "@typescript-eslint/eslint-plugin": "^6.16.0",
46
+ "@typescript-eslint/eslint-plugin": "^6.19.0",
47
47
  "eslint": "^8.56.0",
48
48
  "eslint-plugin-file-progress": "^1.3.0",
49
49
  "eslint-plugin-import": "^2.29.1",
package/types.d.ts CHANGED
@@ -419,7 +419,7 @@ export declare class PondChannel <EventType extends PondEvenType = PondEvenType>
419
419
  * @desc Gets a channel by name
420
420
  * @param channelName - The name of the channel to get
421
421
  */
422
- public getChannel <EventType extends PondEvenType = PondEvenType> (channelName: string): Channel<EventType> | null;
422
+ public getChannel (channelName: string): Channel<EventType> | null;
423
423
  }
424
424
 
425
425
  declare class PondSocket {