@wandelbots/nova-api 25.3.0-dev.59 → 25.3.0-dev.61
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 +16 -1
- package/v1/api.js +4 -1
- package/v1/api.js.map +1 -1
- package/v1/api.ts +16 -1
- package/v2/api.d.ts +16 -1
- package/v2/api.js +4 -1
- package/v2/api.js.map +1 -1
- package/v2/api.ts +16 -1
package/v2/api.ts
CHANGED
|
@@ -2961,6 +2961,18 @@ export interface License {
|
|
|
2961
2961
|
* @memberof License
|
|
2962
2962
|
*/
|
|
2963
2963
|
'grace_period_expiry_date': string;
|
|
2964
|
+
/**
|
|
2965
|
+
* Amount of times the license was activated.
|
|
2966
|
+
* @type {number}
|
|
2967
|
+
* @memberof License
|
|
2968
|
+
*/
|
|
2969
|
+
'consumed_activations': number;
|
|
2970
|
+
/**
|
|
2971
|
+
* Amount of times the license can be activated.
|
|
2972
|
+
* @type {number}
|
|
2973
|
+
* @memberof License
|
|
2974
|
+
*/
|
|
2975
|
+
'allowed_activations': number;
|
|
2964
2976
|
/**
|
|
2965
2977
|
* Feature limitations of the license.
|
|
2966
2978
|
* @type {{ [key: string]: number; }}
|
|
@@ -6397,7 +6409,9 @@ export const VirtualControllerTypes = {
|
|
|
6397
6409
|
FanucM10iD12: 'fanuc-m10iD12',
|
|
6398
6410
|
FanucM20iD25: 'fanuc-m20iD25',
|
|
6399
6411
|
FanucM20iD35: 'fanuc-m20iD35',
|
|
6400
|
-
|
|
6412
|
+
FanucM900iB280L: 'fanuc-m900iB280L',
|
|
6413
|
+
FanucM900iB360E: 'fanuc-m900iB360E',
|
|
6414
|
+
FanucR2000ic210f: 'fanuc-r2000ic210f',
|
|
6401
6415
|
FanucR2000ic125l: 'fanuc-r2000ic125l',
|
|
6402
6416
|
KukaKr10R1100: 'kuka-kr10_r1100',
|
|
6403
6417
|
KukaKr10R11002: 'kuka-kr10_r1100_2',
|
|
@@ -6420,6 +6434,7 @@ export const VirtualControllerTypes = {
|
|
|
6420
6434
|
KukaKr50R2500: 'kuka-kr50_r2500',
|
|
6421
6435
|
KukaKr6R7002: 'kuka-kr6_r700_2',
|
|
6422
6436
|
KukaKr6R700Sixx: 'kuka-kr6_r700_sixx',
|
|
6437
|
+
KukaKr6R900: 'kuka-kr6_r900',
|
|
6423
6438
|
KukaKr6R9002: 'kuka-kr6_r900_2',
|
|
6424
6439
|
KukaLbrIisy11R1300: 'kuka-lbr_iisy_11_r1300',
|
|
6425
6440
|
UniversalrobotsUr10cb: 'universalrobots-ur10cb',
|