@influenzanet/case-web-app-core 2.7.5-staging.2 → 2.7.5-staging.25
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/CHANGELOG.md +40 -2
- package/build/AppCore.d.ts +7 -7
- package/build/api/authAPI.d.ts +1 -1
- package/build/api/instances/authenticatedApi.d.ts +3 -0
- package/build/api/studyAPI.d.ts +2 -2
- package/build/api/types/user.d.ts +8 -3
- package/build/api/userAPI.d.ts +3 -3
- package/build/components/ImageBrowser/ImageBrowser.d.ts +16 -0
- package/build/components/ImageBrowser/models/ImageBrowserViewModel.d.ts +4 -0
- package/build/components/ImageBrowser/services/ImageBrowserDataReader.d.ts +4 -0
- package/build/components/UserProfilesSelector/UserProfilesSelector.d.ts +9 -0
- package/build/components/UserSymptomsHistory/UserSymptomsHistory.d.ts +18 -0
- package/build/components/UserSymptomsHistory/models/IUserSymptomsHistoryReportParser.d.ts +8 -0
- package/build/components/UserSymptomsHistory/models/SymptomsResult.d.ts +5 -0
- package/build/components/UserSymptomsHistory/services/UserSymptomsHistoryReportReader.d.ts +14 -0
- package/build/components/UserSymptomsHistory/services/config/SymptomsConfig.d.ts +9 -0
- package/build/components/UserSymptomsHistory/services/parsers/UserSymptomsHistoryReportParserV1.d.ts +10 -0
- package/build/components/UserSymptomsHistory/services/parsers/index.d.ts +3 -0
- package/build/components/dialogs/GlobalDialogs/Login.d.ts +2 -2
- package/build/components/dialogs/GlobalDialogs/ManageProfiles.d.ts +1 -3
- package/build/components/pages/Pages.d.ts +5 -5
- package/build/components/pages/components/ContentRenderer.d.ts +4 -4
- package/build/components/pages/components/LinkResolver/LinkResolver.d.ts +2 -9
- package/build/components/pages/components/LinkResolver/Resolvers/Invitation.d.ts +2 -2
- package/build/components/pages/components/LinkResolver/Resolvers/LinkResolverConst.d.ts +7 -0
- package/build/components/pages/components/LinkResolver/Resolvers/PasswordReset.d.ts +2 -2
- package/build/components/pages/components/LinkResolver/Resolvers/StudyLogin.d.ts +2 -2
- package/build/index.d.ts +8 -9
- package/build/index.es.js +2095 -784
- package/build/index.es.js.map +1 -1
- package/build/index.js +2095 -784
- package/build/index.js.map +1 -1
- package/build/store/actions/studiesActions.d.ts +8 -0
- package/build/store/actions/userActions.d.ts +9 -0
- package/build/store/rootReducer.d.ts +1 -1
- package/build/store/studiesSlice.d.ts +1 -4
- package/build/store/thunks/studiesThunks.d.ts +18 -0
- package/build/store/thunks/userThunks.d.ts +3 -0
- package/build/store/userSlice.d.ts +0 -2
- package/build/types/pagesConfig.d.ts +44 -40
- package/build/utils/Reports/models/ReportModels.d.ts +20 -0
- package/build/utils/Reports/models/services/reportService.d.ts +1 -0
- package/package.json +6 -3
- package/build/thunks/studiesThunks.d.ts +0 -18
- package/build/thunks/userThunks.d.ts +0 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,43 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 2.7.5 - staging
|
|
4
|
+
|
|
5
|
+
## Bugfix
|
|
6
|
+
|
|
7
|
+
- corrected multiple instances of circular reference
|
|
8
|
+
|
|
9
|
+
## Added
|
|
10
|
+
|
|
11
|
+
- Thunks available to be used in your application
|
|
12
|
+
|
|
13
|
+
- `enterStudiesThunk` : used to simplify the assignment of a profile to new studies.
|
|
14
|
+
It also make sure to fetch new surveys associated to the newly assigned studies.
|
|
15
|
+
|
|
16
|
+
- `getReportsForUser` : now support the `limit` parameter. NOTE: it only properly works with versions of the
|
|
17
|
+
study service supporting the parameter server side, otherwise it gets ignored and all results are returned.
|
|
18
|
+
Check study service changelog to see which version supports this new parameter
|
|
19
|
+
|
|
20
|
+
## Changed
|
|
21
|
+
|
|
22
|
+
- SurveyList component rework
|
|
23
|
+
|
|
24
|
+
- profiles are no longer subscribed to default studies inside this component
|
|
25
|
+
- active surveys are now saved in the redux store so it's easy to re render the component
|
|
26
|
+
from your application in case the user is assigned new surveys or studies
|
|
27
|
+
|
|
28
|
+
- DefaultStudiesManager component
|
|
29
|
+
|
|
30
|
+
- initialize store state related to studies and surveys
|
|
31
|
+
- make sure default studies are assigned to all profiles (backward compatibility)
|
|
32
|
+
|
|
33
|
+
## 2.7.4 - 2023-11-20
|
|
34
|
+
|
|
35
|
+
### Changed
|
|
36
|
+
|
|
37
|
+
- on logout, the local storage is emptied and the persistState flag is set to false, preventing the app to save
|
|
38
|
+
an empty state. This fixed an incorrect behavior during the sign up process for users that previously unsubscribed
|
|
39
|
+
from the platform and then subscribed again
|
|
40
|
+
|
|
3
41
|
## 2.7.3 - 2023-10-25
|
|
4
42
|
|
|
5
43
|
### Changed
|
|
@@ -229,7 +267,7 @@
|
|
|
229
267
|
### Changed
|
|
230
268
|
|
|
231
269
|
- [BREAKING-CHANGE]: updated dependencies - react markdown renderer needs new format. See documentation here:
|
|
232
|
-
<https://github.com/coneno/case-web-ui/blob/master/CHANGELOG.md#breaking-changes>
|
|
270
|
+
<https://github.com/coneno/case-web-ui/blob/master/CHANGELOG.md#breaking-changes>
|
|
233
271
|
|
|
234
272
|
## [1.0.19]
|
|
235
273
|
|
|
@@ -253,7 +291,7 @@
|
|
|
253
291
|
|
|
254
292
|
### Changed
|
|
255
293
|
|
|
256
|
-
-
|
|
294
|
+
- _BREAKING_: at signup request sent to the backend, it will send the instanceID as http header. This requires a participant-api (api-gateway) with v0.13.0 or later. This header field was included for providing the instanceID for reCaptcha validation.
|
|
257
295
|
- Updating project dependencies (case-web-ui), with minor improvements.
|
|
258
296
|
|
|
259
297
|
## [1.0.16]
|
package/build/AppCore.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import React from
|
|
2
|
-
import { FooterConfig } from
|
|
3
|
-
import { AppConfig } from
|
|
4
|
-
import { HeaderConfig } from
|
|
5
|
-
import { NavbarConfig } from
|
|
6
|
-
import { PagesConfig } from
|
|
7
|
-
import { CustomSurveyResponseComponent } from
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { FooterConfig } from "./types/footerConfig";
|
|
3
|
+
import { AppConfig } from "./types/appConfig";
|
|
4
|
+
import { HeaderConfig } from "./types/headerConfig";
|
|
5
|
+
import { NavbarConfig } from "./types/navbarConfig";
|
|
6
|
+
import { PagesConfig } from "./types/pagesConfig";
|
|
7
|
+
import { CustomSurveyResponseComponent } from "@influenzanet/case-web-ui/build/components/survey/SurveySingleItemView/ResponseComponent/ResponseComponent";
|
|
8
8
|
export interface Extension {
|
|
9
9
|
name: string;
|
|
10
10
|
component: React.FunctionComponent<any>;
|
package/build/api/authAPI.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { SignupMsg, LoginMsg, TokenResponse, LoginResponse, AutoTokenValidationResponse } from
|
|
1
|
+
import { SignupMsg, LoginMsg, TokenResponse, LoginResponse, AutoTokenValidationResponse } from "./types/authAPI";
|
|
2
2
|
export declare const signupWithEmailRequest: (creds: SignupMsg, recaptchaToken?: string | undefined) => Promise<import("axios").AxiosResponse<TokenResponse, any>>;
|
|
3
3
|
export declare const loginWithEmailRequest: (creds: LoginMsg) => Promise<import("axios").AxiosResponse<LoginResponse, any>>;
|
|
4
4
|
export declare const resend2FAVerificationCodeRequest: (creds: LoginMsg) => Promise<import("axios").AxiosResponse<any, any>>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
+
import { TokenResponse } from "../types/authAPI";
|
|
1
2
|
declare const authApiInstance: import("axios").AxiosInstance;
|
|
3
|
+
export declare const renewTokenURL = "/v1/auth/renew-token";
|
|
4
|
+
export declare const renewTokenReq: (refreshToken: string) => Promise<import("axios").AxiosResponse<TokenResponse, any>>;
|
|
2
5
|
export declare const renewToken: () => Promise<string>;
|
|
3
6
|
export declare const setDefaultAccessTokenHeader: (token: string) => void;
|
|
4
7
|
export declare const resetApiAuth: () => void;
|
package/build/api/studyAPI.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { SurveyReferenceReq, SurveyAndContextMsg, SurveyResponseReq, AssignedSurveys, Studies, SurveyInfos, StudiesForUser, ConvertTempParticipantReq, ReportHistory } from
|
|
1
|
+
import { SurveyReferenceReq, SurveyAndContextMsg, SurveyResponseReq, AssignedSurveys, Studies, SurveyInfos, StudiesForUser, ConvertTempParticipantReq, ReportHistory } from "./types/studyAPI";
|
|
2
2
|
export declare const getStudiesForUserReq: () => Promise<import("axios").AxiosResponse<StudiesForUser, any>>;
|
|
3
3
|
export declare const getAllAvailableStudiesReq: () => Promise<import("axios").AxiosResponse<Studies, any>>;
|
|
4
4
|
export declare const getSurveyInfosForStudyReq: (studyKey: string) => Promise<import("axios").AxiosResponse<SurveyInfos, any>>;
|
|
5
|
-
export declare const getReportsForUser: (onlyForStudies?: string[] | undefined, onlyForProfiles?: string[] | undefined, reportKey?: string | undefined, from?: number | undefined, until?: number | undefined, ignoreReports?: string[] | undefined) => Promise<import("axios").AxiosResponse<ReportHistory, any>>;
|
|
5
|
+
export declare const getReportsForUser: (onlyForStudies?: string[] | undefined, onlyForProfiles?: string[] | undefined, reportKey?: string | undefined, from?: number | undefined, until?: number | undefined, ignoreReports?: string[] | undefined, limit?: number | undefined) => Promise<import("axios").AxiosResponse<ReportHistory, any>>;
|
|
6
6
|
export declare const enterStudyReq: (studyKey: string, profileId: string) => Promise<import("axios").AxiosResponse<AssignedSurveys, any>>;
|
|
7
7
|
export declare const leaveStudyRequest: (studyKey: string, profileId: string) => Promise<import("axios").AxiosResponse<AssignedSurveys, any>>;
|
|
8
8
|
export declare const getAllAssignedSurveysReq: () => Promise<import("axios").AxiosResponse<AssignedSurveys, any>>;
|
|
@@ -28,12 +28,17 @@ export interface Profile {
|
|
|
28
28
|
/**
|
|
29
29
|
* The following fields were added here for convenience since
|
|
30
30
|
* the types defined in this file are also used as type for
|
|
31
|
-
* the redux store object.
|
|
31
|
+
* the redux store object. This practice of using the same type
|
|
32
|
+
* for different domains only because they superficially share a set
|
|
33
|
+
* of common properties is huge mistake that we
|
|
34
|
+
* cannot correct right now because it would involve a large
|
|
35
|
+
* refactoring
|
|
32
36
|
*
|
|
33
|
-
*
|
|
37
|
+
* When adding properties here make sure you remove them
|
|
38
|
+
* when posting the profile in ../userAPI.ts
|
|
34
39
|
*/
|
|
35
40
|
studies: string[];
|
|
36
|
-
|
|
41
|
+
activeSurveys: AssignedSurvey[];
|
|
37
42
|
}
|
|
38
43
|
export interface ContactPreferences {
|
|
39
44
|
subscribedToNewsletter: boolean;
|
package/build/api/userAPI.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { PasswordResetInfos } from
|
|
2
|
-
import { ServiceStatus } from
|
|
3
|
-
import { User, Profile, ContactPreferences, ContactInfo } from
|
|
1
|
+
import { PasswordResetInfos } from "./types/authAPI";
|
|
2
|
+
import { ServiceStatus } from "./types/general";
|
|
3
|
+
import { User, Profile, ContactPreferences, ContactInfo } from "./types/user";
|
|
4
4
|
export declare const initiatePasswordResetReq: (instanceId: string, accountId: string) => Promise<import("axios").AxiosResponse<ServiceStatus, any>>;
|
|
5
5
|
export declare const getInfosForPasswordResetReq: (token: string) => Promise<import("axios").AxiosResponse<PasswordResetInfos, any>>;
|
|
6
6
|
export declare const resetPasswordReq: (token: string, newPassword: string) => Promise<import("axios").AxiosResponse<ServiceStatus, any>>;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { ImageBrowserDataReader } from "./services/ImageBrowserDataReader";
|
|
3
|
+
import "./ImageBrowser.scss";
|
|
4
|
+
export interface ImageBrowserProps {
|
|
5
|
+
className?: string;
|
|
6
|
+
enableAnimations?: boolean;
|
|
7
|
+
dataReader: ImageBrowserDataReader;
|
|
8
|
+
dateLocales?: Array<{
|
|
9
|
+
code: string;
|
|
10
|
+
locale: any;
|
|
11
|
+
format: string;
|
|
12
|
+
}>;
|
|
13
|
+
translationNamespace?: string;
|
|
14
|
+
}
|
|
15
|
+
declare const ImageBrowser: React.FC<ImageBrowserProps>;
|
|
16
|
+
export default ImageBrowser;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import "./UserProfilesSelector.scss";
|
|
2
|
+
import React from "react";
|
|
3
|
+
interface UserProfilesSelectorProps {
|
|
4
|
+
selectedProfileId: string;
|
|
5
|
+
onProfileChange: (profileId: string) => Promise<void>;
|
|
6
|
+
className?: string;
|
|
7
|
+
}
|
|
8
|
+
declare const UserProfilesSelector: React.FC<UserProfilesSelectorProps>;
|
|
9
|
+
export default UserProfilesSelector;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { ImageBrowserDataReader } from "../ImageBrowser/services/ImageBrowserDataReader";
|
|
3
|
+
export declare type UserSymptomsHistoryDataReader = {
|
|
4
|
+
init: (studyId: string, profileId: string) => Promise<ImageBrowserDataReader>;
|
|
5
|
+
};
|
|
6
|
+
export declare type UserSymptomsHistoryProps = {
|
|
7
|
+
className?: string;
|
|
8
|
+
studyId: string;
|
|
9
|
+
DataReader?: UserSymptomsHistoryDataReader;
|
|
10
|
+
translationNamespace?: string;
|
|
11
|
+
dateLocales?: Array<{
|
|
12
|
+
code: string;
|
|
13
|
+
locale: any;
|
|
14
|
+
format: string;
|
|
15
|
+
}>;
|
|
16
|
+
};
|
|
17
|
+
declare const UserSymptomsHistory: React.FC<UserSymptomsHistoryProps>;
|
|
18
|
+
export default UserSymptomsHistory;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ParsedReport } from "../../../utils/Reports/models/ReportModels";
|
|
2
|
+
import { ImageBrowserViewModel } from "../../ImageBrowser/models/ImageBrowserViewModel";
|
|
3
|
+
import { SymptomsConfig } from "../services/config/SymptomsConfig";
|
|
4
|
+
interface IUserSymptomsHistoryReportParser {
|
|
5
|
+
version: string;
|
|
6
|
+
parse: (report: ParsedReport, config: SymptomsConfig) => ImageBrowserViewModel;
|
|
7
|
+
}
|
|
8
|
+
export default IUserSymptomsHistoryReportParser;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { ImageBrowserViewModel } from "../../ImageBrowser/models/ImageBrowserViewModel";
|
|
2
|
+
import { ImageBrowserDataReader } from "../../ImageBrowser/services/ImageBrowserDataReader";
|
|
3
|
+
import { SymptomsConfig } from "./config/SymptomsConfig";
|
|
4
|
+
export declare class UserSymptomsHistoryReportReader extends ImageBrowserDataReader {
|
|
5
|
+
static config: SymptomsConfig;
|
|
6
|
+
studyId: string;
|
|
7
|
+
profileId: string;
|
|
8
|
+
startingDate: number | undefined;
|
|
9
|
+
hasMoreData: boolean;
|
|
10
|
+
private constructor();
|
|
11
|
+
static init: (studyId: string, profileId: string) => Promise<UserSymptomsHistoryReportReader>;
|
|
12
|
+
next: (count: number) => Promise<Array<ImageBrowserViewModel>>;
|
|
13
|
+
private parseReports;
|
|
14
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export declare type SymptomsToImageMap = {
|
|
2
|
+
[key: string]: string;
|
|
3
|
+
default: string;
|
|
4
|
+
};
|
|
5
|
+
export declare type GenderKeys = "0" | "1" | "2";
|
|
6
|
+
export declare type SymptomsConfig = {
|
|
7
|
+
[K in GenderKeys]: SymptomsToImageMap[];
|
|
8
|
+
};
|
|
9
|
+
export declare function isValidUserSymptomsHistoryConfig(obj: any): obj is SymptomsConfig;
|
package/build/components/UserSymptomsHistory/services/parsers/UserSymptomsHistoryReportParserV1.d.ts
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ImageBrowserViewModel } from "../../../ImageBrowser/models/ImageBrowserViewModel";
|
|
2
|
+
import IUserSymptomsHistoryReportParser from "../../models/IUserSymptomsHistoryReportParser";
|
|
3
|
+
import { ParsedReport } from "../../../../utils/Reports/models/ReportModels";
|
|
4
|
+
import { SymptomsConfig } from "../config/SymptomsConfig";
|
|
5
|
+
declare class UserSymptomsHistoryReportParserV1 implements IUserSymptomsHistoryReportParser {
|
|
6
|
+
version: string;
|
|
7
|
+
parse: (report: ParsedReport, config: SymptomsConfig) => ImageBrowserViewModel;
|
|
8
|
+
private reportDataToImage;
|
|
9
|
+
}
|
|
10
|
+
export default UserSymptomsHistoryReportParserV1;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import React from
|
|
2
|
-
import { PagesConfig } from
|
|
3
|
-
import { DefaultRoutes } from
|
|
4
|
-
import { Extension } from
|
|
5
|
-
import { CustomSurveyResponseComponent } from
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { PagesConfig } from "../../types/pagesConfig";
|
|
3
|
+
import { DefaultRoutes } from "../../types/routing";
|
|
4
|
+
import { Extension } from "../../AppCore";
|
|
5
|
+
import { CustomSurveyResponseComponent } from "@influenzanet/case-web-ui/build/components/survey/SurveySingleItemView/ResponseComponent/ResponseComponent";
|
|
6
6
|
interface PagesProps {
|
|
7
7
|
config?: PagesConfig;
|
|
8
8
|
extensions?: Extension[];
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import React from
|
|
2
|
-
import { PagesConfig, PageRow, HelmetPageConfig } from
|
|
3
|
-
import { DefaultRoutes } from
|
|
4
|
-
import { Extension } from
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { PagesConfig, PageRow, HelmetPageConfig } from "../../../types/pagesConfig";
|
|
3
|
+
import { DefaultRoutes } from "../../../types/routing";
|
|
4
|
+
import { Extension } from "../../../AppCore";
|
|
5
5
|
interface ContentRendererProps {
|
|
6
6
|
hideTitleBar?: boolean;
|
|
7
7
|
isAuthenticated: boolean;
|
|
@@ -1,12 +1,5 @@
|
|
|
1
|
-
import React from
|
|
2
|
-
import { DefaultRoutes } from
|
|
3
|
-
export declare const linkResolverRootUrl = "/link";
|
|
4
|
-
export declare const LinkResolverPaths: {
|
|
5
|
-
ContactVerification: string;
|
|
6
|
-
PasswordReset: string;
|
|
7
|
-
StudyLogin: string;
|
|
8
|
-
Invitation: string;
|
|
9
|
-
};
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { DefaultRoutes } from "../../../../types/routing";
|
|
10
3
|
interface LinkResolverProps {
|
|
11
4
|
defaultRoutes: DefaultRoutes;
|
|
12
5
|
}
|
package/build/index.d.ts
CHANGED
|
@@ -6,6 +6,11 @@ import * as userAPI from "./api/userAPI";
|
|
|
6
6
|
import { useAuthTokenCheck } from "./hooks/useAuthTokenCheck";
|
|
7
7
|
import PreventAccidentalNavigationPrompt from "./components/misc/PreventAccidentalNavigationPrompt";
|
|
8
8
|
import InternalNavigator from "./components/misc/InternalNavigator";
|
|
9
|
+
import { AppConfig } from "./types/appConfig";
|
|
10
|
+
import { HeaderConfig } from './types/headerConfig';
|
|
11
|
+
import { FooterConfig } from './types/footerConfig';
|
|
12
|
+
import { NavbarConfig } from './types/navbarConfig';
|
|
13
|
+
import { PageConfig, PagesConfig } from './types/pagesConfig';
|
|
9
14
|
declare const coreReduxActions: {
|
|
10
15
|
appActions: import("@reduxjs/toolkit").CaseReducerActions<{
|
|
11
16
|
reset: (state: import("immer/dist/internal").WritableDraft<import("./store/appSlice").AppState>) => import("immer/dist/internal").WritableDraft<import("./store/appSlice").AppState>;
|
|
@@ -71,19 +76,13 @@ declare const coreReduxActions: {
|
|
|
71
76
|
payload: string;
|
|
72
77
|
type: string;
|
|
73
78
|
}) => void;
|
|
74
|
-
initializeActiveSurveys: (state: import("immer/dist/internal").WritableDraft<import("./store/userSlice").UserState>, action: {
|
|
75
|
-
payload: import("./thunks/studiesThunks").ProfilesSurveysMap;
|
|
76
|
-
type: string;
|
|
77
|
-
}) => void;
|
|
78
79
|
}>;
|
|
79
80
|
signupActions: {
|
|
80
81
|
contactVerified: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<string>;
|
|
81
82
|
};
|
|
82
|
-
|
|
83
|
-
fetchStudiesForUserFulfilled: import("@reduxjs/toolkit/dist/createAsyncThunk").AsyncThunkFulfilledActionCreator<import("./thunks/userThunks").ProfileStudiesMap, void, {}>;
|
|
84
|
-
fetchStudiesForUserRejected: import("@reduxjs/toolkit/dist/createAsyncThunk").AsyncThunkRejectedActionCreator<void, {}>;
|
|
83
|
+
studiesActions: import("@reduxjs/toolkit").CaseReducerActions<{}>;
|
|
85
84
|
};
|
|
86
85
|
declare const coreReduxThunks: {
|
|
87
|
-
|
|
86
|
+
enterStudiesThunk: import("@reduxjs/toolkit").AsyncThunk<import("./store/actions/studiesActions").EnterStudiesPayload, import("./store/thunks/studiesThunks").EnterStudiesRequest, {}>;
|
|
88
87
|
};
|
|
89
|
-
export { AppCore, initI18n, store, reducersManager, localStorageManager, studyAPI, userAPI, coreReduxActions, coreReduxThunks, useAuthTokenCheck, PreventAccidentalNavigationPrompt, InternalNavigator, };
|
|
88
|
+
export { AppCore, initI18n, store, reducersManager, localStorageManager, studyAPI, userAPI, coreReduxActions, coreReduxThunks, useAuthTokenCheck, PreventAccidentalNavigationPrompt, InternalNavigator, type AppConfig, type HeaderConfig, type FooterConfig, type NavbarConfig, type PageConfig, type PagesConfig };
|