@ricado/api-client 2.3.0 → 2.3.1
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 +4 -0
- package/lib/Models/Packhouse/Site/PackingLineModel.js +44 -0
- package/lib/PackageVersion.js +1 -1
- package/lib/index.d.ts +30 -0
- package/package.json +1 -1
- package/src/Controllers/Packhouse/Site/PackingLineController.js +4 -0
- package/src/Models/Packhouse/Site/PackingLineModel.js +50 -0
- package/src/PackageVersion.js +1 -1
|
@@ -188,6 +188,8 @@ var _default = PackingLineController;
|
|
|
188
188
|
* @property {string[]} [alarmGroups] The Alarm Groups that are used by this Packing Line
|
|
189
189
|
* @property {Object[]} [classTypes] The Class Types that are defined for this Packing Line
|
|
190
190
|
* @property {?PackingLineController.ShiftManagement} [shiftManagement] The Optional Shift Management Object for this Packing Line
|
|
191
|
+
* @property {?Object} [advancedPackrunManagement] The Advanced Packrun Management Configuration for this Packing Line
|
|
192
|
+
* @property {?Object} [mafIntegration] The MAF Integration Configuration for this Packing Line
|
|
191
193
|
* @property {?Object} [freshPackIntegration] The FreshPack Integration Configuration for this Packing Line
|
|
192
194
|
* @property {?Object} [freshQualityIntegration] The FreshQuality Integration Configuration for this Packing Line
|
|
193
195
|
* @memberof Controllers.Packhouse.Site
|
|
@@ -207,6 +209,8 @@ var _default = PackingLineController;
|
|
|
207
209
|
* @property {string[]} [alarmGroups] The Alarm Groups that are used by this Packing Line
|
|
208
210
|
* @property {Object[]} [classTypes] The Class Types that are defined for this Packing Line
|
|
209
211
|
* @property {?PackingLineController.ShiftManagement} [shiftManagement] The Optional Shift Management Object for this Packing Line
|
|
212
|
+
* @property {?Object} [advancedPackrunManagement] The Advanced Packrun Management Configuration for this Packing Line
|
|
213
|
+
* @property {?Object} [mafIntegration] The MAF Integration Configuration for this Packing Line
|
|
210
214
|
* @property {?Object} [freshPackIntegration] The FreshPack Integration Configuration for this Packing Line
|
|
211
215
|
* @property {?Object} [freshQualityIntegration] The FreshQuality Integration Configuration for this Packing Line
|
|
212
216
|
* @memberof Controllers.Packhouse.Site
|
|
@@ -151,6 +151,22 @@ var PackingLineModel = /*#__PURE__*/function (_BaseModel) {
|
|
|
151
151
|
*/
|
|
152
152
|
|
|
153
153
|
_this.shiftManagement = null;
|
|
154
|
+
/**
|
|
155
|
+
* The Advanced Packrun Management Configuration for this Packing Line
|
|
156
|
+
*
|
|
157
|
+
* @type {?Object}
|
|
158
|
+
* @public
|
|
159
|
+
*/
|
|
160
|
+
|
|
161
|
+
_this.advancedPackrunManagement = null;
|
|
162
|
+
/**
|
|
163
|
+
* The MAF Integration Configuration for this Packing Line
|
|
164
|
+
*
|
|
165
|
+
* @type {?Object}
|
|
166
|
+
* @public
|
|
167
|
+
*/
|
|
168
|
+
|
|
169
|
+
_this.mafIntegration = null;
|
|
154
170
|
/**
|
|
155
171
|
* The FreshPack Integration Configuration for this Packing Line
|
|
156
172
|
*
|
|
@@ -1039,6 +1055,34 @@ var PackingLineModel = /*#__PURE__*/function (_BaseModel) {
|
|
|
1039
1055
|
}();
|
|
1040
1056
|
}
|
|
1041
1057
|
|
|
1058
|
+
if ('advancedPackrunManagement' in jsonObject) {
|
|
1059
|
+
model.advancedPackrunManagement = function () {
|
|
1060
|
+
if (jsonObject['advancedPackrunManagement'] === null) {
|
|
1061
|
+
return null;
|
|
1062
|
+
}
|
|
1063
|
+
|
|
1064
|
+
if (_typeof(jsonObject['advancedPackrunManagement']) !== 'object') {
|
|
1065
|
+
return Object(jsonObject['advancedPackrunManagement']);
|
|
1066
|
+
}
|
|
1067
|
+
|
|
1068
|
+
return jsonObject['advancedPackrunManagement'];
|
|
1069
|
+
}();
|
|
1070
|
+
}
|
|
1071
|
+
|
|
1072
|
+
if ('mafIntegration' in jsonObject) {
|
|
1073
|
+
model.mafIntegration = function () {
|
|
1074
|
+
if (jsonObject['mafIntegration'] === null) {
|
|
1075
|
+
return null;
|
|
1076
|
+
}
|
|
1077
|
+
|
|
1078
|
+
if (_typeof(jsonObject['mafIntegration']) !== 'object') {
|
|
1079
|
+
return Object(jsonObject['mafIntegration']);
|
|
1080
|
+
}
|
|
1081
|
+
|
|
1082
|
+
return jsonObject['mafIntegration'];
|
|
1083
|
+
}();
|
|
1084
|
+
}
|
|
1085
|
+
|
|
1042
1086
|
if ('freshPackIntegration' in jsonObject) {
|
|
1043
1087
|
model.freshPackIntegration = function () {
|
|
1044
1088
|
if (jsonObject['freshPackIntegration'] === null) {
|
package/lib/PackageVersion.js
CHANGED
package/lib/index.d.ts
CHANGED
|
@@ -8436,6 +8436,14 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/PackingLineControl
|
|
|
8436
8436
|
* The Optional Shift Management Object for this Packing Line
|
|
8437
8437
|
*/
|
|
8438
8438
|
shiftManagement?: ShiftManagement | null;
|
|
8439
|
+
/**
|
|
8440
|
+
* The Advanced Packrun Management Configuration for this Packing Line
|
|
8441
|
+
*/
|
|
8442
|
+
advancedPackrunManagement?: any;
|
|
8443
|
+
/**
|
|
8444
|
+
* The MAF Integration Configuration for this Packing Line
|
|
8445
|
+
*/
|
|
8446
|
+
mafIntegration?: any;
|
|
8439
8447
|
/**
|
|
8440
8448
|
* The FreshPack Integration Configuration for this Packing Line
|
|
8441
8449
|
*/
|
|
@@ -8489,6 +8497,14 @@ declare module '@ricado/api-client/Controllers/Packhouse/Site/PackingLineControl
|
|
|
8489
8497
|
* The Optional Shift Management Object for this Packing Line
|
|
8490
8498
|
*/
|
|
8491
8499
|
shiftManagement?: ShiftManagement | null;
|
|
8500
|
+
/**
|
|
8501
|
+
* The Advanced Packrun Management Configuration for this Packing Line
|
|
8502
|
+
*/
|
|
8503
|
+
advancedPackrunManagement?: any;
|
|
8504
|
+
/**
|
|
8505
|
+
* The MAF Integration Configuration for this Packing Line
|
|
8506
|
+
*/
|
|
8507
|
+
mafIntegration?: any;
|
|
8492
8508
|
/**
|
|
8493
8509
|
* The FreshPack Integration Configuration for this Packing Line
|
|
8494
8510
|
*/
|
|
@@ -13818,6 +13834,20 @@ declare module '@ricado/api-client/Models/Packhouse/Site/PackingLineModel' {
|
|
|
13818
13834
|
}[];
|
|
13819
13835
|
}[];
|
|
13820
13836
|
} | null;
|
|
13837
|
+
/**
|
|
13838
|
+
* The Advanced Packrun Management Configuration for this Packing Line
|
|
13839
|
+
*
|
|
13840
|
+
* @type {?Object}
|
|
13841
|
+
* @public
|
|
13842
|
+
*/
|
|
13843
|
+
advancedPackrunManagement: any | null;
|
|
13844
|
+
/**
|
|
13845
|
+
* The MAF Integration Configuration for this Packing Line
|
|
13846
|
+
*
|
|
13847
|
+
* @type {?Object}
|
|
13848
|
+
* @public
|
|
13849
|
+
*/
|
|
13850
|
+
mafIntegration: any | null;
|
|
13821
13851
|
/**
|
|
13822
13852
|
* The FreshPack Integration Configuration for this Packing Line
|
|
13823
13853
|
*
|
package/package.json
CHANGED
|
@@ -167,6 +167,8 @@ export default PackingLineController;
|
|
|
167
167
|
* @property {string[]} [alarmGroups] The Alarm Groups that are used by this Packing Line
|
|
168
168
|
* @property {Object[]} [classTypes] The Class Types that are defined for this Packing Line
|
|
169
169
|
* @property {?PackingLineController.ShiftManagement} [shiftManagement] The Optional Shift Management Object for this Packing Line
|
|
170
|
+
* @property {?Object} [advancedPackrunManagement] The Advanced Packrun Management Configuration for this Packing Line
|
|
171
|
+
* @property {?Object} [mafIntegration] The MAF Integration Configuration for this Packing Line
|
|
170
172
|
* @property {?Object} [freshPackIntegration] The FreshPack Integration Configuration for this Packing Line
|
|
171
173
|
* @property {?Object} [freshQualityIntegration] The FreshQuality Integration Configuration for this Packing Line
|
|
172
174
|
* @memberof Controllers.Packhouse.Site
|
|
@@ -186,6 +188,8 @@ export default PackingLineController;
|
|
|
186
188
|
* @property {string[]} [alarmGroups] The Alarm Groups that are used by this Packing Line
|
|
187
189
|
* @property {Object[]} [classTypes] The Class Types that are defined for this Packing Line
|
|
188
190
|
* @property {?PackingLineController.ShiftManagement} [shiftManagement] The Optional Shift Management Object for this Packing Line
|
|
191
|
+
* @property {?Object} [advancedPackrunManagement] The Advanced Packrun Management Configuration for this Packing Line
|
|
192
|
+
* @property {?Object} [mafIntegration] The MAF Integration Configuration for this Packing Line
|
|
189
193
|
* @property {?Object} [freshPackIntegration] The FreshPack Integration Configuration for this Packing Line
|
|
190
194
|
* @property {?Object} [freshQualityIntegration] The FreshQuality Integration Configuration for this Packing Line
|
|
191
195
|
* @memberof Controllers.Packhouse.Site
|
|
@@ -121,6 +121,22 @@ class PackingLineModel extends BaseModel
|
|
|
121
121
|
*/
|
|
122
122
|
this.shiftManagement = null;
|
|
123
123
|
|
|
124
|
+
/**
|
|
125
|
+
* The Advanced Packrun Management Configuration for this Packing Line
|
|
126
|
+
*
|
|
127
|
+
* @type {?Object}
|
|
128
|
+
* @public
|
|
129
|
+
*/
|
|
130
|
+
this.advancedPackrunManagement = null;
|
|
131
|
+
|
|
132
|
+
/**
|
|
133
|
+
* The MAF Integration Configuration for this Packing Line
|
|
134
|
+
*
|
|
135
|
+
* @type {?Object}
|
|
136
|
+
* @public
|
|
137
|
+
*/
|
|
138
|
+
this.mafIntegration = null;
|
|
139
|
+
|
|
124
140
|
/**
|
|
125
141
|
* The FreshPack Integration Configuration for this Packing Line
|
|
126
142
|
*
|
|
@@ -1271,6 +1287,40 @@ class PackingLineModel extends BaseModel
|
|
|
1271
1287
|
}());
|
|
1272
1288
|
}
|
|
1273
1289
|
|
|
1290
|
+
if('advancedPackrunManagement' in jsonObject)
|
|
1291
|
+
{
|
|
1292
|
+
model.advancedPackrunManagement = (function(){
|
|
1293
|
+
if(jsonObject['advancedPackrunManagement'] === null)
|
|
1294
|
+
{
|
|
1295
|
+
return null;
|
|
1296
|
+
}
|
|
1297
|
+
|
|
1298
|
+
if(typeof jsonObject['advancedPackrunManagement'] !== 'object')
|
|
1299
|
+
{
|
|
1300
|
+
return Object(jsonObject['advancedPackrunManagement']);
|
|
1301
|
+
}
|
|
1302
|
+
|
|
1303
|
+
return jsonObject['advancedPackrunManagement'];
|
|
1304
|
+
}());
|
|
1305
|
+
}
|
|
1306
|
+
|
|
1307
|
+
if('mafIntegration' in jsonObject)
|
|
1308
|
+
{
|
|
1309
|
+
model.mafIntegration = (function(){
|
|
1310
|
+
if(jsonObject['mafIntegration'] === null)
|
|
1311
|
+
{
|
|
1312
|
+
return null;
|
|
1313
|
+
}
|
|
1314
|
+
|
|
1315
|
+
if(typeof jsonObject['mafIntegration'] !== 'object')
|
|
1316
|
+
{
|
|
1317
|
+
return Object(jsonObject['mafIntegration']);
|
|
1318
|
+
}
|
|
1319
|
+
|
|
1320
|
+
return jsonObject['mafIntegration'];
|
|
1321
|
+
}());
|
|
1322
|
+
}
|
|
1323
|
+
|
|
1274
1324
|
if('freshPackIntegration' in jsonObject)
|
|
1275
1325
|
{
|
|
1276
1326
|
model.freshPackIntegration = (function(){
|
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.1';
|