@ricado/api-client 2.4.1 → 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 +14 -6
- 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 +472 -10
- 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 +14 -6
- 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
|
@@ -176,7 +176,7 @@ 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
|
|
@@ -191,6 +191,7 @@ var _default = FruitProfileController;
|
|
|
191
191
|
* The Update Data for a Fruit Profile
|
|
192
192
|
*
|
|
193
193
|
* @typedef {Object} FruitProfileController.UpdateData
|
|
194
|
+
* @property {string} [name] The Fruit Profile Name
|
|
194
195
|
* @property {string} [description] The Fruit Profile Description
|
|
195
196
|
* @property {string} [image] The Fruit Profile Image Source
|
|
196
197
|
* @property {number} [nominalWarmUpDuration] The Typical Warm Up Duration (in seconds) for a Sample to reach the Minimum Target Temperature
|