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.
Files changed (58) hide show
  1. package/dtos/AlertDTO.d.ts +5 -5
  2. package/dtos/SaveScreenDTO.d.ts +5 -5
  3. package/dtos/SessionDTO.d.ts +10 -10
  4. package/dtos/StartProctoringResponse.d.ts +12 -12
  5. package/dtos/UploadDataDTO.d.ts +5 -5
  6. package/errors/errors.d.ts +18 -19
  7. package/esm/index.js +4435 -9304
  8. package/extension/extensionEasyCatcher.d.ts +11 -0
  9. package/extension/{extension.d.ts → extensionEasyProctor.d.ts} +11 -11
  10. package/index.d.ts +1 -1
  11. package/index.js +2445 -10154
  12. package/interfaces/Devices.d.ts +12 -11
  13. package/interfaces/ParamsConfig.d.ts +34 -34
  14. package/modules/BaseDetection.d.ts +39 -39
  15. package/modules/SpyCam.d.ts +31 -31
  16. package/modules/checkPermissions.d.ts +2 -2
  17. package/modules/enumarateDevices.d.ts +2 -2
  18. package/modules/faceDetection.d.ts +15 -15
  19. package/modules/objectDetection.d.ts +15 -15
  20. package/modules/onChangeDevices.d.ts +12 -9
  21. package/new-flow/backend/BackendService.d.ts +47 -48
  22. package/new-flow/backend/SpyCamBackendService.d.ts +27 -27
  23. package/new-flow/checkers/DeviceCheckerService.d.ts +61 -59
  24. package/new-flow/checkers/DeviceCheckerUI.d.ts +51 -51
  25. package/new-flow/download/IDownloadService.d.ts +4 -4
  26. package/new-flow/download/downloadService.d.ts +9 -9
  27. package/new-flow/proctoring/ProctoringRecorder.d.ts +12 -12
  28. package/new-flow/proctoring/ProctoringSession.d.ts +66 -65
  29. package/new-flow/proctoring/ProctoringUploader.d.ts +14 -14
  30. package/new-flow/recorders/AlertRecorder.d.ts +25 -21
  31. package/new-flow/recorders/AudioRecorder.d.ts +24 -24
  32. package/new-flow/recorders/CameraRecorder.d.ts +69 -69
  33. package/new-flow/recorders/IRecorder.d.ts +12 -12
  34. package/new-flow/recorders/NoiseRecorder.d.ts +46 -46
  35. package/new-flow/recorders/ScreenRecorder.d.ts +34 -30
  36. package/new-flow/recorders/VolumeMeter.d.ts +14 -14
  37. package/new-flow/repository/ISessionRepository.d.ts +11 -11
  38. package/new-flow/repository/IndexDbSessionRepository.d.ts +20 -20
  39. package/new-flow/upload/IUploadService.d.ts +10 -10
  40. package/new-flow/upload/UploadService.d.ts +13 -13
  41. package/new-flow/upload/uploadCalback.d.ts +1 -1
  42. package/package.json +2 -5
  43. package/plugins/insights.d.ts +20 -19
  44. package/plugins/recorder.d.ts +9 -9
  45. package/proctoring/Auth.d.ts +11 -11
  46. package/proctoring/CapturePhoto.d.ts +21 -21
  47. package/proctoring/DeviceChecker.d.ts +57 -57
  48. package/proctoring/SignTerm.d.ts +15 -15
  49. package/proctoring/options/ProctoringOptions.d.ts +19 -15
  50. package/proctoring/options/ProctoringVideoOptions.d.ts +8 -8
  51. package/proctoring/proctoring.d.ts +89 -83
  52. package/proctoring/useProctoring.d.ts +26 -25
  53. package/unpkg/easyproctor.min.js +44 -52
  54. package/utils/browserInformations.d.ts +1 -1
  55. package/utils/geolocation.d.ts +15 -15
  56. package/utils/time.d.ts +3 -3
  57. package/utils/verifyVersion.d.ts +1 -1
  58. 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 Extension {
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";