@ricado/api-client 2.5.16 → 2.5.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ricado.api.client.js +1 -1
- package/lib/Controllers/Lab/Site/FruitProfileController.js +16 -0
- package/lib/Controllers/Lab/Site/SampleController.js +8 -0
- package/lib/Models/Lab/Site/FruitProfileModel.js +144 -0
- package/lib/Models/Lab/Site/SampleModel.js +88 -0
- package/lib/PackageVersion.js +1 -1
- package/lib/index.d.ts +180 -0
- package/package.json +1 -1
- package/src/Controllers/Lab/Site/FruitProfileController.js +16 -0
- package/src/Controllers/Lab/Site/SampleController.js +8 -0
- package/src/Models/Lab/Site/FruitProfileModel.js +160 -0
- package/src/Models/Lab/Site/SampleModel.js +100 -0
- package/src/PackageVersion.js +1 -1
|
@@ -185,6 +185,14 @@ var _default = FruitProfileController;
|
|
|
185
185
|
* @property {number} maximumTotalDuration The Maximum Duration (in seconds) that a Sample can be Dehydrated for before it is Considered Non-Compliant
|
|
186
186
|
* @property {number} minimumTargetTemperature The Minimum Target Temperature for a Sample to be Compliant
|
|
187
187
|
* @property {number} maximumTargetTemperature The Maximum Target Temperature for a Sample to be Compliant
|
|
188
|
+
* @property {number} warmUpStartExpectedTemperature The Warm-Up Temperature for starting the Warm Up alerts
|
|
189
|
+
* @property {number} warmUpStartExpectedRateOfChange The Warm-Up Start Expected Rate of Change
|
|
190
|
+
* @property {number} warmUpStageTwoExpectedTemperature The Warm-Up Stage Two Expected Temperature
|
|
191
|
+
* @property {number} warmUpStageTwoExpectedRateOfChange The Warm-Up Stage Two Expected Rate of Change
|
|
192
|
+
* @property {number} warmUpStageThreeExpectedTemperature The Warm-Up Stage Three Expected Temperature
|
|
193
|
+
* @property {number} warmUpStageThreeExpectedRateOfChange The Warm-Up Stage Three Expected Rate of Change
|
|
194
|
+
* @property {number} warmUpEndExpectedTemperature The Warm-Up End Expected Temperature
|
|
195
|
+
* @property {number} warmUpEndExpectedRateOfChange The Warm-Up End Expected Rate of Change
|
|
188
196
|
* @memberof Controllers.Lab.Site
|
|
189
197
|
*/
|
|
190
198
|
|
|
@@ -201,6 +209,14 @@ var _default = FruitProfileController;
|
|
|
201
209
|
* @property {number} [maximumTotalDuration] The Maximum Duration (in seconds) that a Sample can be Dehydrated for before it is Considered Non-Compliant
|
|
202
210
|
* @property {number} [minimumTargetTemperature] The Minimum Target Temperature for a Sample to be Compliant
|
|
203
211
|
* @property {number} [maximumTargetTemperature] The Maximum Target Temperature for a Sample to be Compliant
|
|
212
|
+
* @property {number} [warmUpStartExpectedTemperature] The Warm-Up Temperature for starting the Warm Up alerts
|
|
213
|
+
* @property {number} [warmUpStartExpectedRateOfChange] The Warm-Up Start Expected Rate of Change
|
|
214
|
+
* @property {number} [warmUpStageTwoExpectedTemperature] The Warm-Up Stage Two Expected Temperature
|
|
215
|
+
* @property {number} [warmUpStageTwoExpectedRateOfChange] The Warm-Up Stage Two Expected Rate of Change
|
|
216
|
+
* @property {number} [warmUpStageThreeExpectedTemperature] The Warm-Up Stage Three Expected Temperature
|
|
217
|
+
* @property {number} [warmUpStageThreeExpectedRateOfChange] The Warm-Up Stage Three Expected Rate of Change
|
|
218
|
+
* @property {number} [warmUpEndExpectedTemperature] The Warm-Up End Expected Temperature
|
|
219
|
+
* @property {number} [warmUpEndExpectedRateOfChange] The Warm-Up End Expected Rate of Change
|
|
204
220
|
* @memberof Controllers.Lab.Site
|
|
205
221
|
*/
|
|
206
222
|
|
|
@@ -952,6 +952,7 @@ var _default = SampleController;
|
|
|
952
952
|
* @property {string} createdSource The Source that Created this Sample
|
|
953
953
|
* @property {?string} [createdUserName] Name of the User who Created this Sample
|
|
954
954
|
* @property {?Date} [scheduledTimestamp] Optional Scheduled Timestamp when this Sample should Begin
|
|
955
|
+
* @property {?Date} [scheduleReceivedTimestamp] Optional When the Schedule was received from Inspect
|
|
955
956
|
* @property {?Date} [loadedTimestamp] When this Sample was Loaded into the Dehydrator
|
|
956
957
|
* @property {?Date} [startTimestamp] When this Sample was Started
|
|
957
958
|
* @property {?Date} [finishTimestamp] When this Sample was Finished
|
|
@@ -963,6 +964,9 @@ var _default = SampleController;
|
|
|
963
964
|
* @property {string} rackPositionId The Rack Position used for this Sample
|
|
964
965
|
* @property {string} dehydratorId The Dehydrator used for this Sample
|
|
965
966
|
* @property {?string} [resultId] The Sample Result ID asociated with this Sample
|
|
967
|
+
* @property {?string} [blindedSampleID] Optional the BlindedSampleID Reference defined in RadfordsInspect
|
|
968
|
+
* @property {?string} [shortDescription] Optional the Sample Short Description defined in RadfordsInspect
|
|
969
|
+
* @property {?string} [sampleDescription] Optional the Sample Description defined in RadfordsInspect
|
|
966
970
|
* @memberof Controllers.Lab.Site
|
|
967
971
|
*/
|
|
968
972
|
|
|
@@ -975,6 +979,7 @@ var _default = SampleController;
|
|
|
975
979
|
* @property {string} [createdSource] The Source that Created this Sample
|
|
976
980
|
* @property {?string} [createdUserName] Name of the User who Created this Sample
|
|
977
981
|
* @property {?Date} [scheduledTimestamp] Optional Scheduled Timestamp when this Sample should Begin
|
|
982
|
+
* @property {?Date} [scheduleReceivedTimestamp] Optional When the Schedule was received from Inspect
|
|
978
983
|
* @property {?Date} [loadedTimestamp] When this Sample was Loaded into the Dehydrator
|
|
979
984
|
* @property {?Date} [startTimestamp] When this Sample was Started
|
|
980
985
|
* @property {?Date} [finishTimestamp] When this Sample was Finished
|
|
@@ -986,6 +991,9 @@ var _default = SampleController;
|
|
|
986
991
|
* @property {string} [rackPositionId] The Rack Position used for this Sample
|
|
987
992
|
* @property {string} [dehydratorId] The Dehydrator used for this Sample
|
|
988
993
|
* @property {?string} [resultId] The Sample Result ID asociated with this Sample
|
|
994
|
+
* @property {?string} [blindedSampleID] Optional the BlindedSampleID Reference defined in RadfordsInspect
|
|
995
|
+
* @property {?string} [shortDescription] Optional the Sample Short Description defined in RadfordsInspect
|
|
996
|
+
* @property {?string} [sampleDescription] Optional the Sample Description defined in RadfordsInspect
|
|
989
997
|
* @memberof Controllers.Lab.Site
|
|
990
998
|
*/
|
|
991
999
|
|
|
@@ -135,6 +135,70 @@ var FruitProfileModel = /*#__PURE__*/function (_BaseModel) {
|
|
|
135
135
|
*/
|
|
136
136
|
|
|
137
137
|
_this.maximumTargetTemperature = 0;
|
|
138
|
+
/**
|
|
139
|
+
* The Warm-Up Temperature for starting the Warm Up alerts
|
|
140
|
+
*
|
|
141
|
+
* @type {number}
|
|
142
|
+
* @public
|
|
143
|
+
*/
|
|
144
|
+
|
|
145
|
+
_this.warmUpStartExpectedTemperature = 0;
|
|
146
|
+
/**
|
|
147
|
+
* The Warm-Up Start Expected Rate of Change
|
|
148
|
+
*
|
|
149
|
+
* @type {number}
|
|
150
|
+
* @public
|
|
151
|
+
*/
|
|
152
|
+
|
|
153
|
+
_this.warmUpStartExpectedRateOfChange = 0;
|
|
154
|
+
/**
|
|
155
|
+
* The Warm-Up Stage Two Expected Temperature
|
|
156
|
+
*
|
|
157
|
+
* @type {number}
|
|
158
|
+
* @public
|
|
159
|
+
*/
|
|
160
|
+
|
|
161
|
+
_this.warmUpStageTwoExpectedTemperature = 0;
|
|
162
|
+
/**
|
|
163
|
+
* The Warm-Up Stage Two Expected Rate of Change
|
|
164
|
+
*
|
|
165
|
+
* @type {number}
|
|
166
|
+
* @public
|
|
167
|
+
*/
|
|
168
|
+
|
|
169
|
+
_this.warmUpStageTwoExpectedRateOfChange = 0;
|
|
170
|
+
/**
|
|
171
|
+
* The Warm-Up Stage Three Expected Temperature
|
|
172
|
+
*
|
|
173
|
+
* @type {number}
|
|
174
|
+
* @public
|
|
175
|
+
*/
|
|
176
|
+
|
|
177
|
+
_this.warmUpStageThreeExpectedTemperature = 0;
|
|
178
|
+
/**
|
|
179
|
+
* The Warm-Up Stage Three Expected Rate of Change
|
|
180
|
+
*
|
|
181
|
+
* @type {number}
|
|
182
|
+
* @public
|
|
183
|
+
*/
|
|
184
|
+
|
|
185
|
+
_this.warmUpStageThreeExpectedRateOfChange = 0;
|
|
186
|
+
/**
|
|
187
|
+
* The Warm-Up End Expected Temperature
|
|
188
|
+
*
|
|
189
|
+
* @type {number}
|
|
190
|
+
* @public
|
|
191
|
+
*/
|
|
192
|
+
|
|
193
|
+
_this.warmUpEndExpectedTemperature = 0;
|
|
194
|
+
/**
|
|
195
|
+
* The Warm-Up End Expected Rate of Change
|
|
196
|
+
*
|
|
197
|
+
* @type {number}
|
|
198
|
+
* @public
|
|
199
|
+
*/
|
|
200
|
+
|
|
201
|
+
_this.warmUpEndExpectedRateOfChange = 0;
|
|
138
202
|
/**
|
|
139
203
|
* Whether the Fruit Profile has been deleted
|
|
140
204
|
*
|
|
@@ -290,6 +354,86 @@ var FruitProfileModel = /*#__PURE__*/function (_BaseModel) {
|
|
|
290
354
|
}();
|
|
291
355
|
}
|
|
292
356
|
|
|
357
|
+
if ('warmUpStartExpectedTemperature' in jsonObject) {
|
|
358
|
+
model.warmUpStartExpectedTemperature = function () {
|
|
359
|
+
if (typeof jsonObject['warmUpStartExpectedTemperature'] !== 'number') {
|
|
360
|
+
return Number(jsonObject['warmUpStartExpectedTemperature']);
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
return jsonObject['warmUpStartExpectedTemperature'];
|
|
364
|
+
}();
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
if ('warmUpStartExpectedRateOfChange' in jsonObject) {
|
|
368
|
+
model.warmUpStartExpectedRateOfChange = function () {
|
|
369
|
+
if (typeof jsonObject['warmUpStartExpectedRateOfChange'] !== 'number') {
|
|
370
|
+
return Number(jsonObject['warmUpStartExpectedRateOfChange']);
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
return jsonObject['warmUpStartExpectedRateOfChange'];
|
|
374
|
+
}();
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
if ('warmUpStageTwoExpectedTemperature' in jsonObject) {
|
|
378
|
+
model.warmUpStageTwoExpectedTemperature = function () {
|
|
379
|
+
if (typeof jsonObject['warmUpStageTwoExpectedTemperature'] !== 'number') {
|
|
380
|
+
return Number(jsonObject['warmUpStageTwoExpectedTemperature']);
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
return jsonObject['warmUpStageTwoExpectedTemperature'];
|
|
384
|
+
}();
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
if ('warmUpStageTwoExpectedRateOfChange' in jsonObject) {
|
|
388
|
+
model.warmUpStageTwoExpectedRateOfChange = function () {
|
|
389
|
+
if (typeof jsonObject['warmUpStageTwoExpectedRateOfChange'] !== 'number') {
|
|
390
|
+
return Number(jsonObject['warmUpStageTwoExpectedRateOfChange']);
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
return jsonObject['warmUpStageTwoExpectedRateOfChange'];
|
|
394
|
+
}();
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
if ('warmUpStageThreeExpectedTemperature' in jsonObject) {
|
|
398
|
+
model.warmUpStageThreeExpectedTemperature = function () {
|
|
399
|
+
if (typeof jsonObject['warmUpStageThreeExpectedTemperature'] !== 'number') {
|
|
400
|
+
return Number(jsonObject['warmUpStageThreeExpectedTemperature']);
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
return jsonObject['warmUpStageThreeExpectedTemperature'];
|
|
404
|
+
}();
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
if ('warmUpStageThreeExpectedRateOfChange' in jsonObject) {
|
|
408
|
+
model.warmUpStageThreeExpectedRateOfChange = function () {
|
|
409
|
+
if (typeof jsonObject['warmUpStageThreeExpectedRateOfChange'] !== 'number') {
|
|
410
|
+
return Number(jsonObject['warmUpStageThreeExpectedRateOfChange']);
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
return jsonObject['warmUpStageThreeExpectedRateOfChange'];
|
|
414
|
+
}();
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
if ('warmUpEndExpectedTemperature' in jsonObject) {
|
|
418
|
+
model.warmUpEndExpectedTemperature = function () {
|
|
419
|
+
if (typeof jsonObject['warmUpEndExpectedTemperature'] !== 'number') {
|
|
420
|
+
return Number(jsonObject['warmUpEndExpectedTemperature']);
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
return jsonObject['warmUpEndExpectedTemperature'];
|
|
424
|
+
}();
|
|
425
|
+
}
|
|
426
|
+
|
|
427
|
+
if ('warmUpEndExpectedRateOfChange' in jsonObject) {
|
|
428
|
+
model.warmUpEndExpectedRateOfChange = function () {
|
|
429
|
+
if (typeof jsonObject['warmUpEndExpectedRateOfChange'] !== 'number') {
|
|
430
|
+
return Number(jsonObject['warmUpEndExpectedRateOfChange']);
|
|
431
|
+
}
|
|
432
|
+
|
|
433
|
+
return jsonObject['warmUpEndExpectedRateOfChange'];
|
|
434
|
+
}();
|
|
435
|
+
}
|
|
436
|
+
|
|
293
437
|
if ('deleted' in jsonObject) {
|
|
294
438
|
model.deleted = function () {
|
|
295
439
|
if (typeof jsonObject['deleted'] !== 'boolean') {
|
|
@@ -111,6 +111,14 @@ var SampleModel = /*#__PURE__*/function (_BaseModel) {
|
|
|
111
111
|
*/
|
|
112
112
|
|
|
113
113
|
_this.scheduledTimestamp = null;
|
|
114
|
+
/**
|
|
115
|
+
* Optional When the Schedule was received from Inspect
|
|
116
|
+
*
|
|
117
|
+
* @type {?Date}
|
|
118
|
+
* @public
|
|
119
|
+
*/
|
|
120
|
+
|
|
121
|
+
_this.scheduleReceivedTimestamp = null;
|
|
114
122
|
/**
|
|
115
123
|
* When this Sample was Loaded into the Dehydrator
|
|
116
124
|
*
|
|
@@ -199,6 +207,30 @@ var SampleModel = /*#__PURE__*/function (_BaseModel) {
|
|
|
199
207
|
*/
|
|
200
208
|
|
|
201
209
|
_this.resultId = null;
|
|
210
|
+
/**
|
|
211
|
+
* Optional the BlindedSampleID Reference defined in RadfordsInspect
|
|
212
|
+
*
|
|
213
|
+
* @type {?string}
|
|
214
|
+
* @public
|
|
215
|
+
*/
|
|
216
|
+
|
|
217
|
+
_this.blindedSampleID = null;
|
|
218
|
+
/**
|
|
219
|
+
* Optional the Sample Short Description defined in RadfordsInspect
|
|
220
|
+
*
|
|
221
|
+
* @type {?string}
|
|
222
|
+
* @public
|
|
223
|
+
*/
|
|
224
|
+
|
|
225
|
+
_this.shortDescription = null;
|
|
226
|
+
/**
|
|
227
|
+
* Optional the Sample Description defined in RadfordsInspect
|
|
228
|
+
*
|
|
229
|
+
* @type {?string}
|
|
230
|
+
* @public
|
|
231
|
+
*/
|
|
232
|
+
|
|
233
|
+
_this.sampleDescription = null;
|
|
202
234
|
/**
|
|
203
235
|
* The Status of this Sample
|
|
204
236
|
*
|
|
@@ -340,6 +372,20 @@ var SampleModel = /*#__PURE__*/function (_BaseModel) {
|
|
|
340
372
|
}();
|
|
341
373
|
}
|
|
342
374
|
|
|
375
|
+
if ('scheduleReceivedTimestamp' in jsonObject) {
|
|
376
|
+
model.scheduleReceivedTimestamp = function () {
|
|
377
|
+
if (jsonObject['scheduleReceivedTimestamp'] === null) {
|
|
378
|
+
return null;
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
if (typeof jsonObject['scheduleReceivedTimestamp'] !== 'string') {
|
|
382
|
+
return new Date(String(jsonObject['scheduleReceivedTimestamp']));
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
return new Date(jsonObject['scheduleReceivedTimestamp']);
|
|
386
|
+
}();
|
|
387
|
+
}
|
|
388
|
+
|
|
343
389
|
if ('loadedTimestamp' in jsonObject) {
|
|
344
390
|
model.loadedTimestamp = function () {
|
|
345
391
|
if (jsonObject['loadedTimestamp'] === null) {
|
|
@@ -482,6 +528,48 @@ var SampleModel = /*#__PURE__*/function (_BaseModel) {
|
|
|
482
528
|
}();
|
|
483
529
|
}
|
|
484
530
|
|
|
531
|
+
if ('blindedSampleID' in jsonObject) {
|
|
532
|
+
model.blindedSampleID = function () {
|
|
533
|
+
if (jsonObject['blindedSampleID'] === null) {
|
|
534
|
+
return null;
|
|
535
|
+
}
|
|
536
|
+
|
|
537
|
+
if (typeof jsonObject['blindedSampleID'] !== 'string') {
|
|
538
|
+
return String(jsonObject['blindedSampleID']);
|
|
539
|
+
}
|
|
540
|
+
|
|
541
|
+
return jsonObject['blindedSampleID'];
|
|
542
|
+
}();
|
|
543
|
+
}
|
|
544
|
+
|
|
545
|
+
if ('shortDescription' in jsonObject) {
|
|
546
|
+
model.shortDescription = function () {
|
|
547
|
+
if (jsonObject['shortDescription'] === null) {
|
|
548
|
+
return null;
|
|
549
|
+
}
|
|
550
|
+
|
|
551
|
+
if (typeof jsonObject['shortDescription'] !== 'string') {
|
|
552
|
+
return String(jsonObject['shortDescription']);
|
|
553
|
+
}
|
|
554
|
+
|
|
555
|
+
return jsonObject['shortDescription'];
|
|
556
|
+
}();
|
|
557
|
+
}
|
|
558
|
+
|
|
559
|
+
if ('sampleDescription' in jsonObject) {
|
|
560
|
+
model.sampleDescription = function () {
|
|
561
|
+
if (jsonObject['sampleDescription'] === null) {
|
|
562
|
+
return null;
|
|
563
|
+
}
|
|
564
|
+
|
|
565
|
+
if (typeof jsonObject['sampleDescription'] !== 'string') {
|
|
566
|
+
return String(jsonObject['sampleDescription']);
|
|
567
|
+
}
|
|
568
|
+
|
|
569
|
+
return jsonObject['sampleDescription'];
|
|
570
|
+
}();
|
|
571
|
+
}
|
|
572
|
+
|
|
485
573
|
if ('status' in jsonObject) {
|
|
486
574
|
model.status = function () {
|
|
487
575
|
if (typeof jsonObject['status'] !== 'string') {
|
package/lib/PackageVersion.js
CHANGED
package/lib/index.d.ts
CHANGED
|
@@ -6984,6 +6984,38 @@ declare module '@ricado/api-client/Controllers/Lab/Site/FruitProfileController'
|
|
|
6984
6984
|
* The Maximum Target Temperature for a Sample to be Compliant
|
|
6985
6985
|
*/
|
|
6986
6986
|
maximumTargetTemperature: number;
|
|
6987
|
+
/**
|
|
6988
|
+
* The Warm-Up Temperature for starting the Warm Up alerts
|
|
6989
|
+
*/
|
|
6990
|
+
warmUpStartExpectedTemperature: number;
|
|
6991
|
+
/**
|
|
6992
|
+
* The Warm-Up Start Expected Rate of Change
|
|
6993
|
+
*/
|
|
6994
|
+
warmUpStartExpectedRateOfChange: number;
|
|
6995
|
+
/**
|
|
6996
|
+
* The Warm-Up Stage Two Expected Temperature
|
|
6997
|
+
*/
|
|
6998
|
+
warmUpStageTwoExpectedTemperature: number;
|
|
6999
|
+
/**
|
|
7000
|
+
* The Warm-Up Stage Two Expected Rate of Change
|
|
7001
|
+
*/
|
|
7002
|
+
warmUpStageTwoExpectedRateOfChange: number;
|
|
7003
|
+
/**
|
|
7004
|
+
* The Warm-Up Stage Three Expected Temperature
|
|
7005
|
+
*/
|
|
7006
|
+
warmUpStageThreeExpectedTemperature: number;
|
|
7007
|
+
/**
|
|
7008
|
+
* The Warm-Up Stage Three Expected Rate of Change
|
|
7009
|
+
*/
|
|
7010
|
+
warmUpStageThreeExpectedRateOfChange: number;
|
|
7011
|
+
/**
|
|
7012
|
+
* The Warm-Up End Expected Temperature
|
|
7013
|
+
*/
|
|
7014
|
+
warmUpEndExpectedTemperature: number;
|
|
7015
|
+
/**
|
|
7016
|
+
* The Warm-Up End Expected Rate of Change
|
|
7017
|
+
*/
|
|
7018
|
+
warmUpEndExpectedRateOfChange: number;
|
|
6987
7019
|
};
|
|
6988
7020
|
/**
|
|
6989
7021
|
* The Update Data for a Fruit Profile
|
|
@@ -7025,6 +7057,38 @@ declare module '@ricado/api-client/Controllers/Lab/Site/FruitProfileController'
|
|
|
7025
7057
|
* The Maximum Target Temperature for a Sample to be Compliant
|
|
7026
7058
|
*/
|
|
7027
7059
|
maximumTargetTemperature?: number | undefined;
|
|
7060
|
+
/**
|
|
7061
|
+
* The Warm-Up Temperature for starting the Warm Up alerts
|
|
7062
|
+
*/
|
|
7063
|
+
warmUpStartExpectedTemperature?: number | undefined;
|
|
7064
|
+
/**
|
|
7065
|
+
* The Warm-Up Start Expected Rate of Change
|
|
7066
|
+
*/
|
|
7067
|
+
warmUpStartExpectedRateOfChange?: number | undefined;
|
|
7068
|
+
/**
|
|
7069
|
+
* The Warm-Up Stage Two Expected Temperature
|
|
7070
|
+
*/
|
|
7071
|
+
warmUpStageTwoExpectedTemperature?: number | undefined;
|
|
7072
|
+
/**
|
|
7073
|
+
* The Warm-Up Stage Two Expected Rate of Change
|
|
7074
|
+
*/
|
|
7075
|
+
warmUpStageTwoExpectedRateOfChange?: number | undefined;
|
|
7076
|
+
/**
|
|
7077
|
+
* The Warm-Up Stage Three Expected Temperature
|
|
7078
|
+
*/
|
|
7079
|
+
warmUpStageThreeExpectedTemperature?: number | undefined;
|
|
7080
|
+
/**
|
|
7081
|
+
* The Warm-Up Stage Three Expected Rate of Change
|
|
7082
|
+
*/
|
|
7083
|
+
warmUpStageThreeExpectedRateOfChange?: number | undefined;
|
|
7084
|
+
/**
|
|
7085
|
+
* The Warm-Up End Expected Temperature
|
|
7086
|
+
*/
|
|
7087
|
+
warmUpEndExpectedTemperature?: number | undefined;
|
|
7088
|
+
/**
|
|
7089
|
+
* The Warm-Up End Expected Rate of Change
|
|
7090
|
+
*/
|
|
7091
|
+
warmUpEndExpectedRateOfChange?: number | undefined;
|
|
7028
7092
|
};
|
|
7029
7093
|
}
|
|
7030
7094
|
import FruitProfileModel from "@ricado/api-client/Models/Lab/Site/FruitProfileModel";
|
|
@@ -8176,6 +8240,10 @@ declare module '@ricado/api-client/Controllers/Lab/Site/SampleController' {
|
|
|
8176
8240
|
* Optional Scheduled Timestamp when this Sample should Begin
|
|
8177
8241
|
*/
|
|
8178
8242
|
scheduledTimestamp?: Date | null | undefined;
|
|
8243
|
+
/**
|
|
8244
|
+
* Optional When the Schedule was received from Inspect
|
|
8245
|
+
*/
|
|
8246
|
+
scheduleReceivedTimestamp?: Date | null | undefined;
|
|
8179
8247
|
/**
|
|
8180
8248
|
* When this Sample was Loaded into the Dehydrator
|
|
8181
8249
|
*/
|
|
@@ -8220,6 +8288,18 @@ declare module '@ricado/api-client/Controllers/Lab/Site/SampleController' {
|
|
|
8220
8288
|
* The Sample Result ID asociated with this Sample
|
|
8221
8289
|
*/
|
|
8222
8290
|
resultId?: string | null | undefined;
|
|
8291
|
+
/**
|
|
8292
|
+
* Optional the BlindedSampleID Reference defined in RadfordsInspect
|
|
8293
|
+
*/
|
|
8294
|
+
blindedSampleID?: string | null | undefined;
|
|
8295
|
+
/**
|
|
8296
|
+
* Optional the Sample Short Description defined in RadfordsInspect
|
|
8297
|
+
*/
|
|
8298
|
+
shortDescription?: string | null | undefined;
|
|
8299
|
+
/**
|
|
8300
|
+
* Optional the Sample Description defined in RadfordsInspect
|
|
8301
|
+
*/
|
|
8302
|
+
sampleDescription?: string | null | undefined;
|
|
8223
8303
|
};
|
|
8224
8304
|
/**
|
|
8225
8305
|
* The Update Data for a Sample
|
|
@@ -8245,6 +8325,10 @@ declare module '@ricado/api-client/Controllers/Lab/Site/SampleController' {
|
|
|
8245
8325
|
* Optional Scheduled Timestamp when this Sample should Begin
|
|
8246
8326
|
*/
|
|
8247
8327
|
scheduledTimestamp?: Date | null | undefined;
|
|
8328
|
+
/**
|
|
8329
|
+
* Optional When the Schedule was received from Inspect
|
|
8330
|
+
*/
|
|
8331
|
+
scheduleReceivedTimestamp?: Date | null | undefined;
|
|
8248
8332
|
/**
|
|
8249
8333
|
* When this Sample was Loaded into the Dehydrator
|
|
8250
8334
|
*/
|
|
@@ -8289,6 +8373,18 @@ declare module '@ricado/api-client/Controllers/Lab/Site/SampleController' {
|
|
|
8289
8373
|
* The Sample Result ID asociated with this Sample
|
|
8290
8374
|
*/
|
|
8291
8375
|
resultId?: string | null | undefined;
|
|
8376
|
+
/**
|
|
8377
|
+
* Optional the BlindedSampleID Reference defined in RadfordsInspect
|
|
8378
|
+
*/
|
|
8379
|
+
blindedSampleID?: string | null | undefined;
|
|
8380
|
+
/**
|
|
8381
|
+
* Optional the Sample Short Description defined in RadfordsInspect
|
|
8382
|
+
*/
|
|
8383
|
+
shortDescription?: string | null | undefined;
|
|
8384
|
+
/**
|
|
8385
|
+
* Optional the Sample Description defined in RadfordsInspect
|
|
8386
|
+
*/
|
|
8387
|
+
sampleDescription?: string | null | undefined;
|
|
8292
8388
|
};
|
|
8293
8389
|
/**
|
|
8294
8390
|
* A **UserAccount** Type
|
|
@@ -23188,6 +23284,62 @@ declare module '@ricado/api-client/Models/Lab/Site/FruitProfileModel' {
|
|
|
23188
23284
|
* @public
|
|
23189
23285
|
*/
|
|
23190
23286
|
maximumTargetTemperature: number;
|
|
23287
|
+
/**
|
|
23288
|
+
* The Warm-Up Temperature for starting the Warm Up alerts
|
|
23289
|
+
*
|
|
23290
|
+
* @type {number}
|
|
23291
|
+
* @public
|
|
23292
|
+
*/
|
|
23293
|
+
warmUpStartExpectedTemperature: number;
|
|
23294
|
+
/**
|
|
23295
|
+
* The Warm-Up Start Expected Rate of Change
|
|
23296
|
+
*
|
|
23297
|
+
* @type {number}
|
|
23298
|
+
* @public
|
|
23299
|
+
*/
|
|
23300
|
+
warmUpStartExpectedRateOfChange: number;
|
|
23301
|
+
/**
|
|
23302
|
+
* The Warm-Up Stage Two Expected Temperature
|
|
23303
|
+
*
|
|
23304
|
+
* @type {number}
|
|
23305
|
+
* @public
|
|
23306
|
+
*/
|
|
23307
|
+
warmUpStageTwoExpectedTemperature: number;
|
|
23308
|
+
/**
|
|
23309
|
+
* The Warm-Up Stage Two Expected Rate of Change
|
|
23310
|
+
*
|
|
23311
|
+
* @type {number}
|
|
23312
|
+
* @public
|
|
23313
|
+
*/
|
|
23314
|
+
warmUpStageTwoExpectedRateOfChange: number;
|
|
23315
|
+
/**
|
|
23316
|
+
* The Warm-Up Stage Three Expected Temperature
|
|
23317
|
+
*
|
|
23318
|
+
* @type {number}
|
|
23319
|
+
* @public
|
|
23320
|
+
*/
|
|
23321
|
+
warmUpStageThreeExpectedTemperature: number;
|
|
23322
|
+
/**
|
|
23323
|
+
* The Warm-Up Stage Three Expected Rate of Change
|
|
23324
|
+
*
|
|
23325
|
+
* @type {number}
|
|
23326
|
+
* @public
|
|
23327
|
+
*/
|
|
23328
|
+
warmUpStageThreeExpectedRateOfChange: number;
|
|
23329
|
+
/**
|
|
23330
|
+
* The Warm-Up End Expected Temperature
|
|
23331
|
+
*
|
|
23332
|
+
* @type {number}
|
|
23333
|
+
* @public
|
|
23334
|
+
*/
|
|
23335
|
+
warmUpEndExpectedTemperature: number;
|
|
23336
|
+
/**
|
|
23337
|
+
* The Warm-Up End Expected Rate of Change
|
|
23338
|
+
*
|
|
23339
|
+
* @type {number}
|
|
23340
|
+
* @public
|
|
23341
|
+
*/
|
|
23342
|
+
warmUpEndExpectedRateOfChange: number;
|
|
23191
23343
|
/**
|
|
23192
23344
|
* Whether the Fruit Profile has been deleted
|
|
23193
23345
|
*
|
|
@@ -23792,6 +23944,13 @@ declare module '@ricado/api-client/Models/Lab/Site/SampleModel' {
|
|
|
23792
23944
|
* @public
|
|
23793
23945
|
*/
|
|
23794
23946
|
scheduledTimestamp: Date | null;
|
|
23947
|
+
/**
|
|
23948
|
+
* Optional When the Schedule was received from Inspect
|
|
23949
|
+
*
|
|
23950
|
+
* @type {?Date}
|
|
23951
|
+
* @public
|
|
23952
|
+
*/
|
|
23953
|
+
scheduleReceivedTimestamp: Date | null;
|
|
23795
23954
|
/**
|
|
23796
23955
|
* When this Sample was Loaded into the Dehydrator
|
|
23797
23956
|
*
|
|
@@ -23869,6 +24028,27 @@ declare module '@ricado/api-client/Models/Lab/Site/SampleModel' {
|
|
|
23869
24028
|
* @public
|
|
23870
24029
|
*/
|
|
23871
24030
|
resultId: string | null;
|
|
24031
|
+
/**
|
|
24032
|
+
* Optional the BlindedSampleID Reference defined in RadfordsInspect
|
|
24033
|
+
*
|
|
24034
|
+
* @type {?string}
|
|
24035
|
+
* @public
|
|
24036
|
+
*/
|
|
24037
|
+
blindedSampleID: string | null;
|
|
24038
|
+
/**
|
|
24039
|
+
* Optional the Sample Short Description defined in RadfordsInspect
|
|
24040
|
+
*
|
|
24041
|
+
* @type {?string}
|
|
24042
|
+
* @public
|
|
24043
|
+
*/
|
|
24044
|
+
shortDescription: string | null;
|
|
24045
|
+
/**
|
|
24046
|
+
* Optional the Sample Description defined in RadfordsInspect
|
|
24047
|
+
*
|
|
24048
|
+
* @type {?string}
|
|
24049
|
+
* @public
|
|
24050
|
+
*/
|
|
24051
|
+
sampleDescription: string | null;
|
|
23872
24052
|
/**
|
|
23873
24053
|
* The Status of this Sample
|
|
23874
24054
|
*
|
package/package.json
CHANGED
|
@@ -164,6 +164,14 @@ export default FruitProfileController;
|
|
|
164
164
|
* @property {number} maximumTotalDuration The Maximum Duration (in seconds) that a Sample can be Dehydrated for before it is Considered Non-Compliant
|
|
165
165
|
* @property {number} minimumTargetTemperature The Minimum Target Temperature for a Sample to be Compliant
|
|
166
166
|
* @property {number} maximumTargetTemperature The Maximum Target Temperature for a Sample to be Compliant
|
|
167
|
+
* @property {number} warmUpStartExpectedTemperature The Warm-Up Temperature for starting the Warm Up alerts
|
|
168
|
+
* @property {number} warmUpStartExpectedRateOfChange The Warm-Up Start Expected Rate of Change
|
|
169
|
+
* @property {number} warmUpStageTwoExpectedTemperature The Warm-Up Stage Two Expected Temperature
|
|
170
|
+
* @property {number} warmUpStageTwoExpectedRateOfChange The Warm-Up Stage Two Expected Rate of Change
|
|
171
|
+
* @property {number} warmUpStageThreeExpectedTemperature The Warm-Up Stage Three Expected Temperature
|
|
172
|
+
* @property {number} warmUpStageThreeExpectedRateOfChange The Warm-Up Stage Three Expected Rate of Change
|
|
173
|
+
* @property {number} warmUpEndExpectedTemperature The Warm-Up End Expected Temperature
|
|
174
|
+
* @property {number} warmUpEndExpectedRateOfChange The Warm-Up End Expected Rate of Change
|
|
167
175
|
* @memberof Controllers.Lab.Site
|
|
168
176
|
*/
|
|
169
177
|
|
|
@@ -180,5 +188,13 @@ export default FruitProfileController;
|
|
|
180
188
|
* @property {number} [maximumTotalDuration] The Maximum Duration (in seconds) that a Sample can be Dehydrated for before it is Considered Non-Compliant
|
|
181
189
|
* @property {number} [minimumTargetTemperature] The Minimum Target Temperature for a Sample to be Compliant
|
|
182
190
|
* @property {number} [maximumTargetTemperature] The Maximum Target Temperature for a Sample to be Compliant
|
|
191
|
+
* @property {number} [warmUpStartExpectedTemperature] The Warm-Up Temperature for starting the Warm Up alerts
|
|
192
|
+
* @property {number} [warmUpStartExpectedRateOfChange] The Warm-Up Start Expected Rate of Change
|
|
193
|
+
* @property {number} [warmUpStageTwoExpectedTemperature] The Warm-Up Stage Two Expected Temperature
|
|
194
|
+
* @property {number} [warmUpStageTwoExpectedRateOfChange] The Warm-Up Stage Two Expected Rate of Change
|
|
195
|
+
* @property {number} [warmUpStageThreeExpectedTemperature] The Warm-Up Stage Three Expected Temperature
|
|
196
|
+
* @property {number} [warmUpStageThreeExpectedRateOfChange] The Warm-Up Stage Three Expected Rate of Change
|
|
197
|
+
* @property {number} [warmUpEndExpectedTemperature] The Warm-Up End Expected Temperature
|
|
198
|
+
* @property {number} [warmUpEndExpectedRateOfChange] The Warm-Up End Expected Rate of Change
|
|
183
199
|
* @memberof Controllers.Lab.Site
|
|
184
200
|
*/
|
|
@@ -1091,6 +1091,7 @@ export default SampleController;
|
|
|
1091
1091
|
* @property {string} createdSource The Source that Created this Sample
|
|
1092
1092
|
* @property {?string} [createdUserName] Name of the User who Created this Sample
|
|
1093
1093
|
* @property {?Date} [scheduledTimestamp] Optional Scheduled Timestamp when this Sample should Begin
|
|
1094
|
+
* @property {?Date} [scheduleReceivedTimestamp] Optional When the Schedule was received from Inspect
|
|
1094
1095
|
* @property {?Date} [loadedTimestamp] When this Sample was Loaded into the Dehydrator
|
|
1095
1096
|
* @property {?Date} [startTimestamp] When this Sample was Started
|
|
1096
1097
|
* @property {?Date} [finishTimestamp] When this Sample was Finished
|
|
@@ -1102,6 +1103,9 @@ export default SampleController;
|
|
|
1102
1103
|
* @property {string} rackPositionId The Rack Position used for this Sample
|
|
1103
1104
|
* @property {string} dehydratorId The Dehydrator used for this Sample
|
|
1104
1105
|
* @property {?string} [resultId] The Sample Result ID asociated with this Sample
|
|
1106
|
+
* @property {?string} [blindedSampleID] Optional the BlindedSampleID Reference defined in RadfordsInspect
|
|
1107
|
+
* @property {?string} [shortDescription] Optional the Sample Short Description defined in RadfordsInspect
|
|
1108
|
+
* @property {?string} [sampleDescription] Optional the Sample Description defined in RadfordsInspect
|
|
1105
1109
|
* @memberof Controllers.Lab.Site
|
|
1106
1110
|
*/
|
|
1107
1111
|
|
|
@@ -1114,6 +1118,7 @@ export default SampleController;
|
|
|
1114
1118
|
* @property {string} [createdSource] The Source that Created this Sample
|
|
1115
1119
|
* @property {?string} [createdUserName] Name of the User who Created this Sample
|
|
1116
1120
|
* @property {?Date} [scheduledTimestamp] Optional Scheduled Timestamp when this Sample should Begin
|
|
1121
|
+
* @property {?Date} [scheduleReceivedTimestamp] Optional When the Schedule was received from Inspect
|
|
1117
1122
|
* @property {?Date} [loadedTimestamp] When this Sample was Loaded into the Dehydrator
|
|
1118
1123
|
* @property {?Date} [startTimestamp] When this Sample was Started
|
|
1119
1124
|
* @property {?Date} [finishTimestamp] When this Sample was Finished
|
|
@@ -1125,6 +1130,9 @@ export default SampleController;
|
|
|
1125
1130
|
* @property {string} [rackPositionId] The Rack Position used for this Sample
|
|
1126
1131
|
* @property {string} [dehydratorId] The Dehydrator used for this Sample
|
|
1127
1132
|
* @property {?string} [resultId] The Sample Result ID asociated with this Sample
|
|
1133
|
+
* @property {?string} [blindedSampleID] Optional the BlindedSampleID Reference defined in RadfordsInspect
|
|
1134
|
+
* @property {?string} [shortDescription] Optional the Sample Short Description defined in RadfordsInspect
|
|
1135
|
+
* @property {?string} [sampleDescription] Optional the Sample Description defined in RadfordsInspect
|
|
1128
1136
|
* @memberof Controllers.Lab.Site
|
|
1129
1137
|
*/
|
|
1130
1138
|
|