@wandelbots/nova-api 25.4.0-dev.3 → 25.4.0-dev.31
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/package.json +1 -1
- package/v1/api.d.ts +2 -2
- package/v1/api.ts +2 -2
- package/v2/api.d.ts +467 -357
- package/v2/api.js +457 -100
- package/v2/api.js.map +1 -1
- package/v2/api.ts +727 -404
package/package.json
CHANGED
package/v1/api.d.ts
CHANGED
|
@@ -4131,7 +4131,7 @@ export interface PauseOnIO {
|
|
|
4131
4131
|
*/
|
|
4132
4132
|
'io': IOValue;
|
|
4133
4133
|
/**
|
|
4134
|
-
* Comparator for the comparison of two values.
|
|
4134
|
+
* Comparator for the comparison of two values. Use the measured I/O as the base value (a) and the expected input/output value as the comparator (b): e.g., a > b.
|
|
4135
4135
|
* @type {Comparator}
|
|
4136
4136
|
* @memberof PauseOnIO
|
|
4137
4137
|
*/
|
|
@@ -6533,7 +6533,7 @@ export interface StartOnIO {
|
|
|
6533
6533
|
*/
|
|
6534
6534
|
'io': IOValue;
|
|
6535
6535
|
/**
|
|
6536
|
-
* Comparator for the comparison of two values.
|
|
6536
|
+
* Comparator for the comparison of two values. Use the measured I/O as the base value (a) and the expected input/output value as the comparator (b): e.g., a > b.
|
|
6537
6537
|
* @type {Comparator}
|
|
6538
6538
|
* @memberof StartOnIO
|
|
6539
6539
|
*/
|
package/v1/api.ts
CHANGED
|
@@ -4207,7 +4207,7 @@ export interface PauseOnIO {
|
|
|
4207
4207
|
*/
|
|
4208
4208
|
'io': IOValue;
|
|
4209
4209
|
/**
|
|
4210
|
-
* Comparator for the comparison of two values.
|
|
4210
|
+
* Comparator for the comparison of two values. Use the measured I/O as the base value (a) and the expected input/output value as the comparator (b): e.g., a > b.
|
|
4211
4211
|
* @type {Comparator}
|
|
4212
4212
|
* @memberof PauseOnIO
|
|
4213
4213
|
*/
|
|
@@ -6682,7 +6682,7 @@ export interface StartOnIO {
|
|
|
6682
6682
|
*/
|
|
6683
6683
|
'io': IOValue;
|
|
6684
6684
|
/**
|
|
6685
|
-
* Comparator for the comparison of two values.
|
|
6685
|
+
* Comparator for the comparison of two values. Use the measured I/O as the base value (a) and the expected input/output value as the comparator (b): e.g., a > b.
|
|
6686
6686
|
* @type {Comparator}
|
|
6687
6687
|
* @memberof StartOnIO
|
|
6688
6688
|
*/
|