@7365admin1/module-hygiene 4.3.0 → 4.4.0
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/CHANGELOG.md +6 -0
- package/dist/index.js +10 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +10 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -1122,6 +1122,11 @@ function useAreaService() {
|
|
|
1122
1122
|
skippedRows.push(i + 1);
|
|
1123
1123
|
continue;
|
|
1124
1124
|
}
|
|
1125
|
+
if (areaName.startsWith("Sample:")) {
|
|
1126
|
+
import_node_server_utils5.logger.warn(`Skipping row ${i + 1} with sample area: ${areaName}`);
|
|
1127
|
+
skippedRows.push(i + 1);
|
|
1128
|
+
continue;
|
|
1129
|
+
}
|
|
1125
1130
|
try {
|
|
1126
1131
|
const insertedId = await _createArea({
|
|
1127
1132
|
type: areaType,
|
|
@@ -1653,6 +1658,11 @@ function useUnitService() {
|
|
|
1653
1658
|
skippedRows.push(i + 1);
|
|
1654
1659
|
continue;
|
|
1655
1660
|
}
|
|
1661
|
+
if (unitName.startsWith("Sample:")) {
|
|
1662
|
+
import_node_server_utils9.logger.warn(`Skipping row ${i + 1} with sample unit: ${unitName}`);
|
|
1663
|
+
skippedRows.push(i + 1);
|
|
1664
|
+
continue;
|
|
1665
|
+
}
|
|
1656
1666
|
try {
|
|
1657
1667
|
const insertedId = await _createUnit({
|
|
1658
1668
|
name: unitName,
|