easyproctor 0.0.59 → 0.0.61

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
@@ -53100,12 +53100,15 @@ File name: ${file.name}
53100
53100
  `;
53101
53101
  message += `File type: ${file.type}
53102
53102
  `;
53103
+ trackers.registerError(proctoringId, message);
53103
53104
  try {
53104
53105
  uploadBackup(data);
53105
53106
  } catch (err) {
53106
53107
  message += "\nError on AWS Upload";
53108
+ sendError(proctoringId);
53107
53109
  throw err;
53108
53110
  }
53111
+ sendError(proctoringId);
53109
53112
  throw error;
53110
53113
  });
53111
53114
  message += "Blob: Step 5\n";
package/index.js CHANGED
@@ -77861,12 +77861,15 @@ File name: ${file.name}
77861
77861
  `;
77862
77862
  message += `File type: ${file.type}
77863
77863
  `;
77864
+ trackers.registerError(proctoringId, message);
77864
77865
  try {
77865
77866
  uploadBackup(data);
77866
77867
  } catch (err) {
77867
77868
  message += "\nError on AWS Upload";
77869
+ sendError(proctoringId);
77868
77870
  throw err;
77869
77871
  }
77872
+ sendError(proctoringId);
77870
77873
  throw error;
77871
77874
  });
77872
77875
  message += "Blob: Step 5\n";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "easyproctor",
3
- "version": "0.0.59",
3
+ "version": "0.0.61",
4
4
  "description": "Modulo web de gravação do EasyProctor",
5
5
  "main": "./index.js",
6
6
  "module": "./esm/index.js",