scheduler-node-models 1.2.54 → 1.2.55
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/general/report.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.ExcelRowIngest = void 0;
|
|
4
|
-
const exceljs_1 = require("
|
|
4
|
+
const exceljs_1 = require("exceljs");
|
|
5
5
|
const sites_1 = require("../sites");
|
|
6
6
|
const teams_1 = require("../teams");
|
|
7
7
|
const excelRow_1 = require("./excelRow");
|
|
@@ -57,7 +57,7 @@ class ExcelRowIngest {
|
|
|
57
57
|
const fileBinary = Buffer.from(fileDataU8);
|
|
58
58
|
const workbook = new exceljs_1.Workbook();
|
|
59
59
|
console.log(`password = ${password}`);
|
|
60
|
-
await workbook.xlsx.load(fileBinary.buffer
|
|
60
|
+
await workbook.xlsx.load(fileBinary.buffer);
|
|
61
61
|
workbook.eachSheet((sheet, s) => {
|
|
62
62
|
console.log(sheet.name);
|
|
63
63
|
});
|
|
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.SAPIngest = void 0;
|
|
4
4
|
const teams_1 = require("../teams");
|
|
5
5
|
const excelRow_1 = require("./excelRow");
|
|
6
|
-
const exceljs_1 = require("
|
|
6
|
+
const exceljs_1 = require("exceljs");
|
|
7
7
|
class SAPIngest {
|
|
8
8
|
files;
|
|
9
9
|
team;
|