@myclub_se/data-access 3.4.5 → 3.4.7
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/api-models/api-auth/api-auth.mjs +1 -1
- package/esm2022/lib/api-models/api-booking-calendar.mjs +1 -1
- package/esm2022/lib/api-models/api-saved-search.mjs +2 -0
- package/esm2022/lib/api-models/index.mjs +2 -1
- package/esm2022/lib/models/auth/auth.mjs +4 -2
- package/esm2022/lib/models/booking-calendar.mjs +5 -2
- package/esm2022/lib/models/index.mjs +2 -1
- package/esm2022/lib/models/saved-search.mjs +9 -0
- package/esm2022/lib/services/auth.service.mjs +9 -1
- package/esm2022/lib/services/booking-calendar.service.mjs +2 -3
- package/esm2022/lib/services/factories/auth-factory.mjs +2 -2
- package/esm2022/lib/services/factories/booking-calendar-factory.mjs +2 -2
- package/esm2022/lib/services/factories/index.mjs +3 -1
- package/esm2022/lib/services/factories/saved-search-factory.mjs +3 -0
- package/esm2022/lib/services/index.mjs +2 -1
- package/esm2022/lib/services/saved-search.service.mjs +39 -0
- package/esm2022/lib/store/actions/auth.actions.mjs +7 -1
- package/esm2022/lib/store/actions/index.mjs +2 -1
- package/esm2022/lib/store/actions/saved-search.actions.mjs +11 -0
- package/esm2022/lib/store/effects/auth.effects.mjs +18 -2
- package/esm2022/lib/store/effects/data-access.effects.mjs +3 -1
- package/esm2022/lib/store/effects/saved-search.effects.mjs +18 -0
- 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 +1 -1
- package/esm2022/lib/store/reducers/data-access.reducer.mjs +3 -1
- package/esm2022/lib/store/reducers/saved-search.reducer.mjs +12 -0
- package/esm2022/lib/store/selectors/index.mjs +2 -1
- package/esm2022/lib/store/selectors/saved-search.selectors.mjs +5 -0
- package/esm2022/lib/store/state/data-access.state.mjs +1 -1
- package/esm2022/lib/store/state/index.mjs +2 -1
- package/esm2022/lib/store/state/saved-search.state.mjs +5 -0
- package/fesm2022/myclub_se-data-access.mjs +154 -37
- package/fesm2022/myclub_se-data-access.mjs.map +1 -1
- package/lib/api-models/api-auth/api-auth.d.ts +1 -0
- package/lib/api-models/api-booking-calendar.d.ts +1 -0
- package/lib/api-models/api-saved-search.d.ts +4 -0
- package/lib/api-models/index.d.ts +1 -0
- package/lib/models/auth/auth.d.ts +2 -1
- package/lib/models/booking-calendar.d.ts +3 -1
- package/lib/models/index.d.ts +1 -0
- package/lib/models/saved-search.d.ts +5 -0
- package/lib/services/auth.service.d.ts +1 -0
- package/lib/services/factories/index.d.ts +2 -0
- package/lib/services/factories/saved-search-factory.d.ts +3 -0
- package/lib/services/index.d.ts +1 -0
- package/lib/services/saved-search.service.d.ts +12 -0
- package/lib/store/actions/auth.actions.d.ts +23 -1
- package/lib/store/actions/index.d.ts +1 -0
- package/lib/store/actions/saved-search.actions.d.ts +24 -0
- package/lib/store/effects/auth.effects.d.ts +3 -0
- package/lib/store/effects/data-access.effects.d.ts +2 -1
- package/lib/store/effects/saved-search.effects.d.ts +14 -0
- package/lib/store/reducers/saved-search.reducer.d.ts +2 -0
- package/lib/store/selectors/index.d.ts +1 -0
- package/lib/store/selectors/saved-search.selectors.d.ts +4 -0
- package/lib/store/state/data-access.state.d.ts +2 -0
- package/lib/store/state/index.d.ts +1 -0
- package/lib/store/state/saved-search.state.d.ts +6 -0
- package/package.json +1 -1
|
@@ -12,6 +12,7 @@ export interface ApiAuth {
|
|
|
12
12
|
site_enabled: boolean;
|
|
13
13
|
teams: ApiAuthTeam[];
|
|
14
14
|
user_name: string;
|
|
15
|
+
readonly blocked_members: ApiAuthMember[];
|
|
15
16
|
readonly club_admin_2fa_required: boolean;
|
|
16
17
|
readonly section_admin_2fa_required: boolean;
|
|
17
18
|
readonly team_admin_2fa_required: boolean;
|
|
@@ -22,6 +22,7 @@ export interface ApiBookingCalendar {
|
|
|
22
22
|
price_per_slot: number;
|
|
23
23
|
member_fee_id?: string | null;
|
|
24
24
|
service_fee_id?: string | null;
|
|
25
|
+
saved_search_id?: string | null;
|
|
25
26
|
info_email: string | null;
|
|
26
27
|
send_team_application_created: boolean;
|
|
27
28
|
send_team_application_updated: boolean;
|
|
@@ -50,6 +50,7 @@ export * from './api-overbooked-location';
|
|
|
50
50
|
export * from './api-partner';
|
|
51
51
|
export * from './api-registration-qr-code';
|
|
52
52
|
export * from './api-retrieve-2fa';
|
|
53
|
+
export * from './api-saved-search';
|
|
53
54
|
export * from './api-search-club';
|
|
54
55
|
export * from './api-search-team';
|
|
55
56
|
export * from './api-section';
|
|
@@ -14,9 +14,10 @@ export declare class Auth {
|
|
|
14
14
|
teams: AuthTeam[] | SearchTeam[];
|
|
15
15
|
teamsLoaded: boolean;
|
|
16
16
|
user_name: string;
|
|
17
|
+
readonly blockedMembers: AuthMember[];
|
|
17
18
|
readonly clubAdmin2faRequired: boolean;
|
|
18
19
|
readonly sectionAdmin2faRequired: boolean;
|
|
19
20
|
readonly teamAdmin2faRequired: boolean;
|
|
20
21
|
readonly 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);
|
|
22
|
+
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, blockedMembers: AuthMember[], clubAdmin2faRequired: boolean, sectionAdmin2faRequired: boolean, teamAdmin2faRequired: boolean, memberAdmin2faRequired: boolean);
|
|
22
23
|
}
|
|
@@ -31,6 +31,7 @@ export declare class BookingCalendar {
|
|
|
31
31
|
member_fee_id?: string | null | undefined;
|
|
32
32
|
service_fee_id?: string | null | undefined;
|
|
33
33
|
info_email?: string | null | undefined;
|
|
34
|
+
saved_search_id?: string | null | undefined;
|
|
34
35
|
static asFormGroup(calendar?: BookingCalendar): FormGroup<{
|
|
35
36
|
id: FormControl<string | null>;
|
|
36
37
|
club_id: FormControl<string | null>;
|
|
@@ -52,6 +53,7 @@ export declare class BookingCalendar {
|
|
|
52
53
|
payment_limit_in_minutes: FormControl<number | null>;
|
|
53
54
|
member_fee_id: FormControl<string | null>;
|
|
54
55
|
service_fee_id: FormControl<string | null>;
|
|
56
|
+
saved_search_id: FormControl<string | null>;
|
|
55
57
|
info_email: FormControl<string | null>;
|
|
56
58
|
send_team_application_created: FormControl<boolean | null>;
|
|
57
59
|
send_team_application_updated: FormControl<boolean | null>;
|
|
@@ -61,5 +63,5 @@ export declare class BookingCalendar {
|
|
|
61
63
|
send_member_booking_created: FormControl<boolean | null>;
|
|
62
64
|
send_member_booking_deleted: FormControl<boolean | null>;
|
|
63
65
|
}>;
|
|
64
|
-
constructor(id: string, club_id: string, section_id: string | null, team_id: string | null, club_name: string, name: string, section_name: string | null, team_name: string | null, status: string | null, max_application_number: number, allow_team_export: boolean, allow_repeated_bookings: boolean, is_default: boolean, payment_limit_in_minutes?: number, price_per_slot?: number, send_team_application_created?: boolean, send_team_application_updated?: boolean, send_admin_team_booking_created?: boolean, send_team_booking_created?: boolean, send_team_booking_deleted?: boolean, send_member_booking_created?: boolean, send_member_booking_deleted?: boolean, available_for_teams?: SearchTeam[] | null | undefined, bookable_groups?: BookableGroup[] | null | undefined, type?: string | null | undefined, type_display?: string | null | undefined, member_fee_id?: string | null | undefined, service_fee_id?: string | null | undefined, info_email?: string | null | undefined);
|
|
66
|
+
constructor(id: string, club_id: string, section_id: string | null, team_id: string | null, club_name: string, name: string, section_name: string | null, team_name: string | null, status: string | null, max_application_number: number, allow_team_export: boolean, allow_repeated_bookings: boolean, is_default: boolean, payment_limit_in_minutes?: number, price_per_slot?: number, send_team_application_created?: boolean, send_team_application_updated?: boolean, send_admin_team_booking_created?: boolean, send_team_booking_created?: boolean, send_team_booking_deleted?: boolean, send_member_booking_created?: boolean, send_member_booking_deleted?: boolean, available_for_teams?: SearchTeam[] | null | undefined, bookable_groups?: BookableGroup[] | null | undefined, type?: string | null | undefined, type_display?: string | null | undefined, member_fee_id?: string | null | undefined, service_fee_id?: string | null | undefined, info_email?: string | null | undefined, saved_search_id?: string | null | undefined);
|
|
65
67
|
}
|
package/lib/models/index.d.ts
CHANGED
|
@@ -57,6 +57,7 @@ export * from './public-authentication';
|
|
|
57
57
|
export * from './registration-qr-code';
|
|
58
58
|
export * from './retrieve-2fa';
|
|
59
59
|
export * from './role';
|
|
60
|
+
export * from './saved-search';
|
|
60
61
|
export * from './search-club';
|
|
61
62
|
export * from './search-team';
|
|
62
63
|
export * from './section';
|
|
@@ -11,6 +11,7 @@ export declare class AuthService {
|
|
|
11
11
|
removeTeamAuth(authId: string, teamId: string): import("rxjs").Observable<boolean>;
|
|
12
12
|
selectMemberAuth(userId: string, clubId: string, memberId: string): import("rxjs").Observable<boolean>;
|
|
13
13
|
selectTeamAuth(userId: string, clubId: string, teamId: string): import("rxjs").Observable<boolean>;
|
|
14
|
+
unblockMember(userId: string, clubId: string, memberId: string): import("rxjs").Observable<boolean>;
|
|
14
15
|
updateMembers(): import("rxjs").Observable<boolean>;
|
|
15
16
|
private removeAuth;
|
|
16
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<AuthService, never>;
|
|
@@ -73,6 +73,8 @@ export * from './partner-factory';
|
|
|
73
73
|
export * from './payment-attempt-factory';
|
|
74
74
|
export * from './public-authentication-factory';
|
|
75
75
|
export * from './registration-qr-code-factory';
|
|
76
|
+
export * from './retrieve-2fa-factory';
|
|
77
|
+
export * from './saved-search-factory';
|
|
76
78
|
export * from './search-club-factory';
|
|
77
79
|
export * from './search-member-card-factory';
|
|
78
80
|
export * from './search-member-factory';
|
package/lib/services/index.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ export * from './member-fee.service';
|
|
|
17
17
|
export * from './member-public-form.service';
|
|
18
18
|
export * from './news.service';
|
|
19
19
|
export * from './registration-qr-code.service';
|
|
20
|
+
export * from './saved-search.service';
|
|
20
21
|
export * from './section.service';
|
|
21
22
|
export * from './storage.service';
|
|
22
23
|
export * from './team.service';
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ApiService } from './api.service';
|
|
2
|
+
import { Role } from '../models';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class SavedSearchService {
|
|
5
|
+
private apiService;
|
|
6
|
+
constructor(apiService: ApiService);
|
|
7
|
+
getSavedSearches(role: Role, itemId: string): import("rxjs").Observable<import("../models").Collection<import("../models").SavedSearch>>;
|
|
8
|
+
getClubSavedSearches(clubId: string): import("rxjs").Observable<import("../models").Collection<import("../models").SavedSearch>>;
|
|
9
|
+
getSectionSavedSearches(sectionId: string): import("rxjs").Observable<import("../models").Collection<import("../models").SavedSearch>>;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SavedSearchService, never>;
|
|
11
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SavedSearchService>;
|
|
12
|
+
}
|
|
@@ -23,7 +23,10 @@ export declare enum AuthActionType {
|
|
|
23
23
|
RemoveTeam = "[Auth] Remove team",
|
|
24
24
|
RemoveTeamFailure = "[Auth] Remove team failure",
|
|
25
25
|
RemoveTeamSuccess = "[Auth] Remove team success",
|
|
26
|
-
SetCurrent = "[Auth] Set current"
|
|
26
|
+
SetCurrent = "[Auth] Set current",
|
|
27
|
+
UnblockMember = "[Auth] Unblock member",
|
|
28
|
+
UnblockMemberFailure = "[Auth] Unblock member failure",
|
|
29
|
+
UnblockMemberSuccess = "[Auth] Unblock member success"
|
|
27
30
|
}
|
|
28
31
|
export declare const clearAuthenticationAction: import("@ngrx/store").ActionCreator<AuthActionType.Clear, () => import("@ngrx/store").Action<AuthActionType.Clear>>;
|
|
29
32
|
export declare const clearAuthenticationSuccessAction: import("@ngrx/store").ActionCreator<AuthActionType.ClearSuccess, () => import("@ngrx/store").Action<AuthActionType.ClearSuccess>>;
|
|
@@ -85,3 +88,22 @@ export declare const setCurrentAuthAction: import("@ngrx/store").ActionCreator<A
|
|
|
85
88
|
}) => {
|
|
86
89
|
payload: Auth;
|
|
87
90
|
} & import("@ngrx/store").Action<AuthActionType.SetCurrent>>;
|
|
91
|
+
export declare const unblockMemberAuthAction: import("@ngrx/store").ActionCreator<AuthActionType.UnblockMember, (props: {
|
|
92
|
+
payload: {
|
|
93
|
+
userId: string;
|
|
94
|
+
clubId: string;
|
|
95
|
+
memberId: string;
|
|
96
|
+
};
|
|
97
|
+
}) => {
|
|
98
|
+
payload: {
|
|
99
|
+
userId: string;
|
|
100
|
+
clubId: string;
|
|
101
|
+
memberId: string;
|
|
102
|
+
};
|
|
103
|
+
} & import("@ngrx/store").Action<AuthActionType.UnblockMember>>;
|
|
104
|
+
export declare const unblockMemberAuthFailureAction: import("@ngrx/store").ActionCreator<AuthActionType.UnblockMemberFailure, (props: {
|
|
105
|
+
payload: HttpErrorResponse;
|
|
106
|
+
}) => {
|
|
107
|
+
payload: HttpErrorResponse;
|
|
108
|
+
} & import("@ngrx/store").Action<AuthActionType.UnblockMemberFailure>>;
|
|
109
|
+
export declare const unblockMemberAuthSuccessAction: import("@ngrx/store").ActionCreator<AuthActionType.UnblockMemberSuccess, () => import("@ngrx/store").Action<AuthActionType.UnblockMemberSuccess>>;
|
|
@@ -11,6 +11,7 @@ export * from './invoice.actions';
|
|
|
11
11
|
export * from './member.actions';
|
|
12
12
|
export * from './member-card.actions';
|
|
13
13
|
export * from './member-fee.actions';
|
|
14
|
+
export * from './saved-search.actions';
|
|
14
15
|
export * from './news.actions';
|
|
15
16
|
export * from './public-form.actions';
|
|
16
17
|
export * from './registration-qr-code.actions';
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { HttpErrorResponse } from '@angular/common/http';
|
|
2
|
+
import { Role, SavedSearch } from '../../models';
|
|
3
|
+
export declare enum SavedSearchActionType {
|
|
4
|
+
List = "[SavedSearch] List",
|
|
5
|
+
ListFailure = "[SavedSearch] List failure",
|
|
6
|
+
ListSuccess = "[SavedSearch] List success"
|
|
7
|
+
}
|
|
8
|
+
export declare const listSavedSearchesAction: import("@ngrx/store").ActionCreator<SavedSearchActionType.List, (props: {
|
|
9
|
+
role: Role;
|
|
10
|
+
itemId: string;
|
|
11
|
+
}) => {
|
|
12
|
+
role: Role;
|
|
13
|
+
itemId: string;
|
|
14
|
+
} & import("@ngrx/store").Action<SavedSearchActionType.List>>;
|
|
15
|
+
export declare const listSavedSearchesFailureAction: import("@ngrx/store").ActionCreator<SavedSearchActionType.ListFailure, (props: {
|
|
16
|
+
payload: HttpErrorResponse;
|
|
17
|
+
}) => {
|
|
18
|
+
payload: HttpErrorResponse;
|
|
19
|
+
} & import("@ngrx/store").Action<SavedSearchActionType.ListFailure>>;
|
|
20
|
+
export declare const listSavedSearchesSuccessAction: import("@ngrx/store").ActionCreator<SavedSearchActionType.ListSuccess, (props: {
|
|
21
|
+
searches: Array<SavedSearch>;
|
|
22
|
+
}) => {
|
|
23
|
+
searches: Array<SavedSearch>;
|
|
24
|
+
} & import("@ngrx/store").Action<SavedSearchActionType.ListSuccess>>;
|
|
@@ -31,6 +31,9 @@ export declare class AuthEffects {
|
|
|
31
31
|
setCurrent$: Observable<import("@ngrx/store").Action<import("../actions").StoreActionTypes> | ({
|
|
32
32
|
payload: Auth | null;
|
|
33
33
|
} & import("@ngrx/store").Action<import("../actions").AuthActionType.GetCurrentSuccess>)> & import("@ngrx/effects").CreateEffectMetadata;
|
|
34
|
+
unblockMember$: Observable<import("@ngrx/store").Action<import("../actions").AuthActionType.Refresh> | import("@ngrx/store").Action<import("../actions").AuthActionType.UnblockMemberSuccess> | ({
|
|
35
|
+
payload: HttpErrorResponse;
|
|
36
|
+
} & import("@ngrx/store").Action<import("../actions").AuthActionType.UnblockMemberFailure>)> & import("@ngrx/effects").CreateEffectMetadata;
|
|
34
37
|
static ɵfac: i0.ɵɵFactoryDeclaration<AuthEffects, never>;
|
|
35
38
|
static ɵprov: i0.ɵɵInjectableDeclaration<AuthEffects>;
|
|
36
39
|
}
|
|
@@ -17,5 +17,6 @@ import { TeamEffects } from './team.effects';
|
|
|
17
17
|
import { TokenEffects } from './token.effects';
|
|
18
18
|
import { UserEffects } from './user.effects';
|
|
19
19
|
import { MemberFeeEffects } from './member-fee.effects';
|
|
20
|
+
import { SavedSearchEffects } from './saved-search.effects';
|
|
20
21
|
import { RegistrationQRCodeEffects } from './registration-qr-code.effects';
|
|
21
|
-
export declare const dataAccessEffects: (typeof ActivityEffects | typeof AuthEffects | typeof BookingEffects | typeof CalendarEffects | typeof ClubInfoEffects | typeof ConstantEffects | typeof EmailEffects | typeof ExternalLinkEffects | typeof FileEffects | typeof InvoiceEffects | typeof MemberEffects | typeof MemberCardEffects | typeof NewsEffects | typeof PublicFormEffects | typeof SwishIncidentsEffects | typeof TeamEffects | typeof TokenEffects | typeof UserEffects | typeof MemberFeeEffects | typeof RegistrationQRCodeEffects)[];
|
|
22
|
+
export declare const dataAccessEffects: (typeof ActivityEffects | typeof AuthEffects | typeof BookingEffects | typeof CalendarEffects | typeof ClubInfoEffects | typeof ConstantEffects | typeof EmailEffects | typeof ExternalLinkEffects | typeof FileEffects | typeof InvoiceEffects | typeof MemberEffects | typeof MemberCardEffects | typeof NewsEffects | typeof PublicFormEffects | typeof SwishIncidentsEffects | typeof TeamEffects | typeof TokenEffects | typeof UserEffects | typeof MemberFeeEffects | typeof SavedSearchEffects | typeof RegistrationQRCodeEffects)[];
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { SavedSearch } from '../../models';
|
|
2
|
+
import { HttpErrorResponse } from '@angular/common/http';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class SavedSearchEffects {
|
|
5
|
+
private actions$;
|
|
6
|
+
private savedSearchService;
|
|
7
|
+
listSavedSearches$: import("rxjs").Observable<({
|
|
8
|
+
searches: SavedSearch[];
|
|
9
|
+
} & import("@ngrx/store").Action<import("../actions").SavedSearchActionType.ListSuccess>) | ({
|
|
10
|
+
payload: HttpErrorResponse;
|
|
11
|
+
} & import("@ngrx/store").Action<import("../actions").SavedSearchActionType.ListFailure>)> & import("@ngrx/effects").CreateEffectMetadata;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SavedSearchEffects, never>;
|
|
13
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SavedSearchEffects>;
|
|
14
|
+
}
|
|
@@ -10,6 +10,7 @@ export * from './invoice.selectors';
|
|
|
10
10
|
export * from './member.selectors';
|
|
11
11
|
export * from './member-card.selectors';
|
|
12
12
|
export * from './member-fee.selectors';
|
|
13
|
+
export * from './saved-search.selectors';
|
|
13
14
|
export * from './news.selectors';
|
|
14
15
|
export * from './public-form.selectors';
|
|
15
16
|
export * from './public.selectors';
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { DataAccessState } from '../state';
|
|
2
|
+
import { SavedSearchState } from '../state/saved-search.state';
|
|
3
|
+
export declare const savedSearchState: import("@ngrx/store").MemoizedSelector<object, SavedSearchState, (s1: DataAccessState) => SavedSearchState>;
|
|
4
|
+
export declare const selectSavedSearches: import("@ngrx/store").MemoizedSelector<object, import("@myclub_se/data-access").ListResultInterface<import("@myclub_se/data-access").SavedSearch>, (s1: SavedSearchState) => import("@myclub_se/data-access").ListResultInterface<import("@myclub_se/data-access").SavedSearch>>;
|
|
@@ -16,6 +16,7 @@ import { TokenState } from './token.state';
|
|
|
16
16
|
import { UserState } from './user.state';
|
|
17
17
|
import { BookingState } from './booking.state';
|
|
18
18
|
import { MemberFeeState } from './member-fee.state';
|
|
19
|
+
import { SavedSearchState } from './saved-search.state';
|
|
19
20
|
import { RegistrationQRCodeState } from './registration-qr-code.state';
|
|
20
21
|
export interface DataAccessState {
|
|
21
22
|
auth: AuthState;
|
|
@@ -30,6 +31,7 @@ export interface DataAccessState {
|
|
|
30
31
|
members: MemberState;
|
|
31
32
|
memberCards: MemberCardState;
|
|
32
33
|
memberFees: MemberFeeState;
|
|
34
|
+
savedSearches: SavedSearchState;
|
|
33
35
|
news: NewsState;
|
|
34
36
|
public: PublicState;
|
|
35
37
|
publicForms: PublicFormState;
|
|
@@ -11,6 +11,7 @@ export * from './file.state';
|
|
|
11
11
|
export * from './member.state';
|
|
12
12
|
export * from './member-card.state';
|
|
13
13
|
export * from './member-fee.state';
|
|
14
|
+
export * from './saved-search.state';
|
|
14
15
|
export * from './news.state';
|
|
15
16
|
export * from './public-form.state';
|
|
16
17
|
export * from './public.state';
|
package/package.json
CHANGED