@feathersjs/authentication-client 5.0.0-pre.11 → 5.0.0-pre.17

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,57 @@
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.17](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.16...v5.0.0-pre.17) (2022-02-15)
7
+
8
+ **Note:** Version bump only for package @feathersjs/authentication-client
9
+
10
+
11
+
12
+
13
+
14
+ # [5.0.0-pre.16](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.15...v5.0.0-pre.16) (2022-01-12)
15
+
16
+ **Note:** Version bump only for package @feathersjs/authentication-client
17
+
18
+
19
+
20
+
21
+
22
+ # [5.0.0-pre.15](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.14...v5.0.0-pre.15) (2021-11-27)
23
+
24
+
25
+ ### Bug Fixes
26
+
27
+ * **typescript:** Overall typing improvements ([#2478](https://github.com/feathersjs/feathers/issues/2478)) ([b8eb804](https://github.com/feathersjs/feathers/commit/b8eb804158556d9651a8607e3c3fda15e0bfd110))
28
+
29
+
30
+
31
+
32
+
33
+ # [5.0.0-pre.14](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.13...v5.0.0-pre.14) (2021-10-13)
34
+
35
+ **Note:** Version bump only for package @feathersjs/authentication-client
36
+
37
+
38
+
39
+
40
+
41
+ # [5.0.0-pre.13](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.12...v5.0.0-pre.13) (2021-10-13)
42
+
43
+ **Note:** Version bump only for package @feathersjs/authentication-client
44
+
45
+
46
+
47
+
48
+
49
+ # [5.0.0-pre.12](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.11...v5.0.0-pre.12) (2021-10-12)
50
+
51
+ **Note:** Version bump only for package @feathersjs/authentication-client
52
+
53
+
54
+
55
+
56
+
6
57
  # [5.0.0-pre.11](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.10...v5.0.0-pre.11) (2021-10-06)
7
58
 
8
59
  **Note:** Version bump only for package @feathersjs/authentication-client
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2021 Feathers
3
+ Copyright (c) 2022 Feathers
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -1,7 +1,6 @@
1
1
  # @feathersjs/authentication-client
2
2
 
3
3
  [![CI](https://github.com/feathersjs/feathers/workflows/CI/badge.svg)](https://github.com/feathersjs/feathers/actions?query=workflow%3ACI)
4
- [![Dependency Status](https://img.shields.io/david/feathersjs/feathers.svg?style=flat-square&path=packages/authentication-client)](https://david-dm.org/feathersjs/feathers?path=packages/authentication-client)
5
4
  [![Download Status](https://img.shields.io/npm/dm/@feathersjs/authentication-client.svg?style=flat-square)](https://www.npmjs.com/package/@feathersjs/authentication-client)
6
5
 
7
6
  > Feathers authentication client
@@ -18,6 +17,6 @@ Refer to the [Feathers authentication client API documentation](https://docs.fea
18
17
 
19
18
  ## License
20
19
 
21
- Copyright (c) 2021 [Feathers contributors](https://github.com/feathersjs/feathers/graphs/contributors)
20
+ Copyright (c) 2022 [Feathers contributors](https://github.com/feathersjs/feathers/graphs/contributors)
22
21
 
23
22
  Licensed under the [MIT license](LICENSE).
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.11",
4
+ "version": "5.0.0-pre.17",
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.11",
56
- "@feathersjs/commons": "^5.0.0-pre.11",
57
- "@feathersjs/errors": "^5.0.0-pre.11",
58
- "@feathersjs/feathers": "^5.0.0-pre.11"
55
+ "@feathersjs/authentication": "^5.0.0-pre.17",
56
+ "@feathersjs/commons": "^5.0.0-pre.17",
57
+ "@feathersjs/errors": "^5.0.0-pre.17",
58
+ "@feathersjs/feathers": "^5.0.0-pre.17"
59
59
  },
60
60
  "devDependencies": {
61
- "@feathersjs/authentication-local": "^5.0.0-pre.11",
62
- "@feathersjs/express": "^5.0.0-pre.11",
63
- "@feathersjs/memory": "^5.0.0-pre.11",
64
- "@feathersjs/rest-client": "^5.0.0-pre.11",
65
- "@feathersjs/socketio": "^5.0.0-pre.11",
66
- "@feathersjs/socketio-client": "^5.0.0-pre.11",
67
- "@types/mocha": "^9.0.0",
68
- "@types/node": "^16.10.2",
69
- "axios": "^0.21.4",
70
- "mocha": "^9.1.2",
71
- "shx": "^0.3.3",
72
- "ts-node": "^10.2.1",
73
- "typescript": "^4.4.3"
61
+ "@feathersjs/authentication-local": "^5.0.0-pre.17",
62
+ "@feathersjs/express": "^5.0.0-pre.17",
63
+ "@feathersjs/memory": "^5.0.0-pre.17",
64
+ "@feathersjs/rest-client": "^5.0.0-pre.17",
65
+ "@feathersjs/socketio": "^5.0.0-pre.17",
66
+ "@feathersjs/socketio-client": "^5.0.0-pre.17",
67
+ "@types/mocha": "^9.1.0",
68
+ "@types/node": "^17.0.15",
69
+ "axios": "^0.25.0",
70
+ "mocha": "^9.2.0",
71
+ "shx": "^0.3.4",
72
+ "ts-node": "^10.4.0",
73
+ "typescript": "^4.5.5"
74
74
  },
75
- "gitHead": "a9f7865cce8db2305b7c0d2ef4a165c2724034ef"
75
+ "gitHead": "d828748e57b40abfaa15710663afed417de14a1d"
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;