easyproctor 0.0.38 → 0.0.39

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/esm/index.js CHANGED
@@ -14347,14 +14347,12 @@ function startAudioCapture() {
14347
14347
  });
14348
14348
  }
14349
14349
  async function stop() {
14350
- console.log("inicio");
14351
14350
  const response = await recorder2.stop().getMp3().then(async ([buffer, blob]) => {
14352
14351
  return { buffer, blob };
14353
14352
  }).catch((e) => {
14354
14353
  alert("We could not retrieve your message");
14355
14354
  console.log(e);
14356
14355
  });
14357
- console.log("final");
14358
14356
  return response;
14359
14357
  }
14360
14358
  stopRecord = stop;
@@ -22955,7 +22953,6 @@ function useProctoring(proctoringOptions, proctoringConfig) {
22955
22953
  },
22956
22954
  jwt: proctoringOptions.token
22957
22955
  });
22958
- console.log(`${azureBlobUrl}/` + sessionsDto[0].audioCameraUrl);
22959
22956
  trackers.registerFinish(proctoringId, true, "");
22960
22957
  } catch (error) {
22961
22958
  trackers.registerFinish(proctoringId, false, "finish error: " + error);
package/index.js CHANGED
@@ -22706,14 +22706,12 @@ function startAudioCapture() {
22706
22706
  });
22707
22707
  }
22708
22708
  async function stop() {
22709
- console.log("inicio");
22710
22709
  const response = await recorder2.stop().getMp3().then(async ([buffer, blob]) => {
22711
22710
  return { buffer, blob };
22712
22711
  }).catch((e) => {
22713
22712
  alert("We could not retrieve your message");
22714
22713
  console.log(e);
22715
22714
  });
22716
- console.log("final");
22717
22715
  return response;
22718
22716
  }
22719
22717
  stopRecord = stop;
@@ -23291,7 +23289,6 @@ function useProctoring(proctoringOptions, proctoringConfig) {
23291
23289
  },
23292
23290
  jwt: proctoringOptions.token
23293
23291
  });
23294
- console.log(`${azureBlobUrl}/` + sessionsDto[0].audioCameraUrl);
23295
23292
  trackers.registerFinish(proctoringId, true, "");
23296
23293
  } catch (error) {
23297
23294
  trackers.registerFinish(proctoringId, false, "finish error: " + error);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "easyproctor",
3
- "version": "0.0.38",
3
+ "version": "0.0.39",
4
4
  "description": "Modulo web de gravação do EasyProctor",
5
5
  "main": "./index.js",
6
6
  "module": "./esm/index.js",