@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
|
@@ -824,6 +824,8 @@ var _default = BinTipBinController;
|
|
|
824
824
|
* @typedef {Object} BinTipBinController.GetAllQueryParameters
|
|
825
825
|
* @property {string} [binTipId] The Bin Tip ID associated with this Bin
|
|
826
826
|
* @property {string} [packrunId] The Packrun ID associated with this Bin
|
|
827
|
+
* @property {?string} [binNumber] A 10-Digit Bin Number made up of a Bin Lot (4-Digits) and a Unique Number (6-Digits)
|
|
828
|
+
* @property {?string} [binNumberSource] The Source of the Bin Number
|
|
827
829
|
* @property {?string} [fullBinWeightId] The `BinTipWeight` ID as the Source for the Full Weight of this Bin
|
|
828
830
|
* @property {?string} [emptyBinWeightId] The `BinTipWeight` ID as the Source for the Empty Weight of this Bin
|
|
829
831
|
* @property {Date} [createdTimestampBegin] Filter by the Timestamp when this Bin was Created. Results Greater than or Equal to Timestamp
|
|
@@ -839,6 +841,7 @@ var _default = BinTipBinController;
|
|
|
839
841
|
* @property {string} [packrunId] The Packrun ID associated with this Bin
|
|
840
842
|
* @property {Date} [createdTimestamp] When this Bin was Created
|
|
841
843
|
* @property {?string} [binNumber] A 10-Digit Bin Number made up of a Bin Lot (4-Digits) and a Unique Number (6-Digits)
|
|
844
|
+
* @property {?string} [binNumberSource] The Source of the Bin Number
|
|
842
845
|
* @property {?string} [timeBatchId] The Time Batch ID associated with this Bin
|
|
843
846
|
* @property {?number} [fullWeight] The Full Weight for this Bin
|
|
844
847
|
* @property {?number} [emptyWeight] The Empty Weight for this Bin
|
|
@@ -855,6 +858,7 @@ var _default = BinTipBinController;
|
|
|
855
858
|
* @property {string} [binTipId] The Bin Tip ID associated with this Bin
|
|
856
859
|
* @property {Date} [createdTimestamp] When this Bin was Created
|
|
857
860
|
* @property {?string} [binNumber] A 10-Digit Bin Number made up of a Bin Lot (4-Digits) and a Unique Number (6-Digits)
|
|
861
|
+
* @property {?string} [binNumberSource] The Source of the Bin Number
|
|
858
862
|
* @property {?string} [timeBatchId] The Time Batch ID associated with this Bin
|
|
859
863
|
* @property {?number} [fullWeight] The Full Weight for this Bin
|
|
860
864
|
* @property {?number} [emptyWeight] The Empty Weight for this Bin
|
|
@@ -824,6 +824,7 @@ var _default = ShiftQualitySummaryController;
|
|
|
824
824
|
* @typedef {Object} ShiftQualitySummaryController.GetAllQueryParameters
|
|
825
825
|
* @property {string} [packingLineId] The Packing Line ID this Quality Summary is associated with
|
|
826
826
|
* @property {string} [shiftId] The Shift ID this Quality Summary is asssociated with
|
|
827
|
+
* @property {?Date} [publishTimestamp] When this Quality Summary was Published
|
|
827
828
|
* @property {string} [qualityManagerUserId] The User ID of the Quality Manager for this Summary
|
|
828
829
|
* @property {string} [qualityManagerName] The Name of the Quality Manager for this Summary
|
|
829
830
|
* @property {Date} [createdTimestampBegin] Filter by the Timestamp when Quality Summaries were Created. Results Greater than or Equal to Timestamp
|