@ricado/api-client 2.4.0 → 2.4.2
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 +2 -1
- package/lib/Controllers/Lab/Site/ProbeCalibrationController.js +921 -0
- package/lib/Controllers/Lab/Site/SampleController.js +151 -47
- package/lib/Controllers/Lab/Site/SampleFailureReasonController.js +2 -1
- package/lib/Controllers/Lab/Site/index.js +3 -0
- package/lib/Models/Lab/Site/ProbeCalibrationModel.js +303 -0
- package/lib/Models/Lab/Site/SampleModel.js +46 -2
- package/lib/Models/Lab/Site/index.js +3 -0
- package/lib/PackageVersion.js +1 -1
- package/lib/index.d.ts +585 -19
- package/package.json +1 -1
- package/src/Controllers/Lab/Site/FruitProfileController.js +2 -1
- package/src/Controllers/Lab/Site/ProbeCalibrationController.js +1052 -0
- package/src/Controllers/Lab/Site/SampleController.js +157 -56
- package/src/Controllers/Lab/Site/SampleFailureReasonController.js +2 -1
- package/src/Controllers/Lab/Site/index.js +2 -0
- package/src/Models/Lab/Site/ProbeCalibrationModel.js +290 -0
- package/src/Models/Lab/Site/SampleModel.js +52 -2
- package/src/Models/Lab/Site/index.js +2 -0
- package/src/PackageVersion.js +1 -1
package/package.json
CHANGED
|
@@ -155,7 +155,7 @@ 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
|
|
@@ -170,6 +170,7 @@ export default FruitProfileController;
|
|
|
170
170
|
* The Update Data for a Fruit Profile
|
|
171
171
|
*
|
|
172
172
|
* @typedef {Object} FruitProfileController.UpdateData
|
|
173
|
+
* @property {string} [name] The Fruit Profile Name
|
|
173
174
|
* @property {string} [description] The Fruit Profile Description
|
|
174
175
|
* @property {string} [image] The Fruit Profile Image Source
|
|
175
176
|
* @property {number} [nominalWarmUpDuration] The Typical Warm Up Duration (in seconds) for a Sample to reach the Minimum Target Temperature
|