easyproctor-hml 0.0.38 → 0.0.40
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/errors/errors.d.ts +1 -0
- package/esm/index.js +9274 -9223
- package/index.js +11859 -11808
- package/new-flow/proctoring/ProctoringSession.d.ts +2 -1
- package/new-flow/recorders/CameraRecorder.d.ts +4 -2
- package/new-flow/recorders/ScreenRecorder.d.ts +4 -0
- package/package.json +2 -2
- package/plugins/insights.d.ts +1 -0
- package/plugins/recorder.d.ts +1 -1
- package/proctoring/CapturePhoto.d.ts +6 -1
- package/proctoring/options/ProctoringOptions.d.ts +1 -0
- package/proctoring/proctoring.d.ts +2 -0
- package/proctoring/useProctoring.d.ts +2 -1
- package/unpkg/easyproctor.min.js +31 -27
- package/unpkg/easyproctor.min.js.map +3 -3
package/errors/errors.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ export declare const SCRIPT_NOT_CALLED_INSIDE_BODY = "script_not_called_inside_b
|
|
|
2
2
|
export declare const INCOMPATIBLE_NAVIGATOR = "incompatible_navigator";
|
|
3
3
|
export declare const REQUIRED_FIELD_NOT_PROVIDED = "required_field_not_provided";
|
|
4
4
|
export declare const NOT_SHARED_FIRST_SCREEN = "not_shared_first_screen";
|
|
5
|
+
export declare const NOT_SHARED_SCREEN = "not_shared_screen";
|
|
5
6
|
export declare const MULTIPLE_MONITORS_DETECTED = "multiple_monitors_detected";
|
|
6
7
|
export declare const PROCTORING_ALREADY_STARTED = "proctoring_already_started";
|
|
7
8
|
export declare const PROCTORING_NOT_STARTED = "proctoring_not_started";
|