@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.
- package/index.d.ts +7 -1
- 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 };
|