easyproctor 2.0.3 → 2.1.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 +8 -0
- package/esm/index.js +7872 -7679
- package/index.js +8680 -8487
- package/modules/BaseDetection.d.ts +1 -0
- package/new-flow/checkers/DeviceCheckerService.d.ts +54 -0
- package/new-flow/checkers/DeviceCheckerUI.d.ts +49 -0
- package/new-flow/recorders/CameraRecorder.d.ts +2 -0
- package/package.json +1 -1
- package/plugins/insights.d.ts +2 -0
- package/plugins/recorder.d.ts +2 -0
- package/proctoring/options/ProctoringVideoOptions.d.ts +1 -0
- package/proctoring/useProctoring.d.ts +5 -1
- package/unpkg/easyproctor.min.js +166 -151
package/README.md
CHANGED
|
@@ -263,6 +263,14 @@ const {
|
|
|
263
263
|
token: "...",
|
|
264
264
|
});
|
|
265
265
|
```
|
|
266
|
+
## Release Note V 2.1.1
|
|
267
|
+
- Escolha automatica do codec suportado (vp8/vp9)
|
|
268
|
+
- Não é mais obrigatório passar width e height no check devices
|
|
269
|
+
- Melhorias nos logs
|
|
270
|
+
|
|
271
|
+
## Release Note V 2.1.0
|
|
272
|
+
- Criação do runCheckDevicesFlow que permite que o usuário receba a lógica do checkDevices() em um modal próprio
|
|
273
|
+
|
|
266
274
|
## Release Note V 2.0.3
|
|
267
275
|
- Otimização na gravação de áudio removendo necessidade de download de scripts
|
|
268
276
|
|