touchstudy-core 0.1.83 → 0.1.85
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/abc/index.d.ts +2 -0
- package/dist/abc.js +4 -0
- package/dist/abc.js.map +1 -0
- package/dist/abc.modern.js +4 -0
- package/dist/abc.modern.js.map +1 -0
- package/dist/containers/Login/apiClient/index.d.ts +2 -5
- package/dist/containers/Login/configs/types.d.ts +11 -0
- package/dist/containers/Login/hooks/useLogin.d.ts +2 -4
- package/dist/containers/Select/Category/hook/useCategorySelect.d.ts +0 -1
- package/dist/containers/Textbooks/apiClient/articleService.d.ts +5 -6
- package/dist/containers/Textbooks/apiClient/chapterService.d.ts +5 -6
- package/dist/containers/Textbooks/apiClient/textbookService.d.ts +5 -6
- package/dist/containers/Textbooks/hooks/useTextbookDetail.d.ts +2 -0
- package/dist/index.js +172 -154
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +172 -154
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
- package/dist/components/Selectors/InActiveAcademySelector.d.ts +0 -16
- package/dist/components/Selectors/TimeZoneSelector.d.ts +0 -9
- package/dist/components/Selectors/configs/enums.d.ts +0 -6
- package/dist/components/Selects/styles.d.ts +0 -6
- package/dist/containers/ExamResult/components/Dialog/PrintDialog.d.ts +0 -6
- package/dist/containers/ExamResult/views/ExamResultView.d.ts +0 -11
- package/dist/containers/ExamResult/views/PrintPdfExamResult.d.ts +0 -12
- package/dist/containers/Textbooks/components/ChapterNameDialog.d.ts +0 -10
- package/dist/test/performance_login.d.ts +0 -5
- package/dist/tests/performances/do-exam-session-list-student.d.ts +0 -19
- package/dist/tests/performances/do-exam-session-request-answer-one-time.d.ts +0 -19
- package/dist/tests/performances/do-exam-session-skip-answer.d.ts +0 -19
- package/dist/tests/performances/do-exam-session2.d.ts +0 -19
- package/dist/tests/performances/do-exam.d.ts +0 -15
- package/dist/tests/performances/join-exam.d.ts +0 -13
- package/dist/tests/performances/login.d.ts +0 -20
- package/dist/tests/performances/ramping-vus.d.ts +0 -7
- package/dist/utilities.d.ts +0 -1
- package/dist/utils/enums/orderBy.d.ts +0 -4
- package/dist/utils/hooks/useCheckExam.d.ts +0 -5
- /package/dist/utils/types/{PagingResponse.d.ts → pagingResponse.d.ts} +0 -0
package/package.json
CHANGED
@@ -1,16 +0,0 @@
|
|
1
|
-
import { FC } from "react";
|
2
|
-
import { Role } from "../../utils/constants";
|
3
|
-
interface Props {
|
4
|
-
value?: any;
|
5
|
-
onChange: any;
|
6
|
-
externalAcademyIds?: number[];
|
7
|
-
title?: string;
|
8
|
-
isMulti?: boolean;
|
9
|
-
minimumTextSearchLength?: number;
|
10
|
-
isDisabled?: boolean;
|
11
|
-
defaultValueAtFirst?: boolean;
|
12
|
-
placeholder?: string;
|
13
|
-
role: Role;
|
14
|
-
}
|
15
|
-
declare const InActiveAcademySelector: FC<Props>;
|
16
|
-
export default InActiveAcademySelector;
|
@@ -1,9 +0,0 @@
|
|
1
|
-
import { CustomSelectOptionProps } from "../Selects/CustomSelectOption";
|
2
|
-
import { TimeZoneLabels } from "./configs/enums";
|
3
|
-
import { FC } from "react";
|
4
|
-
interface Props extends CustomSelectOptionProps {
|
5
|
-
value?: number;
|
6
|
-
timeZoneLabelType?: TimeZoneLabels;
|
7
|
-
}
|
8
|
-
declare const TimeZoneSelector: FC<Props>;
|
9
|
-
export default TimeZoneSelector;
|
@@ -1,11 +0,0 @@
|
|
1
|
-
import { FC } from "react";
|
2
|
-
declare type Props = {
|
3
|
-
searchParams: string;
|
4
|
-
history: any;
|
5
|
-
examSessionId?: number;
|
6
|
-
studentId?: number;
|
7
|
-
code?: string;
|
8
|
-
isMyStoryStudent?: boolean;
|
9
|
-
};
|
10
|
-
declare const ExamResultV2: FC<Props>;
|
11
|
-
export default ExamResultV2;
|
@@ -1,12 +0,0 @@
|
|
1
|
-
import { FC } from "react";
|
2
|
-
declare type Props = {
|
3
|
-
searchParams: string;
|
4
|
-
history: any;
|
5
|
-
examSessionId?: number;
|
6
|
-
studentId?: number;
|
7
|
-
code?: string;
|
8
|
-
isMyStoryStudent?: boolean;
|
9
|
-
setNotFound?: Function;
|
10
|
-
};
|
11
|
-
declare const PrintPdfExamResult: FC<Props>;
|
12
|
-
export default PrintPdfExamResult;
|
@@ -1,10 +0,0 @@
|
|
1
|
-
import { FC } from "react";
|
2
|
-
import { ChapterOption } from "../configs/types";
|
3
|
-
interface Props {
|
4
|
-
open: boolean;
|
5
|
-
chapter?: ChapterOption;
|
6
|
-
onClose: () => void;
|
7
|
-
onSubmitForm: (name: string) => void;
|
8
|
-
}
|
9
|
-
declare const ChapterNameDialog: FC<Props>;
|
10
|
-
export default ChapterNameDialog;
|
@@ -1,19 +0,0 @@
|
|
1
|
-
export function setup(): {
|
2
|
-
id: number;
|
3
|
-
code: string;
|
4
|
-
teacherAuthorizeHeaders: {
|
5
|
-
Authorization: string;
|
6
|
-
} & {
|
7
|
-
"Academy-Headers": string;
|
8
|
-
"Content-Type": string;
|
9
|
-
"Accept-Language": string;
|
10
|
-
};
|
11
|
-
}[];
|
12
|
-
export default function _default(data: any): void;
|
13
|
-
export namespace options {
|
14
|
-
export { MAX_DEMO_STUDENTS as vus };
|
15
|
-
export { MAX_DEMO_STUDENTS as iterations };
|
16
|
-
}
|
17
|
-
declare const AcademyHeaders: "Academy-Headers";
|
18
|
-
declare const MAX_DEMO_STUDENTS: number;
|
19
|
-
export {};
|
@@ -1,19 +0,0 @@
|
|
1
|
-
export function setup(): {
|
2
|
-
id: number;
|
3
|
-
code: string;
|
4
|
-
teacherAuthorizeHeaders: {
|
5
|
-
Authorization: string;
|
6
|
-
} & {
|
7
|
-
"Academy-Headers": string;
|
8
|
-
"Content-Type": string;
|
9
|
-
"Accept-Language": string;
|
10
|
-
};
|
11
|
-
}[];
|
12
|
-
export default function _default(data: any): void;
|
13
|
-
export namespace options {
|
14
|
-
export { MAX_DEMO_STUDENTS as vus };
|
15
|
-
export { MAX_DEMO_STUDENTS as iterations };
|
16
|
-
}
|
17
|
-
declare const AcademyHeaders: "Academy-Headers";
|
18
|
-
declare const MAX_DEMO_STUDENTS: 200;
|
19
|
-
export {};
|
@@ -1,19 +0,0 @@
|
|
1
|
-
export function setup(): {
|
2
|
-
id: number;
|
3
|
-
code: string;
|
4
|
-
teacherAuthorizeHeaders: {
|
5
|
-
Authorization: string;
|
6
|
-
} & {
|
7
|
-
"Academy-Headers": string;
|
8
|
-
"Content-Type": string;
|
9
|
-
"Accept-Language": string;
|
10
|
-
};
|
11
|
-
}[];
|
12
|
-
export default function _default(data: any): void;
|
13
|
-
export namespace options {
|
14
|
-
export { MAX_DEMO_STUDENTS as vus };
|
15
|
-
export { MAX_DEMO_STUDENTS as iterations };
|
16
|
-
}
|
17
|
-
declare const AcademyHeaders: "Academy-Headers";
|
18
|
-
declare const MAX_DEMO_STUDENTS: 96;
|
19
|
-
export {};
|
@@ -1,19 +0,0 @@
|
|
1
|
-
export function setup(): {
|
2
|
-
id: number;
|
3
|
-
code: string;
|
4
|
-
teacherAuthorizeHeaders: {
|
5
|
-
Authorization: string;
|
6
|
-
} & {
|
7
|
-
"Academy-Headers": string;
|
8
|
-
"Content-Type": string;
|
9
|
-
"Accept-Language": string;
|
10
|
-
};
|
11
|
-
}[];
|
12
|
-
export default function _default(data: any): void;
|
13
|
-
export namespace options {
|
14
|
-
export { MAX_DEMO_STUDENTS as vus };
|
15
|
-
export { MAX_DEMO_STUDENTS as iterations };
|
16
|
-
}
|
17
|
-
declare const AcademyHeaders: "Academy-Headers";
|
18
|
-
declare const MAX_DEMO_STUDENTS: 400;
|
19
|
-
export {};
|
@@ -1,15 +0,0 @@
|
|
1
|
-
export function teacherScenario(): void;
|
2
|
-
export function studentsScenario(): void;
|
3
|
-
export function setup(): {
|
4
|
-
abc: string;
|
5
|
-
};
|
6
|
-
export default function _default(data: any): void;
|
7
|
-
export namespace options {
|
8
|
-
export namespace scenarios {
|
9
|
-
export namespace students_scenario {
|
10
|
-
export const executor: string;
|
11
|
-
export const vus: number;
|
12
|
-
export const iterations: number;
|
13
|
-
}
|
14
|
-
}
|
15
|
-
}
|
@@ -1,13 +0,0 @@
|
|
1
|
-
export function teacherGetOrCreateExamSession(): any;
|
2
|
-
export function studentsScenario(code: any): void;
|
3
|
-
export function setup(): any;
|
4
|
-
export default function _default(data: any): void;
|
5
|
-
export namespace options {
|
6
|
-
export namespace scenarios {
|
7
|
-
export namespace students_scenario {
|
8
|
-
export const executor: string;
|
9
|
-
export const vus: number;
|
10
|
-
export const iterations: number;
|
11
|
-
}
|
12
|
-
}
|
13
|
-
}
|
@@ -1,20 +0,0 @@
|
|
1
|
-
export function teacher_scenario(): void;
|
2
|
-
export function students_scenario(): void;
|
3
|
-
export default function _default(): void;
|
4
|
-
export namespace options {
|
5
|
-
export namespace scenarios {
|
6
|
-
export namespace teacher_scenario {
|
7
|
-
export const executor: string;
|
8
|
-
export const vus: number;
|
9
|
-
export const iterations: number;
|
10
|
-
}
|
11
|
-
export namespace students_scenario {
|
12
|
-
const executor_1: string;
|
13
|
-
export { executor_1 as executor };
|
14
|
-
const vus_1: number;
|
15
|
-
export { vus_1 as vus };
|
16
|
-
const iterations_1: number;
|
17
|
-
export { iterations_1 as iterations };
|
18
|
-
}
|
19
|
-
}
|
20
|
-
}
|
package/dist/utilities.d.ts
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
export { Language as Language } from "./utils/constants";
|
File without changes
|