@myclub_se/data-access 3.4.4 → 3.4.5
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/esm2022/lib/models/auth/auth.mjs +4 -2
- package/esm2022/lib/services/factories/auth-factory.mjs +2 -2
- package/esm2022/lib/store/effects/auth.effects.mjs +2 -2
- package/esm2022/lib/store/operators/ensure-auths.mjs +4 -4
- package/esm2022/lib/store/operators/ensure-current-user.mjs +4 -4
- package/esm2022/lib/store/reducers/auth.reducer.mjs +18 -5
- package/fesm2022/myclub_se-data-access.mjs +27 -12
- package/fesm2022/myclub_se-data-access.mjs.map +1 -1
- package/lib/models/auth/auth.d.ts +2 -1
- package/package.json +1 -1
|
@@ -12,10 +12,11 @@ export declare class Auth {
|
|
|
12
12
|
sections: AuthSection[];
|
|
13
13
|
siteEnabled: boolean;
|
|
14
14
|
teams: AuthTeam[] | SearchTeam[];
|
|
15
|
+
teamsLoaded: boolean;
|
|
15
16
|
user_name: string;
|
|
16
17
|
readonly clubAdmin2faRequired: boolean;
|
|
17
18
|
readonly sectionAdmin2faRequired: boolean;
|
|
18
19
|
readonly teamAdmin2faRequired: boolean;
|
|
19
20
|
readonly memberAdmin2faRequired: boolean;
|
|
20
|
-
constructor(id: string, name: string, clubAdmin: boolean, isSectionClub: boolean, members: AuthMember[], registrationEnabled: boolean, sections: AuthSection[], siteEnabled: boolean, teams: AuthTeam[] | SearchTeam[], user_name: string, clubAdmin2faRequired: boolean, sectionAdmin2faRequired: boolean, teamAdmin2faRequired: boolean, memberAdmin2faRequired: boolean);
|
|
21
|
+
constructor(id: string, name: string, clubAdmin: boolean, isSectionClub: boolean, members: AuthMember[], registrationEnabled: boolean, sections: AuthSection[], siteEnabled: boolean, teams: AuthTeam[] | SearchTeam[], teamsLoaded: boolean, user_name: string, clubAdmin2faRequired: boolean, sectionAdmin2faRequired: boolean, teamAdmin2faRequired: boolean, memberAdmin2faRequired: boolean);
|
|
21
22
|
}
|
package/package.json
CHANGED