@feathersjs/authentication-client 4.5.14 → 4.5.16

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,22 @@
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
+ ## [4.5.16](https://github.com/feathersjs/feathers/compare/v4.5.15...v4.5.16) (2023-02-24)
7
+
8
+ **Note:** Version bump only for package @feathersjs/authentication-client
9
+
10
+
11
+
12
+
13
+
14
+ ## [4.5.15](https://github.com/feathersjs/feathers/compare/v4.5.14...v4.5.15) (2022-05-17)
15
+
16
+ **Note:** Version bump only for package @feathersjs/authentication-client
17
+
18
+
19
+
20
+
21
+
6
22
  ## [4.5.14](https://github.com/feathersjs/feathers/compare/v4.5.13...v4.5.14) (2022-04-13)
7
23
 
8
24
  **Note:** Version bump only for package @feathersjs/authentication-client
package/lib/core.d.ts CHANGED
@@ -2,7 +2,7 @@ import { FeathersError } from '@feathersjs/errors';
2
2
  import { Application, Params } from '@feathersjs/feathers';
3
3
  import { AuthenticationRequest, AuthenticationResult } from '@feathersjs/authentication';
4
4
  import { Storage } from './storage';
5
- export declare type ClientConstructor = new (app: Application, options: AuthenticationClientOptions) => AuthenticationClient;
5
+ export type ClientConstructor = new (app: Application, options: AuthenticationClientOptions) => AuthenticationClient;
6
6
  export interface AuthenticationClientOptions {
7
7
  storage: Storage;
8
8
  header: string;
package/lib/index.d.ts CHANGED
@@ -15,7 +15,7 @@ declare module '@feathersjs/feathers' {
15
15
  }
16
16
  export declare const getDefaultStorage: () => MemoryStorage | StorageWrapper;
17
17
  export { AuthenticationClient, AuthenticationClientOptions, Storage, MemoryStorage, hooks };
18
- export declare type ClientConstructor = new (app: Application, options: AuthenticationClientOptions) => AuthenticationClient;
18
+ export type ClientConstructor = new (app: Application, options: AuthenticationClientOptions) => AuthenticationClient;
19
19
  export declare const defaultStorage: Storage;
20
20
  export declare const defaults: AuthenticationClientOptions;
21
21
  declare const init: (_options?: Partial<AuthenticationClientOptions>) => (app: Application) => void;
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": "4.5.14",
4
+ "version": "4.5.16",
5
5
  "homepage": "https://feathersjs.com",
6
6
  "main": "lib/",
7
7
  "types": "lib/",
@@ -52,20 +52,20 @@
52
52
  "access": "public"
53
53
  },
54
54
  "dependencies": {
55
- "@feathersjs/authentication": "^4.5.14",
56
- "@feathersjs/commons": "^4.5.12",
57
- "@feathersjs/errors": "^4.5.12",
58
- "@feathersjs/feathers": "^4.5.12",
55
+ "@feathersjs/authentication": "^4.5.16",
56
+ "@feathersjs/commons": "^4.5.16",
57
+ "@feathersjs/errors": "^4.5.16",
58
+ "@feathersjs/feathers": "^4.5.16",
59
59
  "debug": "^4.3.3"
60
60
  },
61
61
  "devDependencies": {
62
- "@feathersjs/authentication-local": "^4.5.14",
63
- "@feathersjs/express": "^4.5.14",
64
- "@feathersjs/primus": "^4.5.14",
65
- "@feathersjs/primus-client": "^4.5.14",
66
- "@feathersjs/rest-client": "^4.5.14",
67
- "@feathersjs/socketio": "^4.5.14",
68
- "@feathersjs/socketio-client": "^4.5.14",
62
+ "@feathersjs/authentication-local": "^4.5.16",
63
+ "@feathersjs/express": "^4.5.16",
64
+ "@feathersjs/primus": "^4.5.16",
65
+ "@feathersjs/primus-client": "^4.5.16",
66
+ "@feathersjs/rest-client": "^4.5.16",
67
+ "@feathersjs/socketio": "^4.5.16",
68
+ "@feathersjs/socketio-client": "^4.5.16",
69
69
  "@types/debug": "^4.1.7",
70
70
  "@types/mocha": "^9.0.0",
71
71
  "@types/node": "^17.0.8",
@@ -75,5 +75,5 @@
75
75
  "ts-node": "^10.4.0",
76
76
  "typescript": "^4.5.4"
77
77
  },
78
- "gitHead": "25b6fb546768e4396333368d57a26b24f5489010"
78
+ "gitHead": "18872c070d9db0258f06cc66f08c0c6a9311b0b2"
79
79
  }