@ricado/api-client 2.3.5 → 2.3.8
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/BinTipBinController.js +4 -0
- package/lib/Controllers/Packhouse/Site/ShiftQualitySummaryController.js +1 -0
- 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/BinTipBinModel.js +22 -0
- 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 +815 -33
- package/package.json +1 -1
- package/src/Controllers/Packhouse/Site/BinTipBinCardController.js +1006 -0
- package/src/Controllers/Packhouse/Site/BinTipBinController.js +4 -0
- package/src/Controllers/Packhouse/Site/ShiftQualitySummaryController.js +1 -0
- 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/BinTipBinModel.js +25 -0
- 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,6 +957,8 @@ export default BinTipBinController;
|
|
|
957
957
|
* @typedef {Object} BinTipBinController.GetAllQueryParameters
|
|
958
958
|
* @property {string} [binTipId] The Bin Tip ID associated with this Bin
|
|
959
959
|
* @property {string} [packrunId] The Packrun ID associated with this Bin
|
|
960
|
+
* @property {?string} [binNumber] A 10-Digit Bin Number made up of a Bin Lot (4-Digits) and a Unique Number (6-Digits)
|
|
961
|
+
* @property {?string} [binNumberSource] The Source of the Bin Number
|
|
960
962
|
* @property {?string} [fullBinWeightId] The `BinTipWeight` ID as the Source for the Full Weight of this Bin
|
|
961
963
|
* @property {?string} [emptyBinWeightId] The `BinTipWeight` ID as the Source for the Empty Weight of this Bin
|
|
962
964
|
* @property {Date} [createdTimestampBegin] Filter by the Timestamp when this Bin was Created. Results Greater than or Equal to Timestamp
|
|
@@ -972,6 +974,7 @@ export default BinTipBinController;
|
|
|
972
974
|
* @property {string} [packrunId] The Packrun ID associated with this Bin
|
|
973
975
|
* @property {Date} [createdTimestamp] When this Bin was Created
|
|
974
976
|
* @property {?string} [binNumber] A 10-Digit Bin Number made up of a Bin Lot (4-Digits) and a Unique Number (6-Digits)
|
|
977
|
+
* @property {?string} [binNumberSource] The Source of the Bin Number
|
|
975
978
|
* @property {?string} [timeBatchId] The Time Batch ID associated with this Bin
|
|
976
979
|
* @property {?number} [fullWeight] The Full Weight for this Bin
|
|
977
980
|
* @property {?number} [emptyWeight] The Empty Weight for this Bin
|
|
@@ -988,6 +991,7 @@ export default BinTipBinController;
|
|
|
988
991
|
* @property {string} [binTipId] The Bin Tip ID associated with this Bin
|
|
989
992
|
* @property {Date} [createdTimestamp] When this Bin was Created
|
|
990
993
|
* @property {?string} [binNumber] A 10-Digit Bin Number made up of a Bin Lot (4-Digits) and a Unique Number (6-Digits)
|
|
994
|
+
* @property {?string} [binNumberSource] The Source of the Bin Number
|
|
991
995
|
* @property {?string} [timeBatchId] The Time Batch ID associated with this Bin
|
|
992
996
|
* @property {?number} [fullWeight] The Full Weight for this Bin
|
|
993
997
|
* @property {?number} [emptyWeight] The Empty Weight for this Bin
|
|
@@ -957,6 +957,7 @@ 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 {?Date} [publishTimestamp] When this Quality Summary was Published
|
|
960
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
|