@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
|
@@ -170,7 +170,7 @@ var _default = BinTipBarcodeScannerResultController;
|
|
|
170
170
|
* @typedef {Object} BinTipBarcodeScannerResultController.GetAllQueryParameters
|
|
171
171
|
* @property {string} [barcodeScannerId] The Bin Tip Barcode Scanner ID associated with this Result
|
|
172
172
|
* @property {string} [binNumber] A 10-Digit Bin Number made up of a Bin Lot (4-Digits) and a Unique Number (6-Digits)
|
|
173
|
-
* @property {string} [
|
|
173
|
+
* @property {string} [scanMode] The Mode of the Barcode Scanner when creating this Barcode Scanner Result
|
|
174
174
|
* @property {?string} [packrunId] The Packrun ID associated with this Barcode Scanner Result
|
|
175
175
|
* @property {Date} [createdTimestampBegin] Filter by the Timestamp when this Barcode Scanner Result was Created. Results Greater than or Equal to Timestamp
|
|
176
176
|
* @property {Date} [createdTimestampEnd] Filter by the Timestamp when this Barcode Scanner Result was Created. Results Less than or Equal to Timestamp
|
|
@@ -184,7 +184,7 @@ var _default = BinTipBarcodeScannerResultController;
|
|
|
184
184
|
* @property {string} barcodeScannerId The Bin Tip Barcode Scanner ID associated with this Result
|
|
185
185
|
* @property {string} [binNumber] A 10-Digit Bin Number made up of a Bin Lot (4-Digits) and a Unique Number (6-Digits)
|
|
186
186
|
* @property {Date} [createdTimestamp] When this Barcode Scanner Result was Created
|
|
187
|
-
* @property {string}
|
|
187
|
+
* @property {string} scanMode The Mode of the Barcode Scanner when creating this Barcode Scanner Result
|
|
188
188
|
* @property {?string} [packrunId] The Packrun ID associated with this Barcode Scanner Result
|
|
189
189
|
* @property {boolean} result Whether the Bin Number was Valid and could be matched with a Current or Scheduled Packrun
|
|
190
190
|
* @property {?string} resultMessage An Optional Message to accompany the Result. Typically only present when the Result is **false**
|
|
@@ -197,7 +197,7 @@ var _default = BinTipBarcodeScannerResultController;
|
|
|
197
197
|
* @typedef {Object} BinTipBarcodeScannerResultController.UpdateData
|
|
198
198
|
* @property {string} [barcodeScannerId] The Bin Tip Barcode Scanner ID associated with this Result
|
|
199
199
|
* @property {Date} [createdTimestamp] When this Barcode Scanner Result was Created
|
|
200
|
-
* @property {string} [
|
|
200
|
+
* @property {string} [scanMode] The Mode of the Barcode Scanner when creating this Barcode Scanner Result
|
|
201
201
|
* @property {?string} [packrunId] The Packrun ID associated with this Barcode Scanner Result
|
|
202
202
|
* @property {boolean} [result] Whether the Bin Number was Valid and could be matched with a Current or Scheduled Packrun
|
|
203
203
|
* @property {?string} [resultMessage] An Optional Message to accompany the Result. Typically only present when the Result is **false**
|