@wandelbots/nova-api 25.5.0-dev.9 → 25.6.0-dev.2
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 +77 -5
- package/v1/api.js +19 -2
- package/v1/api.js.map +1 -1
- package/v1/api.ts +78 -5
- package/v2/api.d.ts +338 -557
- package/v2/api.js +273 -252
- package/v2/api.js.map +1 -1
- package/v2/api.ts +438 -646
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
|
|
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
|
|
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
|
|
@@ -7460,6 +7516,7 @@ export const VirtualControllerTypes = {
|
|
|
7460
7516
|
AbbIrb460025020: 'abb-irb4600_250_20',
|
|
7461
7517
|
AbbIrb460025540: 'abb-irb4600_255_40',
|
|
7462
7518
|
FanucArcMate100iD: 'fanuc-arc_mate_100iD',
|
|
7519
|
+
FanucArcMate100iD16S: 'fanuc-arc_mate_100iD16S',
|
|
7463
7520
|
FanucArcMate120iD: 'fanuc-arc_mate_120iD',
|
|
7464
7521
|
FanucArcMate120iD12L: 'fanuc-arc_mate_120iD12L',
|
|
7465
7522
|
FanucArcMate120iD35: 'fanuc-arc_mate_120iD35',
|
|
@@ -7475,6 +7532,7 @@ export const VirtualControllerTypes = {
|
|
|
7475
7532
|
FanucLrMate200iD4S: 'fanuc-lr_mate_200iD4S',
|
|
7476
7533
|
FanucLrMate200iD7L: 'fanuc-lr_mate_200iD7L',
|
|
7477
7534
|
FanucM10iD12: 'fanuc-m10iD12',
|
|
7535
|
+
FanucM10iD16S: 'fanuc-m10iD16S',
|
|
7478
7536
|
FanucM20iD25: 'fanuc-m20iD25',
|
|
7479
7537
|
FanucM20iD35: 'fanuc-m20iD35',
|
|
7480
7538
|
FanucM900iB280L: 'fanuc-m900iB280L',
|
|
@@ -7487,7 +7545,7 @@ export const VirtualControllerTypes = {
|
|
|
7487
7545
|
KukaKr10R9002: 'kuka-kr10_r900_2',
|
|
7488
7546
|
KukaKr120R27002: 'kuka-kr120_r2700_2',
|
|
7489
7547
|
KukaKr12R18102: 'kuka-kr12_r1810_2',
|
|
7490
|
-
|
|
7548
|
+
KukaKr150R2: 'kuka-kr150_r2',
|
|
7491
7549
|
KukaKr16R16102: 'kuka-kr16_r1610_2',
|
|
7492
7550
|
KukaKr16R20102: 'kuka-kr16_r2010_2',
|
|
7493
7551
|
KukaKr20R1810: 'kuka-kr20_r1810',
|
|
@@ -7497,10 +7555,12 @@ export const VirtualControllerTypes = {
|
|
|
7497
7555
|
KukaKr210R33002: 'kuka-kr210_r3300_2',
|
|
7498
7556
|
KukaKr240R2700: 'kuka-kr240_r2700',
|
|
7499
7557
|
KukaKr250R27002: 'kuka-kr250_r2700_2',
|
|
7558
|
+
KukaKr30R3: 'kuka-kr30_r3',
|
|
7500
7559
|
KukaKr360L2403: 'kuka-kr360_l240_3',
|
|
7501
7560
|
KukaKr4R600: 'kuka-kr4_r600',
|
|
7502
7561
|
KukaKr500L3403: 'kuka-kr500_l340_3',
|
|
7503
7562
|
KukaKr50R2500: 'kuka-kr50_r2500',
|
|
7563
|
+
KukaKr6R1820: 'kuka-kr6_r1820',
|
|
7504
7564
|
KukaKr6R7002: 'kuka-kr6_r700_2',
|
|
7505
7565
|
KukaKr6R700Sixx: 'kuka-kr6_r700_sixx',
|
|
7506
7566
|
KukaKr6R900: 'kuka-kr6_r900',
|
|
@@ -7519,11 +7579,21 @@ export const VirtualControllerTypes = {
|
|
|
7519
7579
|
YaskawaAr3120: 'yaskawa-ar3120',
|
|
7520
7580
|
YaskawaAr700: 'yaskawa-ar700',
|
|
7521
7581
|
YaskawaAr900: 'yaskawa-ar900',
|
|
7582
|
+
YaskawaGp110: 'yaskawa-gp110',
|
|
7522
7583
|
YaskawaGp12: 'yaskawa-gp12',
|
|
7584
|
+
YaskawaGp180: 'yaskawa-gp180',
|
|
7585
|
+
YaskawaGp180120: 'yaskawa-gp180-120',
|
|
7523
7586
|
YaskawaGp20hl: 'yaskawa-gp20hl',
|
|
7587
|
+
YaskawaGp215: 'yaskawa-gp215',
|
|
7588
|
+
YaskawaGp225: 'yaskawa-gp225',
|
|
7524
7589
|
YaskawaGp25: 'yaskawa-gp25',
|
|
7590
|
+
YaskawaGp250: 'yaskawa-gp250',
|
|
7525
7591
|
YaskawaGp2512: 'yaskawa-gp25_12',
|
|
7592
|
+
YaskawaGp280: 'yaskawa-gp280',
|
|
7593
|
+
YaskawaGp35L: 'yaskawa-gp35L',
|
|
7594
|
+
YaskawaGp400: 'yaskawa-gp400',
|
|
7526
7595
|
YaskawaGp50: 'yaskawa-gp50',
|
|
7596
|
+
YaskawaGp600: 'yaskawa-gp600',
|
|
7527
7597
|
YaskawaGp7: 'yaskawa-gp7',
|
|
7528
7598
|
YaskawaGp8: 'yaskawa-gp8',
|
|
7529
7599
|
YaskawaGp88: 'yaskawa-gp88',
|
|
@@ -20555,6 +20625,7 @@ export const GetDefaultLinkChainMotionGroupModelEnum = {
|
|
|
20555
20625
|
FanucArcMate50iD: 'FANUC_ARC_Mate_50iD',
|
|
20556
20626
|
FanucArcMate50iD7L: 'FANUC_ARC_Mate_50iD7L',
|
|
20557
20627
|
FanucArcMate100iD: 'FANUC_ARC_Mate_100iD',
|
|
20628
|
+
FanucArcMate100iD16S: 'FANUC_ARC_Mate_100iD16S',
|
|
20558
20629
|
FanucArcMate100iD8L: 'FANUC_ARC_Mate_100iD8L',
|
|
20559
20630
|
FanucArcMate100iD10L: 'FANUC_ARC_Mate_100iD10L',
|
|
20560
20631
|
FanucArcMate120iD: 'FANUC_ARC_Mate_120iD',
|
|
@@ -20618,12 +20689,13 @@ export const GetDefaultLinkChainMotionGroupModelEnum = {
|
|
|
20618
20689
|
YaskawaTurn1: 'Yaskawa_TURN1',
|
|
20619
20690
|
YaskawaTurn2: 'Yaskawa_TURN2',
|
|
20620
20691
|
YaskawaTurn3: 'Yaskawa_TURN3',
|
|
20621
|
-
|
|
20692
|
+
KukaKr150R2: 'KUKA_KR150_R2',
|
|
20622
20693
|
KukaKr4R600: 'KUKA_KR4_R600',
|
|
20623
20694
|
KukaKr6R700: 'KUKA_KR6_R700',
|
|
20624
20695
|
KukaKr6R7002: 'KUKA_KR6_R700_2',
|
|
20625
20696
|
KukaKr6R900: 'KUKA_KR6_R900',
|
|
20626
20697
|
KukaKr6R9002: 'KUKA_KR6_R900_2',
|
|
20698
|
+
KukaKr6R1820: 'KUKA_KR6_R1820',
|
|
20627
20699
|
KukaKr10R900: 'KUKA_KR10_R900',
|
|
20628
20700
|
KukaKr10R9002: 'KUKA_KR10_R900_2',
|
|
20629
20701
|
KukaKr10R1100: 'KUKA_KR10_R1100',
|
|
@@ -20635,6 +20707,7 @@ export const GetDefaultLinkChainMotionGroupModelEnum = {
|
|
|
20635
20707
|
KukaKr16R20102: 'KUKA_KR16_R2010_2',
|
|
20636
20708
|
KukaKr20R1810: 'KUKA_KR20_R1810',
|
|
20637
20709
|
KukaKr20R18102: 'KUKA_KR20_R1810_2',
|
|
20710
|
+
KukaKr30R3: 'KUKA_KR30_R3',
|
|
20638
20711
|
KukaKr50R2500: 'KUKA_KR50_R2500',
|
|
20639
20712
|
KukaKr120R2700: 'KUKA_KR120_R2700',
|
|
20640
20713
|
KukaKr120R27002: 'KUKA_KR120_R2700_2',
|