@wandelbots/nova-api 25.4.0-rc.5 → 25.5.0-dev.11
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/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
|
|
@@ -7094,10 +7107,40 @@ export interface ValidationError {
|
|
|
7094
7107
|
/**
|
|
7095
7108
|
*
|
|
7096
7109
|
* @export
|
|
7097
|
-
* @interface
|
|
7110
|
+
* @interface ValidationError2
|
|
7098
7111
|
*/
|
|
7099
|
-
export interface
|
|
7112
|
+
export interface ValidationError2 {
|
|
7113
|
+
/**
|
|
7114
|
+
*
|
|
7115
|
+
* @type {Array<ValidationError2LocInner>}
|
|
7116
|
+
* @memberof ValidationError2
|
|
7117
|
+
*/
|
|
7118
|
+
'loc': Array<ValidationError2LocInner>;
|
|
7119
|
+
/**
|
|
7120
|
+
*
|
|
7121
|
+
* @type {string}
|
|
7122
|
+
* @memberof ValidationError2
|
|
7123
|
+
*/
|
|
7124
|
+
'msg': string;
|
|
7125
|
+
/**
|
|
7126
|
+
*
|
|
7127
|
+
* @type {string}
|
|
7128
|
+
* @memberof ValidationError2
|
|
7129
|
+
*/
|
|
7130
|
+
'type': string;
|
|
7131
|
+
}
|
|
7132
|
+
/**
|
|
7133
|
+
*
|
|
7134
|
+
* @export
|
|
7135
|
+
* @interface ValidationError2LocInner
|
|
7136
|
+
*/
|
|
7137
|
+
export interface ValidationError2LocInner {
|
|
7100
7138
|
}
|
|
7139
|
+
/**
|
|
7140
|
+
* @type ValidationErrorLocInner
|
|
7141
|
+
* @export
|
|
7142
|
+
*/
|
|
7143
|
+
export type ValidationErrorLocInner = number | string;
|
|
7101
7144
|
/**
|
|
7102
7145
|
*
|
|
7103
7146
|
* @export
|