easyproctor 2.4.0 → 2.5.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 +15 -0
- package/esm/index.js +431 -82
- package/index.js +431 -82
- package/interfaces/Devices.d.ts +1 -0
- package/modules/BaseDetection.d.ts +1 -0
- package/modules/faceDetection.d.ts +2 -0
- package/modules/objectDetection.d.ts +1 -0
- package/modules/onChangeDevices.d.ts +4 -1
- package/new-flow/backend/BackendService.d.ts +9 -2
- package/new-flow/proctoring/ProctoringSession.d.ts +11 -1
- package/new-flow/recorders/AlertRecorder.d.ts +5 -1
- package/new-flow/recorders/CameraRecorder.d.ts +6 -0
- package/new-flow/recorders/ScreenRecorder.d.ts +4 -0
- package/package.json +1 -1
- package/plugins/insights.d.ts +1 -0
- package/proctoring/options/ProctoringOptions.d.ts +5 -0
- package/proctoring/proctoring.d.ts +5 -0
- package/proctoring/useProctoring.d.ts +1 -1
- package/unpkg/easyproctor.min.js +39 -39
package/README.md
CHANGED
|
@@ -263,6 +263,21 @@ const {
|
|
|
263
263
|
token: "...",
|
|
264
264
|
});
|
|
265
265
|
```
|
|
266
|
+
|
|
267
|
+
## Release Note V 2.5.0
|
|
268
|
+
- Callback de 'onFinish' no hook de finish que permite o acesso ao resultado da auditoria de forma imediata
|
|
269
|
+
- Melhorias no proctoring em tempo real
|
|
270
|
+
- Melhorias no monitoramento ativo durante o exame
|
|
271
|
+
- Novos tipos de alertas do onRealtimeAlerts:
|
|
272
|
+
- position_detection_on_stream:
|
|
273
|
+
- wrong_face_size_detected: Face muito perto da câmera, afaste-se um pouco mais
|
|
274
|
+
- wrong_face_position_edge_detected: Face muito próxima da borda, mova-se para o centro da tela
|
|
275
|
+
- wrong_face_position_move_right_detected: Face não centralizada, mova-se para a direita
|
|
276
|
+
- wrong_face_position_move_top_detected: Face não centralizada, mova-se para cima
|
|
277
|
+
- wrong_face_position_move_left_detected: Face não centralizada, mova-se para a esquerda
|
|
278
|
+
- wrong_face_position_move_bottom_detected: Face não centralizada, mova-se para baixo
|
|
279
|
+
|
|
280
|
+
|
|
266
281
|
## Release Note V 2.4.0
|
|
267
282
|
- Compatibilidade com dispositivos móveis
|
|
268
283
|
|