@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
package/package.json
CHANGED
|
@@ -155,14 +155,15 @@ export default FruitProfileController;
|
|
|
155
155
|
* The Create Data for a Fruit Profile
|
|
156
156
|
*
|
|
157
157
|
* @typedef {Object} FruitProfileController.CreateData
|
|
158
|
-
* @property {string}
|
|
158
|
+
* @property {string} name The Fruit Profile Name
|
|
159
159
|
* @property {string} description The Fruit Profile Description
|
|
160
160
|
* @property {string} image The Fruit Profile Image Source
|
|
161
161
|
* @property {number} nominalWarmUpDuration The Typical Warm Up Duration (in seconds) for a Sample to reach the Minimum Target Temperature
|
|
162
|
-
* @property {number} minimumWithinTargetDuration The Minimum Duration (in seconds) that a Sample should be within the Min and Max Target Temperatures be
|
|
163
|
-
* @property {number}
|
|
164
|
-
* @property {number}
|
|
165
|
-
* @property {number}
|
|
162
|
+
* @property {number} minimumWithinTargetDuration The Minimum Duration (in seconds) that a Sample should be within the Min and Max Target Temperatures to be Compliant
|
|
163
|
+
* @property {number} minimumTotalDuration The Minimum Duration (in seconds) that a Sample must be Dehydrated for to be Compliant
|
|
164
|
+
* @property {number} maximumTotalDuration The Maximum Duration (in seconds) that a Sample can be Dehydrated for before it is Considered Non-Compliant
|
|
165
|
+
* @property {number} minimumTargetTemperature The Minimum Target Temperature for a Sample to be Compliant
|
|
166
|
+
* @property {number} maximumTargetTemperature The Maximum Target Temperature for a Sample to be Compliant
|
|
166
167
|
* @memberof Controllers.Lab.Site
|
|
167
168
|
*/
|
|
168
169
|
|
|
@@ -170,12 +171,14 @@ export default FruitProfileController;
|
|
|
170
171
|
* The Update Data for a Fruit Profile
|
|
171
172
|
*
|
|
172
173
|
* @typedef {Object} FruitProfileController.UpdateData
|
|
174
|
+
* @property {string} [name] The Fruit Profile Name
|
|
173
175
|
* @property {string} [description] The Fruit Profile Description
|
|
174
176
|
* @property {string} [image] The Fruit Profile Image Source
|
|
175
177
|
* @property {number} [nominalWarmUpDuration] The Typical Warm Up Duration (in seconds) for a Sample to reach the Minimum Target Temperature
|
|
176
|
-
* @property {number} [minimumWithinTargetDuration] The Minimum Duration (in seconds) that a Sample should be within the Min and Max Target Temperatures be
|
|
177
|
-
* @property {number} [
|
|
178
|
-
* @property {number} [
|
|
179
|
-
* @property {number} [
|
|
178
|
+
* @property {number} [minimumWithinTargetDuration] The Minimum Duration (in seconds) that a Sample should be within the Min and Max Target Temperatures to be Compliant
|
|
179
|
+
* @property {number} [minimumTotalDuration] The Minimum Duration (in seconds) that a Sample must be Dehydrated for to be Compliant
|
|
180
|
+
* @property {number} [maximumTotalDuration] The Maximum Duration (in seconds) that a Sample can be Dehydrated for before it is Considered Non-Compliant
|
|
181
|
+
* @property {number} [minimumTargetTemperature] The Minimum Target Temperature for a Sample to be Compliant
|
|
182
|
+
* @property {number} [maximumTargetTemperature] The Maximum Target Temperature for a Sample to be Compliant
|
|
180
183
|
* @memberof Controllers.Lab.Site
|
|
181
184
|
*/
|