@ricado/api-client 2.1.1 → 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.
Files changed (41) hide show
  1. package/dist/ricado.api.client.js +1 -1
  2. package/lib/Controllers/Packhouse/Site/BinTipBinController.js +622 -0
  3. package/lib/Controllers/Packhouse/Site/CompacSizerController.js +3 -3
  4. package/lib/Controllers/Packhouse/Site/FreshQualityPackrunSummaryController.js +657 -0
  5. package/lib/Controllers/Packhouse/Site/PackingLineController.js +25 -1
  6. package/lib/Controllers/Packhouse/Site/PackrunController.js +42 -0
  7. package/lib/Controllers/Packhouse/Site/ShiftHourlyEntryController.js +15 -0
  8. package/lib/Controllers/Packhouse/Site/ShiftQualitySummaryController.js +661 -0
  9. package/lib/Controllers/Packhouse/Site/ShiftTaskController.js +628 -0
  10. package/lib/Controllers/Packhouse/Site/index.js +12 -0
  11. package/lib/Models/Packhouse/Site/BinTipBinModel.js +367 -0
  12. package/lib/Models/Packhouse/Site/CompacSizerModel.js +1 -1
  13. package/lib/Models/Packhouse/Site/FreshQualityPackrunSummaryModel.js +481 -0
  14. package/lib/Models/Packhouse/Site/PackingLineModel.js +524 -1
  15. package/lib/Models/Packhouse/Site/PackrunModel.js +66 -0
  16. package/lib/Models/Packhouse/Site/ShiftHourlyEntryModel.js +167 -1
  17. package/lib/Models/Packhouse/Site/ShiftQualitySummaryModel.js +599 -0
  18. package/lib/Models/Packhouse/Site/ShiftTaskModel.js +373 -0
  19. package/lib/Models/Packhouse/Site/index.js +12 -0
  20. package/lib/PackageVersion.js +1 -1
  21. package/lib/index.d.ts +2241 -146
  22. package/package.json +1 -1
  23. package/src/Controllers/Packhouse/Site/BinTipBinController.js +665 -0
  24. package/src/Controllers/Packhouse/Site/CompacSizerController.js +3 -3
  25. package/src/Controllers/Packhouse/Site/FreshQualityPackrunSummaryController.js +700 -0
  26. package/src/Controllers/Packhouse/Site/PackingLineController.js +25 -1
  27. package/src/Controllers/Packhouse/Site/PackrunController.js +52 -0
  28. package/src/Controllers/Packhouse/Site/ShiftHourlyEntryController.js +15 -0
  29. package/src/Controllers/Packhouse/Site/ShiftQualitySummaryController.js +704 -0
  30. package/src/Controllers/Packhouse/Site/ShiftTaskController.js +671 -0
  31. package/src/Controllers/Packhouse/Site/index.js +8 -0
  32. package/src/Models/Packhouse/Site/BinTipBinModel.js +365 -0
  33. package/src/Models/Packhouse/Site/CompacSizerModel.js +1 -1
  34. package/src/Models/Packhouse/Site/FreshQualityPackrunSummaryModel.js +523 -0
  35. package/src/Models/Packhouse/Site/PackingLineModel.js +705 -1
  36. package/src/Models/Packhouse/Site/PackrunModel.js +75 -0
  37. package/src/Models/Packhouse/Site/ShiftHourlyEntryModel.js +192 -1
  38. package/src/Models/Packhouse/Site/ShiftQualitySummaryModel.js +664 -0
  39. package/src/Models/Packhouse/Site/ShiftTaskModel.js +369 -0
  40. package/src/Models/Packhouse/Site/index.js +8 -0
  41. package/src/PackageVersion.js +1 -1
