@feathersjs/authentication-client 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/authentication-client
package/lib/index.d.ts CHANGED
@@ -3,7 +3,7 @@ import * as hooks from './hooks';
3
3
  import { Application } from '@feathersjs/feathers';
4
4
  import { Storage, MemoryStorage, StorageWrapper } from './storage';
5
5
  declare module '@feathersjs/feathers/lib/declarations' {
6
- interface Application<ServiceTypes, AppSettings> {
6
+ interface Application<Services, Settings> {
7
7
  io?: any;
8
8
  rest?: any;
9
9
  authentication: AuthenticationClient;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@feathersjs/authentication-client",
3
3
  "description": "The authentication plugin for feathers-client",
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
  "types": "lib/",
@@ -52,25 +52,25 @@
52
52
  "access": "public"
53
53
  },
54
54
  "dependencies": {
55
- "@feathersjs/authentication": "^5.0.0-pre.14",
56
- "@feathersjs/commons": "^5.0.0-pre.14",
57
- "@feathersjs/errors": "^5.0.0-pre.14",
58
- "@feathersjs/feathers": "^5.0.0-pre.14"
55
+ "@feathersjs/authentication": "^5.0.0-pre.15",
56
+ "@feathersjs/commons": "^5.0.0-pre.15",
57
+ "@feathersjs/errors": "^5.0.0-pre.15",
58
+ "@feathersjs/feathers": "^5.0.0-pre.15"
59
59
  },
60
60
  "devDependencies": {
61
- "@feathersjs/authentication-local": "^5.0.0-pre.14",
62
- "@feathersjs/express": "^5.0.0-pre.14",
63
- "@feathersjs/memory": "^5.0.0-pre.14",
64
- "@feathersjs/rest-client": "^5.0.0-pre.14",
65
- "@feathersjs/socketio": "^5.0.0-pre.14",
66
- "@feathersjs/socketio-client": "^5.0.0-pre.14",
61
+ "@feathersjs/authentication-local": "^5.0.0-pre.15",
62
+ "@feathersjs/express": "^5.0.0-pre.15",
63
+ "@feathersjs/memory": "^5.0.0-pre.15",
64
+ "@feathersjs/rest-client": "^5.0.0-pre.15",
65
+ "@feathersjs/socketio": "^5.0.0-pre.15",
66
+ "@feathersjs/socketio-client": "^5.0.0-pre.15",
67
67
  "@types/mocha": "^9.0.0",
68
- "@types/node": "^16.10.4",
69
- "axios": "^0.23.0",
70
- "mocha": "^9.1.2",
68
+ "@types/node": "^16.11.6",
69
+ "axios": "^0.24.0",
70
+ "mocha": "^9.1.3",
71
71
  "shx": "^0.3.3",
72
- "ts-node": "^10.3.0",
72
+ "ts-node": "^10.4.0",
73
73
  "typescript": "^4.4.4"
74
74
  },
75
- "gitHead": "9bb26276938aead1f3f582be5517a49a8ce00f09"
75
+ "gitHead": "8008bf4f8529a2a40b6a2f976c1f43ae13675693"
76
76
  }
package/src/index.ts CHANGED
@@ -4,7 +4,7 @@ import { Application } from '@feathersjs/feathers';
4
4
  import { Storage, MemoryStorage, StorageWrapper } from './storage';
5
5
 
6
6
  declare module '@feathersjs/feathers/lib/declarations' {
7
- interface Application<ServiceTypes, AppSettings> { // eslint-disable-line
7
+ interface Application<Services, Settings> { // eslint-disable-line
8
8
  io?: any;
9
9
  rest?: any;
10
10
  authentication: AuthenticationClient;