@ricado/api-client 2.0.2 → 2.2.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/README.md +5 -7
- package/dist/ricado.api.client.js +1 -1
- package/lib/Controllers/Packhouse/Site/BinTipBinController.js +622 -0
- package/lib/Controllers/Packhouse/Site/BinTipWeightController.js +4 -4
- package/lib/Controllers/Packhouse/Site/CompacSizerBatchController.js +4 -4
- package/lib/Controllers/Packhouse/Site/CompacSizerController.js +7 -7
- package/lib/Controllers/Packhouse/Site/CompacSizerOutletProductChangeController.js +4 -4
- package/lib/Controllers/Packhouse/Site/CompacSizerOutletTypeChangeController.js +4 -4
- package/lib/Controllers/Packhouse/Site/CompacSizerOutletTypeController.js +4 -4
- package/lib/Controllers/Packhouse/Site/CompacSizerPackrunSummaryController.js +4 -4
- package/lib/Controllers/Packhouse/Site/DowntimeEventController.js +4 -4
- package/lib/Controllers/Packhouse/Site/FreshPackPackrunSummaryController.js +4 -4
- package/lib/Controllers/Packhouse/Site/FreshQualityPackrunSummaryController.js +657 -0
- package/lib/Controllers/Packhouse/Site/GrowingMethodController.js +4 -4
- package/lib/Controllers/Packhouse/Site/PackTypeController.js +4 -4
- package/lib/Controllers/Packhouse/Site/PackingLineController.js +29 -5
- package/lib/Controllers/Packhouse/Site/PackrunController.js +46 -4
- package/lib/Controllers/Packhouse/Site/RejectBinController.js +4 -4
- package/lib/Controllers/Packhouse/Site/RejectBinScaleController.js +28 -6
- package/lib/Controllers/Packhouse/Site/RejectBinWeightController.js +4 -4
- package/lib/Controllers/Packhouse/Site/ShiftController.js +4 -4
- package/lib/Controllers/Packhouse/Site/ShiftFocusMeetingController.js +4 -4
- package/lib/Controllers/Packhouse/Site/ShiftHourlyEntryController.js +19 -4
- package/lib/Controllers/Packhouse/Site/ShiftQualitySummaryController.js +661 -0
- package/lib/Controllers/Packhouse/Site/ShiftTaskController.js +628 -0
- package/lib/Controllers/Packhouse/Site/SoftSortBeltController.js +453 -0
- package/lib/Controllers/Packhouse/Site/VarietyController.js +4 -4
- package/lib/Controllers/Packhouse/Site/index.js +15 -0
- package/lib/Controllers/Site/AlarmController.js +4 -4
- package/lib/Controllers/Site/AlarmGroupController.js +4 -4
- package/lib/Controllers/Site/DefinitionController.js +4 -4
- package/lib/Controllers/Site/PermanentObjectController.js +4 -4
- package/lib/Controllers/Site/PermanentObjectDataController.js +4 -4
- package/lib/Controllers/Site/PointController.js +4 -4
- package/lib/Controllers/Site/TemporaryObjectController.js +4 -4
- package/lib/Errors/BadRequestError.js +1 -1
- package/lib/Errors/ForbiddenError.js +1 -1
- package/lib/Errors/NetworkError.js +1 -1
- package/lib/Errors/NotAllowedError.js +1 -1
- package/lib/Errors/NotFoundError.js +1 -1
- package/lib/Errors/ServerError.js +1 -1
- package/lib/Errors/UnauthorizedError.js +1 -1
- package/lib/Models/AccountPolicyModel.js +1 -1
- package/lib/Models/ApiAccountModel.js +1 -1
- package/lib/Models/CompanyModel.js +1 -1
- package/lib/Models/FirebaseTokenModel.js +1 -1
- package/lib/Models/Packhouse/Site/BinTipBinModel.js +367 -0
- package/lib/Models/Packhouse/Site/BinTipWeightModel.js +14 -4
- package/lib/Models/Packhouse/Site/CompacSizerBatchModel.js +14 -4
- package/lib/Models/Packhouse/Site/CompacSizerModel.js +15 -5
- package/lib/Models/Packhouse/Site/CompacSizerOutletProductChangeModel.js +14 -4
- package/lib/Models/Packhouse/Site/CompacSizerOutletTypeChangeModel.js +14 -4
- package/lib/Models/Packhouse/Site/CompacSizerOutletTypeModel.js +14 -4
- package/lib/Models/Packhouse/Site/CompacSizerPackrunSummaryModel.js +14 -4
- package/lib/Models/Packhouse/Site/DowntimeEventModel.js +14 -4
- package/lib/Models/Packhouse/Site/FreshPackPackrunSummaryModel.js +14 -4
- package/lib/Models/Packhouse/Site/FreshQualityPackrunSummaryModel.js +481 -0
- package/lib/Models/Packhouse/Site/GrowingMethodModel.js +14 -4
- package/lib/Models/Packhouse/Site/PackTypeModel.js +14 -4
- package/lib/Models/Packhouse/Site/PackingLineModel.js +538 -5
- package/lib/Models/Packhouse/Site/PackrunModel.js +80 -4
- package/lib/Models/Packhouse/Site/RejectBinModel.js +14 -4
- package/lib/Models/Packhouse/Site/RejectBinScaleModel.js +274 -8
- package/lib/Models/Packhouse/Site/RejectBinWeightModel.js +14 -4
- package/lib/Models/Packhouse/Site/ShiftFocusMeetingModel.js +14 -4
- package/lib/Models/Packhouse/Site/ShiftHourlyEntryModel.js +181 -5
- package/lib/Models/Packhouse/Site/ShiftModel.js +14 -4
- package/lib/Models/Packhouse/Site/ShiftQualitySummaryModel.js +599 -0
- package/lib/Models/Packhouse/Site/ShiftTaskModel.js +373 -0
- package/lib/Models/Packhouse/Site/SoftSortBeltModel.js +235 -0
- package/lib/Models/Packhouse/Site/VarietyModel.js +14 -4
- package/lib/Models/Packhouse/Site/index.js +15 -0
- package/lib/Models/RTUModel.js +1 -1
- package/lib/Models/RTUPluginModel.js +1 -1
- package/lib/Models/Site/AlarmGroupModel.js +14 -4
- package/lib/Models/Site/AlarmModel.js +14 -4
- package/lib/Models/Site/DefinitionModel.js +14 -4
- package/lib/Models/Site/PermanentObjectDataModel.js +14 -4
- package/lib/Models/Site/PermanentObjectModel.js +14 -4
- package/lib/Models/Site/PointModel.js +14 -4
- package/lib/Models/Site/TemporaryObjectModel.js +14 -4
- package/lib/Models/SiteModel.js +1 -1
- package/lib/Models/TokenModel.js +1 -1
- package/lib/Models/UserAccountActionTokenModel.js +1 -1
- package/lib/Models/UserAccountModel.js +1 -1
- package/lib/PackageVersion.js +1 -1
- package/lib/index.d.ts +4039 -1071
- package/package.json +1 -1
- package/src/Controllers/Packhouse/Site/BinTipBinController.js +665 -0
- package/src/Controllers/Packhouse/Site/BinTipWeightController.js +4 -4
- package/src/Controllers/Packhouse/Site/CompacSizerBatchController.js +4 -4
- package/src/Controllers/Packhouse/Site/CompacSizerController.js +7 -7
- package/src/Controllers/Packhouse/Site/CompacSizerOutletProductChangeController.js +4 -4
- package/src/Controllers/Packhouse/Site/CompacSizerOutletTypeChangeController.js +4 -4
- package/src/Controllers/Packhouse/Site/CompacSizerOutletTypeController.js +4 -4
- package/src/Controllers/Packhouse/Site/CompacSizerPackrunSummaryController.js +4 -4
- package/src/Controllers/Packhouse/Site/DowntimeEventController.js +4 -4
- package/src/Controllers/Packhouse/Site/FreshPackPackrunSummaryController.js +4 -4
- package/src/Controllers/Packhouse/Site/FreshQualityPackrunSummaryController.js +700 -0
- package/src/Controllers/Packhouse/Site/GrowingMethodController.js +4 -4
- package/src/Controllers/Packhouse/Site/PackTypeController.js +4 -4
- package/src/Controllers/Packhouse/Site/PackingLineController.js +29 -5
- package/src/Controllers/Packhouse/Site/PackrunController.js +56 -4
- package/src/Controllers/Packhouse/Site/RejectBinController.js +4 -4
- package/src/Controllers/Packhouse/Site/RejectBinScaleController.js +28 -6
- package/src/Controllers/Packhouse/Site/RejectBinWeightController.js +4 -4
- package/src/Controllers/Packhouse/Site/ShiftController.js +4 -4
- package/src/Controllers/Packhouse/Site/ShiftFocusMeetingController.js +4 -4
- package/src/Controllers/Packhouse/Site/ShiftHourlyEntryController.js +19 -4
- package/src/Controllers/Packhouse/Site/ShiftQualitySummaryController.js +704 -0
- package/src/Controllers/Packhouse/Site/ShiftTaskController.js +671 -0
- package/src/Controllers/Packhouse/Site/SoftSortBeltController.js +474 -0
- package/src/Controllers/Packhouse/Site/VarietyController.js +4 -4
- package/src/Controllers/Packhouse/Site/index.js +10 -0
- package/src/Controllers/Site/AlarmController.js +4 -4
- package/src/Controllers/Site/AlarmGroupController.js +4 -4
- package/src/Controllers/Site/DefinitionController.js +4 -4
- package/src/Controllers/Site/PermanentObjectController.js +4 -4
- package/src/Controllers/Site/PermanentObjectDataController.js +4 -4
- package/src/Controllers/Site/PointController.js +4 -4
- package/src/Controllers/Site/TemporaryObjectController.js +4 -4
- package/src/Models/Packhouse/Site/BinTipBinModel.js +365 -0
- package/src/Models/Packhouse/Site/BinTipWeightModel.js +13 -3
- package/src/Models/Packhouse/Site/CompacSizerBatchModel.js +13 -3
- package/src/Models/Packhouse/Site/CompacSizerModel.js +14 -4
- package/src/Models/Packhouse/Site/CompacSizerOutletProductChangeModel.js +13 -3
- package/src/Models/Packhouse/Site/CompacSizerOutletTypeChangeModel.js +13 -3
- package/src/Models/Packhouse/Site/CompacSizerOutletTypeModel.js +13 -3
- package/src/Models/Packhouse/Site/CompacSizerPackrunSummaryModel.js +13 -3
- package/src/Models/Packhouse/Site/DowntimeEventModel.js +13 -3
- package/src/Models/Packhouse/Site/FreshPackPackrunSummaryModel.js +13 -3
- package/src/Models/Packhouse/Site/FreshQualityPackrunSummaryModel.js +523 -0
- package/src/Models/Packhouse/Site/GrowingMethodModel.js +13 -3
- package/src/Models/Packhouse/Site/PackTypeModel.js +13 -3
- package/src/Models/Packhouse/Site/PackingLineModel.js +718 -4
- package/src/Models/Packhouse/Site/PackrunModel.js +88 -3
- package/src/Models/Packhouse/Site/RejectBinModel.js +13 -3
- package/src/Models/Packhouse/Site/RejectBinScaleModel.js +310 -7
- package/src/Models/Packhouse/Site/RejectBinWeightModel.js +13 -3
- package/src/Models/Packhouse/Site/ShiftFocusMeetingModel.js +13 -3
- package/src/Models/Packhouse/Site/ShiftHourlyEntryModel.js +205 -4
- package/src/Models/Packhouse/Site/ShiftModel.js +13 -3
- package/src/Models/Packhouse/Site/ShiftQualitySummaryModel.js +664 -0
- package/src/Models/Packhouse/Site/ShiftTaskModel.js +369 -0
- package/src/Models/Packhouse/Site/SoftSortBeltModel.js +215 -0
- package/src/Models/Packhouse/Site/VarietyModel.js +13 -3
- package/src/Models/Packhouse/Site/index.js +10 -0
- package/src/Models/Site/AlarmGroupModel.js +13 -3
- package/src/Models/Site/AlarmModel.js +13 -3
- package/src/Models/Site/DefinitionModel.js +13 -3
- package/src/Models/Site/PermanentObjectDataModel.js +13 -3
- package/src/Models/Site/PermanentObjectModel.js +13 -3
- package/src/Models/Site/PointModel.js +13 -3
- package/src/Models/Site/TemporaryObjectModel.js +13 -3
- package/src/PackageVersion.js +1 -1
|
@@ -17,7 +17,7 @@ function _defineProperties(target, props) { for (var i = 0; i < props.length; i+
|
|
|
17
17
|
|
|
18
18
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
19
19
|
|
|
20
|
-
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); }
|
|
20
|
+
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
21
21
|
|
|
22
22
|
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
23
23
|
|
|
@@ -47,8 +47,9 @@ var BinTipWeightModel = /*#__PURE__*/function (_BaseModel) {
|
|
|
47
47
|
* BinTipWeightModel Constructor
|
|
48
48
|
*
|
|
49
49
|
* @protected
|
|
50
|
+
* @param {number} siteId The Site ID associated with this Bin Tip Weight
|
|
50
51
|
*/
|
|
51
|
-
function BinTipWeightModel() {
|
|
52
|
+
function BinTipWeightModel(siteId) {
|
|
52
53
|
var _this;
|
|
53
54
|
|
|
54
55
|
_classCallCheck(this, BinTipWeightModel);
|
|
@@ -126,6 +127,14 @@ var BinTipWeightModel = /*#__PURE__*/function (_BaseModel) {
|
|
|
126
127
|
*/
|
|
127
128
|
|
|
128
129
|
_this.updateTimestamp = undefined;
|
|
130
|
+
/**
|
|
131
|
+
* The Site ID associated with this Bin Tip Weight
|
|
132
|
+
*
|
|
133
|
+
* @type {number}
|
|
134
|
+
* @public
|
|
135
|
+
*/
|
|
136
|
+
|
|
137
|
+
_this.siteId = siteId;
|
|
129
138
|
return _this;
|
|
130
139
|
}
|
|
131
140
|
/**
|
|
@@ -134,14 +143,15 @@ var BinTipWeightModel = /*#__PURE__*/function (_BaseModel) {
|
|
|
134
143
|
* @static
|
|
135
144
|
* @public
|
|
136
145
|
* @param {Object<string, any>|string} json A JSON Object or JSON String
|
|
146
|
+
* @param {number} siteId The Site ID associated with this Bin Tip Weight
|
|
137
147
|
* @return {BinTipWeightModel}
|
|
138
148
|
*/
|
|
139
149
|
|
|
140
150
|
|
|
141
151
|
_createClass(BinTipWeightModel, null, [{
|
|
142
152
|
key: "fromJSON",
|
|
143
|
-
value: function fromJSON(json) {
|
|
144
|
-
var model = new BinTipWeightModel();
|
|
153
|
+
value: function fromJSON(json, siteId) {
|
|
154
|
+
var model = new BinTipWeightModel(siteId);
|
|
145
155
|
/**
|
|
146
156
|
* The JSON Object
|
|
147
157
|
*
|
|
@@ -17,7 +17,7 @@ function _defineProperties(target, props) { for (var i = 0; i < props.length; i+
|
|
|
17
17
|
|
|
18
18
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
19
19
|
|
|
20
|
-
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); }
|
|
20
|
+
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
21
21
|
|
|
22
22
|
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
23
23
|
|
|
@@ -47,8 +47,9 @@ var CompacSizerBatchModel = /*#__PURE__*/function (_BaseModel) {
|
|
|
47
47
|
* CompacSizerBatchModel Constructor
|
|
48
48
|
*
|
|
49
49
|
* @protected
|
|
50
|
+
* @param {number} siteId The Site ID associated with this Compac Sizer Batch
|
|
50
51
|
*/
|
|
51
|
-
function CompacSizerBatchModel() {
|
|
52
|
+
function CompacSizerBatchModel(siteId) {
|
|
52
53
|
var _this;
|
|
53
54
|
|
|
54
55
|
_classCallCheck(this, CompacSizerBatchModel);
|
|
@@ -118,6 +119,14 @@ var CompacSizerBatchModel = /*#__PURE__*/function (_BaseModel) {
|
|
|
118
119
|
*/
|
|
119
120
|
|
|
120
121
|
_this.updateTimestamp = undefined;
|
|
122
|
+
/**
|
|
123
|
+
* The Site ID associated with this Compac Sizer Batch
|
|
124
|
+
*
|
|
125
|
+
* @type {number}
|
|
126
|
+
* @public
|
|
127
|
+
*/
|
|
128
|
+
|
|
129
|
+
_this.siteId = siteId;
|
|
121
130
|
return _this;
|
|
122
131
|
}
|
|
123
132
|
/**
|
|
@@ -126,14 +135,15 @@ var CompacSizerBatchModel = /*#__PURE__*/function (_BaseModel) {
|
|
|
126
135
|
* @static
|
|
127
136
|
* @public
|
|
128
137
|
* @param {Object<string, any>|string} json A JSON Object or JSON String
|
|
138
|
+
* @param {number} siteId The Site ID associated with this Compac Sizer Batch
|
|
129
139
|
* @return {CompacSizerBatchModel}
|
|
130
140
|
*/
|
|
131
141
|
|
|
132
142
|
|
|
133
143
|
_createClass(CompacSizerBatchModel, null, [{
|
|
134
144
|
key: "fromJSON",
|
|
135
|
-
value: function fromJSON(json) {
|
|
136
|
-
var model = new CompacSizerBatchModel();
|
|
145
|
+
value: function fromJSON(json, siteId) {
|
|
146
|
+
var model = new CompacSizerBatchModel(siteId);
|
|
137
147
|
/**
|
|
138
148
|
* The JSON Object
|
|
139
149
|
*
|
|
@@ -17,7 +17,7 @@ function _defineProperties(target, props) { for (var i = 0; i < props.length; i+
|
|
|
17
17
|
|
|
18
18
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
19
19
|
|
|
20
|
-
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); }
|
|
20
|
+
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
21
21
|
|
|
22
22
|
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
23
23
|
|
|
@@ -47,8 +47,9 @@ var CompacSizerModel = /*#__PURE__*/function (_BaseModel) {
|
|
|
47
47
|
* CompacSizerModel Constructor
|
|
48
48
|
*
|
|
49
49
|
* @protected
|
|
50
|
+
* @param {number} siteId The Site ID associated with this Compac Sizer
|
|
50
51
|
*/
|
|
51
|
-
function CompacSizerModel() {
|
|
52
|
+
function CompacSizerModel(siteId) {
|
|
52
53
|
var _this;
|
|
53
54
|
|
|
54
55
|
_classCallCheck(this, CompacSizerModel);
|
|
@@ -127,7 +128,7 @@ var CompacSizerModel = /*#__PURE__*/function (_BaseModel) {
|
|
|
127
128
|
|
|
128
129
|
_this.fruitSizes = undefined;
|
|
129
130
|
/**
|
|
130
|
-
* The Packing Line ID this Compac Sizer
|
|
131
|
+
* The Packing Line ID that manages this Compac Sizer
|
|
131
132
|
*
|
|
132
133
|
* @type {string}
|
|
133
134
|
* @public
|
|
@@ -166,6 +167,14 @@ var CompacSizerModel = /*#__PURE__*/function (_BaseModel) {
|
|
|
166
167
|
*/
|
|
167
168
|
|
|
168
169
|
_this.updateTimestamp = undefined;
|
|
170
|
+
/**
|
|
171
|
+
* The Site ID associated with this Compac Sizer
|
|
172
|
+
*
|
|
173
|
+
* @type {number}
|
|
174
|
+
* @public
|
|
175
|
+
*/
|
|
176
|
+
|
|
177
|
+
_this.siteId = siteId;
|
|
169
178
|
return _this;
|
|
170
179
|
}
|
|
171
180
|
/**
|
|
@@ -174,14 +183,15 @@ var CompacSizerModel = /*#__PURE__*/function (_BaseModel) {
|
|
|
174
183
|
* @static
|
|
175
184
|
* @public
|
|
176
185
|
* @param {Object<string, any>|string} json A JSON Object or JSON String
|
|
186
|
+
* @param {number} siteId The Site ID associated with this Compac Sizer
|
|
177
187
|
* @return {CompacSizerModel}
|
|
178
188
|
*/
|
|
179
189
|
|
|
180
190
|
|
|
181
191
|
_createClass(CompacSizerModel, null, [{
|
|
182
192
|
key: "fromJSON",
|
|
183
|
-
value: function fromJSON(json) {
|
|
184
|
-
var model = new CompacSizerModel();
|
|
193
|
+
value: function fromJSON(json, siteId) {
|
|
194
|
+
var model = new CompacSizerModel(siteId);
|
|
185
195
|
/**
|
|
186
196
|
* The JSON Object
|
|
187
197
|
*
|
|
@@ -17,7 +17,7 @@ function _defineProperties(target, props) { for (var i = 0; i < props.length; i+
|
|
|
17
17
|
|
|
18
18
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
19
19
|
|
|
20
|
-
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); }
|
|
20
|
+
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
21
21
|
|
|
22
22
|
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
23
23
|
|
|
@@ -47,8 +47,9 @@ var CompacSizerOutletProductChangeModel = /*#__PURE__*/function (_BaseModel) {
|
|
|
47
47
|
* CompacSizerOutletProductChangeModel Constructor
|
|
48
48
|
*
|
|
49
49
|
* @protected
|
|
50
|
+
* @param {number} siteId The Site ID associated with this Compac Sizer Outlet Product Change
|
|
50
51
|
*/
|
|
51
|
-
function CompacSizerOutletProductChangeModel() {
|
|
52
|
+
function CompacSizerOutletProductChangeModel(siteId) {
|
|
52
53
|
var _this;
|
|
53
54
|
|
|
54
55
|
_classCallCheck(this, CompacSizerOutletProductChangeModel);
|
|
@@ -134,6 +135,14 @@ var CompacSizerOutletProductChangeModel = /*#__PURE__*/function (_BaseModel) {
|
|
|
134
135
|
*/
|
|
135
136
|
|
|
136
137
|
_this.updateTimestamp = undefined;
|
|
138
|
+
/**
|
|
139
|
+
* The Site ID associated with this Compac Sizer Outlet Product Change
|
|
140
|
+
*
|
|
141
|
+
* @type {number}
|
|
142
|
+
* @public
|
|
143
|
+
*/
|
|
144
|
+
|
|
145
|
+
_this.siteId = siteId;
|
|
137
146
|
return _this;
|
|
138
147
|
}
|
|
139
148
|
/**
|
|
@@ -142,14 +151,15 @@ var CompacSizerOutletProductChangeModel = /*#__PURE__*/function (_BaseModel) {
|
|
|
142
151
|
* @static
|
|
143
152
|
* @public
|
|
144
153
|
* @param {Object<string, any>|string} json A JSON Object or JSON String
|
|
154
|
+
* @param {number} siteId The Site ID associated with this Compac Sizer Outlet Product Change
|
|
145
155
|
* @return {CompacSizerOutletProductChangeModel}
|
|
146
156
|
*/
|
|
147
157
|
|
|
148
158
|
|
|
149
159
|
_createClass(CompacSizerOutletProductChangeModel, null, [{
|
|
150
160
|
key: "fromJSON",
|
|
151
|
-
value: function fromJSON(json) {
|
|
152
|
-
var model = new CompacSizerOutletProductChangeModel();
|
|
161
|
+
value: function fromJSON(json, siteId) {
|
|
162
|
+
var model = new CompacSizerOutletProductChangeModel(siteId);
|
|
153
163
|
/**
|
|
154
164
|
* The JSON Object
|
|
155
165
|
*
|
|
@@ -17,7 +17,7 @@ function _defineProperties(target, props) { for (var i = 0; i < props.length; i+
|
|
|
17
17
|
|
|
18
18
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
19
19
|
|
|
20
|
-
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); }
|
|
20
|
+
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
21
21
|
|
|
22
22
|
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
23
23
|
|
|
@@ -47,8 +47,9 @@ var CompacSizerOutletTypeChangeModel = /*#__PURE__*/function (_BaseModel) {
|
|
|
47
47
|
* CompacSizerOutletTypeChangeModel Constructor
|
|
48
48
|
*
|
|
49
49
|
* @protected
|
|
50
|
+
* @param {number} siteId The Site ID associated with this Compac Sizer Outlet Type Change
|
|
50
51
|
*/
|
|
51
|
-
function CompacSizerOutletTypeChangeModel() {
|
|
52
|
+
function CompacSizerOutletTypeChangeModel(siteId) {
|
|
52
53
|
var _this;
|
|
53
54
|
|
|
54
55
|
_classCallCheck(this, CompacSizerOutletTypeChangeModel);
|
|
@@ -118,6 +119,14 @@ var CompacSizerOutletTypeChangeModel = /*#__PURE__*/function (_BaseModel) {
|
|
|
118
119
|
*/
|
|
119
120
|
|
|
120
121
|
_this.updateTimestamp = undefined;
|
|
122
|
+
/**
|
|
123
|
+
* The Site ID associated with this Compac Sizer Outlet Type Change
|
|
124
|
+
*
|
|
125
|
+
* @type {number}
|
|
126
|
+
* @public
|
|
127
|
+
*/
|
|
128
|
+
|
|
129
|
+
_this.siteId = siteId;
|
|
121
130
|
return _this;
|
|
122
131
|
}
|
|
123
132
|
/**
|
|
@@ -126,14 +135,15 @@ var CompacSizerOutletTypeChangeModel = /*#__PURE__*/function (_BaseModel) {
|
|
|
126
135
|
* @static
|
|
127
136
|
* @public
|
|
128
137
|
* @param {Object<string, any>|string} json A JSON Object or JSON String
|
|
138
|
+
* @param {number} siteId The Site ID associated with this Compac Sizer Outlet Type Change
|
|
129
139
|
* @return {CompacSizerOutletTypeChangeModel}
|
|
130
140
|
*/
|
|
131
141
|
|
|
132
142
|
|
|
133
143
|
_createClass(CompacSizerOutletTypeChangeModel, null, [{
|
|
134
144
|
key: "fromJSON",
|
|
135
|
-
value: function fromJSON(json) {
|
|
136
|
-
var model = new CompacSizerOutletTypeChangeModel();
|
|
145
|
+
value: function fromJSON(json, siteId) {
|
|
146
|
+
var model = new CompacSizerOutletTypeChangeModel(siteId);
|
|
137
147
|
/**
|
|
138
148
|
* The JSON Object
|
|
139
149
|
*
|
|
@@ -17,7 +17,7 @@ function _defineProperties(target, props) { for (var i = 0; i < props.length; i+
|
|
|
17
17
|
|
|
18
18
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
19
19
|
|
|
20
|
-
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); }
|
|
20
|
+
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
21
21
|
|
|
22
22
|
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
23
23
|
|
|
@@ -47,8 +47,9 @@ var CompacSizerOutletTypeModel = /*#__PURE__*/function (_BaseModel) {
|
|
|
47
47
|
* CompacSizerOutletTypeModel Constructor
|
|
48
48
|
*
|
|
49
49
|
* @protected
|
|
50
|
+
* @param {number} siteId The Site ID associated with this Compac Sizer Outlet Type
|
|
50
51
|
*/
|
|
51
|
-
function CompacSizerOutletTypeModel() {
|
|
52
|
+
function CompacSizerOutletTypeModel(siteId) {
|
|
52
53
|
var _this;
|
|
53
54
|
|
|
54
55
|
_classCallCheck(this, CompacSizerOutletTypeModel);
|
|
@@ -102,6 +103,14 @@ var CompacSizerOutletTypeModel = /*#__PURE__*/function (_BaseModel) {
|
|
|
102
103
|
*/
|
|
103
104
|
|
|
104
105
|
_this.updateTimestamp = undefined;
|
|
106
|
+
/**
|
|
107
|
+
* The Site ID associated with this Compac Sizer Outlet Type
|
|
108
|
+
*
|
|
109
|
+
* @type {number}
|
|
110
|
+
* @public
|
|
111
|
+
*/
|
|
112
|
+
|
|
113
|
+
_this.siteId = siteId;
|
|
105
114
|
return _this;
|
|
106
115
|
}
|
|
107
116
|
/**
|
|
@@ -110,14 +119,15 @@ var CompacSizerOutletTypeModel = /*#__PURE__*/function (_BaseModel) {
|
|
|
110
119
|
* @static
|
|
111
120
|
* @public
|
|
112
121
|
* @param {Object<string, any>|string} json A JSON Object or JSON String
|
|
122
|
+
* @param {number} siteId The Site ID associated with this Compac Sizer Outlet Type
|
|
113
123
|
* @return {CompacSizerOutletTypeModel}
|
|
114
124
|
*/
|
|
115
125
|
|
|
116
126
|
|
|
117
127
|
_createClass(CompacSizerOutletTypeModel, null, [{
|
|
118
128
|
key: "fromJSON",
|
|
119
|
-
value: function fromJSON(json) {
|
|
120
|
-
var model = new CompacSizerOutletTypeModel();
|
|
129
|
+
value: function fromJSON(json, siteId) {
|
|
130
|
+
var model = new CompacSizerOutletTypeModel(siteId);
|
|
121
131
|
/**
|
|
122
132
|
* The JSON Object
|
|
123
133
|
*
|
|
@@ -17,7 +17,7 @@ function _defineProperties(target, props) { for (var i = 0; i < props.length; i+
|
|
|
17
17
|
|
|
18
18
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
19
19
|
|
|
20
|
-
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); }
|
|
20
|
+
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
21
21
|
|
|
22
22
|
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
23
23
|
|
|
@@ -47,8 +47,9 @@ var CompacSizerPackrunSummaryModel = /*#__PURE__*/function (_BaseModel) {
|
|
|
47
47
|
* CompacSizerPackrunSummaryModel Constructor
|
|
48
48
|
*
|
|
49
49
|
* @protected
|
|
50
|
+
* @param {number} siteId The Site ID associated with this Compac Sizer Packrun Summary
|
|
50
51
|
*/
|
|
51
|
-
function CompacSizerPackrunSummaryModel() {
|
|
52
|
+
function CompacSizerPackrunSummaryModel(siteId) {
|
|
52
53
|
var _this;
|
|
53
54
|
|
|
54
55
|
_classCallCheck(this, CompacSizerPackrunSummaryModel);
|
|
@@ -150,6 +151,14 @@ var CompacSizerPackrunSummaryModel = /*#__PURE__*/function (_BaseModel) {
|
|
|
150
151
|
*/
|
|
151
152
|
|
|
152
153
|
_this.updateTimestamp = undefined;
|
|
154
|
+
/**
|
|
155
|
+
* The Site ID associated with this Compac Sizer Packrun Summary
|
|
156
|
+
*
|
|
157
|
+
* @type {number}
|
|
158
|
+
* @public
|
|
159
|
+
*/
|
|
160
|
+
|
|
161
|
+
_this.siteId = siteId;
|
|
153
162
|
return _this;
|
|
154
163
|
}
|
|
155
164
|
/**
|
|
@@ -158,14 +167,15 @@ var CompacSizerPackrunSummaryModel = /*#__PURE__*/function (_BaseModel) {
|
|
|
158
167
|
* @static
|
|
159
168
|
* @public
|
|
160
169
|
* @param {Object<string, any>|string} json A JSON Object or JSON String
|
|
170
|
+
* @param {number} siteId The Site ID associated with this Compac Sizer Packrun Summary
|
|
161
171
|
* @return {CompacSizerPackrunSummaryModel}
|
|
162
172
|
*/
|
|
163
173
|
|
|
164
174
|
|
|
165
175
|
_createClass(CompacSizerPackrunSummaryModel, null, [{
|
|
166
176
|
key: "fromJSON",
|
|
167
|
-
value: function fromJSON(json) {
|
|
168
|
-
var model = new CompacSizerPackrunSummaryModel();
|
|
177
|
+
value: function fromJSON(json, siteId) {
|
|
178
|
+
var model = new CompacSizerPackrunSummaryModel(siteId);
|
|
169
179
|
/**
|
|
170
180
|
* The JSON Object
|
|
171
181
|
*
|
|
@@ -17,7 +17,7 @@ function _defineProperties(target, props) { for (var i = 0; i < props.length; i+
|
|
|
17
17
|
|
|
18
18
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
19
19
|
|
|
20
|
-
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); }
|
|
20
|
+
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
21
21
|
|
|
22
22
|
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
23
23
|
|
|
@@ -47,8 +47,9 @@ var DowntimeEventModel = /*#__PURE__*/function (_BaseModel) {
|
|
|
47
47
|
* DowntimeEventModel Constructor
|
|
48
48
|
*
|
|
49
49
|
* @protected
|
|
50
|
+
* @param {number} siteId The Site ID associated with this Downtime Event
|
|
50
51
|
*/
|
|
51
|
-
function DowntimeEventModel() {
|
|
52
|
+
function DowntimeEventModel(siteId) {
|
|
52
53
|
var _this;
|
|
53
54
|
|
|
54
55
|
_classCallCheck(this, DowntimeEventModel);
|
|
@@ -166,6 +167,14 @@ var DowntimeEventModel = /*#__PURE__*/function (_BaseModel) {
|
|
|
166
167
|
*/
|
|
167
168
|
|
|
168
169
|
_this.updateTimestamp = undefined;
|
|
170
|
+
/**
|
|
171
|
+
* The Site ID associated with this Downtime Event
|
|
172
|
+
*
|
|
173
|
+
* @type {number}
|
|
174
|
+
* @public
|
|
175
|
+
*/
|
|
176
|
+
|
|
177
|
+
_this.siteId = siteId;
|
|
169
178
|
return _this;
|
|
170
179
|
}
|
|
171
180
|
/**
|
|
@@ -174,14 +183,15 @@ var DowntimeEventModel = /*#__PURE__*/function (_BaseModel) {
|
|
|
174
183
|
* @static
|
|
175
184
|
* @public
|
|
176
185
|
* @param {Object<string, any>|string} json A JSON Object or JSON String
|
|
186
|
+
* @param {number} siteId The Site ID associated with this Downtime Event
|
|
177
187
|
* @return {DowntimeEventModel}
|
|
178
188
|
*/
|
|
179
189
|
|
|
180
190
|
|
|
181
191
|
_createClass(DowntimeEventModel, null, [{
|
|
182
192
|
key: "fromJSON",
|
|
183
|
-
value: function fromJSON(json) {
|
|
184
|
-
var model = new DowntimeEventModel();
|
|
193
|
+
value: function fromJSON(json, siteId) {
|
|
194
|
+
var model = new DowntimeEventModel(siteId);
|
|
185
195
|
/**
|
|
186
196
|
* The JSON Object
|
|
187
197
|
*
|
|
@@ -17,7 +17,7 @@ function _defineProperties(target, props) { for (var i = 0; i < props.length; i+
|
|
|
17
17
|
|
|
18
18
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
19
19
|
|
|
20
|
-
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); }
|
|
20
|
+
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
21
21
|
|
|
22
22
|
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
23
23
|
|
|
@@ -47,8 +47,9 @@ var FreshPackPackrunSummaryModel = /*#__PURE__*/function (_BaseModel) {
|
|
|
47
47
|
* FreshPackPackrunSummaryModel Constructor
|
|
48
48
|
*
|
|
49
49
|
* @protected
|
|
50
|
+
* @param {number} siteId The Site ID associated with this FreshPack Packrun Summary
|
|
50
51
|
*/
|
|
51
|
-
function FreshPackPackrunSummaryModel() {
|
|
52
|
+
function FreshPackPackrunSummaryModel(siteId) {
|
|
52
53
|
var _this;
|
|
53
54
|
|
|
54
55
|
_classCallCheck(this, FreshPackPackrunSummaryModel);
|
|
@@ -118,6 +119,14 @@ var FreshPackPackrunSummaryModel = /*#__PURE__*/function (_BaseModel) {
|
|
|
118
119
|
*/
|
|
119
120
|
|
|
120
121
|
_this.updateTimestamp = undefined;
|
|
122
|
+
/**
|
|
123
|
+
* The Site ID associated with this FreshPack Packrun Summary
|
|
124
|
+
*
|
|
125
|
+
* @type {number}
|
|
126
|
+
* @public
|
|
127
|
+
*/
|
|
128
|
+
|
|
129
|
+
_this.siteId = siteId;
|
|
121
130
|
return _this;
|
|
122
131
|
}
|
|
123
132
|
/**
|
|
@@ -126,14 +135,15 @@ var FreshPackPackrunSummaryModel = /*#__PURE__*/function (_BaseModel) {
|
|
|
126
135
|
* @static
|
|
127
136
|
* @public
|
|
128
137
|
* @param {Object<string, any>|string} json A JSON Object or JSON String
|
|
138
|
+
* @param {number} siteId The Site ID associated with this FreshPack Packrun Summary
|
|
129
139
|
* @return {FreshPackPackrunSummaryModel}
|
|
130
140
|
*/
|
|
131
141
|
|
|
132
142
|
|
|
133
143
|
_createClass(FreshPackPackrunSummaryModel, null, [{
|
|
134
144
|
key: "fromJSON",
|
|
135
|
-
value: function fromJSON(json) {
|
|
136
|
-
var model = new FreshPackPackrunSummaryModel();
|
|
145
|
+
value: function fromJSON(json, siteId) {
|
|
146
|
+
var model = new FreshPackPackrunSummaryModel(siteId);
|
|
137
147
|
/**
|
|
138
148
|
* The JSON Object
|
|
139
149
|
*
|