easyproctor 1.0.0 → 1.0.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 +2 -5
- package/esm/index.js +1 -2
- package/index.js +1 -2
- package/package.json +1 -1
- package/unpkg/easyproctor.min.js +11 -11
package/README.md
CHANGED
|
@@ -219,12 +219,9 @@ const {
|
|
|
219
219
|
});
|
|
220
220
|
```
|
|
221
221
|
|
|
222
|
-
## Release Note V 1.0.
|
|
222
|
+
## Release Note V 1.0.1
|
|
223
223
|
|
|
224
|
-
-
|
|
225
|
-
- Adicionado mais eventos da Azure
|
|
226
|
-
- Correção de eventos da Azure
|
|
227
|
-
- Atualização da comunicação com a Extensão do Chrome
|
|
224
|
+
- Retirada de requisição da hora no finish
|
|
228
225
|
|
|
229
226
|
|
|
230
227
|
## License
|
package/esm/index.js
CHANGED
|
@@ -24803,8 +24803,7 @@ var BackendService = class {
|
|
|
24803
24803
|
}
|
|
24804
24804
|
async finishAndSendUrls(proctoringOptions, proctoringSession) {
|
|
24805
24805
|
var _a2, _b, _c;
|
|
24806
|
-
const
|
|
24807
|
-
const serverTime = serverHour ? new Date(serverHour).toISOString() : new Date().toISOString();
|
|
24806
|
+
const serverTime = new Date().toISOString();
|
|
24808
24807
|
const videoCameraUpload = (_a2 = proctoringSession.recordings.find((e) => e.origin === "Camera" /* Camera */)) == null ? void 0 : _a2.upload;
|
|
24809
24808
|
const audioCameraUpload = (_b = proctoringSession.recordings.find((e) => e.origin === "Mic" /* Mic */)) == null ? void 0 : _b.upload;
|
|
24810
24809
|
const videoScreenUpload = (_c = proctoringSession.recordings.find((e) => e.origin === "Screen" /* Screen */)) == null ? void 0 : _c.upload;
|
package/index.js
CHANGED
|
@@ -36337,8 +36337,7 @@ var BackendService = class {
|
|
|
36337
36337
|
}
|
|
36338
36338
|
async finishAndSendUrls(proctoringOptions, proctoringSession) {
|
|
36339
36339
|
var _a, _b, _c;
|
|
36340
|
-
const
|
|
36341
|
-
const serverTime = serverHour ? new Date(serverHour).toISOString() : new Date().toISOString();
|
|
36340
|
+
const serverTime = new Date().toISOString();
|
|
36342
36341
|
const videoCameraUpload = (_a = proctoringSession.recordings.find((e) => e.origin === "Camera" /* Camera */)) == null ? void 0 : _a.upload;
|
|
36343
36342
|
const audioCameraUpload = (_b = proctoringSession.recordings.find((e) => e.origin === "Mic" /* Mic */)) == null ? void 0 : _b.upload;
|
|
36344
36343
|
const videoScreenUpload = (_c = proctoringSession.recordings.find((e) => e.origin === "Screen" /* Screen */)) == null ? void 0 : _c.upload;
|