@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/package.json
CHANGED
package/v1/api.d.ts
CHANGED
|
@@ -2821,6 +2821,18 @@ export interface License {
|
|
|
2821
2821
|
* @memberof License
|
|
2822
2822
|
*/
|
|
2823
2823
|
'grace_period_expiry_date': string;
|
|
2824
|
+
/**
|
|
2825
|
+
* Amount of times the license was activated.
|
|
2826
|
+
* @type {number}
|
|
2827
|
+
* @memberof License
|
|
2828
|
+
*/
|
|
2829
|
+
'consumed_activations': number;
|
|
2830
|
+
/**
|
|
2831
|
+
* Amount of times the license can be activated.
|
|
2832
|
+
* @type {number}
|
|
2833
|
+
* @memberof License
|
|
2834
|
+
*/
|
|
2835
|
+
'allowed_activations': number;
|
|
2824
2836
|
/**
|
|
2825
2837
|
* Feature limitations of the license.
|
|
2826
2838
|
* @type {{ [key: string]: number; }}
|
|
@@ -7278,7 +7290,9 @@ export declare const VirtualControllerTypes: {
|
|
|
7278
7290
|
readonly FanucM10iD12: "fanuc-m10iD12";
|
|
7279
7291
|
readonly FanucM20iD25: "fanuc-m20iD25";
|
|
7280
7292
|
readonly FanucM20iD35: "fanuc-m20iD35";
|
|
7281
|
-
readonly
|
|
7293
|
+
readonly FanucM900iB280L: "fanuc-m900iB280L";
|
|
7294
|
+
readonly FanucM900iB360E: "fanuc-m900iB360E";
|
|
7295
|
+
readonly FanucR2000ic210f: "fanuc-r2000ic210f";
|
|
7282
7296
|
readonly FanucR2000ic125l: "fanuc-r2000ic125l";
|
|
7283
7297
|
readonly KukaKr10R1100: "kuka-kr10_r1100";
|
|
7284
7298
|
readonly KukaKr10R11002: "kuka-kr10_r1100_2";
|
|
@@ -7301,6 +7315,7 @@ export declare const VirtualControllerTypes: {
|
|
|
7301
7315
|
readonly KukaKr50R2500: "kuka-kr50_r2500";
|
|
7302
7316
|
readonly KukaKr6R7002: "kuka-kr6_r700_2";
|
|
7303
7317
|
readonly KukaKr6R700Sixx: "kuka-kr6_r700_sixx";
|
|
7318
|
+
readonly KukaKr6R900: "kuka-kr6_r900";
|
|
7304
7319
|
readonly KukaKr6R9002: "kuka-kr6_r900_2";
|
|
7305
7320
|
readonly KukaLbrIisy11R1300: "kuka-lbr_iisy_11_r1300";
|
|
7306
7321
|
readonly UniversalrobotsUr10cb: "universalrobots-ur10cb";
|
package/v1/api.js
CHANGED
|
@@ -462,7 +462,9 @@ export const VirtualControllerTypes = {
|
|
|
462
462
|
FanucM10iD12: 'fanuc-m10iD12',
|
|
463
463
|
FanucM20iD25: 'fanuc-m20iD25',
|
|
464
464
|
FanucM20iD35: 'fanuc-m20iD35',
|
|
465
|
-
|
|
465
|
+
FanucM900iB280L: 'fanuc-m900iB280L',
|
|
466
|
+
FanucM900iB360E: 'fanuc-m900iB360E',
|
|
467
|
+
FanucR2000ic210f: 'fanuc-r2000ic210f',
|
|
466
468
|
FanucR2000ic125l: 'fanuc-r2000ic125l',
|
|
467
469
|
KukaKr10R1100: 'kuka-kr10_r1100',
|
|
468
470
|
KukaKr10R11002: 'kuka-kr10_r1100_2',
|
|
@@ -485,6 +487,7 @@ export const VirtualControllerTypes = {
|
|
|
485
487
|
KukaKr50R2500: 'kuka-kr50_r2500',
|
|
486
488
|
KukaKr6R7002: 'kuka-kr6_r700_2',
|
|
487
489
|
KukaKr6R700Sixx: 'kuka-kr6_r700_sixx',
|
|
490
|
+
KukaKr6R900: 'kuka-kr6_r900',
|
|
488
491
|
KukaKr6R9002: 'kuka-kr6_r900_2',
|
|
489
492
|
KukaLbrIisy11R1300: 'kuka-lbr_iisy_11_r1300',
|
|
490
493
|
UniversalrobotsUr10cb: 'universalrobots-ur10cb',
|