@ricado/api-client 1.2.6 → 2.0.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 (141) hide show
  1. package/dist/ricado.api.client.js +1 -1
  2. package/lib/Controllers/Packhouse/Site/BinTipWeightController.js +4 -4
  3. package/lib/Controllers/Packhouse/Site/CompacSizerBatchController.js +4 -4
  4. package/lib/Controllers/Packhouse/Site/CompacSizerController.js +4 -4
  5. package/lib/Controllers/Packhouse/Site/CompacSizerOutletProductChangeController.js +4 -4
  6. package/lib/Controllers/Packhouse/Site/CompacSizerOutletTypeChangeController.js +4 -4
  7. package/lib/Controllers/Packhouse/Site/CompacSizerOutletTypeController.js +4 -4
  8. package/lib/Controllers/Packhouse/Site/CompacSizerPackrunSummaryController.js +4 -4
  9. package/lib/Controllers/Packhouse/Site/DowntimeEventController.js +4 -4
  10. package/lib/Controllers/Packhouse/Site/FreshPackPackrunSummaryController.js +4 -4
  11. package/lib/Controllers/Packhouse/Site/GrowingMethodController.js +4 -4
  12. package/lib/Controllers/Packhouse/Site/PackTypeController.js +4 -4
  13. package/lib/Controllers/Packhouse/Site/PackingLineController.js +4 -4
  14. package/lib/Controllers/Packhouse/Site/PackrunController.js +4 -4
  15. package/lib/Controllers/Packhouse/Site/RejectBinController.js +4 -4
  16. package/lib/Controllers/Packhouse/Site/RejectBinScaleController.js +4 -4
  17. package/lib/Controllers/Packhouse/Site/RejectBinWeightController.js +4 -4
  18. package/lib/Controllers/Packhouse/Site/ShiftController.js +4 -4
  19. package/lib/Controllers/Packhouse/Site/ShiftFocusMeetingController.js +4 -4
  20. package/lib/Controllers/Packhouse/Site/ShiftHourlyEntryController.js +4 -4
  21. package/lib/Controllers/Packhouse/Site/VarietyController.js +4 -4
  22. package/lib/Controllers/Site/AlarmController.js +4 -4
  23. package/lib/Controllers/Site/AlarmGroupController.js +4 -4
  24. package/lib/Controllers/Site/DefinitionController.js +4 -4
  25. package/lib/Controllers/Site/PermanentObjectController.js +4 -4
  26. package/lib/Controllers/Site/PermanentObjectDataController.js +4 -4
  27. package/lib/Controllers/Site/PointController.js +6 -4
  28. package/lib/Controllers/Site/TemporaryObjectController.js +4 -4
  29. package/lib/Models/AccountPolicyModel.js +26 -130
  30. package/lib/Models/ApiAccountModel.js +26 -130
  31. package/lib/Models/CompanyModel.js +20 -98
  32. package/lib/Models/FirebaseTokenModel.js +29 -146
  33. package/lib/Models/Packhouse/Site/BinTipWeightModel.js +40 -192
  34. package/lib/Models/Packhouse/Site/CompacSizerBatchModel.js +37 -176
  35. package/lib/Models/Packhouse/Site/CompacSizerModel.js +55 -272
  36. package/lib/Models/Packhouse/Site/CompacSizerOutletProductChangeModel.js +43 -208
  37. package/lib/Models/Packhouse/Site/CompacSizerOutletTypeChangeModel.js +37 -176
  38. package/lib/Models/Packhouse/Site/CompacSizerOutletTypeModel.js +31 -144
  39. package/lib/Models/Packhouse/Site/CompacSizerPackrunSummaryModel.js +49 -240
  40. package/lib/Models/Packhouse/Site/DowntimeEventModel.js +55 -272
  41. package/lib/Models/Packhouse/Site/FreshPackPackrunSummaryModel.js +37 -176
  42. package/lib/Models/Packhouse/Site/GrowingMethodModel.js +31 -144
  43. package/lib/Models/Packhouse/Site/PackTypeModel.js +37 -176
  44. package/lib/Models/Packhouse/Site/PackingLineModel.js +58 -288
  45. package/lib/Models/Packhouse/Site/PackrunModel.js +58 -288
  46. package/lib/Models/Packhouse/Site/RejectBinModel.js +40 -192
  47. package/lib/Models/Packhouse/Site/RejectBinScaleModel.js +49 -240
  48. package/lib/Models/Packhouse/Site/RejectBinWeightModel.js +43 -208
  49. package/lib/Models/Packhouse/Site/ShiftFocusMeetingModel.js +49 -240
  50. package/lib/Models/Packhouse/Site/ShiftHourlyEntryModel.js +124 -640
  51. package/lib/Models/Packhouse/Site/ShiftModel.js +70 -352
  52. package/lib/Models/Packhouse/Site/VarietyModel.js +37 -176
  53. package/lib/Models/RTUModel.js +23 -114
  54. package/lib/Models/RTUPluginModel.js +20 -98
  55. package/lib/Models/Site/AlarmGroupModel.js +34 -160
  56. package/lib/Models/Site/AlarmModel.js +64 -320
  57. package/lib/Models/Site/DefinitionModel.js +31 -144
  58. package/lib/Models/Site/PermanentObjectDataModel.js +37 -176
  59. package/lib/Models/Site/PermanentObjectModel.js +34 -160
  60. package/lib/Models/Site/PointModel.js +46 -224
  61. package/lib/Models/Site/TemporaryObjectModel.js +31 -144
  62. package/lib/Models/Site/index.js +0 -3
  63. package/lib/Models/SiteModel.js +23 -114
  64. package/lib/Models/TokenModel.js +35 -178
  65. package/lib/Models/UserAccountActionTokenModel.js +38 -194
  66. package/lib/Models/UserAccountModel.js +35 -178
  67. package/lib/PackageVersion.js +1 -1
  68. package/lib/Points.js +9 -1
  69. package/lib/index.d.ts +842 -1591
  70. package/lib/index.js +67 -38
  71. package/package.json +2 -2
  72. package/src/Controllers/Packhouse/Site/BinTipWeightController.js +4 -4
  73. package/src/Controllers/Packhouse/Site/CompacSizerBatchController.js +4 -4
  74. package/src/Controllers/Packhouse/Site/CompacSizerController.js +4 -4
  75. package/src/Controllers/Packhouse/Site/CompacSizerOutletProductChangeController.js +4 -4
  76. package/src/Controllers/Packhouse/Site/CompacSizerOutletTypeChangeController.js +4 -4
  77. package/src/Controllers/Packhouse/Site/CompacSizerOutletTypeController.js +4 -4
  78. package/src/Controllers/Packhouse/Site/CompacSizerPackrunSummaryController.js +4 -4
  79. package/src/Controllers/Packhouse/Site/DowntimeEventController.js +4 -4
  80. package/src/Controllers/Packhouse/Site/FreshPackPackrunSummaryController.js +4 -4
  81. package/src/Controllers/Packhouse/Site/GrowingMethodController.js +4 -4
  82. package/src/Controllers/Packhouse/Site/PackTypeController.js +4 -4
  83. package/src/Controllers/Packhouse/Site/PackingLineController.js +4 -4
  84. package/src/Controllers/Packhouse/Site/PackrunController.js +4 -4
  85. package/src/Controllers/Packhouse/Site/RejectBinController.js +4 -4
  86. package/src/Controllers/Packhouse/Site/RejectBinScaleController.js +4 -4
  87. package/src/Controllers/Packhouse/Site/RejectBinWeightController.js +4 -4
  88. package/src/Controllers/Packhouse/Site/ShiftController.js +4 -4
  89. package/src/Controllers/Packhouse/Site/ShiftFocusMeetingController.js +4 -4
  90. package/src/Controllers/Packhouse/Site/ShiftHourlyEntryController.js +4 -4
  91. package/src/Controllers/Packhouse/Site/VarietyController.js +4 -4
  92. package/src/Controllers/Site/AlarmController.js +4 -4
  93. package/src/Controllers/Site/AlarmGroupController.js +4 -4
  94. package/src/Controllers/Site/DefinitionController.js +4 -4
  95. package/src/Controllers/Site/PermanentObjectController.js +4 -4
  96. package/src/Controllers/Site/PermanentObjectDataController.js +4 -4
  97. package/src/Controllers/Site/PointController.js +6 -4
  98. package/src/Controllers/Site/TemporaryObjectController.js +4 -4
  99. package/src/Models/AccountPolicyModel.js +21 -117
  100. package/src/Models/ApiAccountModel.js +21 -117
  101. package/src/Models/CompanyModel.js +15 -87
  102. package/src/Models/FirebaseTokenModel.js +24 -132
  103. package/src/Models/Packhouse/Site/BinTipWeightModel.js +33 -174
  104. package/src/Models/Packhouse/Site/CompacSizerBatchModel.js +30 -159
  105. package/src/Models/Packhouse/Site/CompacSizerModel.js +48 -249
  106. package/src/Models/Packhouse/Site/CompacSizerOutletProductChangeModel.js +36 -189
  107. package/src/Models/Packhouse/Site/CompacSizerOutletTypeChangeModel.js +30 -159
  108. package/src/Models/Packhouse/Site/CompacSizerOutletTypeModel.js +24 -129
  109. package/src/Models/Packhouse/Site/CompacSizerPackrunSummaryModel.js +42 -219
  110. package/src/Models/Packhouse/Site/DowntimeEventModel.js +48 -249
  111. package/src/Models/Packhouse/Site/FreshPackPackrunSummaryModel.js +30 -159
  112. package/src/Models/Packhouse/Site/GrowingMethodModel.js +24 -129
  113. package/src/Models/Packhouse/Site/PackTypeModel.js +30 -159
  114. package/src/Models/Packhouse/Site/PackingLineModel.js +51 -264
  115. package/src/Models/Packhouse/Site/PackrunModel.js +51 -264
  116. package/src/Models/Packhouse/Site/RejectBinModel.js +33 -174
  117. package/src/Models/Packhouse/Site/RejectBinScaleModel.js +42 -219
  118. package/src/Models/Packhouse/Site/RejectBinWeightModel.js +36 -189
  119. package/src/Models/Packhouse/Site/ShiftFocusMeetingModel.js +42 -219
  120. package/src/Models/Packhouse/Site/ShiftHourlyEntryModel.js +117 -594
  121. package/src/Models/Packhouse/Site/ShiftModel.js +63 -324
  122. package/src/Models/Packhouse/Site/VarietyModel.js +30 -159
  123. package/src/Models/RTUModel.js +18 -102
  124. package/src/Models/RTUPluginModel.js +15 -87
  125. package/src/Models/Site/AlarmGroupModel.js +27 -144
  126. package/src/Models/Site/AlarmModel.js +57 -294
  127. package/src/Models/Site/DefinitionModel.js +24 -129
  128. package/src/Models/Site/PermanentObjectDataModel.js +30 -159
  129. package/src/Models/Site/PermanentObjectModel.js +27 -144
  130. package/src/Models/Site/PointModel.js +39 -204
  131. package/src/Models/Site/TemporaryObjectModel.js +24 -129
  132. package/src/Models/Site/index.js +0 -2
  133. package/src/Models/SiteModel.js +18 -102
  134. package/src/Models/TokenModel.js +30 -162
  135. package/src/Models/UserAccountActionTokenModel.js +33 -177
  136. package/src/Models/UserAccountModel.js +30 -162
  137. package/src/PackageVersion.js +1 -1
  138. package/src/Points.js +11 -1
  139. package/src/index.js +35 -3
  140. package/lib/Models/Site/BaseSiteModel.js +0 -58
  141. package/src/Models/Site/BaseSiteModel.js +0 -30
