touchstudy-core 0.1.81 → 0.1.83
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/dist/components/Chats/configs/types.d.ts +1 -0
- package/dist/components/Print/configs/constants.d.ts +4 -0
- package/dist/containers/ExamResult/hooks/usePrintView.d.ts +2 -0
- package/dist/containers/ExamResult/views/PrintExamResult.d.ts +2 -0
- package/dist/containers/Login/apiClient/index.d.ts +15 -0
- package/dist/containers/Login/configs/helpers.d.ts +1 -0
- package/dist/containers/Login/hooks/useLogin.d.ts +21 -4
- package/dist/containers/Login/hooks/useLoginWithEmail.d.ts +10 -0
- package/dist/containers/Login/views/Login.d.ts +1 -1
- package/dist/containers/Login/views/LoginWithEmail.d.ts +11 -0
- package/dist/containers/Login/views/block/BlockLogin.d.ts +15 -1
- package/dist/index.css +6 -0
- package/dist/index.d.ts +2 -1
- package/dist/index.js +586 -105
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +585 -105
- package/dist/index.modern.js.map +1 -1
- package/dist/services/recentUserActionService.d.ts +4 -4
- package/dist/utils/types/login.d.ts +1 -0
- package/dist/utils/types/recentUserAction.d.ts +1 -2
- package/package.json +1 -1
@@ -1,10 +1,10 @@
|
|
1
|
-
import { Role } from "../utils/constants";
|
2
1
|
import { RecentUserAction } from "../utils/enums/recentUserAction";
|
3
2
|
import { RecentUserActionQuery } from "../utils/types/index";
|
4
3
|
export declare const getRecentUserActionListApi: (query: RecentUserActionQuery) => Promise<import("axios").AxiosResponse<any, any>>;
|
5
|
-
export declare
|
4
|
+
export declare type RecentUserData = {
|
6
5
|
userId: number;
|
7
6
|
action: RecentUserAction;
|
8
7
|
data: string;
|
9
|
-
|
10
|
-
}
|
8
|
+
isAdmin?: boolean;
|
9
|
+
};
|
10
|
+
export declare const createRecentUserActionListApi: (recentData: RecentUserData) => Promise<import("axios").AxiosResponse<any, any>>;
|
@@ -1,4 +1,3 @@
|
|
1
|
-
import { Role } from "../constants";
|
2
1
|
export declare type RecentUserActionResponse = {
|
3
2
|
id: number;
|
4
3
|
action: string;
|
@@ -21,7 +20,7 @@ export declare type RecentUserActionQuery = {
|
|
21
20
|
sortColumnName: RecentUserActionSortBy;
|
22
21
|
textSearch?: string;
|
23
22
|
sortColumnDirection: OrderBy;
|
24
|
-
|
23
|
+
isAdmin?: boolean;
|
25
24
|
isNewest: boolean;
|
26
25
|
};
|
27
26
|
export declare enum RecentUserActionSortBy {
|