@wandelbots/nova-api 25.3.0-dev.59 → 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/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; }}
|