lms-sync 1.0.40 → 1.0.41
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.
|
@@ -50,6 +50,10 @@ const server = {
|
|
|
50
50
|
|
|
51
51
|
await db.sequelize.query(`CREATE SEQUENCE IF NOT EXISTS ${db_schema}."Semesters__id_seq"`);
|
|
52
52
|
await db.sequelize.query(`ALTER SEQUENCE ${db_schema}."Semesters__id_seq" RESTART WITH ${maxIdSems + 1}`);
|
|
53
|
+
|
|
54
|
+
let createdCounter = 0
|
|
55
|
+
let errorCounter = 0
|
|
56
|
+
let uniqueErrors = new Set()
|
|
53
57
|
|
|
54
58
|
let userDefPayload = {
|
|
55
59
|
email: 'ccci_integrator@gmail.com',
|
|
@@ -141,11 +145,6 @@ const server = {
|
|
|
141
145
|
defaults: campusDefPayload
|
|
142
146
|
});
|
|
143
147
|
|
|
144
|
-
let createdCounter = 0
|
|
145
|
-
let errorCounter = 0
|
|
146
|
-
let uniqueErrors = new Set()
|
|
147
|
-
|
|
148
|
-
|
|
149
148
|
|
|
150
149
|
let uCode = new Set()
|
|
151
150
|
let uName = new Set()
|