@ricado/api-client 2.6.0 → 2.7.0
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/PackingLineController.js +2 -1
- package/lib/Controllers/Packhouse/Site/ReemoonSizerBatchController.js +915 -0
- package/lib/Controllers/Packhouse/Site/ReemoonSizerController.js +300 -0
- package/lib/Controllers/Packhouse/Site/ReemoonSizerOutletProductChangeController.js +885 -0
- package/lib/Controllers/Packhouse/Site/ReemoonSizerPackrunSummaryController.js +914 -0
- package/lib/Controllers/Packhouse/Site/index.js +12 -0
- package/lib/Models/Packhouse/Site/PackingLineModel.js +38 -1
- package/lib/Models/Packhouse/Site/ReemoonSizerBatchModel.js +547 -0
- package/lib/Models/Packhouse/Site/ReemoonSizerModel.js +1272 -0
- package/lib/Models/Packhouse/Site/ReemoonSizerOutletProductChangeModel.js +293 -0
- package/lib/Models/Packhouse/Site/ReemoonSizerPackrunSummaryModel.js +461 -0
- package/lib/Models/Packhouse/Site/index.js +12 -0
- package/lib/PackageVersion.js +1 -1
- package/lib/index.d.ts +7128 -5158
- package/package.json +1 -1
- package/src/Controllers/Packhouse/Site/PackingLineController.js +2 -1
- package/src/Controllers/Packhouse/Site/ReemoonSizerBatchController.js +1046 -0
- package/src/Controllers/Packhouse/Site/ReemoonSizerController.js +277 -0
- package/src/Controllers/Packhouse/Site/ReemoonSizerOutletProductChangeController.js +1016 -0
- package/src/Controllers/Packhouse/Site/ReemoonSizerPackrunSummaryController.js +1045 -0
- package/src/Controllers/Packhouse/Site/index.js +8 -0
- package/src/Models/Packhouse/Site/PackingLineModel.js +49 -1
- package/src/Models/Packhouse/Site/ReemoonSizerBatchModel.js +596 -0
- package/src/Models/Packhouse/Site/ReemoonSizerModel.js +1576 -0
- package/src/Models/Packhouse/Site/ReemoonSizerOutletProductChangeModel.js +280 -0
- package/src/Models/Packhouse/Site/ReemoonSizerPackrunSummaryModel.js +501 -0
- package/src/Models/Packhouse/Site/index.js +8 -0
- package/src/PackageVersion.js +1 -1
|
@@ -666,7 +666,7 @@ var _default = PackingLineController;
|
|
|
666
666
|
* A **FreshQualityIntegration** Type
|
|
667
667
|
*
|
|
668
668
|
* @typedef {Object} PackingLineController.FreshQualityIntegration
|
|
669
|
-
* @property {{currentPackrunSamples: number, apiCommunicationStatus: number, currentPackrunMajorPackingDefects: number, currentPackrunMinorPackingDefects: number, currentPackrunTotalPackingDefects: number, currentPackrunFutureStorageDefects: number, currentPackrunMajorPackingDefectsCount: number, currentPackrunMinorPackingDefectsCount: number, currentPackrunTotalPackingDefectsCount: number, currentPackrunFutureStorageDefectsCount: number, currentPackrunRejectAnalysisSamples: ?number, currentPackrunMaturityAreaSamples: ?number, sampleTypes: ?number}} points The Points used for this FreshQuality Integration
|
|
669
|
+
* @property {{currentPackrunSamples: number, apiCommunicationStatus: number, currentPackrunMajorPackingDefects: number, currentPackrunMinorPackingDefects: number, currentPackrunTotalPackingDefects: number, currentPackrunFutureStorageDefects: number, currentPackrunMajorPackingDefectsCount: number, currentPackrunMinorPackingDefectsCount: number, currentPackrunTotalPackingDefectsCount: number, currentPackrunFutureStorageDefectsCount: number, currentPackrunRejectAnalysisSamples: ?number, currentPackrunMaturityAreaSamples: ?number, currentPackrunCustomSamples: ?number, sampleTypes: ?number}} points The Points used for this FreshQuality Integration
|
|
670
670
|
* @property {boolean} enabled Whether the FreshQuality Integration is Enabled on this Packing Line
|
|
671
671
|
* @property {string} username Username for Authenticating with the FreshQuality API
|
|
672
672
|
* @property {string} password Password for Authenticating with the FreshQuality API
|
|
@@ -674,6 +674,7 @@ var _default = PackingLineController;
|
|
|
674
674
|
* @property {number[]} sampleTypeIds An Array of FreshQuality Sample Type IDs that are used for Class 1 R600 on this Packing Line
|
|
675
675
|
* @property {number[]} rejectAnalysisSampleTypeIds An Array of FreshQuality Sample Type IDs that are used for Reject Analysis on this Packing Line
|
|
676
676
|
* @property {number[]} maturityAreaSampleTypeIds An Array of FreshQuality Sample Type IDs that should be fetched for Maturity Area Samples on this Packing Line
|
|
677
|
+
* @property {number[]} customSampleTypeIds An Array of FreshQuality Sample Type IDs that should be fetched for Custom Samples on this Packing Line
|
|
677
678
|
* @memberof Controllers.Packhouse.Site
|
|
678
679
|
*/
|
|
679
680
|
|