@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/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; }}
|