@@ -4,24 +4,23 @@
4
4
  * Do Not Edit this File Manually!
5
5
  */
6
6
 
7
- import BaseSiteModel from '../../../Models/Site/BaseSiteModel';
7
+ import BaseModel from '../../../Models/BaseModel';
8
8
 
9
9
  /**
10
10
  * Model Class for a Shift Focus Meeting
11
11
  *
12
12
  * @class
13
13
  * @hideconstructor
14
- * @extends BaseSiteModel
14
+ * @extends BaseModel
15
15
  */
16
- class ShiftFocusMeetingModel extends BaseSiteModel
16
+ class ShiftFocusMeetingModel extends BaseModel
17
17
  {
18
18
  /**
19
19
  * ShiftFocusMeetingModel Constructor
20
20
  *
21
21
  * @protected
22
- * @param {number} siteId The Site ID associated with this Shift Focus Meeting
23
22
  */
24
- constructor(siteId)
23
+ constructor()
25
24
  {
26
25
  super();
27
26
 
@@ -29,272 +28,97 @@ class ShiftFocusMeetingModel extends BaseSiteModel
29
28
  * The Shift Focus Meeting ID
30
29
  *
31
30
  * @type {string}
32
- * @private
31
+ * @public
33
32
  */
34
- this._id = undefined;
33
+ this.id = undefined;
35
34
 
36
35
  /**
37
36
  * The Packing Line ID this Focus Meeting is associated with
38
37
  *
39
38
  * @type {string}
40
- * @private
39
+ * @public
41
40
  */
42
- this._packingLineId = undefined;
41
+ this.packingLineId = undefined;
43
42
 
44
43
  /**
45
44
  * The Shift ID this Focus Meeting is asssociated with
46
45
  *
47
46
  * @type {string}
48
- * @private
47
+ * @public
49
48
  */
50
- this._shiftId = undefined;
49
+ this.shiftId = undefined;
51
50
 
52
51
  /**
53
52
  * When this Focus Meeting was Created
54
53
  *
55
54
  * @type {Date}
56
- * @private
55
+ * @public
57
56
  */
58
- this._createdTimestamp = undefined;
57
+ this.createdTimestamp = undefined;
59
58
 
60
59
  /**
61
60
  * When this Focus Meeting is Scheduled to Begin
62
61
  *
63
62
  * @type {Date}
64
- * @private
63
+ * @public
65
64
  */
66
- this._scheduledTimestamp = undefined;
65
+ this.scheduledTimestamp = undefined;
67
66
 
68
67
  /**
69
68
  * When this Focus Meeting was Started
70
69
  *
71
70
  * @type {?Date}
72
- * @private
71
+ * @public
73
72
  */
74
- this._startTimestamp = undefined;
73
+ this.startTimestamp = undefined;
75
74
 
76
75
  /**
77
76
  * When this Focus Meeting was Completed
78
77
  *
79
78
  * @type {?Date}
80
- * @private
79
+ * @public
81
80
  */
82
- this._finishTimestamp = undefined;
81
+ this.finishTimestamp = undefined;
83
82
 
84
83
  /**
85
84
  * An Optional Key Focus until the Next Meeting
86
85
  *
87
86
  * @type {?string}
88
- * @private
87
+ * @public
89
88
  */
90
- this._nextKeyFocus = undefined;
89
+ this.nextKeyFocus = undefined;
91
90
 
92
91
  /**
93
92
  * An Optional Rating between 1 and 10 on how Successful the Focus Meeting was
94
93
  *
95
94
  * @type {?number}
96
- * @private
95
+ * @public
97
96
  */
98
- this._successRating = undefined;
97
+ this.successRating = undefined;
99
98
 
100
99
  /**
101
100
  * The Status of this Focus Meeting
102
101
  *
103
102
  * @type {string}
104
- * @private
103
+ * @public
105
104
  */
106
- this._status = undefined;
105
+ this.status = undefined;
107
106
 
108
107
  /**
109
108
  * Whether the Shift Focus Meeting has been deleted
110
109
  *
111
110
  * @type {boolean}
112
- * @private
111
+ * @public
113
112
  */
114
- this._deleted = undefined;
113
+ this.deleted = undefined;
115
114
 
116
115
  /**
117
116
  * When the Shift Focus Meeting was last updated
118
117
  *
119
118
  * @type {Date}
120
- * @private
119
+ * @public
121
120
  */
122
- this._updateTimestamp = undefined;
123
-
124
- /**
125
- * The Site ID associated with this Shift Focus Meeting
126
- *
127
- * @type {number}
128
- * @private
129
- */
130
- this._siteId = siteId;
131
- }
132
-
133
- /**
134
- * The Shift Focus Meeting ID
135
- *
136
- * @public
137
- * @type {string}
138
- */
139
- get id()
140
- {
141
- return this._id;
142
- }
143
-
144
- /**
145
- * The Packing Line ID this Focus Meeting is associated with
146
- *
147
- * @public
148
- * @type {string}
149
- */
150
- get packingLineId()
151
- {
152
- return this._packingLineId;
153
- }
154
-
155
- /**
156
- * The Shift ID this Focus Meeting is asssociated with
157
- *
158
- * @public
159
- * @type {string}
160
- */
161
- get shiftId()
162
- {
163
- return this._shiftId;
164
- }
165
-
166
- /**
167
- * When this Focus Meeting was Created
168
- *
169
- * @public
170
- * @type {Date}
171
- */
172
- get createdTimestamp()
173
- {
174
- return this._createdTimestamp;
175
- }
176
-
177
- /**
178
- * When this Focus Meeting is Scheduled to Begin
179
- *
180
- * @public
181
- * @type {Date}
182
- */
183
- get scheduledTimestamp()
184
- {
185
- return this._scheduledTimestamp;
186
- }
187
-
188
- /**
189
- * When this Focus Meeting was Started
190
- *
191
- * @public
192
- * @type {?Date}
193
- */
194
- get startTimestamp()
195
- {
196
- return this._startTimestamp;
197
- }
198
-
199
- /**
200
- * When this Focus Meeting was Completed
201
- *
202
- * @public
203
- * @type {?Date}
204
- */
205
- get finishTimestamp()
206
- {
207
- return this._finishTimestamp;
208
- }
209
-
210
- /**
211
- * An Optional Key Focus until the Next Meeting
212
- *
213
- * @public
214
- * @type {?string}
215
- */
216
- get nextKeyFocus()
217
- {
218
- return this._nextKeyFocus;
219
- }
220
-
221
- /**
222
- * An Optional Rating between 1 and 10 on how Successful the Focus Meeting was
223
- *
224
- * @public
225
- * @type {?number}
226
- */
227
- get successRating()
228
- {
229
- return this._successRating;
230
- }
231
-
232
- /**
233
- * The Status of this Focus Meeting
234
- *
235
- * @public
236
- * @type {string}
237
- */
238
- get status()
239
- {
240
- return this._status;
241
- }
242
-
243
- /**
244
- * Whether the Shift Focus Meeting has been deleted
245
- *
246
- * @public
247
- * @type {boolean}
248
- */
249
- get deleted()
250
- {
251
- return this._deleted;
252
- }
253
-
254
- /**
255
- * When the Shift Focus Meeting was last updated
256
- *
257
- * @public
258
- * @type {Date}
259
- */
260
- get updateTimestamp()
261
- {
262
- return this._updateTimestamp;
263
- }
264
-
265
- /**
266
- * The Site ID associated with this Shift Focus Meeting
267
- *
268
- * @public
269
- * @type {number}
270
- */
271
- get siteId()
272
- {
273
- return this._siteId;
274
- }
275
-
276
- /**
277
- * Convert this **ShiftFocusMeetingModel** to a JSON Object
278
- *
279
- * @public
280
- * @return {Object<string, any>}
281
- */
282
- toJSON()
283
- {
284
- return {
285
- id: this._id,
286
- packingLineId: this._packingLineId,
287
- shiftId: this._shiftId,
288
- createdTimestamp: this._createdTimestamp,
289
- scheduledTimestamp: this._scheduledTimestamp,
290
- startTimestamp: this._startTimestamp,
291
- finishTimestamp: this._finishTimestamp,
292
- nextKeyFocus: this._nextKeyFocus,
293
- successRating: this._successRating,
294
- status: this._status,
295
- deleted: this._deleted,
296
- updateTimestamp: this._updateTimestamp
297
- };
121
+ this.updateTimestamp = undefined;
298
122
  }
299
123
 
300
124
  /**
@@ -303,12 +127,11 @@ class ShiftFocusMeetingModel extends BaseSiteModel
303
127
  * @static
304
128
  * @public
305
129
  * @param {Object<string, any>|string} json A JSON Object or JSON String
306
- * @param {number} siteId The Site ID associated with this Shift Focus Meeting
307
130
  * @return {ShiftFocusMeetingModel}
308
131
  */
309
- static fromJSON(json, siteId)
132
+ static fromJSON(json)
310
133
  {
311
- let model = new ShiftFocusMeetingModel(siteId);
134
+ let model = new ShiftFocusMeetingModel();
312
135
 
313
136
  /**
314
137
  * The JSON Object
@@ -328,7 +151,7 @@ class ShiftFocusMeetingModel extends BaseSiteModel
328
151
 
329
152
  if('id' in jsonObject)
330
153
  {
331
- model._id = (function(){
154
+ model.id = (function(){
332
155
  if(typeof jsonObject['id'] !== 'string')
333
156
  {
334
157
  return String(jsonObject['id']);
@@ -340,7 +163,7 @@ class ShiftFocusMeetingModel extends BaseSiteModel
340
163
 
341
164
  if('packingLineId' in jsonObject)
342
165
  {
343
- model._packingLineId = (function(){
166
+ model.packingLineId = (function(){
344
167
  if(typeof jsonObject['packingLineId'] !== 'string')
345
168
  {
346
169
  return String(jsonObject['packingLineId']);
@@ -352,7 +175,7 @@ class ShiftFocusMeetingModel extends BaseSiteModel
352
175
 
353
176
  if('shiftId' in jsonObject)
354
177
  {
355
- model._shiftId = (function(){
178
+ model.shiftId = (function(){
356
179
  if(typeof jsonObject['shiftId'] !== 'string')
357
180
  {
358
181
  return String(jsonObject['shiftId']);
@@ -364,7 +187,7 @@ class ShiftFocusMeetingModel extends BaseSiteModel
364
187
 
365
188
  if('createdTimestamp' in jsonObject)
366
189
  {
367
- model._createdTimestamp = (function(){
190
+ model.createdTimestamp = (function(){
368
191
  if(typeof jsonObject['createdTimestamp'] !== 'string')
369
192
  {
370
193
  return new Date(String(jsonObject['createdTimestamp']));
@@ -376,7 +199,7 @@ class ShiftFocusMeetingModel extends BaseSiteModel
376
199
 
377
200
  if('scheduledTimestamp' in jsonObject)
378
201
  {
379
- model._scheduledTimestamp = (function(){
202
+ model.scheduledTimestamp = (function(){
380
203
  if(typeof jsonObject['scheduledTimestamp'] !== 'string')
381
204
  {
382
205
  return new Date(String(jsonObject['scheduledTimestamp']));
@@ -388,7 +211,7 @@ class ShiftFocusMeetingModel extends BaseSiteModel
388
211
 
389
212
  if('startTimestamp' in jsonObject)
390
213
  {
391
- model._startTimestamp = (function(){
214
+ model.startTimestamp = (function(){
392
215
  if(jsonObject['startTimestamp'] === null)
393
216
  {
394
217
  return null;
@@ -405,7 +228,7 @@ class ShiftFocusMeetingModel extends BaseSiteModel
405
228
 
406
229
  if('finishTimestamp' in jsonObject)
407
230
  {
408
- model._finishTimestamp = (function(){
231
+ model.finishTimestamp = (function(){
409
232
  if(jsonObject['finishTimestamp'] === null)
410
233
  {
411
234
  return null;
@@ -422,7 +245,7 @@ class ShiftFocusMeetingModel extends BaseSiteModel
422
245
 
423
246
  if('nextKeyFocus' in jsonObject)
424
247
  {
425
- model._nextKeyFocus = (function(){
248
+ model.nextKeyFocus = (function(){
426
249
  if(jsonObject['nextKeyFocus'] === null)
427
250
  {
428
251
  return null;
@@ -439,7 +262,7 @@ class ShiftFocusMeetingModel extends BaseSiteModel
439
262
 
440
263
  if('successRating' in jsonObject)
441
264
  {
442
- model._successRating = (function(){
265
+ model.successRating = (function(){
443
266
  if(jsonObject['successRating'] === null)
444
267
  {
445
268
  return null;
@@ -456,7 +279,7 @@ class ShiftFocusMeetingModel extends BaseSiteModel
456
279
 
457
280
  if('status' in jsonObject)
458
281
  {
459
- model._status = (function(){
282
+ model.status = (function(){
460
283
  if(typeof jsonObject['status'] !== 'string')
461
284
  {
462
285
  return String(jsonObject['status']);
@@ -468,7 +291,7 @@ class ShiftFocusMeetingModel extends BaseSiteModel
468
291
 
469
292
  if('deleted' in jsonObject)
470
293
  {
471
- model._deleted = (function(){
294
+ model.deleted = (function(){
472
295
  if(typeof jsonObject['deleted'] !== 'boolean')
473
296
  {
474
297
  return Boolean(jsonObject['deleted']);
@@ -480,7 +303,7 @@ class ShiftFocusMeetingModel extends BaseSiteModel
480
303
 
481
304
  if('updateTimestamp' in jsonObject)
482
305
  {
483
- model._updateTimestamp = (function(){
306
+ model.updateTimestamp = (function(){
484
307
  if(typeof jsonObject['updateTimestamp'] !== 'string')
485
308
  {
486
309
  return new Date(String(jsonObject['updateTimestamp']));