@wandelbots/nova-api 25.3.0-dev.58 → 25.3.0-dev.60
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 +12 -0
- package/v1/api.js.map +1 -1
- package/v1/api.ts +12 -0
- package/v2/api.d.ts +12 -0
- package/v2/api.js.map +1 -1
- package/v2/api.ts +12 -0
package/v1/api.ts
CHANGED
|
@@ -2871,6 +2871,18 @@ export interface License {
|
|
|
2871
2871
|
* @memberof License
|
|
2872
2872
|
*/
|
|
2873
2873
|
'grace_period_expiry_date': string;
|
|
2874
|
+
/**
|
|
2875
|
+
* Amount of times the license was activated.
|
|
2876
|
+
* @type {number}
|
|
2877
|
+
* @memberof License
|
|
2878
|
+
*/
|
|
2879
|
+
'consumed_activations': number;
|
|
2880
|
+
/**
|
|
2881
|
+
* Amount of times the license can be activated.
|
|
2882
|
+
* @type {number}
|
|
2883
|
+
* @memberof License
|
|
2884
|
+
*/
|
|
2885
|
+
'allowed_activations': number;
|
|
2874
2886
|
/**
|
|
2875
2887
|
* Feature limitations of the license.
|
|
2876
2888
|
* @type {{ [key: string]: number; }}
|
package/v2/api.d.ts
CHANGED
|
@@ -2872,6 +2872,18 @@ export interface License {
|
|
|
2872
2872
|
* @memberof License
|
|
2873
2873
|
*/
|
|
2874
2874
|
'grace_period_expiry_date': string;
|
|
2875
|
+
/**
|
|
2876
|
+
* Amount of times the license was activated.
|
|
2877
|
+
* @type {number}
|
|
2878
|
+
* @memberof License
|
|
2879
|
+
*/
|
|
2880
|
+
'consumed_activations': number;
|
|
2881
|
+
/**
|
|
2882
|
+
* Amount of times the license can be activated.
|
|
2883
|
+
* @type {number}
|
|
2884
|
+
* @memberof License
|
|
2885
|
+
*/
|
|
2886
|
+
'allowed_activations': number;
|
|
2875
2887
|
/**
|
|
2876
2888
|
* Feature limitations of the license.
|
|
2877
2889
|
* @type {{ [key: string]: number; }}
|