@ricado/api-client 1.4.1 → 2.1.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.
Files changed (136) hide show
  1. package/dist/ricado.api.client.js +1 -1
  2. package/lib/Controllers/AccountPolicyController.js +1 -1
  3. package/lib/Controllers/ApiAccountController.js +2 -2
  4. package/lib/Controllers/CompanyController.js +1 -1
  5. package/lib/Controllers/FirebaseTokenController.js +1 -1
  6. package/lib/Controllers/Packhouse/Site/BinTipWeightController.js +2 -2
  7. package/lib/Controllers/Packhouse/Site/CompacSizerBatchController.js +2 -2
  8. package/lib/Controllers/Packhouse/Site/CompacSizerController.js +1 -1
  9. package/lib/Controllers/Packhouse/Site/CompacSizerOutletProductChangeController.js +2 -2
  10. package/lib/Controllers/Packhouse/Site/CompacSizerOutletTypeChangeController.js +2 -2
  11. package/lib/Controllers/Packhouse/Site/CompacSizerOutletTypeController.js +1 -1
  12. package/lib/Controllers/Packhouse/Site/CompacSizerPackrunSummaryController.js +2 -2
  13. package/lib/Controllers/Packhouse/Site/DowntimeEventController.js +2 -2
  14. package/lib/Controllers/Packhouse/Site/FreshPackPackrunSummaryController.js +2 -2
  15. package/lib/Controllers/Packhouse/Site/GrowingMethodController.js +1 -1
  16. package/lib/Controllers/Packhouse/Site/PackTypeController.js +1 -1
  17. package/lib/Controllers/Packhouse/Site/PackingLineController.js +1 -1
  18. package/lib/Controllers/Packhouse/Site/PackrunController.js +288 -2
  19. package/lib/Controllers/Packhouse/Site/RejectBinController.js +2 -2
  20. package/lib/Controllers/Packhouse/Site/RejectBinScaleController.js +1 -1
  21. package/lib/Controllers/Packhouse/Site/RejectBinWeightController.js +2 -2
  22. package/lib/Controllers/Packhouse/Site/ShiftController.js +2 -2
  23. package/lib/Controllers/Packhouse/Site/ShiftFocusMeetingController.js +2 -2
  24. package/lib/Controllers/Packhouse/Site/ShiftHourlyEntryController.js +2 -2
  25. package/lib/Controllers/Packhouse/Site/VarietyController.js +1 -1
  26. package/lib/Controllers/RTU/GlobalSettingsController.js +2 -2
  27. package/lib/Controllers/RTU/PluginSettingsController.js +2 -2
  28. package/lib/Controllers/RTUController.js +1 -1
  29. package/lib/Controllers/RTUPluginController.js +1 -1
  30. package/lib/Controllers/Site/AlarmController.js +2 -2
  31. package/lib/Controllers/Site/AlarmGroupController.js +1 -1
  32. package/lib/Controllers/Site/DefinitionController.js +1 -1
  33. package/lib/Controllers/Site/PermanentObjectController.js +1 -1
  34. package/lib/Controllers/Site/PermanentObjectDataController.js +2 -2
  35. package/lib/Controllers/Site/PointController.js +2 -2
  36. package/lib/Controllers/Site/TemporaryObjectController.js +1 -1
  37. package/lib/Controllers/SiteController.js +1 -1
  38. package/lib/Controllers/TokenController.js +2 -2
  39. package/lib/Controllers/ToolsController.js +1 -1
  40. package/lib/Controllers/UserAccountActionTokenController.js +2 -2
  41. package/lib/Controllers/UserAccountController.js +2 -2
  42. package/lib/DataItems/PointValueItem.js +2 -2
  43. package/lib/Errors/BadRequestError.js +7 -3
  44. package/lib/Errors/ForbiddenError.js +7 -3
  45. package/lib/Errors/NetworkError.js +7 -3
  46. package/lib/Errors/NotAllowedError.js +7 -3
  47. package/lib/Errors/NotFoundError.js +7 -3
  48. package/lib/Errors/ServerError.js +7 -3
  49. package/lib/Errors/UnauthorizedError.js +7 -3
  50. package/lib/Models/AccountPolicyModel.js +29 -133
  51. package/lib/Models/ApiAccountModel.js +29 -133
  52. package/lib/Models/BaseModel.js +6 -2
  53. package/lib/Models/CompanyModel.js +23 -101
  54. package/lib/Models/FirebaseTokenModel.js +32 -149
  55. package/lib/Models/Packhouse/Site/BinTipWeightModel.js +43 -185
  56. package/lib/Models/Packhouse/Site/CompacSizerBatchModel.js +40 -169
  57. package/lib/Models/Packhouse/Site/CompacSizerModel.js +58 -265
  58. package/lib/Models/Packhouse/Site/CompacSizerOutletProductChangeModel.js +46 -201
  59. package/lib/Models/Packhouse/Site/CompacSizerOutletTypeChangeModel.js +40 -169
  60. package/lib/Models/Packhouse/Site/CompacSizerOutletTypeModel.js +34 -137
  61. package/lib/Models/Packhouse/Site/CompacSizerPackrunSummaryModel.js +52 -233
  62. package/lib/Models/Packhouse/Site/DowntimeEventModel.js +58 -265
  63. package/lib/Models/Packhouse/Site/FreshPackPackrunSummaryModel.js +40 -169
  64. package/lib/Models/Packhouse/Site/GrowingMethodModel.js +34 -137
  65. package/lib/Models/Packhouse/Site/PackTypeModel.js +40 -169
  66. package/lib/Models/Packhouse/Site/PackingLineModel.js +61 -281
  67. package/lib/Models/Packhouse/Site/PackrunModel.js +61 -281
  68. package/lib/Models/Packhouse/Site/RejectBinModel.js +43 -185
  69. package/lib/Models/Packhouse/Site/RejectBinScaleModel.js +52 -233
  70. package/lib/Models/Packhouse/Site/RejectBinWeightModel.js +46 -201
  71. package/lib/Models/Packhouse/Site/ShiftFocusMeetingModel.js +52 -233
  72. package/lib/Models/Packhouse/Site/ShiftHourlyEntryModel.js +127 -633
  73. package/lib/Models/Packhouse/Site/ShiftModel.js +73 -345
  74. package/lib/Models/Packhouse/Site/VarietyModel.js +40 -169
  75. package/lib/Models/RTUModel.js +26 -117
  76. package/lib/Models/RTUPluginModel.js +23 -101
  77. package/lib/Models/Site/AlarmGroupModel.js +37 -153
  78. package/lib/Models/Site/AlarmModel.js +67 -313
  79. package/lib/Models/Site/DefinitionModel.js +34 -137
  80. package/lib/Models/Site/PermanentObjectDataModel.js +40 -169
  81. package/lib/Models/Site/PermanentObjectModel.js +37 -153
  82. package/lib/Models/Site/PointModel.js +49 -217
  83. package/lib/Models/Site/TemporaryObjectModel.js +34 -137
  84. package/lib/Models/Site/index.js +0 -3
  85. package/lib/Models/SiteModel.js +26 -117
  86. package/lib/Models/TokenModel.js +38 -181
  87. package/lib/Models/UserAccountActionTokenModel.js +41 -197
  88. package/lib/Models/UserAccountModel.js +38 -181
  89. package/lib/PackageVersion.js +1 -1
  90. package/lib/Points.js +1 -1
  91. package/lib/RequestHelper.js +2 -2
  92. package/lib/WebSocketHelper.js +1 -1
  93. package/lib/index.d.ts +945 -1206
  94. package/package.json +3 -3
  95. package/src/Controllers/Packhouse/Site/PackrunController.js +361 -0
  96. package/src/Models/AccountPolicyModel.js +21 -117
  97. package/src/Models/ApiAccountModel.js +21 -117
  98. package/src/Models/CompanyModel.js +15 -87
  99. package/src/Models/FirebaseTokenModel.js +24 -132
  100. package/src/Models/Packhouse/Site/BinTipWeightModel.js +32 -163
  101. package/src/Models/Packhouse/Site/CompacSizerBatchModel.js +29 -148
  102. package/src/Models/Packhouse/Site/CompacSizerModel.js +47 -238
  103. package/src/Models/Packhouse/Site/CompacSizerOutletProductChangeModel.js +35 -178
  104. package/src/Models/Packhouse/Site/CompacSizerOutletTypeChangeModel.js +29 -148
  105. package/src/Models/Packhouse/Site/CompacSizerOutletTypeModel.js +23 -118
  106. package/src/Models/Packhouse/Site/CompacSizerPackrunSummaryModel.js +41 -208
  107. package/src/Models/Packhouse/Site/DowntimeEventModel.js +47 -238
  108. package/src/Models/Packhouse/Site/FreshPackPackrunSummaryModel.js +29 -148
  109. package/src/Models/Packhouse/Site/GrowingMethodModel.js +23 -118
  110. package/src/Models/Packhouse/Site/PackTypeModel.js +29 -148
  111. package/src/Models/Packhouse/Site/PackingLineModel.js +50 -253
  112. package/src/Models/Packhouse/Site/PackrunModel.js +50 -253
  113. package/src/Models/Packhouse/Site/RejectBinModel.js +32 -163
  114. package/src/Models/Packhouse/Site/RejectBinScaleModel.js +41 -208
  115. package/src/Models/Packhouse/Site/RejectBinWeightModel.js +35 -178
  116. package/src/Models/Packhouse/Site/ShiftFocusMeetingModel.js +41 -208
  117. package/src/Models/Packhouse/Site/ShiftHourlyEntryModel.js +116 -583
  118. package/src/Models/Packhouse/Site/ShiftModel.js +62 -313
  119. package/src/Models/Packhouse/Site/VarietyModel.js +29 -148
  120. package/src/Models/RTUModel.js +18 -102
  121. package/src/Models/RTUPluginModel.js +15 -87
  122. package/src/Models/Site/AlarmGroupModel.js +26 -133
  123. package/src/Models/Site/AlarmModel.js +56 -283
  124. package/src/Models/Site/DefinitionModel.js +23 -118
  125. package/src/Models/Site/PermanentObjectDataModel.js +29 -148
  126. package/src/Models/Site/PermanentObjectModel.js +26 -133
  127. package/src/Models/Site/PointModel.js +38 -193
  128. package/src/Models/Site/TemporaryObjectModel.js +23 -118
  129. package/src/Models/Site/index.js +0 -2
  130. package/src/Models/SiteModel.js +18 -102
  131. package/src/Models/TokenModel.js +30 -162
  132. package/src/Models/UserAccountActionTokenModel.js +33 -177
  133. package/src/Models/UserAccountModel.js +30 -162
  134. package/src/PackageVersion.js +1 -1
  135. package/lib/Models/Site/BaseSiteModel.js +0 -58
  136. package/src/Models/Site/BaseSiteModel.js +0 -30
