easyproctor 2.2.0 → 2.3.1
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/README.md +6 -0
- package/errors/errors.d.ts +3 -0
- package/esm/index.js +17031 -10950
- package/index.js +14888 -5083
- package/new-flow/backend/BackendService.d.ts +6 -0
- package/package.json +5 -2
- package/proctoring/ExternalCameraChecker.d.ts +54 -0
- package/proctoring/options/ProctoringOptions.d.ts +1 -0
- package/proctoring/proctoring.d.ts +2 -0
- package/proctoring/useProctoring.d.ts +5 -0
- package/unpkg/easyproctor.min.js +57 -37
package/README.md
CHANGED
|
@@ -263,6 +263,12 @@ const {
|
|
|
263
263
|
token: "...",
|
|
264
264
|
});
|
|
265
265
|
```
|
|
266
|
+
|
|
267
|
+
|
|
268
|
+
|
|
269
|
+
## Release Note V 2.3.0
|
|
270
|
+
- Implementação da funcionalidade de câmera externa (apenas checagem)
|
|
271
|
+
|
|
266
272
|
## Release Note V 2.2.0
|
|
267
273
|
- Retry para stream iniciados com falhas
|
|
268
274
|
- Criação da janela para termo de consentimento
|
package/errors/errors.d.ts
CHANGED
|
@@ -16,3 +16,6 @@ export declare const TOKEN_MISSING = "token_missing";
|
|
|
16
16
|
export declare const CREDENTIALS_MISSING = "credentials_missing";
|
|
17
17
|
export declare const CAMERA_BLOCKED = "camera_blocked";
|
|
18
18
|
export declare const SPY_SCAN_API_NOT_FOUND = "spy_scan_api_not_found";
|
|
19
|
+
export declare const ERROR_ON_MOBILE_APP_NOT_FOUND = "error_on_mobile_app_not_found";
|
|
20
|
+
export declare const EXTERNAL_CAMERA_NOT_STARTED = "external_camera_not_started";
|
|
21
|
+
export declare const EXTERNAL_CAMERA_CHECK_TRANSMISSION = "external_camera_timed_out";
|