@feathersjs/authentication-client 5.0.0-pre.31 → 5.0.0-pre.32

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,12 @@
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.32](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.31...v5.0.0-pre.32) (2022-10-26)
7
+
8
+ ### Features
9
+
10
+ - **cli:** Add authentication client to generated client ([#2801](https://github.com/feathersjs/feathers/issues/2801)) ([bd59f91](https://github.com/feathersjs/feathers/commit/bd59f91b45a01c2eea0c4386e567f4de5aa6ad99))
11
+
6
12
  # [5.0.0-pre.31](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.30...v5.0.0-pre.31) (2022-10-12)
7
13
 
8
14
  **Note:** Version bump only for package @feathersjs/authentication-client
package/lib/index.d.ts CHANGED
@@ -4,7 +4,7 @@ import { Application } from '@feathersjs/feathers';
4
4
  import { Storage, MemoryStorage, StorageWrapper } from './storage';
5
5
  declare module '@feathersjs/feathers/lib/declarations' {
6
6
  interface Application<Services, Settings> {
7
- io?: any;
7
+ io: any;
8
8
  rest?: any;
9
9
  authentication: AuthenticationClient;
10
10
  authenticate: AuthenticationClient['authenticate'];
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.31",
4
+ "version": "5.0.0-pre.32",
5
5
  "homepage": "https://feathersjs.com",
6
6
  "main": "lib/",
7
7
  "types": "lib/",
@@ -53,18 +53,18 @@
53
53
  "access": "public"
54
54
  },
55
55
  "dependencies": {
56
- "@feathersjs/authentication": "^5.0.0-pre.31",
57
- "@feathersjs/commons": "^5.0.0-pre.31",
58
- "@feathersjs/errors": "^5.0.0-pre.31",
59
- "@feathersjs/feathers": "^5.0.0-pre.31"
56
+ "@feathersjs/authentication": "^5.0.0-pre.32",
57
+ "@feathersjs/commons": "^5.0.0-pre.32",
58
+ "@feathersjs/errors": "^5.0.0-pre.32",
59
+ "@feathersjs/feathers": "^5.0.0-pre.32"
60
60
  },
61
61
  "devDependencies": {
62
- "@feathersjs/authentication-local": "^5.0.0-pre.31",
63
- "@feathersjs/express": "^5.0.0-pre.31",
64
- "@feathersjs/memory": "^5.0.0-pre.31",
65
- "@feathersjs/rest-client": "^5.0.0-pre.31",
66
- "@feathersjs/socketio": "^5.0.0-pre.31",
67
- "@feathersjs/socketio-client": "^5.0.0-pre.31",
62
+ "@feathersjs/authentication-local": "^5.0.0-pre.32",
63
+ "@feathersjs/express": "^5.0.0-pre.32",
64
+ "@feathersjs/memory": "^5.0.0-pre.32",
65
+ "@feathersjs/rest-client": "^5.0.0-pre.32",
66
+ "@feathersjs/socketio": "^5.0.0-pre.32",
67
+ "@feathersjs/socketio-client": "^5.0.0-pre.32",
68
68
  "@types/mocha": "^10.0.0",
69
69
  "@types/node": "^18.8.2",
70
70
  "axios": "^0.27.2",
@@ -73,5 +73,5 @@
73
73
  "ts-node": "^10.9.1",
74
74
  "typescript": "^4.8.4"
75
75
  },
76
- "gitHead": "4500dbeb8cea566678cf88b3313a88efd93a2ed9"
76
+ "gitHead": "b405e205fc6d9fbd42b42c7a3f30ea4bf33d121d"
77
77
  }
package/src/index.ts CHANGED
@@ -7,7 +7,7 @@ declare module '@feathersjs/feathers/lib/declarations' {
7
7
  // eslint-disable-next-line @typescript-eslint/no-unused-vars
8
8
  interface Application<Services, Settings> {
9
9
  // eslint-disable-line
10
- io?: any
10
+ io: any
11
11
  rest?: any
12
12
  authentication: AuthenticationClient
13
13
  authenticate: AuthenticationClient['authenticate']