@ricado/api-client 2.5.11 → 2.5.13
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/ShiftController.js +1784 -190
- package/lib/Models/Packhouse/Site/PackingLineModel.js +38 -1
- package/lib/Models/Packhouse/Site/ShiftModel.js +99 -1
- package/lib/PackageVersion.js +1 -1
- package/lib/index.d.ts +5161 -4689
- package/package.json +2 -2
- package/src/Controllers/Packhouse/Site/PackingLineController.js +2 -1
- package/src/Controllers/Packhouse/Site/ShiftController.js +2027 -0
- package/src/Models/Packhouse/Site/PackingLineModel.js +49 -1
- package/src/Models/Packhouse/Site/ShiftModel.js +124 -0
- package/src/PackageVersion.js +1 -1
- package/types/tslint.json +3 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ricado/api-client",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.13",
|
|
4
4
|
"description": "RICADO Gen 4 API Client Library for NodeJS and Browsers",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Ash Neilson"
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"jsdoc-memberof-namespace": "^2.2.0",
|
|
61
61
|
"rimraf": "^3.0.2",
|
|
62
62
|
"tidy-jsdoc": "^1.4.0",
|
|
63
|
-
"typescript": "
|
|
63
|
+
"typescript": "^5.4.5",
|
|
64
64
|
"webpack": "^5.43.0",
|
|
65
65
|
"webpack-bundle-analyzer": "^4.4.2",
|
|
66
66
|
"webpack-cli": "^4.7.2"
|
|
@@ -645,12 +645,13 @@ export default PackingLineController;
|
|
|
645
645
|
* A **FreshQualityIntegration** Type
|
|
646
646
|
*
|
|
647
647
|
* @typedef {Object} PackingLineController.FreshQualityIntegration
|
|
648
|
-
* @property {{currentPackrunSamples: number, apiCommunicationStatus: number, currentPackrunMajorPackingDefects: number, currentPackrunMinorPackingDefects: number, currentPackrunTotalPackingDefects: number, currentPackrunFutureStorageDefects: number, currentPackrunMajorPackingDefectsCount: number, currentPackrunMinorPackingDefectsCount: number, currentPackrunTotalPackingDefectsCount: number, currentPackrunFutureStorageDefectsCount: number, currentPackrunRejectAnalysisSamples: ?number, sampleTypes: ?number}} points The Points used for this FreshQuality Integration
|
|
648
|
+
* @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
|
|
649
649
|
* @property {boolean} enabled Whether the FreshQuality Integration is Enabled on this Packing Line
|
|
650
650
|
* @property {string} username Username for Authenticating with the FreshQuality API
|
|
651
651
|
* @property {string} password Password for Authenticating with the FreshQuality API
|
|
652
652
|
* @property {string} apiBaseUrl Base URL of the FreshQuality API
|
|
653
653
|
* @property {number[]} sampleTypeIds An Array of FreshQuality Sample Type IDs that are used for Class 1 R600 on this Packing Line
|
|
654
654
|
* @property {number[]} rejectAnalysisSampleTypeIds An Array of FreshQuality Sample Type IDs that are used for Reject Analysis on this Packing Line
|
|
655
|
+
* @property {number[]} maturityAreaSampleTypeIds An Array of FreshQuality Sample Type IDs that should be fetched for Maturity Area Samples on this Packing Line
|
|
655
656
|
* @memberof Controllers.Packhouse.Site
|
|
656
657
|
*/
|