easyproctor 2.1.0 → 2.2.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/README.md +10 -0
- package/errors/errors.d.ts +1 -0
- package/esm/index.js +856 -148
- package/index.js +856 -148
- package/interfaces/ParamsConfig.d.ts +3 -0
- package/modules/SpyCam.d.ts +31 -0
- package/new-flow/backend/BackendService.d.ts +3 -1
- package/new-flow/backend/SpyCamBackendService.d.ts +27 -0
- package/new-flow/checkers/DeviceCheckerService.d.ts +6 -1
- package/new-flow/checkers/DeviceCheckerUI.d.ts +2 -0
- package/new-flow/proctoring/ProctoringSession.d.ts +12 -2
- package/new-flow/recorders/CameraRecorder.d.ts +8 -2
- package/new-flow/recorders/IRecorder.d.ts +3 -1
- package/package.json +2 -2
- package/plugins/insights.d.ts +3 -2
- package/plugins/recorder.d.ts +4 -1
- package/proctoring/SignTerm.d.ts +15 -0
- package/proctoring/options/ProctoringOptions.d.ts +1 -0
- package/proctoring/options/ProctoringVideoOptions.d.ts +1 -0
- package/proctoring/proctoring.d.ts +2 -1
- package/proctoring/useProctoring.d.ts +3 -2
- package/unpkg/easyproctor.min.js +34 -25
package/README.md
CHANGED
|
@@ -263,6 +263,16 @@ const {
|
|
|
263
263
|
token: "...",
|
|
264
264
|
});
|
|
265
265
|
```
|
|
266
|
+
## Release Note V 2.2.0
|
|
267
|
+
- Retry para stream iniciados com falhas
|
|
268
|
+
- Criação da janela para termo de consentimento
|
|
269
|
+
- Criação da funcionalidade de varredura de ambiente em busca de cameras espiãs
|
|
270
|
+
- Melhorias nos logs
|
|
271
|
+
|
|
272
|
+
## Release Note V 2.1.1
|
|
273
|
+
- Escolha automatica do codec suportado (vp8/vp9)
|
|
274
|
+
- Não é mais obrigatório passar width e height no check devices
|
|
275
|
+
- Melhorias nos logs
|
|
266
276
|
|
|
267
277
|
## Release Note V 2.1.0
|
|
268
278
|
- Criação do runCheckDevicesFlow que permite que o usuário receba a lógica do checkDevices() em um modal próprio
|
package/errors/errors.d.ts
CHANGED
|
@@ -15,3 +15,4 @@ export declare const BROWSER_NOT_SUPPORTED = "browser_not_supported";
|
|
|
15
15
|
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
|
+
export declare const SPY_SCAN_API_NOT_FOUND = "spy_scan_api_not_found";
|