@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.
Files changed (155) hide show
  1. package/README.md +5 -7
  2. package/dist/ricado.api.client.js +1 -1
  3. package/lib/Controllers/Packhouse/Site/BinTipBinController.js +622 -0
  4. package/lib/Controllers/Packhouse/Site/BinTipWeightController.js +4 -4
  5. package/lib/Controllers/Packhouse/Site/CompacSizerBatchController.js +4 -4
  6. package/lib/Controllers/Packhouse/Site/CompacSizerController.js +7 -7
  7. package/lib/Controllers/Packhouse/Site/CompacSizerOutletProductChangeController.js +4 -4
  8. package/lib/Controllers/Packhouse/Site/CompacSizerOutletTypeChangeController.js +4 -4
  9. package/lib/Controllers/Packhouse/Site/CompacSizerOutletTypeController.js +4 -4
  10. package/lib/Controllers/Packhouse/Site/CompacSizerPackrunSummaryController.js +4 -4
  11. package/lib/Controllers/Packhouse/Site/DowntimeEventController.js +4 -4
  12. package/lib/Controllers/Packhouse/Site/FreshPackPackrunSummaryController.js +4 -4
  13. package/lib/Controllers/Packhouse/Site/FreshQualityPackrunSummaryController.js +657 -0
  14. package/lib/Controllers/Packhouse/Site/GrowingMethodController.js +4 -4
  15. package/lib/Controllers/Packhouse/Site/PackTypeController.js +4 -4
  16. package/lib/Controllers/Packhouse/Site/PackingLineController.js +29 -5
  17. package/lib/Controllers/Packhouse/Site/PackrunController.js +46 -4
  18. package/lib/Controllers/Packhouse/Site/RejectBinController.js +4 -4
  19. package/lib/Controllers/Packhouse/Site/RejectBinScaleController.js +28 -6
  20. package/lib/Controllers/Packhouse/Site/RejectBinWeightController.js +4 -4
  21. package/lib/Controllers/Packhouse/Site/ShiftController.js +4 -4
  22. package/lib/Controllers/Packhouse/Site/ShiftFocusMeetingController.js +4 -4
  23. package/lib/Controllers/Packhouse/Site/ShiftHourlyEntryController.js +19 -4
  24. package/lib/Controllers/Packhouse/Site/ShiftQualitySummaryController.js +661 -0
  25. package/lib/Controllers/Packhouse/Site/ShiftTaskController.js +628 -0
  26. package/lib/Controllers/Packhouse/Site/SoftSortBeltController.js +453 -0
  27. package/lib/Controllers/Packhouse/Site/VarietyController.js +4 -4
  28. package/lib/Controllers/Packhouse/Site/index.js +15 -0
  29. package/lib/Controllers/Site/AlarmController.js +4 -4
  30. package/lib/Controllers/Site/AlarmGroupController.js +4 -4
  31. package/lib/Controllers/Site/DefinitionController.js +4 -4
  32. package/lib/Controllers/Site/PermanentObjectController.js +4 -4
  33. package/lib/Controllers/Site/PermanentObjectDataController.js +4 -4
  34. package/lib/Controllers/Site/PointController.js +4 -4
  35. package/lib/Controllers/Site/TemporaryObjectController.js +4 -4
  36. package/lib/Errors/BadRequestError.js +1 -1
  37. package/lib/Errors/ForbiddenError.js +1 -1
  38. package/lib/Errors/NetworkError.js +1 -1
  39. package/lib/Errors/NotAllowedError.js +1 -1
  40. package/lib/Errors/NotFoundError.js +1 -1
  41. package/lib/Errors/ServerError.js +1 -1
  42. package/lib/Errors/UnauthorizedError.js +1 -1
  43. package/lib/Models/AccountPolicyModel.js +1 -1
  44. package/lib/Models/ApiAccountModel.js +1 -1
  45. package/lib/Models/CompanyModel.js +1 -1
  46. package/lib/Models/FirebaseTokenModel.js +1 -1
  47. package/lib/Models/Packhouse/Site/BinTipBinModel.js +367 -0
  48. package/lib/Models/Packhouse/Site/BinTipWeightModel.js +14 -4
  49. package/lib/Models/Packhouse/Site/CompacSizerBatchModel.js +14 -4
  50. package/lib/Models/Packhouse/Site/CompacSizerModel.js +15 -5
  51. package/lib/Models/Packhouse/Site/CompacSizerOutletProductChangeModel.js +14 -4
  52. package/lib/Models/Packhouse/Site/CompacSizerOutletTypeChangeModel.js +14 -4
  53. package/lib/Models/Packhouse/Site/CompacSizerOutletTypeModel.js +14 -4
  54. package/lib/Models/Packhouse/Site/CompacSizerPackrunSummaryModel.js +14 -4
  55. package/lib/Models/Packhouse/Site/DowntimeEventModel.js +14 -4
  56. package/lib/Models/Packhouse/Site/FreshPackPackrunSummaryModel.js +14 -4
  57. package/lib/Models/Packhouse/Site/FreshQualityPackrunSummaryModel.js +481 -0
  58. package/lib/Models/Packhouse/Site/GrowingMethodModel.js +14 -4
  59. package/lib/Models/Packhouse/Site/PackTypeModel.js +14 -4
  60. package/lib/Models/Packhouse/Site/PackingLineModel.js +538 -5
  61. package/lib/Models/Packhouse/Site/PackrunModel.js +80 -4
  62. package/lib/Models/Packhouse/Site/RejectBinModel.js +14 -4
  63. package/lib/Models/Packhouse/Site/RejectBinScaleModel.js +274 -8
  64. package/lib/Models/Packhouse/Site/RejectBinWeightModel.js +14 -4
  65. package/lib/Models/Packhouse/Site/ShiftFocusMeetingModel.js +14 -4
  66. package/lib/Models/Packhouse/Site/ShiftHourlyEntryModel.js +181 -5
  67. package/lib/Models/Packhouse/Site/ShiftModel.js +14 -4
  68. package/lib/Models/Packhouse/Site/ShiftQualitySummaryModel.js +599 -0
  69. package/lib/Models/Packhouse/Site/ShiftTaskModel.js +373 -0
  70. package/lib/Models/Packhouse/Site/SoftSortBeltModel.js +235 -0
  71. package/lib/Models/Packhouse/Site/VarietyModel.js +14 -4
  72. package/lib/Models/Packhouse/Site/index.js +15 -0
  73. package/lib/Models/RTUModel.js +1 -1
  74. package/lib/Models/RTUPluginModel.js +1 -1
  75. package/lib/Models/Site/AlarmGroupModel.js +14 -4
  76. package/lib/Models/Site/AlarmModel.js +14 -4
  77. package/lib/Models/Site/DefinitionModel.js +14 -4
  78. package/lib/Models/Site/PermanentObjectDataModel.js +14 -4
  79. package/lib/Models/Site/PermanentObjectModel.js +14 -4
  80. package/lib/Models/Site/PointModel.js +14 -4
  81. package/lib/Models/Site/TemporaryObjectModel.js +14 -4
  82. package/lib/Models/SiteModel.js +1 -1
  83. package/lib/Models/TokenModel.js +1 -1
  84. package/lib/Models/UserAccountActionTokenModel.js +1 -1
  85. package/lib/Models/UserAccountModel.js +1 -1
  86. package/lib/PackageVersion.js +1 -1
  87. package/lib/index.d.ts +4039 -1071
  88. package/package.json +1 -1
  89. package/src/Controllers/Packhouse/Site/BinTipBinController.js +665 -0
  90. package/src/Controllers/Packhouse/Site/BinTipWeightController.js +4 -4
  91. package/src/Controllers/Packhouse/Site/CompacSizerBatchController.js +4 -4
  92. package/src/Controllers/Packhouse/Site/CompacSizerController.js +7 -7
  93. package/src/Controllers/Packhouse/Site/CompacSizerOutletProductChangeController.js +4 -4
  94. package/src/Controllers/Packhouse/Site/CompacSizerOutletTypeChangeController.js +4 -4
  95. package/src/Controllers/Packhouse/Site/CompacSizerOutletTypeController.js +4 -4
  96. package/src/Controllers/Packhouse/Site/CompacSizerPackrunSummaryController.js +4 -4
  97. package/src/Controllers/Packhouse/Site/DowntimeEventController.js +4 -4
  98. package/src/Controllers/Packhouse/Site/FreshPackPackrunSummaryController.js +4 -4
  99. package/src/Controllers/Packhouse/Site/FreshQualityPackrunSummaryController.js +700 -0
  100. package/src/Controllers/Packhouse/Site/GrowingMethodController.js +4 -4
  101. package/src/Controllers/Packhouse/Site/PackTypeController.js +4 -4
  102. package/src/Controllers/Packhouse/Site/PackingLineController.js +29 -5
  103. package/src/Controllers/Packhouse/Site/PackrunController.js +56 -4
  104. package/src/Controllers/Packhouse/Site/RejectBinController.js +4 -4
  105. package/src/Controllers/Packhouse/Site/RejectBinScaleController.js +28 -6
  106. package/src/Controllers/Packhouse/Site/RejectBinWeightController.js +4 -4
  107. package/src/Controllers/Packhouse/Site/ShiftController.js +4 -4
  108. package/src/Controllers/Packhouse/Site/ShiftFocusMeetingController.js +4 -4
  109. package/src/Controllers/Packhouse/Site/ShiftHourlyEntryController.js +19 -4
  110. package/src/Controllers/Packhouse/Site/ShiftQualitySummaryController.js +704 -0
  111. package/src/Controllers/Packhouse/Site/ShiftTaskController.js +671 -0
  112. package/src/Controllers/Packhouse/Site/SoftSortBeltController.js +474 -0
  113. package/src/Controllers/Packhouse/Site/VarietyController.js +4 -4
  114. package/src/Controllers/Packhouse/Site/index.js +10 -0
  115. package/src/Controllers/Site/AlarmController.js +4 -4
  116. package/src/Controllers/Site/AlarmGroupController.js +4 -4
  117. package/src/Controllers/Site/DefinitionController.js +4 -4
  118. package/src/Controllers/Site/PermanentObjectController.js +4 -4
  119. package/src/Controllers/Site/PermanentObjectDataController.js +4 -4
  120. package/src/Controllers/Site/PointController.js +4 -4
  121. package/src/Controllers/Site/TemporaryObjectController.js +4 -4
  122. package/src/Models/Packhouse/Site/BinTipBinModel.js +365 -0
  123. package/src/Models/Packhouse/Site/BinTipWeightModel.js +13 -3
  124. package/src/Models/Packhouse/Site/CompacSizerBatchModel.js +13 -3
  125. package/src/Models/Packhouse/Site/CompacSizerModel.js +14 -4
  126. package/src/Models/Packhouse/Site/CompacSizerOutletProductChangeModel.js +13 -3
  127. package/src/Models/Packhouse/Site/CompacSizerOutletTypeChangeModel.js +13 -3
  128. package/src/Models/Packhouse/Site/CompacSizerOutletTypeModel.js +13 -3
  129. package/src/Models/Packhouse/Site/CompacSizerPackrunSummaryModel.js +13 -3
  130. package/src/Models/Packhouse/Site/DowntimeEventModel.js +13 -3
  131. package/src/Models/Packhouse/Site/FreshPackPackrunSummaryModel.js +13 -3
  132. package/src/Models/Packhouse/Site/FreshQualityPackrunSummaryModel.js +523 -0
  133. package/src/Models/Packhouse/Site/GrowingMethodModel.js +13 -3
  134. package/src/Models/Packhouse/Site/PackTypeModel.js +13 -3
  135. package/src/Models/Packhouse/Site/PackingLineModel.js +718 -4
  136. package/src/Models/Packhouse/Site/PackrunModel.js +88 -3
  137. package/src/Models/Packhouse/Site/RejectBinModel.js +13 -3
  138. package/src/Models/Packhouse/Site/RejectBinScaleModel.js +310 -7
  139. package/src/Models/Packhouse/Site/RejectBinWeightModel.js +13 -3
  140. package/src/Models/Packhouse/Site/ShiftFocusMeetingModel.js +13 -3
  141. package/src/Models/Packhouse/Site/ShiftHourlyEntryModel.js +205 -4
  142. package/src/Models/Packhouse/Site/ShiftModel.js +13 -3
  143. package/src/Models/Packhouse/Site/ShiftQualitySummaryModel.js +664 -0
  144. package/src/Models/Packhouse/Site/ShiftTaskModel.js +369 -0
  145. package/src/Models/Packhouse/Site/SoftSortBeltModel.js +215 -0
  146. package/src/Models/Packhouse/Site/VarietyModel.js +13 -3
  147. package/src/Models/Packhouse/Site/index.js +10 -0
  148. package/src/Models/Site/AlarmGroupModel.js +13 -3
  149. package/src/Models/Site/AlarmModel.js +13 -3
  150. package/src/Models/Site/DefinitionModel.js +13 -3
  151. package/src/Models/Site/PermanentObjectDataModel.js +13 -3
  152. package/src/Models/Site/PermanentObjectModel.js +13 -3
  153. package/src/Models/Site/PointModel.js +13 -3
  154. package/src/Models/Site/TemporaryObjectModel.js +13 -3
  155. package/src/PackageVersion.js +1 -1
