@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/v1/api.ts CHANGED
@@ -151,7 +151,7 @@ export interface AllJointPositionsResponse {
151
151
  */
152
152
  export interface App {
153
153
  /**
154
- * 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).
154
+ * 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).
155
155
  * @type {string}
156
156
  * @memberof App
157
157
  */
@@ -2205,6 +2205,19 @@ export interface HTTPValidationError {
2205
2205
  */
2206
2206
  'detail'?: Array<ValidationError>;
2207
2207
  }
2208
+ /**
2209
+ *
2210
+ * @export
2211
+ * @interface HTTPValidationError2
2212
+ */
2213
+ export interface HTTPValidationError2 {
2214
+ /**
2215
+ *
2216
+ * @type {Array<ValidationError2>}
2217
+ * @memberof HTTPValidationError2
2218
+ */
2219
+ 'detail'?: Array<ValidationError2>;
2220
+ }
2208
2221
  /**
2209
2222
  *
2210
2223
  * @export
@@ -3607,6 +3620,12 @@ export interface MotionGroupState {
3607
3620
  * @memberof MotionGroupState
3608
3621
  */
3609
3622
  'joint_current'?: Joints;
3623
+ /**
3624
+ * 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.
3625
+ * @type {string}
3626
+ * @memberof MotionGroupState
3627
+ */
3628
+ 'sequence_number': string;
3610
3629
  }
3611
3630
  /**
3612
3631
  * 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.
@@ -5923,6 +5942,12 @@ export interface RobotControllerState {
5923
5942
  * @memberof RobotControllerState
5924
5943
  */
5925
5944
  'motion_groups': Array<MotionGroupState>;
5945
+ /**
5946
+ * 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.
5947
+ * @type {string}
5948
+ * @memberof RobotControllerState
5949
+ */
5950
+ 'sequence_number': string;
5926
5951
  }
5927
5952
 
5928
5953
  export const RobotControllerStateOperationModeEnum = {
@@ -7260,10 +7285,41 @@ export interface ValidationError {
7260
7285
  /**
7261
7286
  *
7262
7287
  * @export
7263
- * @interface ValidationErrorLocInner
7288
+ * @interface ValidationError2
7289
+ */
7290
+ export interface ValidationError2 {
7291
+ /**
7292
+ *
7293
+ * @type {Array<ValidationError2LocInner>}
7294
+ * @memberof ValidationError2
7295
+ */
7296
+ 'loc': Array<ValidationError2LocInner>;
7297
+ /**
7298
+ *
7299
+ * @type {string}
7300
+ * @memberof ValidationError2
7301
+ */
7302
+ 'msg': string;
7303
+ /**
7304
+ *
7305
+ * @type {string}
7306
+ * @memberof ValidationError2
7307
+ */
7308
+ 'type': string;
7309
+ }
7310
+ /**
7311
+ *
7312
+ * @export
7313
+ * @interface ValidationError2LocInner
7264
7314
  */
7265
- export interface ValidationErrorLocInner {
7315
+ export interface ValidationError2LocInner {
7266
7316
  }
7317
+ /**
7318
+ * @type ValidationErrorLocInner
7319
+ * @export
7320
+ */
7321
+ export type ValidationErrorLocInner = number | string;
7322
+
7267
7323
  /**
7268
7324
  *
7269
7325
  * @export