@ricado/api-client 2.4.1 → 2.5.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.
- package/dist/ricado.api.client.js +1 -1
- package/lib/Controllers/Lab/Site/FruitProfileController.js +12 -9
- package/lib/Controllers/Lab/Site/ProbeCalibrationController.js +921 -0
- package/lib/Controllers/Lab/Site/RackPositionController.js +2 -2
- package/lib/Controllers/Lab/Site/SampleController.js +15 -15
- package/lib/Controllers/Lab/Site/SampleResultController.js +29 -27
- package/lib/Controllers/Lab/Site/index.js +3 -3
- package/lib/Models/Lab/Site/FruitProfileModel.js +22 -4
- package/lib/Models/Lab/Site/{SampleFailureReasonModel.js → ProbeCalibrationModel.js} +141 -33
- package/lib/Models/Lab/Site/RackPositionModel.js +67 -15
- package/lib/Models/Lab/Site/SampleModel.js +51 -73
- package/lib/Models/Lab/Site/SampleResultModel.js +45 -23
- package/lib/Models/Lab/Site/index.js +3 -3
- package/lib/PackageVersion.js +1 -1
- package/lib/index.d.ts +577 -305
- package/package.json +1 -1
- package/src/Controllers/Lab/Site/FruitProfileController.js +12 -9
- package/src/Controllers/Lab/Site/ProbeCalibrationController.js +1052 -0
- package/src/Controllers/Lab/Site/RackPositionController.js +2 -2
- package/src/Controllers/Lab/Site/SampleController.js +15 -15
- package/src/Controllers/Lab/Site/SampleResultController.js +29 -27
- package/src/Controllers/Lab/Site/index.js +2 -2
- package/src/Models/Lab/Site/FruitProfileModel.js +24 -4
- package/src/Models/Lab/Site/ProbeCalibrationModel.js +290 -0
- package/src/Models/Lab/Site/RackPositionModel.js +87 -15
- package/src/Models/Lab/Site/SampleModel.js +57 -82
- package/src/Models/Lab/Site/SampleResultModel.js +48 -23
- package/src/Models/Lab/Site/index.js +2 -2
- package/src/PackageVersion.js +1 -1
- package/lib/Controllers/Lab/Site/SampleFailureReasonController.js +0 -192
- package/src/Controllers/Lab/Site/SampleFailureReasonController.js +0 -169
- package/src/Models/Lab/Site/SampleFailureReasonModel.js +0 -170
|
@@ -176,14 +176,15 @@ var _default = FruitProfileController;
|
|
|
176
176
|
* The Create Data for a Fruit Profile
|
|
177
177
|
*
|
|
178
178
|
* @typedef {Object} FruitProfileController.CreateData
|
|
179
|
-
* @property {string}
|
|
179
|
+
* @property {string} name The Fruit Profile Name
|
|
180
180
|
* @property {string} description The Fruit Profile Description
|
|
181
181
|
* @property {string} image The Fruit Profile Image Source
|
|
182
182
|
* @property {number} nominalWarmUpDuration The Typical Warm Up Duration (in seconds) for a Sample to reach the Minimum Target Temperature
|
|
183
|
-
* @property {number} minimumWithinTargetDuration The Minimum Duration (in seconds) that a Sample should be within the Min and Max Target Temperatures be
|
|
184
|
-
* @property {number}
|
|
185
|
-
* @property {number}
|
|
186
|
-
* @property {number}
|
|
183
|
+
* @property {number} minimumWithinTargetDuration The Minimum Duration (in seconds) that a Sample should be within the Min and Max Target Temperatures to be Compliant
|
|
184
|
+
* @property {number} minimumTotalDuration The Minimum Duration (in seconds) that a Sample must be Dehydrated for to be Compliant
|
|
185
|
+
* @property {number} maximumTotalDuration The Maximum Duration (in seconds) that a Sample can be Dehydrated for before it is Considered Non-Compliant
|
|
186
|
+
* @property {number} minimumTargetTemperature The Minimum Target Temperature for a Sample to be Compliant
|
|
187
|
+
* @property {number} maximumTargetTemperature The Maximum Target Temperature for a Sample to be Compliant
|
|
187
188
|
* @memberof Controllers.Lab.Site
|
|
188
189
|
*/
|
|
189
190
|
|
|
@@ -191,13 +192,15 @@ var _default = FruitProfileController;
|
|
|
191
192
|
* The Update Data for a Fruit Profile
|
|
192
193
|
*
|
|
193
194
|
* @typedef {Object} FruitProfileController.UpdateData
|
|
195
|
+
* @property {string} [name] The Fruit Profile Name
|
|
194
196
|
* @property {string} [description] The Fruit Profile Description
|
|
195
197
|
* @property {string} [image] The Fruit Profile Image Source
|
|
196
198
|
* @property {number} [nominalWarmUpDuration] The Typical Warm Up Duration (in seconds) for a Sample to reach the Minimum Target Temperature
|
|
197
|
-
* @property {number} [minimumWithinTargetDuration] The Minimum Duration (in seconds) that a Sample should be within the Min and Max Target Temperatures be
|
|
198
|
-
* @property {number} [
|
|
199
|
-
* @property {number} [
|
|
200
|
-
* @property {number} [
|
|
199
|
+
* @property {number} [minimumWithinTargetDuration] The Minimum Duration (in seconds) that a Sample should be within the Min and Max Target Temperatures to be Compliant
|
|
200
|
+
* @property {number} [minimumTotalDuration] The Minimum Duration (in seconds) that a Sample must be Dehydrated for to be Compliant
|
|
201
|
+
* @property {number} [maximumTotalDuration] The Maximum Duration (in seconds) that a Sample can be Dehydrated for before it is Considered Non-Compliant
|
|
202
|
+
* @property {number} [minimumTargetTemperature] The Minimum Target Temperature for a Sample to be Compliant
|
|
203
|
+
* @property {number} [maximumTargetTemperature] The Maximum Target Temperature for a Sample to be Compliant
|
|
201
204
|
* @memberof Controllers.Lab.Site
|
|
202
205
|
*/
|
|
203
206
|
|