easyproctor-hml 2.3.2 → 2.4.0
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/dtos/AlertDTO.d.ts +5 -5
- package/dtos/SaveScreenDTO.d.ts +5 -5
- package/dtos/SessionDTO.d.ts +10 -10
- package/dtos/StartProctoringResponse.d.ts +12 -12
- package/dtos/UploadDataDTO.d.ts +5 -5
- package/errors/errors.d.ts +18 -19
- package/esm/index.js +4435 -9304
- package/extension/extensionEasyCatcher.d.ts +11 -0
- package/extension/{extension.d.ts → extensionEasyProctor.d.ts} +11 -11
- package/index.d.ts +1 -1
- package/index.js +2445 -10154
- package/interfaces/Devices.d.ts +12 -11
- package/interfaces/ParamsConfig.d.ts +34 -34
- package/modules/BaseDetection.d.ts +39 -39
- package/modules/SpyCam.d.ts +31 -31
- package/modules/checkPermissions.d.ts +2 -2
- package/modules/enumarateDevices.d.ts +2 -2
- package/modules/faceDetection.d.ts +15 -15
- package/modules/objectDetection.d.ts +15 -15
- package/modules/onChangeDevices.d.ts +12 -9
- package/new-flow/backend/BackendService.d.ts +47 -48
- package/new-flow/backend/SpyCamBackendService.d.ts +27 -27
- package/new-flow/checkers/DeviceCheckerService.d.ts +61 -59
- package/new-flow/checkers/DeviceCheckerUI.d.ts +51 -51
- package/new-flow/download/IDownloadService.d.ts +4 -4
- package/new-flow/download/downloadService.d.ts +9 -9
- package/new-flow/proctoring/ProctoringRecorder.d.ts +12 -12
- package/new-flow/proctoring/ProctoringSession.d.ts +66 -65
- package/new-flow/proctoring/ProctoringUploader.d.ts +14 -14
- package/new-flow/recorders/AlertRecorder.d.ts +25 -21
- package/new-flow/recorders/AudioRecorder.d.ts +24 -24
- package/new-flow/recorders/CameraRecorder.d.ts +69 -69
- package/new-flow/recorders/IRecorder.d.ts +12 -12
- package/new-flow/recorders/NoiseRecorder.d.ts +46 -46
- package/new-flow/recorders/ScreenRecorder.d.ts +34 -30
- package/new-flow/recorders/VolumeMeter.d.ts +14 -14
- package/new-flow/repository/ISessionRepository.d.ts +11 -11
- package/new-flow/repository/IndexDbSessionRepository.d.ts +20 -20
- package/new-flow/upload/IUploadService.d.ts +10 -10
- package/new-flow/upload/UploadService.d.ts +13 -13
- package/new-flow/upload/uploadCalback.d.ts +1 -1
- package/package.json +2 -5
- package/plugins/insights.d.ts +20 -19
- package/plugins/recorder.d.ts +9 -9
- package/proctoring/Auth.d.ts +11 -11
- package/proctoring/CapturePhoto.d.ts +21 -21
- package/proctoring/DeviceChecker.d.ts +57 -57
- package/proctoring/SignTerm.d.ts +15 -15
- package/proctoring/options/ProctoringOptions.d.ts +19 -15
- package/proctoring/options/ProctoringVideoOptions.d.ts +8 -8
- package/proctoring/proctoring.d.ts +89 -83
- package/proctoring/useProctoring.d.ts +26 -25
- package/unpkg/easyproctor.min.js +44 -52
- package/utils/browserInformations.d.ts +1 -1
- package/utils/geolocation.d.ts +15 -15
- package/utils/time.d.ts +3 -3
- package/utils/verifyVersion.d.ts +1 -1
- package/proctoring/ExternalCameraChecker.d.ts +0 -47
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ProctoringFinisherOptions } from "../proctoring/proctoring";
|
|
2
|
+
export declare class ExtensionEasyCatcher {
|
|
3
|
+
hasExtension: boolean;
|
|
4
|
+
tryes: number;
|
|
5
|
+
responseStart: boolean;
|
|
6
|
+
options: ProctoringFinisherOptions;
|
|
7
|
+
constructor(options?: ProctoringFinisherOptions);
|
|
8
|
+
checkExtensionInstalled(timeoutMs?: number): Promise<string>;
|
|
9
|
+
getSessionData(timeoutMs?: number): Promise<any>;
|
|
10
|
+
start(): Promise<boolean>;
|
|
11
|
+
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { ProctoringFinisherOptions } from "../proctoring/proctoring";
|
|
2
|
-
export declare class
|
|
3
|
-
hasExtension: boolean;
|
|
4
|
-
tryes: number;
|
|
5
|
-
responseStart: boolean;
|
|
6
|
-
options: ProctoringFinisherOptions;
|
|
7
|
-
start(): Promise<boolean>;
|
|
8
|
-
sendVerifyMsg(link: string, token: string): void;
|
|
9
|
-
private verify;
|
|
10
|
-
addEventListener(): void;
|
|
11
|
-
}
|
|
1
|
+
import { ProctoringFinisherOptions } from "../proctoring/proctoring";
|
|
2
|
+
export declare class ExtensionEasyProctor {
|
|
3
|
+
hasExtension: boolean;
|
|
4
|
+
tryes: number;
|
|
5
|
+
responseStart: boolean;
|
|
6
|
+
options: ProctoringFinisherOptions;
|
|
7
|
+
start(): Promise<boolean>;
|
|
8
|
+
sendVerifyMsg(link: string, token: string): void;
|
|
9
|
+
private verify;
|
|
10
|
+
addEventListener(): void;
|
|
11
|
+
}
|
package/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { useProctoring } from "./proctoring/useProctoring";
|
|
1
|
+
export { useProctoring } from "./proctoring/useProctoring";
|