easyproctor-hml 2.5.34 → 2.5.35

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.
@@ -37,6 +37,7 @@ export declare class CameraRecorder implements IRecorder {
37
37
  private hardwareStream;
38
38
  private internalClonedStream;
39
39
  private videoElement;
40
+ private duration;
40
41
  constructor(options: {
41
42
  cameraId?: string;
42
43
  microphoneId?: string;
@@ -8,7 +8,8 @@ export declare class ScreenRecorder implements IRecorder {
8
8
  recorder: RecordRTCPromisesHandler | undefined;
9
9
  screenStream: MediaStream | undefined;
10
10
  proctoringId: string | undefined;
11
- startTime: Date | undefined;
11
+ startTime: Date;
12
+ duration: number;
12
13
  constructor(options: {
13
14
  allowOnlyFirstMonitor: boolean;
14
15
  allowMultipleMonitors: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "easyproctor-hml",
3
- "version": "2.5.34",
3
+ "version": "2.5.35",
4
4
  "description": "Modulo web de gravação do EasyProctor",
5
5
  "main": "./index.js",
6
6
  "module": "./esm/index.js",
@@ -43,6 +43,7 @@
43
43
  "axios": "^1.1.3",
44
44
  "file-saver": "^2.0.5",
45
45
  "qrcode": "^1.5.4",
46
- "recordrtc": "^5.6.2"
46
+ "recordrtc": "^5.6.2",
47
+ "fix-webm-duration": "^1.0.1"
47
48
  }
48
49
  }