@@ -0,0 +1,373 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+
8
+ var _BaseModel2 = _interopRequireDefault(require("../../../Models/BaseModel"));
9
+
10
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
11
+
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
+
14
+ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
15
+
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
+
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
+
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
+
22
+ function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
23
+
24
+ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
25
+
26
+ function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
27
+
28
+ function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
29
+
30
+ function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
31
+
32
+ function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
33
+
34
+ /**
35
+ * Model Class for a Shift Task
36
+ *
37
+ * @class
38
+ * @hideconstructor
39
+ * @extends BaseModel
40
+ */
41
+ var ShiftTaskModel = /*#__PURE__*/function (_BaseModel) {
42
+ _inherits(ShiftTaskModel, _BaseModel);
43
+
44
+ var _super = _createSuper(ShiftTaskModel);
45
+
46
+ /**
47
+ * ShiftTaskModel Constructor
48
+ *
49
+ * @protected
50
+ * @param {number} siteId The Site ID associated with this Shift Task
51
+ */
52
+ function ShiftTaskModel(siteId) {
53
+ var _this;
54
+
55
+ _classCallCheck(this, ShiftTaskModel);
56
+
57
+ _this = _super.call(this);
58
+ /**
59
+ * The Shift Task ID
60
+ *
61
+ * @type {string}
62
+ * @public
63
+ */
64
+
65
+ _this.id = undefined;
66
+ /**
67
+ * The Packing Line ID this Task is associated with
68
+ *
69
+ * @type {string}
70
+ * @public
71
+ */
72
+
73
+ _this.packingLineId = undefined;
74
+ /**
75
+ * The Shift ID this Task is asssociated with
76
+ *
77
+ * @type {string}
78
+ * @public
79
+ */
80
+
81
+ _this.shiftId = undefined;
82
+ /**
83
+ * When this Task was Created
84
+ *
85
+ * @type {Date}
86
+ * @public
87
+ */
88
+
89
+ _this.createdTimestamp = undefined;
90
+ /**
91
+ * When this Task was Completed
92
+ *
93
+ * @type {?Date}
94
+ * @public
95
+ */
96
+
97
+ _this.completedTimestamp = undefined;
98
+ /**
99
+ * The User ID of the Author for this Task
100
+ *
101
+ * @type {?string}
102
+ * @public
103
+ */
104
+
105
+ _this.authorUserId = undefined;
106
+ /**
107
+ * The Name of the Author for this Task
108
+ *
109
+ * @type {string}
110
+ * @public
111
+ */
112
+
113
+ _this.authorName = undefined;
114
+ /**
115
+ * The Task Type
116
+ *
117
+ * @type {string}
118
+ * @public
119
+ */
120
+
121
+ _this.type = undefined;
122
+ /**
123
+ * An Array of Tag IDs for this Task
124
+ *
125
+ * @type {string[]}
126
+ * @public
127
+ */
128
+
129
+ _this.tags = undefined;
130
+ /**
131
+ * The Title of this Task
132
+ *
133
+ * @type {string}
134
+ * @public
135
+ */
136
+
137
+ _this.title = undefined;
138
+ /**
139
+ * The Content of this Task
140
+ *
141
+ * @type {string}
142
+ * @public
143
+ */
144
+
145
+ _this.content = undefined;
146
+ /**
147
+ * The Status of this Task
148
+ *
149
+ * @type {string}
150
+ * @public
151
+ */
152
+
153
+ _this.status = undefined;
154
+ /**
155
+ * Whether the Shift Task has been deleted
156
+ *
157
+ * @type {boolean}
158
+ * @public
159
+ */
160
+
161
+ _this.deleted = undefined;
162
+ /**
163
+ * When the Shift Task was last updated
164
+ *
165
+ * @type {Date}
166
+ * @public
167
+ */
168
+
169
+ _this.updateTimestamp = undefined;
170
+ /**
171
+ * The Site ID associated with this Shift Task
172
+ *
173
+ * @type {number}
174
+ * @public
175
+ */
176
+
177
+ _this.siteId = siteId;
178
+ return _this;
179
+ }
180
+ /**
181
+ * Create a new **ShiftTaskModel** from a JSON Object or JSON String
182
+ *
183
+ * @static
184
+ * @public
185
+ * @param {Object<string, any>|string} json A JSON Object or JSON String
186
+ * @param {number} siteId The Site ID associated with this Shift Task
187
+ * @return {ShiftTaskModel}
188
+ */
189
+
190
+
191
+ _createClass(ShiftTaskModel, null, [{
192
+ key: "fromJSON",
193
+ value: function fromJSON(json, siteId) {
194
+ var model = new ShiftTaskModel(siteId);
195
+ /**
196
+ * The JSON Object
197
+ *
198
+ * @type {Object<string, any>}
199
+ */
200
+
201
+ var jsonObject = {};
202
+
203
+ if (typeof json === 'string') {
204
+ jsonObject = JSON.parse(json);
205
+ } else if (_typeof(json) === 'object') {
206
+ jsonObject = json;
207
+ }
208
+
209
+ if ('id' in jsonObject) {
210
+ model.id = function () {
211
+ if (typeof jsonObject['id'] !== 'string') {
212
+ return String(jsonObject['id']);
213
+ }
214
+
215
+ return jsonObject['id'];
216
+ }();
217
+ }
218
+
219
+ if ('packingLineId' in jsonObject) {
220
+ model.packingLineId = function () {
221
+ if (typeof jsonObject['packingLineId'] !== 'string') {
222
+ return String(jsonObject['packingLineId']);
223
+ }
224
+
225
+ return jsonObject['packingLineId'];
226
+ }();
227
+ }
228
+
229
+ if ('shiftId' in jsonObject) {
230
+ model.shiftId = function () {
231
+ if (typeof jsonObject['shiftId'] !== 'string') {
232
+ return String(jsonObject['shiftId']);
233
+ }
234
+
235
+ return jsonObject['shiftId'];
236
+ }();
237
+ }
238
+
239
+ if ('createdTimestamp' in jsonObject) {
240
+ model.createdTimestamp = function () {
241
+ if (typeof jsonObject['createdTimestamp'] !== 'string') {
242
+ return new Date(String(jsonObject['createdTimestamp']));
243
+ }
244
+
245
+ return new Date(jsonObject['createdTimestamp']);
246
+ }();
247
+ }
248
+
249
+ if ('completedTimestamp' in jsonObject) {
250
+ model.completedTimestamp = function () {
251
+ if (jsonObject['completedTimestamp'] === null) {
252
+ return null;
253
+ }
254
+
255
+ if (typeof jsonObject['completedTimestamp'] !== 'string') {
256
+ return new Date(String(jsonObject['completedTimestamp']));
257
+ }
258
+
259
+ return new Date(jsonObject['completedTimestamp']);
260
+ }();
261
+ }
262
+
263
+ if ('authorUserId' in jsonObject) {
264
+ model.authorUserId = function () {
265
+ if (jsonObject['authorUserId'] === null) {
266
+ return null;
267
+ }
268
+
269
+ if (typeof jsonObject['authorUserId'] !== 'string') {
270
+ return String(jsonObject['authorUserId']);
271
+ }
272
+
273
+ return jsonObject['authorUserId'];
274
+ }();
275
+ }
276
+
277
+ if ('authorName' in jsonObject) {
278
+ model.authorName = function () {
279
+ if (typeof jsonObject['authorName'] !== 'string') {
280
+ return String(jsonObject['authorName']);
281
+ }
282
+
283
+ return jsonObject['authorName'];
284
+ }();
285
+ }
286
+
287
+ if ('type' in jsonObject) {
288
+ model.type = function () {
289
+ if (typeof jsonObject['type'] !== 'string') {
290
+ return String(jsonObject['type']);
291
+ }
292
+
293
+ return jsonObject['type'];
294
+ }();
295
+ }
296
+
297
+ if ('tags' in jsonObject) {
298
+ model.tags = function () {
299
+ if (Array.isArray(jsonObject['tags']) !== true) {
300
+ return [];
301
+ }
302
+
303
+ return jsonObject['tags'].map(function (tagsItem) {
304
+ return function () {
305
+ if (typeof tagsItem !== 'string') {
306
+ return String(tagsItem);
307
+ }
308
+
309
+ return tagsItem;
310
+ }();
311
+ });
312
+ }();
313
+ }
314
+
315
+ if ('title' in jsonObject) {
316
+ model.title = function () {
317
+ if (typeof jsonObject['title'] !== 'string') {
318
+ return String(jsonObject['title']);
319
+ }
320
+
321
+ return jsonObject['title'];
322
+ }();
323
+ }
324
+
325
+ if ('content' in jsonObject) {
326
+ model.content = function () {
327
+ if (typeof jsonObject['content'] !== 'string') {
328
+ return String(jsonObject['content']);
329
+ }
330
+
331
+ return jsonObject['content'];
332
+ }();
333
+ }
334
+
335
+ if ('status' in jsonObject) {
336
+ model.status = function () {
337
+ if (typeof jsonObject['status'] !== 'string') {
338
+ return String(jsonObject['status']);
339
+ }
340
+
341
+ return jsonObject['status'];
342
+ }();
343
+ }
344
+
345
+ if ('deleted' in jsonObject) {
346
+ model.deleted = function () {
347
+ if (typeof jsonObject['deleted'] !== 'boolean') {
348
+ return Boolean(jsonObject['deleted']);
349
+ }
350
+
351
+ return jsonObject['deleted'];
352
+ }();
353
+ }
354
+
355
+ if ('updateTimestamp' in jsonObject) {
356
+ model.updateTimestamp = function () {
357
+ if (typeof jsonObject['updateTimestamp'] !== 'string') {
358
+ return new Date(String(jsonObject['updateTimestamp']));
359
+ }
360
+
361
+ return new Date(jsonObject['updateTimestamp']);
362
+ }();
363
+ }
364
+
365
+ return model;
366
+ }
367
+ }]);
368
+
369
+ return ShiftTaskModel;
370
+ }(_BaseModel2.default);
371
+
372
+ var _default = ShiftTaskModel;
373
+ exports.default = _default;
@@ -5,6 +5,8 @@ Object.defineProperty(exports, "__esModule", {
5
5
  });