@@ -5,19 +5,19 @@ Object.defineProperty(exports, "__esModule", {
5
5
  });
6
6
  exports.default = void 0;
7
7
 
8
- var _BaseSiteModel2 = _interopRequireDefault(require("../../../Models/Site/BaseSiteModel"));
8
+ var _BaseModel2 = _interopRequireDefault(require("../../../Models/BaseModel"));
9
9
 
10
10
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
11
11
 
12
- function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
12
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
13
13
 
14
14
  function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
15
15
 
16
16
  function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
17
17
 
18
- function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
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"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
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
 
@@ -36,10 +36,10 @@ function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.g
36
36
  *
37
37
  * @class
38
38
  * @hideconstructor
39
- * @extends BaseSiteModel
39
+ * @extends BaseModel
40
40
  */
41
- var FreshPackPackrunSummaryModel = /*#__PURE__*/function (_BaseSiteModel) {
42
- _inherits(FreshPackPackrunSummaryModel, _BaseSiteModel);
41
+ var FreshPackPackrunSummaryModel = /*#__PURE__*/function (_BaseModel) {
42
+ _inherits(FreshPackPackrunSummaryModel, _BaseModel);
43
43
 
44
44
  var _super = _createSuper(FreshPackPackrunSummaryModel);
45
45
 
@@ -59,217 +59,88 @@ var FreshPackPackrunSummaryModel = /*#__PURE__*/function (_BaseSiteModel) {
59
59
  * The FreshPack Packrun Summary ID
60
60
  *
61
61
  * @type {string}
62
- * @private
62
+ * @public
63
63
  */
64
64
 
65
- _this._id = undefined;
65
+ _this.id = undefined;
66
66
  /**
67
67
  * The Packing Line ID this Summary is associated with
68
68
  *
69
69
  * @type {string}
70
- * @private
70
+ * @public
71
71
  */
72
72
 
73
- _this._packingLineId = undefined;
73
+ _this.packingLineId = undefined;
74
74
  /**
75
75
  * The Packrun ID this Summary is associated with
76
76
  *
77
77
  * @type {string}
78
- * @private
78
+ * @public
79
79
  */
80
80
 
81
- _this._packrunId = undefined;
81
+ _this.packrunId = undefined;
82
82
  /**
83
83
  * When this Summary was Created
84
84
  *
85
85
  * @type {Date}
86
- * @private
86
+ * @public
87
87
  */
88
88
 
89
- _this._createdTimestamp = undefined;
89
+ _this.createdTimestamp = undefined;
90
90
  /**
91
91
  * The Time Batch this Summary is associated with
92
92
  *
93
93
  * @type {?string}
94
- * @private
94
+ * @public
95
95
  */
96
96
 
97
- _this._timeBatchId = undefined;
97
+ _this.timeBatchId = undefined;
98
98
  /**
99
99
  * An Array of Tray Summary Data Objects for all Sizes and Class Types
100
100
  *
101
101
  * @type {Object[]}
102
- * @private
102
+ * @public
103
103
  */
104
104
 
105
- _this._traySummaries = undefined;
105
+ _this.traySummaries = undefined;
106
106
  /**
107
107
  * Whether the FreshPack Packrun Summary has been deleted
108
108
  *
109
109
  * @type {boolean}
110
- * @private
110
+ * @public
111
111
  */
112
112
 
113
- _this._deleted = undefined;
113
+ _this.deleted = undefined;
114
114
  /**
115
115
  * When the FreshPack Packrun Summary was last updated
116
116
  *
117
117
  * @type {Date}
118
- * @private
118
+ * @public
119
119
  */
120
120
 
121
- _this._updateTimestamp = undefined;
121
+ _this.updateTimestamp = undefined;
122
122
  /**
123
123
  * The Site ID associated with this FreshPack Packrun Summary
124
124
  *
125
125
  * @type {number}
126
- * @private
126
+ * @public
127
127
  */
128
128
 
129
- _this._siteId = siteId;
129
+ _this.siteId = siteId;
130
130
  return _this;
131
131
  }
132
132
  /**
133
- * The FreshPack Packrun Summary ID
133
+ * Create a new **FreshPackPackrunSummaryModel** from a JSON Object or JSON String
134
134
  *
135
+ * @static
135
136
  * @public
136
- * @type {string}
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
139
+ * @return {FreshPackPackrunSummaryModel}
137
140
  */
138
141
 
139
142
 
140
- _createClass(FreshPackPackrunSummaryModel, [{
141
- key: "id",
142
- get: function get() {
143
- return this._id;
144
- }
145
- /**
146
- * The Packing Line ID this Summary is associated with
147
- *
148
- * @public
149
- * @type {string}
150
- */
151
-
152
- }, {
153
- key: "packingLineId",
154
- get: function get() {
155
- return this._packingLineId;
156
- }
157
- /**
158
- * The Packrun ID this Summary is associated with
159
- *
160
- * @public
161
- * @type {string}
162
- */
163
-
164
- }, {
165
- key: "packrunId",
166
- get: function get() {
167
- return this._packrunId;
168
- }
169
- /**
170
- * When this Summary was Created
171
- *
172
- * @public
173
- * @type {Date}
174
- */
175
-
176
- }, {
177
- key: "createdTimestamp",
178
- get: function get() {
179
- return this._createdTimestamp;
180
- }
181
- /**
182
- * The Time Batch this Summary is associated with
183
- *
184
- * @public
185
- * @type {?string}
186
- */
187
-
188
- }, {
189
- key: "timeBatchId",
190
- get: function get() {
191
- return this._timeBatchId;
192
- }
193
- /**
194
- * An Array of Tray Summary Data Objects for all Sizes and Class Types
195
- *
196
- * @public
197
- * @type {Object[]}
198
- */
199
-
200
- }, {
201
- key: "traySummaries",
202
- get: function get() {
203
- return this._traySummaries;
204
- }
205
- /**
206
- * Whether the FreshPack Packrun Summary has been deleted
207
- *
208
- * @public
209
- * @type {boolean}
210
- */
211
-
212
- }, {
213
- key: "deleted",
214
- get: function get() {
215
- return this._deleted;
216
- }
217
- /**
218
- * When the FreshPack Packrun Summary was last updated
219
- *
220
- * @public
221
- * @type {Date}
222
- */
223
-
224
- }, {
225
- key: "updateTimestamp",
226
- get: function get() {
227
- return this._updateTimestamp;
228
- }
229
- /**
230
- * The Site ID associated with this FreshPack Packrun Summary
231
- *
232
- * @public
233
- * @type {number}
234
- */
235
-
236
- }, {
237
- key: "siteId",
238
- get: function get() {
239
- return this._siteId;
240
- }
241
- /**
242
- * Convert this **FreshPackPackrunSummaryModel** to a JSON Object
243
- *
244
- * @public
245
- * @return {Object<string, any>}
246
- */
247
-
248
- }, {
249
- key: "toJSON",
250
- value: function toJSON() {
251
- return {
252
- id: this._id,
253
- packingLineId: this._packingLineId,
254
- packrunId: this._packrunId,
255
- createdTimestamp: this._createdTimestamp,
256
- timeBatchId: this._timeBatchId,
257
- traySummaries: this._traySummaries,
258
- deleted: this._deleted,
259
- updateTimestamp: this._updateTimestamp
260
- };
261
- }
262
- /**
263
- * Create a new **FreshPackPackrunSummaryModel** from a JSON Object or JSON String
264
- *
265
- * @static
266
- * @public
267
- * @param {Object<string, any>|string} json A JSON Object or JSON String
268
- * @param {number} siteId The Site ID associated with this FreshPack Packrun Summary
269
- * @return {FreshPackPackrunSummaryModel}
270
- */
271
-
272
- }], [{
143
+ _createClass(FreshPackPackrunSummaryModel, null, [{
273
144
  key: "fromJSON",
274
145
  value: function fromJSON(json, siteId) {
275
146
  var model = new FreshPackPackrunSummaryModel(siteId);
@@ -288,7 +159,7 @@ var FreshPackPackrunSummaryModel = /*#__PURE__*/function (_BaseSiteModel) {
288
159
  }
289
160
 
290
161
  if ('id' in jsonObject) {
291
- model._id = function () {
162
+ model.id = function () {
292
163
  if (typeof jsonObject['id'] !== 'string') {
293
164
  return String(jsonObject['id']);
294
165
  }
@@ -298,7 +169,7 @@ var FreshPackPackrunSummaryModel = /*#__PURE__*/function (_BaseSiteModel) {
298
169
  }
299
170
 
300
171
  if ('packingLineId' in jsonObject) {
301
- model._packingLineId = function () {
172
+ model.packingLineId = function () {
302
173
  if (typeof jsonObject['packingLineId'] !== 'string') {
303
174
  return String(jsonObject['packingLineId']);
304
175
  }
@@ -308,7 +179,7 @@ var FreshPackPackrunSummaryModel = /*#__PURE__*/function (_BaseSiteModel) {
308
179
  }
309
180
 
310
181
  if ('packrunId' in jsonObject) {
311
- model._packrunId = function () {
182
+ model.packrunId = function () {
312
183
  if (typeof jsonObject['packrunId'] !== 'string') {
313
184
  return String(jsonObject['packrunId']);
314
185
  }
@@ -318,7 +189,7 @@ var FreshPackPackrunSummaryModel = /*#__PURE__*/function (_BaseSiteModel) {
318
189
  }
319
190
 
320
191
  if ('createdTimestamp' in jsonObject) {
321
- model._createdTimestamp = function () {
192
+ model.createdTimestamp = function () {
322
193
  if (typeof jsonObject['createdTimestamp'] !== 'string') {
323
194
  return new Date(String(jsonObject['createdTimestamp']));
324
195
  }
@@ -328,7 +199,7 @@ var FreshPackPackrunSummaryModel = /*#__PURE__*/function (_BaseSiteModel) {
328
199
  }
329
200
 
330
201
  if ('timeBatchId' in jsonObject) {
331
- model._timeBatchId = function () {
202
+ model.timeBatchId = function () {
332
203
  if (jsonObject['timeBatchId'] === null) {
333
204
  return null;
334
205
  }
@@ -342,7 +213,7 @@ var FreshPackPackrunSummaryModel = /*#__PURE__*/function (_BaseSiteModel) {
342
213
  }
343
214
 
344
215
  if ('traySummaries' in jsonObject) {
345
- model._traySummaries = function () {
216
+ model.traySummaries = function () {
346
217
  if (Array.isArray(jsonObject['traySummaries']) !== true) {
347
218
  return [];
348
219
  }
@@ -360,7 +231,7 @@ var FreshPackPackrunSummaryModel = /*#__PURE__*/function (_BaseSiteModel) {
360
231
  }
361
232
 
362
233
  if ('deleted' in jsonObject) {
363
- model._deleted = function () {
234
+ model.deleted = function () {
364
235
  if (typeof jsonObject['deleted'] !== 'boolean') {
365
236
  return Boolean(jsonObject['deleted']);
366
237
  }
@@ -370,7 +241,7 @@ var FreshPackPackrunSummaryModel = /*#__PURE__*/function (_BaseSiteModel) {
370
241
  }
371
242
 
372
243
  if ('updateTimestamp' in jsonObject) {
373
- model._updateTimestamp = function () {
244
+ model.updateTimestamp = function () {
374
245
  if (typeof jsonObject['updateTimestamp'] !== 'string') {
375
246
  return new Date(String(jsonObject['updateTimestamp']));
376
247
  }
@@ -384,7 +255,7 @@ var FreshPackPackrunSummaryModel = /*#__PURE__*/function (_BaseSiteModel) {
384
255
  }]);
385
256
 
386
257
  return FreshPackPackrunSummaryModel;
387
- }(_BaseSiteModel2.default);
258
+ }(_BaseModel2.default);
388
259
 
389
260
  var _default = FreshPackPackrunSummaryModel;
390
261
  exports.default = _default;
@@ -5,19 +5,19 @@ Object.defineProperty(exports, "__esModule", {
5
5
  });
6
6
  exports.default = void 0;
7
7
 
8
- var _BaseSiteModel2 = _interopRequireDefault(require("../../../Models/Site/BaseSiteModel"));
8
+ var _BaseModel2 = _interopRequireDefault(require("../../../Models/BaseModel"));
9
9
 
10
10
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
11
11
 
12
- function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
12
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
13
13
 
14
14
  function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
15
15
 
16
16
  function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
17
17
 
18
- function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
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"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
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
 
@@ -36,10 +36,10 @@ function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.g
36
36
  *
37
37
  * @class
38
38
  * @hideconstructor
39
- * @extends BaseSiteModel
39
+ * @extends BaseModel
40
40
  */
41
- var GrowingMethodModel = /*#__PURE__*/function (_BaseSiteModel) {
42
- _inherits(GrowingMethodModel, _BaseSiteModel);
41
+ var GrowingMethodModel = /*#__PURE__*/function (_BaseModel) {
42
+ _inherits(GrowingMethodModel, _BaseModel);
43
43
 
44
44
  var _super = _createSuper(GrowingMethodModel);
45
45
 
@@ -59,175 +59,72 @@ var GrowingMethodModel = /*#__PURE__*/function (_BaseSiteModel) {
59
59
  * The Growing Method ID
60
60
  *
61
61
  * @type {string}
62
- * @private
62
+ * @public
63
63
  */
64
64
 
65
- _this._id = undefined;
65
+ _this.id = undefined;
66
66
  /**
67
67
  * The Growing Method Code
68
68
  *
69
69
  * @type {string}
70
- * @private
70
+ * @public
71
71
  */
72
72
 
73
- _this._code = undefined;
73
+ _this.code = undefined;
74
74
  /**
75
75
  * The Growing Method Name
76
76
  *
77
77
  * @type {string}
78
- * @private
78
+ * @public
79
79
  */
80
80
 
81
- _this._name = undefined;
81
+ _this.name = undefined;
82
82
  /**
83
83
  * The Growing Method Description
84
84
  *
85
85
  * @type {string}
86
- * @private
86
+ * @public
87
87
  */
88
88
 
89
- _this._description = undefined;
89
+ _this.description = undefined;
90
90
  /**
91
91
  * Whether the Growing Method has been deleted
92
92
  *
93
93
  * @type {boolean}
94
- * @private
94
+ * @public
95
95
  */
96
96
 
97
- _this._deleted = undefined;
97
+ _this.deleted = undefined;
98
98
  /**
99
99
  * When the Growing Method was last updated
100
100
  *
101
101
  * @type {Date}
102
- * @private
102
+ * @public
103
103
  */
104
104
 
105
- _this._updateTimestamp = undefined;
105
+ _this.updateTimestamp = undefined;
106
106
  /**
107
107
  * The Site ID associated with this Growing Method
108
108
  *
109
109
  * @type {number}
110
- * @private
110
+ * @public
111
111
  */
112
112
 
113
- _this._siteId = siteId;
113
+ _this.siteId = siteId;
114
114
  return _this;
115
115
  }
116
116
  /**
117
- * The Growing Method ID
117
+ * Create a new **GrowingMethodModel** from a JSON Object or JSON String
118
118
  *
119
+ * @static
119
120
  * @public
120
- * @type {string}
121
+ * @param {Object<string, any>|string} json A JSON Object or JSON String
122
+ * @param {number} siteId The Site ID associated with this Growing Method
123
+ * @return {GrowingMethodModel}
121
124
  */
122
125
 
123
126
 
124
- _createClass(GrowingMethodModel, [{
125
- key: "id",
126
- get: function get() {
127
- return this._id;
128
- }
129
- /**
130
- * The Growing Method Code
131
- *
132
- * @public
133
- * @type {string}
134
- */
135
-
136
- }, {
137
- key: "code",
138
- get: function get() {
139
- return this._code;
140
- }
141
- /**
142
- * The Growing Method Name
143
- *
144
- * @public
145
- * @type {string}
146
- */
147
-
148
- }, {
149
- key: "name",
150
- get: function get() {
151
- return this._name;
152
- }
153
- /**
154
- * The Growing Method Description
155
- *
156
- * @public
157
- * @type {string}
158
- */
159
-
160
- }, {
161
- key: "description",
162
- get: function get() {
163
- return this._description;
164
- }
165
- /**
166
- * Whether the Growing Method has been deleted
167
- *
168
- * @public
169
- * @type {boolean}
170
- */
171
-
172
- }, {
173
- key: "deleted",
174
- get: function get() {
175
- return this._deleted;
176
- }
177
- /**
178
- * When the Growing Method was last updated
179
- *
180
- * @public
181
- * @type {Date}
182
- */
183
-
184
- }, {
185
- key: "updateTimestamp",
186
- get: function get() {
187
- return this._updateTimestamp;
188
- }
189
- /**
190
- * The Site ID associated with this Growing Method
191
- *
192
- * @public
193
- * @type {number}
194
- */
195
-
196
- }, {
197
- key: "siteId",
198
- get: function get() {
199
- return this._siteId;
200
- }
201
- /**
202
- * Convert this **GrowingMethodModel** to a JSON Object
203
- *
204
- * @public
205
- * @return {Object<string, any>}
206
- */
207
-
208
- }, {
209
- key: "toJSON",
210
- value: function toJSON() {
211
- return {
212
- id: this._id,
213
- code: this._code,
214
- name: this._name,
215
- description: this._description,
216
- deleted: this._deleted,
217
- updateTimestamp: this._updateTimestamp
218
- };
219
- }
220
- /**
221
- * Create a new **GrowingMethodModel** from a JSON Object or JSON String
222
- *
223
- * @static
224
- * @public
225
- * @param {Object<string, any>|string} json A JSON Object or JSON String
226
- * @param {number} siteId The Site ID associated with this Growing Method
227
- * @return {GrowingMethodModel}
228
- */
229
-
230
- }], [{
127
+ _createClass(GrowingMethodModel, null, [{
231
128
  key: "fromJSON",
232
129
  value: function fromJSON(json, siteId) {
233
130
  var model = new GrowingMethodModel(siteId);
@@ -246,7 +143,7 @@ var GrowingMethodModel = /*#__PURE__*/function (_BaseSiteModel) {
246
143
  }
247
144
 
248
145
  if ('id' in jsonObject) {
249
- model._id = function () {
146
+ model.id = function () {
250
147
  if (typeof jsonObject['id'] !== 'string') {
251
148
  return String(jsonObject['id']);
252
149
  }
@@ -256,7 +153,7 @@ var GrowingMethodModel = /*#__PURE__*/function (_BaseSiteModel) {
256
153
  }
257
154
 
258
155
  if ('code' in jsonObject) {
259
- model._code = function () {
156
+ model.code = function () {
260
157
  if (typeof jsonObject['code'] !== 'string') {
261
158
  return String(jsonObject['code']);
262
159
  }
@@ -266,7 +163,7 @@ var GrowingMethodModel = /*#__PURE__*/function (_BaseSiteModel) {
266
163
  }
267
164
 
268
165
  if ('name' in jsonObject) {
269
- model._name = function () {
166
+ model.name = function () {
270
167
  if (typeof jsonObject['name'] !== 'string') {
271
168
  return String(jsonObject['name']);
272
169
  }
@@ -276,7 +173,7 @@ var GrowingMethodModel = /*#__PURE__*/function (_BaseSiteModel) {
276
173
  }
277
174
 
278
175
  if ('description' in jsonObject) {
279
- model._description = function () {
176
+ model.description = function () {
280
177
  if (typeof jsonObject['description'] !== 'string') {
281
178
  return String(jsonObject['description']);
282
179
  }
@@ -286,7 +183,7 @@ var GrowingMethodModel = /*#__PURE__*/function (_BaseSiteModel) {
286
183
  }
287
184
 
288
185
  if ('deleted' in jsonObject) {
289
- model._deleted = function () {
186
+ model.deleted = function () {
290
187
  if (typeof jsonObject['deleted'] !== 'boolean') {
291
188
  return Boolean(jsonObject['deleted']);
292
189
  }
@@ -296,7 +193,7 @@ var GrowingMethodModel = /*#__PURE__*/function (_BaseSiteModel) {
296
193
  }
297
194
 
298
195
  if ('updateTimestamp' in jsonObject) {
299
- model._updateTimestamp = function () {
196
+ model.updateTimestamp = function () {
300
197
  if (typeof jsonObject['updateTimestamp'] !== 'string') {
301
198
  return new Date(String(jsonObject['updateTimestamp']));
302
199
  }
@@ -310,7 +207,7 @@ var GrowingMethodModel = /*#__PURE__*/function (_BaseSiteModel) {
310
207
  }]);
311
208
 
312
209
  return GrowingMethodModel;
313
- }(_BaseSiteModel2.default);
210
+ }(_BaseModel2.default);
314
211
 
315
212
  var _default = GrowingMethodModel;
316
213
  exports.default = _default;