@wandelbots/nova-api 25.4.0-rc.3 → 25.5.0-dev.10
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 +46 -3
- package/v1/api.js.map +1 -1
- package/v1/api.ts +47 -3
- package/v2/api.d.ts +230 -496
- package/v2/api.js +1452 -1894
- package/v2/api.js.map +1 -1
- package/v2/api.ts +1692 -2236
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
|
|
@@ -7260,10 +7273,41 @@ export interface ValidationError {
|
|
|
7260
7273
|
/**
|
|
7261
7274
|
*
|
|
7262
7275
|
* @export
|
|
7263
|
-
* @interface
|
|
7276
|
+
* @interface ValidationError2
|
|
7277
|
+
*/
|
|
7278
|
+
export interface ValidationError2 {
|
|
7279
|
+
/**
|
|
7280
|
+
*
|
|
7281
|
+
* @type {Array<ValidationError2LocInner>}
|
|
7282
|
+
* @memberof ValidationError2
|
|
7283
|
+
*/
|
|
7284
|
+
'loc': Array<ValidationError2LocInner>;
|
|
7285
|
+
/**
|
|
7286
|
+
*
|
|
7287
|
+
* @type {string}
|
|
7288
|
+
* @memberof ValidationError2
|
|
7289
|
+
*/
|
|
7290
|
+
'msg': string;
|
|
7291
|
+
/**
|
|
7292
|
+
*
|
|
7293
|
+
* @type {string}
|
|
7294
|
+
* @memberof ValidationError2
|
|
7295
|
+
*/
|
|
7296
|
+
'type': string;
|
|
7297
|
+
}
|
|
7298
|
+
/**
|
|
7299
|
+
*
|
|
7300
|
+
* @export
|
|
7301
|
+
* @interface ValidationError2LocInner
|
|
7264
7302
|
*/
|
|
7265
|
-
export interface
|
|
7303
|
+
export interface ValidationError2LocInner {
|
|
7266
7304
|
}
|
|
7305
|
+
/**
|
|
7306
|
+
* @type ValidationErrorLocInner
|
|
7307
|
+
* @export
|
|
7308
|
+
*/
|
|
7309
|
+
export type ValidationErrorLocInner = number | string;
|
|
7310
|
+
|
|
7267
7311
|
/**
|
|
7268
7312
|
*
|
|
7269
7313
|
* @export
|