@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wandelbots/nova-api",
3
- "version": "25.3.0-dev.59",
3
+ "version": "25.3.0-dev.60",
4
4
  "description": "API Client to interact with Wandelbots Public API.",
5
5
  "files": [
6
6
  "*",
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; }}