@plmtest/plmtrustlink-enum-management 2.4.17 → 2.4.19
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/package.json +1 -2
- package/src/enum.js +5 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plmtest/plmtrustlink-enum-management",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.19",
|
|
4
4
|
"description": "Package that manages enums used in plmtrustlink",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"author": "PLM Fleet, LLC",
|
|
@@ -29,4 +29,3 @@
|
|
|
29
29
|
},
|
|
30
30
|
"gitHead": "44e048c3297ab412c7702c350a087dd9fd5c7cff"
|
|
31
31
|
}
|
|
32
|
-
|
package/src/enum.js
CHANGED
|
@@ -460,7 +460,8 @@ const DOCUMENT_ENTITY_TYPES = Object.freeze({
|
|
|
460
460
|
CONFIG_PORTAL_TEMPLATE_ITEM: 'item',
|
|
461
461
|
CONFIG_PORTAL_TEMPLATE_CONTAINER: 'container',
|
|
462
462
|
CONFIG_PORTAL_TEMPLATE_TRAILER: 'trailer',
|
|
463
|
-
READERS: 'readers'
|
|
463
|
+
READERS: 'readers',
|
|
464
|
+
FIXED_READERS: 'fixed readers'
|
|
464
465
|
})
|
|
465
466
|
|
|
466
467
|
// -------- Process --------
|
|
@@ -721,7 +722,9 @@ const WORKBENCH_REPORTS_SUBMODULES_FILTER = Object.freeze({
|
|
|
721
722
|
DELIVERY_COMPLETION_REPORT: 'Delivery Completion',
|
|
722
723
|
PROOF_OF_BUILD: 'Proof Of Build',
|
|
723
724
|
INBOUND_PRODUCT_REPORT: 'Inbound Product Report',
|
|
724
|
-
OUTBOUND_PRODUCT_REPORT: 'Outbound Product Report'
|
|
725
|
+
OUTBOUND_PRODUCT_REPORT: 'Outbound Product Report',
|
|
726
|
+
PRODUCT_SHELF_LIFE_OPTIMIZER_REPORT: 'Product Shelf Life Optimizer Report',
|
|
727
|
+
PRODUCT_WEIGHT_COMPLIANCE_REPORT: 'Product Weight Compliance Report'
|
|
725
728
|
})
|
|
726
729
|
|
|
727
730
|
const WORKBENCH_DATAMANAGEMENT_SUBMODULES_IMPORT = Object.freeze({
|