6
6
  exports.default = void 0;
7
7
 
8
+ var _BinTipBinModel = _interopRequireDefault(require("./BinTipBinModel"));
9
+
8
10
  var _BinTipWeightModel = _interopRequireDefault(require("./BinTipWeightModel"));
9
11
 
10
12
  var _CompacSizerBatchModel = _interopRequireDefault(require("./CompacSizerBatchModel"));
@@ -23,6 +25,8 @@ var _DowntimeEventModel = _interopRequireDefault(require("./DowntimeEventModel")
23
25
 
24
26
  var _FreshPackPackrunSummaryModel = _interopRequireDefault(require("./FreshPackPackrunSummaryModel"));
25
27
 
28
+ var _FreshQualityPackrunSummaryModel = _interopRequireDefault(require("./FreshQualityPackrunSummaryModel"));
29
+
26
30
  var _GrowingMethodModel = _interopRequireDefault(require("./GrowingMethodModel"));
27
31
 
28
32
  var _PackTypeModel = _interopRequireDefault(require("./PackTypeModel"));
@@ -43,6 +47,10 @@ var _ShiftHourlyEntryModel = _interopRequireDefault(require("./ShiftHourlyEntryM
43
47
 
44
48
  var _ShiftModel = _interopRequireDefault(require("./ShiftModel"));
45
49
 
50
+ var _ShiftQualitySummaryModel = _interopRequireDefault(require("./ShiftQualitySummaryModel"));
51
+
52
+ var _ShiftTaskModel = _interopRequireDefault(require("./ShiftTaskModel"));
53
+
46
54
  var _SoftSortBeltModel = _interopRequireDefault(require("./SoftSortBeltModel"));
47
55
 
48
56
  var _VarietyModel = _interopRequireDefault(require("./VarietyModel"));
@@ -59,6 +67,7 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { de
59
67
  * @namespace Models.Packhouse.Site
60
68
  */
61
69
  var Site = {
70
+ BinTipBinModel: _BinTipBinModel.default,
62
71
  BinTipWeightModel: _BinTipWeightModel.default,
63
72
  CompacSizerBatchModel: _CompacSizerBatchModel.default,
64
73
  CompacSizerModel: _CompacSizerModel.default,
@@ -68,6 +77,7 @@ var Site = {
68
77
  CompacSizerPackrunSummaryModel: _CompacSizerPackrunSummaryModel.default,
69
78
  DowntimeEventModel: _DowntimeEventModel.default,
70
79
  FreshPackPackrunSummaryModel: _FreshPackPackrunSummaryModel.default,
80
+ FreshQualityPackrunSummaryModel: _FreshQualityPackrunSummaryModel.default,
71
81
  GrowingMethodModel: _GrowingMethodModel.default,
72
82
  PackTypeModel: _PackTypeModel.default,
73
83
  PackingLineModel: _PackingLineModel.default,
@@ -78,6 +88,8 @@ var Site = {
78
88
  ShiftFocusMeetingModel: _ShiftFocusMeetingModel.default,
79
89
  ShiftHourlyEntryModel: _ShiftHourlyEntryModel.default,
80
90
  ShiftModel: _ShiftModel.default,
91
+ ShiftQualitySummaryModel: _ShiftQualitySummaryModel.default,
92
+ ShiftTaskModel: _ShiftTaskModel.default,
81
93
  SoftSortBeltModel: _SoftSortBeltModel.default,
82
94
  VarietyModel: _VarietyModel.default
83
95
  };
@@ -5,5 +5,5 @@ Object.defineProperty(exports, "__esModule", {
5
5
  });
6
6
  exports.version = void 0;
7
7
  // generated by genversion
8
- var version = '2.1.1';
8
+ var version = '2.2.0';
9
9
  exports.version = version;