easyproctor 2.5.1 → 2.5.3
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 +12 -0
- package/esm/index.js +3012 -188
- package/index.js +3010 -188
- package/interfaces/ParamsConfig.d.ts +2 -1
- package/new-flow/backend/BackendService.d.ts +1 -1
- package/new-flow/proctoring/ProctoringSession.d.ts +8 -4
- package/new-flow/recorders/AlertRecorder.d.ts +20 -4
- package/new-flow/recorders/CameraRecorder.d.ts +2 -1
- package/new-flow/recorders/NoiseRecorder.d.ts +7 -0
- package/new-flow/upload/UploadService.d.ts +1 -0
- package/package.json +3 -1
- package/proctoring/proctoring.d.ts +8 -3
- package/proctoring/useProctoring.d.ts +3 -3
- package/unpkg/easyproctor.min.js +64 -45
package/README.md
CHANGED
|
@@ -263,6 +263,18 @@ const {
|
|
|
263
263
|
token: "...",
|
|
264
264
|
});
|
|
265
265
|
```
|
|
266
|
+
## Release Note V 2.5.3
|
|
267
|
+
- Fix: Resolução do video
|
|
268
|
+
- Melhorias no proctoring do tipo REALTIME
|
|
269
|
+
|
|
270
|
+
## Release Note V 2.5.2
|
|
271
|
+
- Alteração do nome do callback 'onFinish' para 'onResultAvailable'
|
|
272
|
+
- Melhorias no proctoring do tipo REALTIME
|
|
273
|
+
|
|
274
|
+
## Release Note V 2.5.1
|
|
275
|
+
- Novos atributos no callback de 'onFinish'
|
|
276
|
+
- scoreThreshold: limiar de aprovação da sessão de proctoring
|
|
277
|
+
- justification: em caso de reprovação, esse campo traz o resumo das irregularidades
|
|
266
278
|
|
|
267
279
|
## Release Note V 2.5.0
|
|
268
280
|
- Callback de 'onFinish' no hook de finish que permite o acesso ao resultado da auditoria de forma imediata
|