easyproctor 0.0.83 → 0.0.85

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
@@ -24299,19 +24299,9 @@ async function makeRequestAxios(data) {
24299
24299
  }
24300
24300
 
24301
24301
  // src/modules/upload.ts
24302
- var account = "";
24303
- var containerName = "";
24304
- var sas = "";
24305
- var blobServiceClient;
24306
24302
  var message = "";
24307
24303
  var loadingInterval;
24308
24304
  var loadingBoolean = true;
24309
- async function setConfiguration(_account, _cointainerName, _sas) {
24310
- account = _account;
24311
- containerName = _cointainerName;
24312
- sas = _sas;
24313
- blobServiceClient = new BlobServiceClient(`https://${account}.blob.core.windows.net${sas}`);
24314
- }
24315
24305
  function sendError(proctoringId) {
24316
24306
  trackers.registerError(proctoringId, message);
24317
24307
  }
@@ -24719,7 +24709,6 @@ function useProctoring(proctoringOptions, homolConfig = false) {
24719
24709
  method: "GET",
24720
24710
  jwt: proctoringOptions.token
24721
24711
  });
24722
- setConfiguration(config.account, config.containerName, config.sas);
24723
24712
  azureBlobUrl = config.azureBlobUrl;
24724
24713
  init(config.insights);
24725
24714
  }
@@ -24913,7 +24902,6 @@ function useProctoring(proctoringOptions, homolConfig = false) {
24913
24902
  method: "GET",
24914
24903
  jwt: proctoringOptions.token
24915
24904
  });
24916
- setConfiguration(config.account, config.containerName, config.sas);
24917
24905
  azureBlobUrl = config.azureBlobUrl;
24918
24906
  }
24919
24907
  } catch (error) {
package/index.js CHANGED
@@ -35833,19 +35833,9 @@ async function makeRequestAxios(data) {
35833
35833
  }
35834
35834
 
35835
35835
  // src/modules/upload.ts
35836
- var account = "";
35837
- var containerName = "";
35838
- var sas = "";
35839
- var blobServiceClient;
35840
35836
  var message = "";
35841
35837
  var loadingInterval;
35842
35838
  var loadingBoolean = true;
35843
- async function setConfiguration(_account, _cointainerName, _sas) {
35844
- account = _account;
35845
- containerName = _cointainerName;
35846
- sas = _sas;
35847
- blobServiceClient = new import_storage_blob.BlobServiceClient(`https://${account}.blob.core.windows.net${sas}`);
35848
- }
35849
35839
  function sendError(proctoringId) {
35850
35840
  trackers.registerError(proctoringId, message);
35851
35841
  }
@@ -36253,7 +36243,6 @@ function useProctoring(proctoringOptions, homolConfig = false) {
36253
36243
  method: "GET",
36254
36244
  jwt: proctoringOptions.token
36255
36245
  });
36256
- setConfiguration(config.account, config.containerName, config.sas);
36257
36246
  azureBlobUrl = config.azureBlobUrl;
36258
36247
  init(config.insights);
36259
36248
  }
@@ -36447,7 +36436,6 @@ function useProctoring(proctoringOptions, homolConfig = false) {
36447
36436
  method: "GET",
36448
36437
  jwt: proctoringOptions.token
36449
36438
  });
36450
- setConfiguration(config.account, config.containerName, config.sas);
36451
36439
  azureBlobUrl = config.azureBlobUrl;
36452
36440
  }
36453
36441
  } catch (error) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "easyproctor",
3
- "version": "0.0.83",
3
+ "version": "0.0.85",
4
4
  "description": "Modulo web de gravação do EasyProctor",
5
5
  "main": "./index.js",
6
6
  "module": "./esm/index.js",