@ricado/api-client 2.3.4 → 2.3.7
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/dist/ricado.api.client.js +1 -1
- package/lib/Controllers/Packhouse/Site/BinTipBinCardController.js +875 -0
- package/lib/Controllers/Packhouse/Site/ShiftQualitySummaryController.js +4 -3
- package/lib/Controllers/Packhouse/Site/SoftSortPackrunSummaryController.js +891 -0
- package/lib/Controllers/Packhouse/Site/index.js +6 -0
- package/lib/Models/Packhouse/Site/BinTipBinCardModel.js +235 -0
- package/lib/Models/Packhouse/Site/ShiftQualitySummaryModel.js +2 -6
- package/lib/Models/Packhouse/Site/SoftSortPackrunSummaryModel.js +373 -0
- package/lib/Models/Packhouse/Site/index.js +6 -0
- package/lib/PackageVersion.js +1 -1
- package/lib/index.d.ts +806 -47
- package/package.json +1 -1
- package/src/Controllers/Packhouse/Site/BinTipBinCardController.js +1006 -0
- package/src/Controllers/Packhouse/Site/ShiftQualitySummaryController.js +4 -3
- package/src/Controllers/Packhouse/Site/SoftSortPackrunSummaryController.js +1022 -0
- package/src/Controllers/Packhouse/Site/index.js +4 -0
- package/src/Models/Packhouse/Site/BinTipBinCardModel.js +215 -0
- package/src/Models/Packhouse/Site/ShiftQualitySummaryModel.js +2 -7
- package/src/Models/Packhouse/Site/SoftSortPackrunSummaryModel.js +370 -0
- package/src/Models/Packhouse/Site/index.js +4 -0
- package/src/PackageVersion.js +1 -1
|
@@ -957,7 +957,8 @@ export default ShiftQualitySummaryController;
|
|
|
957
957
|
* @typedef {Object} ShiftQualitySummaryController.GetAllQueryParameters
|
|
958
958
|
* @property {string} [packingLineId] The Packing Line ID this Quality Summary is associated with
|
|
959
959
|
* @property {string} [shiftId] The Shift ID this Quality Summary is asssociated with
|
|
960
|
-
* @property {?
|
|
960
|
+
* @property {?Date} [publishTimestamp] When this Quality Summary was Published
|
|
961
|
+
* @property {string} [qualityManagerUserId] The User ID of the Quality Manager for this Summary
|
|
961
962
|
* @property {string} [qualityManagerName] The Name of the Quality Manager for this Summary
|
|
962
963
|
* @property {Date} [createdTimestampBegin] Filter by the Timestamp when Quality Summaries were Created. Results Greater than or Equal to Timestamp
|
|
963
964
|
* @property {Date} [createdTimestampEnd] Filter by the Timestamp when Quality Summaries were Created. Results Less than or Equal to Timestamp
|
|
@@ -974,7 +975,7 @@ export default ShiftQualitySummaryController;
|
|
|
974
975
|
* @property {string} [shiftId] The Shift ID this Quality Summary is asssociated with
|
|
975
976
|
* @property {Date} [createdTimestamp] When this Quality Summary was Created
|
|
976
977
|
* @property {?Date} [publishTimestamp] When this Quality Summary was Published
|
|
977
|
-
* @property {
|
|
978
|
+
* @property {string} qualityManagerUserId The User ID of the Quality Manager for this Summary
|
|
978
979
|
* @property {string} qualityManagerName The Name of the Quality Manager for this Summary
|
|
979
980
|
* @property {Array<ShiftQualitySummaryController.AccuracyResult>} [accuracyResults] An Array of Accuracy Results for this Summary
|
|
980
981
|
* @property {Array<ShiftQualitySummaryController.AuditResult>} [auditResults] An Array of Audit Results for this Summary
|
|
@@ -990,7 +991,7 @@ export default ShiftQualitySummaryController;
|
|
|
990
991
|
* @property {string} [packingLineId] The Packing Line ID this Quality Summary is associated with
|
|
991
992
|
* @property {Date} [createdTimestamp] When this Quality Summary was Created
|
|
992
993
|
* @property {?Date} [publishTimestamp] When this Quality Summary was Published
|
|
993
|
-
* @property {
|
|
994
|
+
* @property {string} [qualityManagerUserId] The User ID of the Quality Manager for this Summary
|
|
994
995
|
* @property {string} [qualityManagerName] The Name of the Quality Manager for this Summary
|
|
995
996
|
* @property {Array<ShiftQualitySummaryController.AccuracyResult>} [accuracyResults] An Array of Accuracy Results for this Summary
|
|
996
997
|
* @property {Array<ShiftQualitySummaryController.AuditResult>} [auditResults] An Array of Audit Results for this Summary
|