@rangs/auth0-lib 0.0.22 → 0.0.23

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.
Files changed (2) hide show
  1. package/index.d.ts +7 -1
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -96,6 +96,12 @@ interface TempUserModel {
96
96
  tenantLogo?: string;
97
97
  tenantphone?: string;
98
98
  tenantBio?: string;
99
+ actions?: UserActions[];
100
+ }
101
+ interface UserActions {
102
+ action?: string;
103
+ status?: string;
104
+ count?: number;
99
105
  }
100
106
 
101
107
  declare class RoleContextService {
@@ -156,4 +162,4 @@ declare class CredentialingService {
156
162
  }
157
163
 
158
164
  export { AuthModule, CredentialingService, PrivacyPolicyComponent, RoleContextService, TermsConditionsComponent, TokenService };
159
- export type { PrivacyAndTerms, RoleContextModel, TempUserModel };
165
+ export type { PrivacyAndTerms, RoleContextModel, TempUserModel, UserActions };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rangs/auth0-lib",
3
- "version": "0.0.22",
3
+ "version": "0.0.23",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^20.0.0",
6
6
  "@angular/core": "^20.0.0",