@wandelbots/nova-api 25.7.0-dev.18 → 25.7.0-dev.19
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/v2/api.d.ts +1 -1
- package/v2/api.ts +1 -1
package/package.json
CHANGED
package/v2/api.d.ts
CHANGED
|
@@ -3840,7 +3840,7 @@ export interface StartMovementRequest {
|
|
|
3840
3840
|
* @type {Direction}
|
|
3841
3841
|
* @memberof StartMovementRequest
|
|
3842
3842
|
*/
|
|
3843
|
-
'direction'
|
|
3843
|
+
'direction'?: Direction;
|
|
3844
3844
|
/**
|
|
3845
3845
|
* Attaches a list of output commands to the trajectory. The outputs are set to the specified values right after the specified location was reached. If the specified location is located before the start location (forward direction: value is smaller, backward direction: value is bigger), the output is not set.
|
|
3846
3846
|
* @type {Array<IOValue>}
|
package/v2/api.ts
CHANGED
|
@@ -4034,7 +4034,7 @@ export interface StartMovementRequest {
|
|
|
4034
4034
|
* @type {Direction}
|
|
4035
4035
|
* @memberof StartMovementRequest
|
|
4036
4036
|
*/
|
|
4037
|
-
'direction'
|
|
4037
|
+
'direction'?: Direction;
|
|
4038
4038
|
/**
|
|
4039
4039
|
* Attaches a list of output commands to the trajectory. The outputs are set to the specified values right after the specified location was reached. If the specified location is located before the start location (forward direction: value is smaller, backward direction: value is bigger), the output is not set.
|
|
4040
4040
|
* @type {Array<IOValue>}
|