entropic-bond 1.53.3 → 1.53.4

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.
@@ -8,5 +8,6 @@ export declare class ServerAuthMock extends ServerAuthService {
8
8
  updateUser<T extends CustomCredentials>(userId: string, credentials: Partial<UserCredentials<T>>): Promise<UserCredentials<T>>;
9
9
  deleteUser(userId: string): Promise<void>;
10
10
  get userCredentials(): Collection<UserCredentials<{}>>;
11
+ notifyUserChanges(): void;
11
12
  private _userCredentials;
12
13
  }
@@ -7,6 +7,7 @@ export declare abstract class ServerAuthService {
7
7
  abstract getUser<T extends CustomCredentials>(userId: string): Promise<UserCredentials<T> | undefined>;
8
8
  abstract updateUser<T extends CustomCredentials>(userId: string, credentials: Partial<UserCredentials<T>>): Promise<UserCredentials<T>>;
9
9
  abstract deleteUser(userId: string): Promise<void>;
10
+ abstract notifyUserChanges(): void;
10
11
  }
11
12
  export declare class ServerAuth extends ServerAuthService {
12
13
  static error: {
@@ -19,6 +20,7 @@ export declare class ServerAuth extends ServerAuthService {
19
20
  updateUser<T extends CustomCredentials>(userId: string, credentials: Partial<UserCredentials<T>>): Promise<UserCredentials<T>>;
20
21
  setCustomCredentials<T extends CustomCredentials>(userId: string, customCredentials: T): Promise<void>;
21
22
  deleteUser(userId: string): Promise<void>;
23
+ notifyUserChanges(): void;
22
24
  private static _instance;
23
25
  private static _authService;
24
26
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "entropic-bond",
3
3
  "type": "module",
4
- "version": "1.53.3",
4
+ "version": "1.53.4",
5
5
  "description": "Tidy up your messy components",
6
6
  "main": "./lib/entropic-bond.umd.cjs",
7
7
  "module": "./lib/entropic-bond.js",