@@ -43,7 +43,7 @@ var PermanentObjectController = /*#__PURE__*/function () {
43
43
  return new Promise(function (resolve, reject) {
44
44
  _RequestHelper.default.getRequest("/sites/".concat(siteId, "/permanent-objects/").concat(id)).then(function (result) {
45
45
  var resolveValue = function () {
46
- return _PermanentObjectModel.default.fromJSON(result);
46
+ return _PermanentObjectModel.default.fromJSON(result, siteId);
47
47
  }();
48
48
 
49
49
  resolve(resolveValue);
@@ -69,7 +69,7 @@ var PermanentObjectController = /*#__PURE__*/function () {
69
69
  return new Promise(function (resolve, reject) {
70
70
  _RequestHelper.default.patchRequest("/sites/".concat(siteId, "/permanent-objects/").concat(id), updateData).then(function (result) {
71
71
  var resolveValue = function () {
72
- return _PermanentObjectModel.default.fromJSON(result);
72
+ return _PermanentObjectModel.default.fromJSON(result, siteId);
73
73
  }();
74
74
 
75
75
  resolve(resolveValue);
@@ -122,7 +122,7 @@ var PermanentObjectController = /*#__PURE__*/function () {
122
122
 
123
123
  return result.map(function (resultItem) {
124
124
  return function () {
125
- return _PermanentObjectModel.default.fromJSON(resultItem);
125
+ return _PermanentObjectModel.default.fromJSON(resultItem, siteId);
126
126
  }();
127
127
  });
128
128
  }();
@@ -149,7 +149,7 @@ var PermanentObjectController = /*#__PURE__*/function () {
149
149
  return new Promise(function (resolve, reject) {
150
150
  _RequestHelper.default.postRequest("/sites/".concat(siteId, "/permanent-objects"), createData).then(function (result) {
151
151
  var resolveValue = function () {
152
- return _PermanentObjectModel.default.fromJSON(result);
152
+ return _PermanentObjectModel.default.fromJSON(result, siteId);
153
153
  }();
154
154
 
155
155
  resolve(resolveValue);
@@ -45,7 +45,7 @@ var PermanentObjectDataController = /*#__PURE__*/function () {
45
45
  return new Promise(function (resolve, reject) {
46
46
  _RequestHelper.default.getRequest("/sites/".concat(siteId, "/permanent-object-data/").concat(id)).then(function (result) {
47
47
  var resolveValue = function () {
48
- return _PermanentObjectDataModel.default.fromJSON(result);
48
+ return _PermanentObjectDataModel.default.fromJSON(result, siteId);
49
49
  }();
50
50
 
51
51
  resolve(resolveValue);
@@ -71,7 +71,7 @@ var PermanentObjectDataController = /*#__PURE__*/function () {
71
71
  return new Promise(function (resolve, reject) {
72
72
  _RequestHelper.default.patchRequest("/sites/".concat(siteId, "/permanent-object-data/").concat(id), updateData).then(function (result) {
73
73
  var resolveValue = function () {
74
- return _PermanentObjectDataModel.default.fromJSON(result);
74
+ return _PermanentObjectDataModel.default.fromJSON(result, siteId);
75
75
  }();
76
76
 
77
77
  resolve(resolveValue);
@@ -520,7 +520,7 @@ var PermanentObjectDataController = /*#__PURE__*/function () {
520
520
 
521
521
  return result.map(function (resultItem) {
522
522
  return function () {
523
- return _PermanentObjectDataModel.default.fromJSON(resultItem);
523
+ return _PermanentObjectDataModel.default.fromJSON(resultItem, siteId);
524
524
  }();
525
525
  });
526
526
  }();
@@ -547,7 +547,7 @@ var PermanentObjectDataController = /*#__PURE__*/function () {
547
547
  return new Promise(function (resolve, reject) {
548
548
  _RequestHelper.default.postRequest("/sites/".concat(siteId, "/permanent-object-data"), createData).then(function (result) {
549
549
  var resolveValue = function () {
550
- return _PermanentObjectDataModel.default.fromJSON(result);
550
+ return _PermanentObjectDataModel.default.fromJSON(result, siteId);
551
551
  }();
552
552
 
553
553
  resolve(resolveValue);
@@ -338,7 +338,7 @@ var PointController = /*#__PURE__*/function () {
338
338
  return new Promise(function (resolve, reject) {
339
339
  _RequestHelper.default.getRequest("/sites/".concat(siteId, "/points/").concat(id)).then(function (result) {
340
340
  var resolveValue = function () {
341
- return _PointModel.default.fromJSON(result);
341
+ return _PointModel.default.fromJSON(result, siteId);
342
342
  }();
343
343
 
344
344
  resolve(resolveValue);
@@ -364,7 +364,7 @@ var PointController = /*#__PURE__*/function () {
364
364
  return new Promise(function (resolve, reject) {
365
365
  _RequestHelper.default.patchRequest("/sites/".concat(siteId, "/points/").concat(id), updateData).then(function (result) {
366
366
  var resolveValue = function () {
367
- return _PointModel.default.fromJSON(result);
367
+ return _PointModel.default.fromJSON(result, siteId);
368
368
  }();
369
369
 
370
370
  resolve(resolveValue);
@@ -417,7 +417,7 @@ var PointController = /*#__PURE__*/function () {
417
417
 
418
418
  return result.map(function (resultItem) {
419
419
  return function () {
420
- return _PointModel.default.fromJSON(resultItem);
420
+ return _PointModel.default.fromJSON(resultItem, siteId);
421
421
  }();
422
422
  });
423
423
  }();
@@ -444,7 +444,7 @@ var PointController = /*#__PURE__*/function () {
444
444
  return new Promise(function (resolve, reject) {
445
445
  _RequestHelper.default.postRequest("/sites/".concat(siteId, "/points"), createData).then(function (result) {
446
446
  var resolveValue = function () {
447
- return _PointModel.default.fromJSON(result);
447
+ return _PointModel.default.fromJSON(result, siteId);
448
448
  }();
449
449
 
450
450
  resolve(resolveValue);
@@ -43,7 +43,7 @@ var TemporaryObjectController = /*#__PURE__*/function () {
43
43
  return new Promise(function (resolve, reject) {
44
44
  _RequestHelper.default.getRequest("/sites/".concat(siteId, "/temporary-objects/").concat(id)).then(function (result) {
45
45
  var resolveValue = function () {
46
- return _TemporaryObjectModel.default.fromJSON(result);
46
+ return _TemporaryObjectModel.default.fromJSON(result, siteId);
47
47
  }();
48
48
 
49
49
  resolve(resolveValue);
@@ -69,7 +69,7 @@ var TemporaryObjectController = /*#__PURE__*/function () {
69
69
  return new Promise(function (resolve, reject) {
70
70
  _RequestHelper.default.patchRequest("/sites/".concat(siteId, "/temporary-objects/").concat(id), updateData).then(function (result) {
71
71
  var resolveValue = function () {
72
- return _TemporaryObjectModel.default.fromJSON(result);
72
+ return _TemporaryObjectModel.default.fromJSON(result, siteId);
73
73
  }();
74
74
 
75
75
  resolve(resolveValue);
@@ -122,7 +122,7 @@ var TemporaryObjectController = /*#__PURE__*/function () {
122
122
 
123
123
  return result.map(function (resultItem) {
124
124
  return function () {
125
- return _TemporaryObjectModel.default.fromJSON(resultItem);
125
+ return _TemporaryObjectModel.default.fromJSON(resultItem, siteId);
126
126
  }();
127
127
  });
128
128
  }();
@@ -149,7 +149,7 @@ var TemporaryObjectController = /*#__PURE__*/function () {
149
149
  return new Promise(function (resolve, reject) {
150
150
  _RequestHelper.default.postRequest("/sites/".concat(siteId, "/temporary-objects"), createData).then(function (result) {
151
151
  var resolveValue = function () {
152
- return _TemporaryObjectModel.default.fromJSON(result);
152
+ return _TemporaryObjectModel.default.fromJSON(result, siteId);
153
153
  }();
154
154
 
155
155
  resolve(resolveValue);
@@ -13,7 +13,7 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
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
- function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } Object.defineProperty(subClass, "prototype", { value: Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }), writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
16
+ 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); }
17
17
 
18
18
  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); }; }
19
19
 
@@ -13,7 +13,7 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
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
- function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } Object.defineProperty(subClass, "prototype", { value: Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }), writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
16
+ 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); }
17
17
 
18
18
  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); }; }
19
19
 
@@ -13,7 +13,7 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
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
- function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } Object.defineProperty(subClass, "prototype", { value: Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }), writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
16
+ 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); }
17
17
 
18
18
  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); }; }
19
19
 
@@ -13,7 +13,7 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
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
- function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } Object.defineProperty(subClass, "prototype", { value: Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }), writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
16
+ 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); }
17
17
 
18
18
  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); }; }
19
19
 
@@ -13,7 +13,7 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
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
- function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } Object.defineProperty(subClass, "prototype", { value: Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }), writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
16
+ 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); }
17
17
 
18
18
  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); }; }
19
19
 
@@ -13,7 +13,7 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
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
- function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } Object.defineProperty(subClass, "prototype", { value: Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }), writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
16
+ 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); }
17
17
 
18
18
  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); }; }
19
19
 
@@ -13,7 +13,7 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
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
- function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } Object.defineProperty(subClass, "prototype", { value: Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }), writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
16
+ 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); }
17
17
 
18
18
  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); }; }
19
19
 
@@ -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"); } Object.defineProperty(subClass, "prototype", { value: Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }), writable: false }); 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
 
@@ -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"); } Object.defineProperty(subClass, "prototype", { value: Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }), writable: false }); 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
 
@@ -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"); } Object.defineProperty(subClass, "prototype", { value: Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }), writable: false }); 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
 
@@ -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"); } Object.defineProperty(subClass, "prototype", { value: Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }), writable: false }); 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
 
@@ -0,0 +1,367 @@
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 Bin Tip Bin
36
+ *
37
+ * @class
38
+ * @hideconstructor
39
+ * @extends BaseModel
40
+ */
41
+ var BinTipBinModel = /*#__PURE__*/function (_BaseModel) {
42
+ _inherits(BinTipBinModel, _BaseModel);
43
+
44
+ var _super = _createSuper(BinTipBinModel);
45
+
46
+ /**
47
+ * BinTipBinModel Constructor
48
+ *
49
+ * @protected
50
+ * @param {number} siteId The Site ID associated with this Bin Tip Bin
51
+ */
52
+ function BinTipBinModel(siteId) {
53
+ var _this;
54
+
55
+ _classCallCheck(this, BinTipBinModel);
56
+
57
+ _this = _super.call(this);
58
+ /**
59
+ * The Bin Tip Bin ID
60
+ *
61
+ * @type {string}
62
+ * @public
63
+ */
64
+
65
+ _this.id = undefined;
66
+ /**
67
+ * The Bin Tip ID associated with this Bin
68
+ *
69
+ * @type {string}
70
+ * @public
71
+ */
72
+
73
+ _this.binTipId = undefined;
74
+ /**
75
+ * The Packrun ID associated with this Bin
76
+ *
77
+ * @type {string}
78
+ * @public
79
+ */
80
+
81
+ _this.packrunId = undefined;
82
+ /**
83
+ * When this Bin was Created
84
+ *
85
+ * @type {Date}
86
+ * @public
87
+ */
88
+
89
+ _this.createdTimestamp = undefined;
90
+ /**
91
+ * A 10-Digit Bin Number made up of a Bin Lot (4-Digits) and a Unique Number (6-Digits)
92
+ *
93
+ * @type {?string}
94
+ * @public
95
+ */
96
+
97
+ _this.binNumber = undefined;
98
+ /**
99
+ * The Time Batch ID associated with this Bin
100
+ *
101
+ * @type {?string}
102
+ * @public
103
+ */
104
+
105
+ _this.timeBatchId = undefined;
106
+ /**
107
+ * The Full Weight for this Bin
108
+ *
109
+ * @type {?number}
110
+ * @public
111
+ */
112
+
113
+ _this.fullWeight = undefined;
114
+ /**
115
+ * The Empty Weight for this Bin
116
+ *
117
+ * @type {?number}
118
+ * @public
119
+ */
120
+
121
+ _this.emptyWeight = undefined;
122
+ /**
123
+ * The `BinTipWeight` ID as the Source for the Full Weight of this Bin
124
+ *
125
+ * @type {?string}
126
+ * @public
127
+ */
128
+
129
+ _this.fullBinWeightId = undefined;
130
+ /**
131
+ * The `BinTipWeight` ID as the Source for the Empty Weight of this Bin
132
+ *
133
+ * @type {?string}
134
+ * @public
135
+ */
136
+
137
+ _this.emptyBinWeightId = undefined;
138
+ /**
139
+ * The FreshPack Field Bin Weight API Data
140
+ *
141
+ * @type {?Object}
142
+ * @public
143
+ */
144
+
145
+ _this.freshPackFieldBinWeightApi = undefined;
146
+ /**
147
+ * Whether the Bin Tip Bin has been deleted
148
+ *
149
+ * @type {boolean}
150
+ * @public
151
+ */
152
+
153
+ _this.deleted = undefined;
154
+ /**
155
+ * When the Bin Tip Bin was last updated
156
+ *
157
+ * @type {Date}
158
+ * @public
159
+ */
160
+
161
+ _this.updateTimestamp = undefined;
162
+ /**
163
+ * The Site ID associated with this Bin Tip Bin
164
+ *
165
+ * @type {number}
166
+ * @public
167
+ */
168
+
169
+ _this.siteId = siteId;
170
+ return _this;
171
+ }
172
+ /**
173
+ * Create a new **BinTipBinModel** from a JSON Object or JSON String
174
+ *
175
+ * @static
176
+ * @public
177
+ * @param {Object<string, any>|string} json A JSON Object or JSON String
178
+ * @param {number} siteId The Site ID associated with this Bin Tip Bin
179
+ * @return {BinTipBinModel}
180
+ */
181
+
182
+
183
+ _createClass(BinTipBinModel, null, [{
184
+ key: "fromJSON",
185
+ value: function fromJSON(json, siteId) {
186
+ var model = new BinTipBinModel(siteId);
187
+ /**
188
+ * The JSON Object
189
+ *
190
+ * @type {Object<string, any>}
191
+ */
192
+
193
+ var jsonObject = {};
194
+
195
+ if (typeof json === 'string') {
196
+ jsonObject = JSON.parse(json);
197
+ } else if (_typeof(json) === 'object') {
198
+ jsonObject = json;
199
+ }
200
+
201
+ if ('id' in jsonObject) {
202
+ model.id = function () {
203
+ if (typeof jsonObject['id'] !== 'string') {
204
+ return String(jsonObject['id']);
205
+ }
206
+
207
+ return jsonObject['id'];
208
+ }();
209
+ }
210
+
211
+ if ('binTipId' in jsonObject) {
212
+ model.binTipId = function () {
213
+ if (typeof jsonObject['binTipId'] !== 'string') {
214
+ return String(jsonObject['binTipId']);
215
+ }
216
+
217
+ return jsonObject['binTipId'];
218
+ }();
219
+ }
220
+
221
+ if ('packrunId' in jsonObject) {
222
+ model.packrunId = function () {
223
+ if (typeof jsonObject['packrunId'] !== 'string') {
224
+ return String(jsonObject['packrunId']);
225
+ }
226
+
227
+ return jsonObject['packrunId'];
228
+ }();
229
+ }
230
+
231
+ if ('createdTimestamp' in jsonObject) {
232
+ model.createdTimestamp = function () {
233
+ if (typeof jsonObject['createdTimestamp'] !== 'string') {
234
+ return new Date(String(jsonObject['createdTimestamp']));
235
+ }
236
+
237
+ return new Date(jsonObject['createdTimestamp']);
238
+ }();
239
+ }
240
+
241
+ if ('binNumber' in jsonObject) {
242
+ model.binNumber = function () {
243
+ if (jsonObject['binNumber'] === null) {
244
+ return null;
245
+ }
246
+
247
+ if (typeof jsonObject['binNumber'] !== 'string') {
248
+ return String(jsonObject['binNumber']);
249
+ }
250
+
251
+ return jsonObject['binNumber'];
252
+ }();
253
+ }
254
+
255
+ if ('timeBatchId' in jsonObject) {
256
+ model.timeBatchId = function () {
257
+ if (jsonObject['timeBatchId'] === null) {
258
+ return null;
259
+ }
260
+
261
+ if (typeof jsonObject['timeBatchId'] !== 'string') {
262
+ return String(jsonObject['timeBatchId']);
263
+ }
264
+
265
+ return jsonObject['timeBatchId'];
266
+ }();
267
+ }
268
+
269
+ if ('fullWeight' in jsonObject) {
270
+ model.fullWeight = function () {
271
+ if (jsonObject['fullWeight'] === null) {
272
+ return null;
273
+ }
274
+
275
+ if (typeof jsonObject['fullWeight'] !== 'number') {
276
+ return Number(jsonObject['fullWeight']);
277
+ }
278
+
279
+ return jsonObject['fullWeight'];
280
+ }();
281
+ }
282
+
283
+ if ('emptyWeight' in jsonObject) {
284
+ model.emptyWeight = function () {
285
+ if (jsonObject['emptyWeight'] === null) {
286
+ return null;
287
+ }
288
+
289
+ if (typeof jsonObject['emptyWeight'] !== 'number') {
290
+ return Number(jsonObject['emptyWeight']);
291
+ }
292
+
293
+ return jsonObject['emptyWeight'];
294
+ }();
295
+ }
296
+
297
+ if ('fullBinWeightId' in jsonObject) {
298
+ model.fullBinWeightId = function () {
299
+ if (jsonObject['fullBinWeightId'] === null) {
300
+ return null;
301
+ }
302
+
303
+ if (typeof jsonObject['fullBinWeightId'] !== 'string') {
304
+ return String(jsonObject['fullBinWeightId']);
305
+ }
306
+
307
+ return jsonObject['fullBinWeightId'];
308
+ }();
309
+ }
310
+
311
+ if ('emptyBinWeightId' in jsonObject) {
312
+ model.emptyBinWeightId = function () {
313
+ if (jsonObject['emptyBinWeightId'] === null) {
314
+ return null;
315
+ }
316
+
317
+ if (typeof jsonObject['emptyBinWeightId'] !== 'string') {
318
+ return String(jsonObject['emptyBinWeightId']);
319
+ }
320
+
321
+ return jsonObject['emptyBinWeightId'];
322
+ }();
323
+ }
324
+
325
+ if ('freshPackFieldBinWeightApi' in jsonObject) {
326
+ model.freshPackFieldBinWeightApi = function () {
327
+ if (jsonObject['freshPackFieldBinWeightApi'] === null) {
328
+ return null;
329
+ }
330
+
331
+ if (_typeof(jsonObject['freshPackFieldBinWeightApi']) !== 'object') {
332
+ return Object(jsonObject['freshPackFieldBinWeightApi']);
333
+ }
334
+
335
+ return jsonObject['freshPackFieldBinWeightApi'];
336
+ }();
337
+ }
338
+
339
+ if ('deleted' in jsonObject) {
340
+ model.deleted = function () {
341
+ if (typeof jsonObject['deleted'] !== 'boolean') {
342
+ return Boolean(jsonObject['deleted']);
343
+ }
344
+
345
+ return jsonObject['deleted'];
346
+ }();
347
+ }
348
+
349
+ if ('updateTimestamp' in jsonObject) {
350
+ model.updateTimestamp = function () {
351
+ if (typeof jsonObject['updateTimestamp'] !== 'string') {
352
+ return new Date(String(jsonObject['updateTimestamp']));
353
+ }
354
+
355
+ return new Date(jsonObject['updateTimestamp']);
356
+ }();
357
+ }
358
+
359
+ return model;
360
+ }
361
+ }]);
362
+
363
+ return BinTipBinModel;
364
+ }(_BaseModel2.default);
365
+
366
+ var _default = BinTipBinModel;
367
+ exports.default = _default;