@ricado/api-client 2.3.20 → 2.3.22
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/BinTipBarcodeScannerResultController.js +3 -3
- package/lib/Controllers/Packhouse/Site/FreshPackBinLotController.js +877 -0
- package/lib/Controllers/Packhouse/Site/FreshPackFruitTemperatureController.js +892 -0
- package/lib/Controllers/Packhouse/Site/index.js +6 -0
- package/lib/Models/Packhouse/Site/BinTipBarcodeScannerResultModel.js +7 -7
- package/lib/Models/Packhouse/Site/FreshPackBinLotModel.js +265 -0
- package/lib/Models/Packhouse/Site/FreshPackFruitTemperatureModel.js +341 -0
- package/lib/Models/Packhouse/Site/index.js +6 -0
- package/lib/PackageVersion.js +1 -1
- package/lib/index.d.ts +785 -63
- package/package.json +1 -1
- package/src/Controllers/Packhouse/Site/BinTipBarcodeScannerResultController.js +3 -3
- package/src/Controllers/Packhouse/Site/FreshPackBinLotController.js +1008 -0
- package/src/Controllers/Packhouse/Site/FreshPackFruitTemperatureController.js +1023 -0
- package/src/Controllers/Packhouse/Site/index.js +4 -0
- package/src/Models/Packhouse/Site/BinTipBarcodeScannerResultModel.js +7 -7
- package/src/Models/Packhouse/Site/FreshPackBinLotModel.js +248 -0
- package/src/Models/Packhouse/Site/FreshPackFruitTemperatureModel.js +347 -0
- package/src/Models/Packhouse/Site/index.js +4 -0
- package/src/PackageVersion.js +1 -1
package/package.json
CHANGED
|
@@ -149,7 +149,7 @@ export default BinTipBarcodeScannerResultController;
|
|
|
149
149
|
* @typedef {Object} BinTipBarcodeScannerResultController.GetAllQueryParameters
|
|
150
150
|
* @property {string} [barcodeScannerId] The Bin Tip Barcode Scanner ID associated with this Result
|
|
151
151
|
* @property {string} [binNumber] A 10-Digit Bin Number made up of a Bin Lot (4-Digits) and a Unique Number (6-Digits)
|
|
152
|
-
* @property {string} [
|
|
152
|
+
* @property {string} [scanMode] The Mode of the Barcode Scanner when creating this Barcode Scanner Result
|
|
153
153
|
* @property {?string} [packrunId] The Packrun ID associated with this Barcode Scanner Result
|
|
154
154
|
* @property {Date} [createdTimestampBegin] Filter by the Timestamp when this Barcode Scanner Result was Created. Results Greater than or Equal to Timestamp
|
|
155
155
|
* @property {Date} [createdTimestampEnd] Filter by the Timestamp when this Barcode Scanner Result was Created. Results Less than or Equal to Timestamp
|
|
@@ -163,7 +163,7 @@ export default BinTipBarcodeScannerResultController;
|
|
|
163
163
|
* @property {string} barcodeScannerId The Bin Tip Barcode Scanner ID associated with this Result
|
|
164
164
|
* @property {string} [binNumber] A 10-Digit Bin Number made up of a Bin Lot (4-Digits) and a Unique Number (6-Digits)
|
|
165
165
|
* @property {Date} [createdTimestamp] When this Barcode Scanner Result was Created
|
|
166
|
-
* @property {string}
|
|
166
|
+
* @property {string} scanMode The Mode of the Barcode Scanner when creating this Barcode Scanner Result
|
|
167
167
|
* @property {?string} [packrunId] The Packrun ID associated with this Barcode Scanner Result
|
|
168
168
|
* @property {boolean} result Whether the Bin Number was Valid and could be matched with a Current or Scheduled Packrun
|
|
169
169
|
* @property {?string} resultMessage An Optional Message to accompany the Result. Typically only present when the Result is **false**
|
|
@@ -176,7 +176,7 @@ export default BinTipBarcodeScannerResultController;
|
|
|
176
176
|
* @typedef {Object} BinTipBarcodeScannerResultController.UpdateData
|
|
177
177
|
* @property {string} [barcodeScannerId] The Bin Tip Barcode Scanner ID associated with this Result
|
|
178
178
|
* @property {Date} [createdTimestamp] When this Barcode Scanner Result was Created
|
|
179
|
-
* @property {string} [
|
|
179
|
+
* @property {string} [scanMode] The Mode of the Barcode Scanner when creating this Barcode Scanner Result
|
|
180
180
|
* @property {?string} [packrunId] The Packrun ID associated with this Barcode Scanner Result
|
|
181
181
|
* @property {boolean} [result] Whether the Bin Number was Valid and could be matched with a Current or Scheduled Packrun
|
|
182
182
|
* @property {?string} [resultMessage] An Optional Message to accompany the Result. Typically only present when the Result is **false**
|