@ricado/api-client 2.3.18 → 2.3.19
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/CompacSizerBinWeightController.js +2 -2
- package/lib/Controllers/Packhouse/Site/CompacSizerController.js +2 -2
- package/lib/Controllers/Packhouse/Site/MAFSizerController.js +2 -2
- package/lib/Controllers/Packhouse/Site/PackingLineController.js +2 -2
- package/lib/Controllers/Packhouse/Site/RejectBinScaleController.js +2 -2
- package/lib/Controllers/Packhouse/Site/RejectBinWeightController.js +2 -2
- package/lib/Models/Packhouse/Site/CompacSizerBinWeightModel.js +1 -1
- package/lib/Models/Packhouse/Site/CompacSizerModel.js +1 -1
- package/lib/Models/Packhouse/Site/MAFSizerModel.js +1 -1
- package/lib/Models/Packhouse/Site/PackingLineModel.js +2 -2
- package/lib/Models/Packhouse/Site/RejectBinScaleModel.js +1 -1
- package/lib/Models/Packhouse/Site/RejectBinWeightModel.js +1 -1
- package/lib/PackageVersion.js +1 -1
- package/lib/index.d.ts +33 -33
- package/package.json +1 -1
- package/src/Controllers/Packhouse/Site/CompacSizerBinWeightController.js +2 -2
- package/src/Controllers/Packhouse/Site/CompacSizerController.js +2 -2
- package/src/Controllers/Packhouse/Site/MAFSizerController.js +2 -2
- package/src/Controllers/Packhouse/Site/PackingLineController.js +2 -2
- package/src/Controllers/Packhouse/Site/RejectBinScaleController.js +2 -2
- package/src/Controllers/Packhouse/Site/RejectBinWeightController.js +2 -2
- package/src/Models/Packhouse/Site/CompacSizerBinWeightModel.js +1 -1
- package/src/Models/Packhouse/Site/CompacSizerModel.js +1 -1
- package/src/Models/Packhouse/Site/MAFSizerModel.js +1 -1
- package/src/Models/Packhouse/Site/PackingLineModel.js +2 -2
- package/src/Models/Packhouse/Site/RejectBinScaleModel.js +1 -1
- package/src/Models/Packhouse/Site/RejectBinWeightModel.js +1 -1
- package/src/PackageVersion.js +1 -1
|
@@ -972,7 +972,7 @@ export default RejectBinWeightController;
|
|
|
972
972
|
* @property {Date} [createdTimestamp] When this Reject Bin Weight was Created
|
|
973
973
|
* @property {?string} [packrunId] The Packrun this Reject Weight is associated with
|
|
974
974
|
* @property {number} netWeight The Net Weight Captured by the Reject Bin Scale
|
|
975
|
-
* @property {RejectBinWeightController.SortingTableSource|RejectBinWeightController.BeltSource|RejectBinWeightController.SizerOutletSource|RejectBinWeightController.MixedSource
|
|
975
|
+
* @property {Array<RejectBinWeightController.SortingTableSource|RejectBinWeightController.BeltSource|RejectBinWeightController.SizerOutletSource|RejectBinWeightController.MixedSource>} [sources] The Source Weights that make up the Net Weight
|
|
976
976
|
* @property {Array<RejectBinWeightController.FreshPackMultiGrowerBinWeight>} freshPackMultiGrowerBinWeights The Multi-Grower Bin Weights that will be submitted to FreshPack
|
|
977
977
|
* @memberof Controllers.Packhouse.Site
|
|
978
978
|
*/
|
|
@@ -985,7 +985,7 @@ export default RejectBinWeightController;
|
|
|
985
985
|
* @property {Date} [createdTimestamp] When this Reject Bin Weight was Created
|
|
986
986
|
* @property {?string} [packrunId] The Packrun this Reject Weight is associated with
|
|
987
987
|
* @property {number} [netWeight] The Net Weight Captured by the Reject Bin Scale
|
|
988
|
-
* @property {RejectBinWeightController.SortingTableSource|RejectBinWeightController.BeltSource|RejectBinWeightController.SizerOutletSource|RejectBinWeightController.MixedSource
|
|
988
|
+
* @property {Array<RejectBinWeightController.SortingTableSource|RejectBinWeightController.BeltSource|RejectBinWeightController.SizerOutletSource|RejectBinWeightController.MixedSource>} [sources] The Source Weights that make up the Net Weight
|
|
989
989
|
* @property {Array<RejectBinWeightController.FreshPackMultiGrowerBinWeight>} [freshPackMultiGrowerBinWeights] The Multi-Grower Bin Weights that will be submitted to FreshPack
|
|
990
990
|
* @memberof Controllers.Packhouse.Site
|
|
991
991
|
*/
|
|
@@ -68,7 +68,7 @@ class CompacSizerBinWeightModel extends BaseModel
|
|
|
68
68
|
/**
|
|
69
69
|
* The Sources and Weights that make up this Bin Weight
|
|
70
70
|
*
|
|
71
|
-
* @type {{type: string, outletNumber: number, outletName: ?string, weights: Array<{classType: string, weight: number, fruitCount: ?number}>}|{type: string, weights: Array<{classType: string, weight: number, fruitCount: ?number}>}
|
|
71
|
+
* @type {Array<{type: string, outletNumber: number, outletName: ?string, weights: Array<{classType: string, weight: number, fruitCount: ?number}>}|{type: string, weights: Array<{classType: string, weight: number, fruitCount: ?number}>}>}
|
|
72
72
|
* @public
|
|
73
73
|
*/
|
|
74
74
|
this.sources = [];
|
|
@@ -198,7 +198,7 @@ class CompacSizerModel extends BaseModel
|
|
|
198
198
|
/**
|
|
199
199
|
* An Array of Sources that deliver Fruit to this Compac Sizer
|
|
200
200
|
*
|
|
201
|
-
* @type {{type: string, riserId: string}|{type: string, sizerId: string, outletNumbers: number[]}
|
|
201
|
+
* @type {Array<{type: string, riserId: string}|{type: string, sizerId: string, outletNumbers: number[]}>}
|
|
202
202
|
* @public
|
|
203
203
|
*/
|
|
204
204
|
this.sources = [];
|
|
@@ -160,7 +160,7 @@ class MAFSizerModel extends BaseModel
|
|
|
160
160
|
/**
|
|
161
161
|
* An Array of Sources that deliver Fruit to this MAF Sizer
|
|
162
162
|
*
|
|
163
|
-
* @type {{type: string, riserId: string}|{type: string, sizerId: string, outletNumbers: number[]}
|
|
163
|
+
* @type {Array<{type: string, riserId: string}|{type: string, sizerId: string, outletNumbers: number[]}>}
|
|
164
164
|
* @public
|
|
165
165
|
*/
|
|
166
166
|
this.sources = [];
|
|
@@ -166,7 +166,7 @@ class PackingLineModel extends BaseModel
|
|
|
166
166
|
/**
|
|
167
167
|
* The Automation Object for this Packing Line
|
|
168
168
|
*
|
|
169
|
-
* @type {?{points: {controlMode: number, autoStartAllRequest: number, stopAllRequest: number, status: number, startWarningSiren: number, safetySystemHealthy: ?number}, autoControlGroups: Array<{id: string, name: string, points: {runControl: number, startRequest: number, stopRequest: number, status: number, disabled: number}, startDelay: ?number, userStartWithoutDependencies: boolean, startSequences: Array<{startDelay: number, startOrder: number, vsds: string[], contactors: string[], basicControls: Array<{points: {status: number, control: number}, name: string}>}>, downstreamDependencyGroups: string[], neighbourDependencyGroups: string[], shutdownAlarms: string[]}>, autoSpeedGroups: Array<{id: string, name: string, vsds: string[], points: {autoSetpoint: number, overrideSetpoint: number, overrideMode: number}, sectionId: string, displayOrder: number, supportsAutoMode: boolean}>, autoTargets: Array<{id: string, name: string, description: string, type: string, units: ?string, minValue: number, maxValue: number, points: {setpoint: number, actual: number}}>, vsds: Array<{id: string, displayOrder: number}>, contactors: Array<{id: string, displayOrder: number}>, basicControls: Array<{points: {status: number, control: number}, name: string, displayOrder: number}>, shutdownAlarms: string[], lightControls: Array<{name: string, points: {status: number, control: number}}>, infeedManagement: Array<{id: string, name: string, points: {infeedFruitPerMinuteTarget: number, infeedFruitPerMinuteActual: number, sizerFruitPerMinuteActual: number, sizerRecycleFruitPerMinute: number, riser1FruitPerMinuteActual: ?number, riser1LightsControlMode: ?number, riser1LightsManualControl: ?number, riser1LightsStatus: ?number, riser2FruitPerMinuteActual: ?number, riser2LightsControlMode: ?number, riser2LightsManualControl: ?number, riser2LightsStatus: ?number}, riserCount: number, displayOrder: number, riser1AutoControlGroupId: ?string, riser2AutoControlGroupId: ?string}>, autoSpeedSections: Array<{id: string, name: string, displayOrder: number, buttonControls: Array<{icon: string, name: string, type: string, points: {control: number, disable: number}, resetDelay: number, displayOrder: number}>, splitGroupId: ?string, splitGroupPosition: ?string}>, configurationGroups: Array<{id: string, name: string, sectionId: string, displayOrder: number, configurationPoints: {name: string, type: string, point: number}|{name: string, type: string, point: number, units: ?string, minValue: number, maxValue: number}
|
|
169
|
+
* @type {?{points: {controlMode: number, autoStartAllRequest: number, stopAllRequest: number, status: number, startWarningSiren: number, safetySystemHealthy: ?number}, autoControlGroups: Array<{id: string, name: string, points: {runControl: number, startRequest: number, stopRequest: number, status: number, disabled: number}, startDelay: ?number, userStartWithoutDependencies: boolean, startSequences: Array<{startDelay: number, startOrder: number, vsds: string[], contactors: string[], basicControls: Array<{points: {status: number, control: number}, name: string}>}>, downstreamDependencyGroups: string[], neighbourDependencyGroups: string[], shutdownAlarms: string[]}>, autoSpeedGroups: Array<{id: string, name: string, vsds: string[], points: {autoSetpoint: number, overrideSetpoint: number, overrideMode: number}, sectionId: string, displayOrder: number, supportsAutoMode: boolean}>, autoTargets: Array<{id: string, name: string, description: string, type: string, units: ?string, minValue: number, maxValue: number, points: {setpoint: number, actual: number}}>, vsds: Array<{id: string, displayOrder: number}>, contactors: Array<{id: string, displayOrder: number}>, basicControls: Array<{points: {status: number, control: number}, name: string, displayOrder: number}>, shutdownAlarms: string[], lightControls: Array<{name: string, points: {status: number, control: number}}>, infeedManagement: Array<{id: string, name: string, points: {infeedFruitPerMinuteTarget: number, infeedFruitPerMinuteActual: number, sizerFruitPerMinuteActual: number, sizerRecycleFruitPerMinute: number, riser1FruitPerMinuteActual: ?number, riser1LightsControlMode: ?number, riser1LightsManualControl: ?number, riser1LightsStatus: ?number, riser2FruitPerMinuteActual: ?number, riser2LightsControlMode: ?number, riser2LightsManualControl: ?number, riser2LightsStatus: ?number}, riserCount: number, displayOrder: number, riser1AutoControlGroupId: ?string, riser2AutoControlGroupId: ?string}>, autoSpeedSections: Array<{id: string, name: string, displayOrder: number, buttonControls: Array<{icon: string, name: string, type: string, points: {control: number, disable: number}, resetDelay: number, displayOrder: number}>, splitGroupId: ?string, splitGroupPosition: ?string}>, configurationGroups: Array<{id: string, name: string, sectionId: string, displayOrder: number, configurationPoints: Array<{name: string, type: string, point: number}|{name: string, type: string, point: number, units: ?string, minValue: number, maxValue: number}>}>, configurationSections: Array<{id: string, name: string, displayOrder: number}>, momentaryControlGroups: Array<{name: string, momentaryControls: Array<{name: string, points: Array<{name: string, point: number}>, displayOrder: number}>}>}}
|
|
170
170
|
* @public
|
|
171
171
|
*/
|
|
172
172
|
this.automation = null;
|
|
@@ -198,7 +198,7 @@ class PackingLineModel extends BaseModel
|
|
|
198
198
|
/**
|
|
199
199
|
* The Advanced Packrun Management Configuration for this Packing Line
|
|
200
200
|
*
|
|
201
|
-
* @type {?{points: {startPackrunChangeRequest: number, cancelPackrunChangeRequest: number, advancePackrunChangeRequest: number, skipPackrunChangeStepRequest: number, packrunChangeCurrentStep: number, packrunChangeAutomationActionsEnabled: number}, steps: {index: number, type: string, title: string, subtitle: ?string, description: string, pointActions: Array<{trigger: string, pointId: number, value: any}>, autoControlGroupActions: Array<{trigger: string, groupId: string, action: string}>}|{index: number, type: string, sizerIds: string[]}|{index: number, type: string, sizerIds: string[]}|{index: number, type: string, sizerId: string}|{index: number, type: string, title: string, subtitle: ?string, description: string, actionType: string, trigger: string, actionReference: ?any}|{index: number, type: string, title: string, subtitle: ?string, description: string, actionType: string, trigger: string, actionReference: ?any}
|
|
201
|
+
* @type {?{points: {startPackrunChangeRequest: number, cancelPackrunChangeRequest: number, advancePackrunChangeRequest: number, skipPackrunChangeStepRequest: number, packrunChangeCurrentStep: number, packrunChangeAutomationActionsEnabled: number}, steps: Array<{index: number, type: string, title: string, subtitle: ?string, description: string, pointActions: Array<{trigger: string, pointId: number, value: any}>, autoControlGroupActions: Array<{trigger: string, groupId: string, action: string}>}|{index: number, type: string, sizerIds: string[]}|{index: number, type: string, sizerIds: string[]}|{index: number, type: string, sizerId: string}|{index: number, type: string, title: string, subtitle: ?string, description: string, actionType: string, trigger: string, actionReference: ?any}|{index: number, type: string, title: string, subtitle: ?string, description: string, actionType: string, trigger: string, actionReference: ?any}>, enabled: boolean}}
|
|
202
202
|
* @public
|
|
203
203
|
*/
|
|
204
204
|
this.advancedPackrunManagement = null;
|
|
@@ -148,7 +148,7 @@ class RejectBinScaleModel extends BaseModel
|
|
|
148
148
|
/**
|
|
149
149
|
* An Array of Sources that deliver Fruit to this Reject Bin Scale
|
|
150
150
|
*
|
|
151
|
-
* @type {{type: string, sortingTableId: string, classType: string, varietyClassTypes: Array<{varietyId: string, classType: string}>}|{type: string, beltName: ?string, classType: string, varietyClassTypes: Array<{varietyId: string, classType: string}>}|{type: string, sizerId: string, outletNumber: number}
|
|
151
|
+
* @type {Array<{type: string, sortingTableId: string, classType: string, varietyClassTypes: Array<{varietyId: string, classType: string}>}|{type: string, beltName: ?string, classType: string, varietyClassTypes: Array<{varietyId: string, classType: string}>}|{type: string, sizerId: string, outletNumber: number}>}
|
|
152
152
|
* @public
|
|
153
153
|
*/
|
|
154
154
|
this.sources = [];
|
|
@@ -76,7 +76,7 @@ class RejectBinWeightModel extends BaseModel
|
|
|
76
76
|
/**
|
|
77
77
|
* The Source Weights that make up the Net Weight
|
|
78
78
|
*
|
|
79
|
-
* @type {{type: string, sortingTableId: string, sortingTableName: ?string, weights: Array<{classType: string, weight: number, fruitCount: ?number}>}|{type: string, beltName: ?string, weights: Array<{classType: string, weight: number, fruitCount: ?number}>}|{type: string, sizerId: string, sizerName: ?string, outletNumber: number, outletName: ?string, weights: Array<{classType: string, weight: number, fruitCount: ?number}>}|{type: string, mixedNames: string[], weights: Array<{classType: string, weight: number, fruitCount: ?number}>}
|
|
79
|
+
* @type {Array<{type: string, sortingTableId: string, sortingTableName: ?string, weights: Array<{classType: string, weight: number, fruitCount: ?number}>}|{type: string, beltName: ?string, weights: Array<{classType: string, weight: number, fruitCount: ?number}>}|{type: string, sizerId: string, sizerName: ?string, outletNumber: number, outletName: ?string, weights: Array<{classType: string, weight: number, fruitCount: ?number}>}|{type: string, mixedNames: string[], weights: Array<{classType: string, weight: number, fruitCount: ?number}>}>}
|
|
80
80
|
* @public
|
|
81
81
|
*/
|
|
82
82
|
this.sources = [];
|
package/src/PackageVersion.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// Generated by genversion.
|
|
2
|
-
export const version = '2.3.
|
|
2
|
+
export const version = '2.3.19';
|