@rangs/auth0-lib 0.0.13 → 0.0.14

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.
@@ -240,5 +240,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.14", ngImpo
240
240
  * Generated bundle index. Do not edit.
241
241
  */
242
242
 
243
- export { AuthModule, RoleContextService, TokenService };
243
+ export { AuthModule, CredentialingService, RoleContextService, TokenService };
244
244
  //# sourceMappingURL=rangs-auth0-lib.mjs.map
package/index.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  import * as i0 from '@angular/core';
2
+ import { Signal } from '@angular/core';
2
3
  import * as i1 from '@auth0/auth0-angular';
3
4
  import { AuthService } from '@auth0/auth0-angular';
4
5
  import * as rxjs from 'rxjs';
@@ -88,5 +89,19 @@ declare class TokenService {
88
89
  static ɵprov: i0.ɵɵInjectableDeclaration<TokenService>;
89
90
  }
90
91
 
91
- export { AuthModule, RoleContextService, TokenService };
92
+ declare class CredentialingService {
93
+ private store;
94
+ /** Get signal for a key (auto-create if missing) */
95
+ get<T>(key: string): Signal<T | null>;
96
+ /** Set value for a key */
97
+ set<T>(key: string, value: T): void;
98
+ /** Optional: clear single key */
99
+ clear(key: string): void;
100
+ /** Optional: clear everything */
101
+ clearAll(): void;
102
+ static ɵfac: i0.ɵɵFactoryDeclaration<CredentialingService, never>;
103
+ static ɵprov: i0.ɵɵInjectableDeclaration<CredentialingService>;
104
+ }
105
+
106
+ export { AuthModule, CredentialingService, RoleContextService, TokenService };
92
107
  export type { RoleContextModel, TempUserModel };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rangs/auth0-lib",
3
- "version": "0.0.13",
3
+ "version": "0.0.14",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^20.0.0",
6
6
  "@angular/core": "^20.0.0",