@wandelbots/nova-api 25.5.0-dev.2 → 25.5.0-dev.20
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 +58 -3
- package/v1/api.js.map +1 -1
- package/v1/api.ts +59 -3
- package/v2/api.d.ts +479 -1018
- package/v2/api.js +1676 -2114
- package/v2/api.js.map +1 -1
- package/v2/api.ts +1946 -2753
package/package.json
CHANGED
package/v1/api.d.ts
CHANGED
|
@@ -138,7 +138,7 @@ export interface AllJointPositionsResponse {
|
|
|
138
138
|
*/
|
|
139
139
|
export interface App {
|
|
140
140
|
/**
|
|
141
|
-
* The name of the provided application. The name must be unique within the cell and is used as a identifier for addressing the application in all API calls , e.g. when updating the application. It also defines where the application is reachable (/$cell/$name).
|
|
141
|
+
* The name of the provided application. The name must be unique within the cell and is used as a identifier for addressing the application in all API calls , e.g. when updating the application. It also defines where the application is reachable (/$cell/$name). It must be a valid k8s label name as defined by [RFC 1035](https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#rfc-1035-label-names).
|
|
142
142
|
* @type {string}
|
|
143
143
|
* @memberof App
|
|
144
144
|
*/
|
|
@@ -2172,6 +2172,19 @@ export interface HTTPValidationError {
|
|
|
2172
2172
|
*/
|
|
2173
2173
|
'detail'?: Array<ValidationError>;
|
|
2174
2174
|
}
|
|
2175
|
+
/**
|
|
2176
|
+
*
|
|
2177
|
+
* @export
|
|
2178
|
+
* @interface HTTPValidationError2
|
|
2179
|
+
*/
|
|
2180
|
+
export interface HTTPValidationError2 {
|
|
2181
|
+
/**
|
|
2182
|
+
*
|
|
2183
|
+
* @type {Array<ValidationError2>}
|
|
2184
|
+
* @memberof HTTPValidationError2
|
|
2185
|
+
*/
|
|
2186
|
+
'detail'?: Array<ValidationError2>;
|
|
2187
|
+
}
|
|
2175
2188
|
/**
|
|
2176
2189
|
*
|
|
2177
2190
|
* @export
|
|
@@ -3549,6 +3562,12 @@ export interface MotionGroupState {
|
|
|
3549
3562
|
* @memberof MotionGroupState
|
|
3550
3563
|
*/
|
|
3551
3564
|
'joint_current'?: Joints;
|
|
3565
|
+
/**
|
|
3566
|
+
* Sequence number of the controller state. It starts with 0 upon establishing the connection with a physical controller. The sequence number is reset when the connection to the physical controller is closed and re-established. It is of type string to represent uint64 values, which is not supported by OpenAPI.
|
|
3567
|
+
* @type {string}
|
|
3568
|
+
* @memberof MotionGroupState
|
|
3569
|
+
*/
|
|
3570
|
+
'sequence_number': string;
|
|
3552
3571
|
}
|
|
3553
3572
|
/**
|
|
3554
3573
|
* Indicates which joint of the motion group is in a limit. If a joint is in its limit, only this joint can be moved. Movements that affect any other joints are not executed.
|
|
@@ -5825,6 +5844,12 @@ export interface RobotControllerState {
|
|
|
5825
5844
|
* @memberof RobotControllerState
|
|
5826
5845
|
*/
|
|
5827
5846
|
'motion_groups': Array<MotionGroupState>;
|
|
5847
|
+
/**
|
|
5848
|
+
* Sequence number of the controller state. It starts with 0 upon establishing the connection with a physical controller. The sequence number is reset when the connection to the physical controller is closed and re-established. It is of type string to represent uint64 values, which is not supported by OpenAPI.
|
|
5849
|
+
* @type {string}
|
|
5850
|
+
* @memberof RobotControllerState
|
|
5851
|
+
*/
|
|
5852
|
+
'sequence_number': string;
|
|
5828
5853
|
}
|
|
5829
5854
|
export declare const RobotControllerStateOperationModeEnum: {
|
|
5830
5855
|
readonly OperationModeUnknown: "OPERATION_MODE_UNKNOWN";
|
|
@@ -7094,10 +7119,40 @@ export interface ValidationError {
|
|
|
7094
7119
|
/**
|
|
7095
7120
|
*
|
|
7096
7121
|
* @export
|
|
7097
|
-
* @interface
|
|
7122
|
+
* @interface ValidationError2
|
|
7098
7123
|
*/
|
|
7099
|
-
export interface
|
|
7124
|
+
export interface ValidationError2 {
|
|
7125
|
+
/**
|
|
7126
|
+
*
|
|
7127
|
+
* @type {Array<ValidationError2LocInner>}
|
|
7128
|
+
* @memberof ValidationError2
|
|
7129
|
+
*/
|
|
7130
|
+
'loc': Array<ValidationError2LocInner>;
|
|
7131
|
+
/**
|
|
7132
|
+
*
|
|
7133
|
+
* @type {string}
|
|
7134
|
+
* @memberof ValidationError2
|
|
7135
|
+
*/
|
|
7136
|
+
'msg': string;
|
|
7137
|
+
/**
|
|
7138
|
+
*
|
|
7139
|
+
* @type {string}
|
|
7140
|
+
* @memberof ValidationError2
|
|
7141
|
+
*/
|
|
7142
|
+
'type': string;
|
|
7100
7143
|
}
|
|
7144
|
+
/**
|
|
7145
|
+
*
|
|
7146
|
+
* @export
|
|
7147
|
+
* @interface ValidationError2LocInner
|
|
7148
|
+
*/
|
|
7149
|
+
export interface ValidationError2LocInner {
|
|
7150
|
+
}
|
|
7151
|
+
/**
|
|
7152
|
+
* @type ValidationErrorLocInner
|
|
7153
|
+
* @export
|
|
7154
|
+
*/
|
|
7155
|
+
export type ValidationErrorLocInner = number | string;
|
|
7101
7156
|
/**
|
|
7102
7157
|
*
|
|
7103
7158
|
* @export
|