@feathersjs/socketio 5.0.0-pre.14 → 5.0.0-pre.15

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,17 @@
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.15](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.14...v5.0.0-pre.15) (2021-11-27)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **typescript:** Overall typing improvements ([#2478](https://github.com/feathersjs/feathers/issues/2478)) ([b8eb804](https://github.com/feathersjs/feathers/commit/b8eb804158556d9651a8607e3c3fda15e0bfd110))
12
+
13
+
14
+
15
+
16
+
6
17
  # [5.0.0-pre.14](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.13...v5.0.0-pre.14) (2021-10-13)
7
18
 
8
19
  **Note:** Version bump only for package @feathersjs/socketio
package/lib/index.d.ts CHANGED
@@ -3,7 +3,7 @@ import http from 'http';
3
3
  import { Server, ServerOptions } from 'socket.io';
4
4
  import { Application } from '@feathersjs/feathers';
5
5
  declare module '@feathersjs/feathers/lib/declarations' {
6
- interface Application<ServiceTypes, AppSettings> {
6
+ interface Application<Services, Settings> {
7
7
  io: Server;
8
8
  listen(options: any): Promise<http.Server>;
9
9
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@feathersjs/socketio",
3
3
  "description": "The Feathers Socket.io real-time API provider",
4
- "version": "5.0.0-pre.14",
4
+ "version": "5.0.0-pre.15",
5
5
  "homepage": "https://feathersjs.com",
6
6
  "main": "lib/",
7
7
  "keywords": [
@@ -50,23 +50,23 @@
50
50
  "access": "public"
51
51
  },
52
52
  "dependencies": {
53
- "@feathersjs/commons": "^5.0.0-pre.14",
54
- "@feathersjs/transport-commons": "^5.0.0-pre.14",
55
- "socket.io": "^4.2.0"
53
+ "@feathersjs/commons": "^5.0.0-pre.15",
54
+ "@feathersjs/feathers": "^5.0.0-pre.15",
55
+ "@feathersjs/transport-commons": "^5.0.0-pre.15",
56
+ "socket.io": "^4.3.1"
56
57
  },
57
58
  "devDependencies": {
58
59
  "@feathersjs/commons": "^5.0.0-pre.2",
59
- "@feathersjs/express": "^5.0.0-pre.14",
60
- "@feathersjs/feathers": "^5.0.0-pre.14",
61
- "@feathersjs/memory": "^5.0.0-pre.14",
62
- "@feathersjs/tests": "^5.0.0-pre.14",
60
+ "@feathersjs/express": "^5.0.0-pre.15",
61
+ "@feathersjs/memory": "^5.0.0-pre.15",
62
+ "@feathersjs/tests": "^5.0.0-pre.15",
63
63
  "@types/mocha": "^9.0.0",
64
- "@types/node": "^16.10.4",
64
+ "@types/node": "^16.11.6",
65
65
  "lodash": "^4.17.21",
66
- "mocha": "^9.1.2",
66
+ "mocha": "^9.1.3",
67
67
  "shx": "^0.3.3",
68
- "socket.io-client": "^4.2.0",
68
+ "socket.io-client": "^4.3.2",
69
69
  "typescript": "^4.4.4"
70
70
  },
71
- "gitHead": "9bb26276938aead1f3f582be5517a49a8ce00f09"
71
+ "gitHead": "8008bf4f8529a2a40b6a2f976c1f43ae13675693"
72
72
  }
package/src/index.ts CHANGED
@@ -9,7 +9,7 @@ import { disconnect, params, authentication, FeathersSocket } from './middleware
9
9
  const debug = createDebug('@feathersjs/socketio');
10
10
 
11
11
  declare module '@feathersjs/feathers/lib/declarations' {
12
- interface Application<ServiceTypes, AppSettings> { // eslint-disable-line
12
+ interface Application<Services, Settings> { // eslint-disable-line
13
13
  io: Server;
14
14
  listen (options: any): Promise<http.Server>;
15
15
  }