easyproctor 0.0.85 → 0.0.87

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.
Files changed (44) hide show
  1. package/README.md +2 -3
  2. package/{interfaces/ProctoringConfig.d.ts → dtos/ProctoringConfigDto.d.ts} +1 -1
  3. package/dtos/UploadDataDTO.d.ts +5 -0
  4. package/esm/index.js +10074 -9940
  5. package/index.d.ts +1 -57
  6. package/index.js +25748 -25614
  7. package/new-flow/backend/BackendService.d.ts +47 -0
  8. package/new-flow/download/IDownloadService.d.ts +4 -0
  9. package/new-flow/download/downloadService.d.ts +10 -0
  10. package/new-flow/proctoring/ProctoringRecorder.d.ts +10 -0
  11. package/new-flow/proctoring/ProctoringSession.d.ts +52 -0
  12. package/new-flow/proctoring/ProctoringUploader.d.ts +13 -0
  13. package/new-flow/recorders/AlertRecorder.d.ts +19 -0
  14. package/new-flow/recorders/AudioRecorder.d.ts +13 -0
  15. package/new-flow/recorders/CameraRecorder.d.ts +22 -0
  16. package/new-flow/recorders/IRecorder.d.ts +8 -0
  17. package/new-flow/recorders/ScreenRecorder.d.ts +19 -0
  18. package/new-flow/repository/ISessionRepository.d.ts +9 -0
  19. package/new-flow/repository/IndexDbSessionRepository.d.ts +17 -0
  20. package/new-flow/upload/AwsUploadService.d.ts +9 -0
  21. package/new-flow/upload/AzureUploadService.d.ts +9 -0
  22. package/new-flow/upload/IUploadService.d.ts +10 -0
  23. package/new-flow/upload/uploadCalback.d.ts +1 -0
  24. package/package.json +2 -10
  25. package/plugins/MicRecorder2.d.ts +11 -0
  26. package/plugins/insights.d.ts +0 -1
  27. package/{modules → plugins}/recorder.d.ts +0 -0
  28. package/proctoring/DeviceChecker.d.ts +13 -0
  29. package/proctoring/options/ProctoringOptions.d.ts +10 -0
  30. package/proctoring/options/ProctoringVideoOptions.d.ts +5 -0
  31. package/proctoring/proctoring.d.ts +55 -0
  32. package/proctoring/useProctoring.d.ts +29 -0
  33. package/unpkg/easyproctor.min.js +20 -26
  34. package/utils/verifyVersion.d.ts +1 -0
  35. package/interfaces/ProctoringRecord.d.ts +0 -15
  36. package/modules/database.d.ts +0 -7
  37. package/modules/http.d.ts +0 -19
  38. package/modules/recorder copy.d.ts +0 -1
  39. package/modules/recorderAudio.d.ts +0 -1
  40. package/modules/startAudioCapture.d.ts +0 -2
  41. package/modules/startCameraCapture.d.ts +0 -10
  42. package/modules/startScreenCapture.d.ts +0 -7
  43. package/modules/upload.d.ts +0 -8
  44. package/modules/upload_sdk.d.ts +0 -8
package/README.md CHANGED
@@ -219,10 +219,9 @@ const {
219
219
  });
220
220
  ```
221
221
 
222
- ## Release Note V 0.0.83
222
+ ## Release Note V 0.0.84
223
223
 
224
- - Download do exame sem internet
225
- - Adicionado trackers para verificar o fluxo e os arquivos
224
+ - Deploy fluxo novo para testes
226
225
 
227
226
  ## License
228
227
 
@@ -1,4 +1,4 @@
1
- export interface ProctoringConfig {
1
+ export interface ProctoringConfigDto {
2
2
  azureBlobUrl: string;
3
3
  baseUrl: string;
4
4
  account: string;
@@ -0,0 +1,5 @@
1
+ import { ProgressCallback } from "../new-flow/upload/uploadCalback";
2
+ export default interface UploadDataDTO {
3
+ file: File;
4
+ onProgress?: ProgressCallback;
5
+ }