@wandelbots/nova-api 26.8.0-dev.48 → 26.8.0-dev.49

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/dist/v2/index.cjs CHANGED
@@ -4601,7 +4601,7 @@ const LicenseApiFactory = function(configuration, basePath, axios$85) {
4601
4601
  */
4602
4602
  var LicenseApi = class extends BaseAPI {
4603
4603
  /**
4604
- * **Required permissions:** `can_manage_license` - Manage license configuration ___ Activates a license using the provided license owner authentication token. The refresh token is used to enable communication with the license provider without requiring user interaction.
4604
+ * **Required permissions:** `can_manage_license` - Manage license configuration ___ Activates a license, either directly using a license key or using the provided license owner authentication token. The refresh token is used to enable communication with the license provider without requiring user interaction.
4605
4605
  * @summary Activate license
4606
4606
  * @param {ActivateLicenseRequest} activateLicenseRequest
4607
4607
  * @param {*} [options] Override http request option.
@@ -224,10 +224,17 @@ declare const ActionChunkResponseKindEnum: {
224
224
  };
225
225
  type ActionChunkResponseKindEnum = typeof ActionChunkResponseKindEnum[keyof typeof ActionChunkResponseKindEnum];
226
226
  /**
227
- * The authentication token to fetch the license from the license server.
227
+ * Either a license key or an owner refresh token to activate a license. Exactly one of the two must be provided.
228
228
  */
229
229
  interface ActivateLicenseRequest {
230
- 'owner_refresh_token': string;
230
+ /**
231
+ * The license key to activate directly.
232
+ */
233
+ 'license_key'?: string;
234
+ /**
235
+ * The authentication token used to fetch the license from the license server.
236
+ */
237
+ 'owner_refresh_token'?: string;
231
238
  }
232
239
  interface AddTrajectoryError {
233
240
  'message'?: string;
@@ -9518,7 +9525,7 @@ declare class KinematicsApi extends BaseAPI {
9518
9525
  */
9519
9526
  declare const LicenseApiAxiosParamCreator: (configuration?: Configuration) => {
9520
9527
  /**
9521
- * **Required permissions:** `can_manage_license` - Manage license configuration ___ Activates a license using the provided license owner authentication token. The refresh token is used to enable communication with the license provider without requiring user interaction.
9528
+ * **Required permissions:** `can_manage_license` - Manage license configuration ___ Activates a license, either directly using a license key or using the provided license owner authentication token. The refresh token is used to enable communication with the license provider without requiring user interaction.
9522
9529
  * @summary Activate license
9523
9530
  * @param {ActivateLicenseRequest} activateLicenseRequest
9524
9531
  * @param {*} [options] Override http request option.
@@ -9552,7 +9559,7 @@ declare const LicenseApiAxiosParamCreator: (configuration?: Configuration) => {
9552
9559
  */
9553
9560
  declare const LicenseApiFp: (configuration?: Configuration) => {
9554
9561
  /**
9555
- * **Required permissions:** `can_manage_license` - Manage license configuration ___ Activates a license using the provided license owner authentication token. The refresh token is used to enable communication with the license provider without requiring user interaction.
9562
+ * **Required permissions:** `can_manage_license` - Manage license configuration ___ Activates a license, either directly using a license key or using the provided license owner authentication token. The refresh token is used to enable communication with the license provider without requiring user interaction.
9556
9563
  * @summary Activate license
9557
9564
  * @param {ActivateLicenseRequest} activateLicenseRequest
9558
9565
  * @param {*} [options] Override http request option.
@@ -9586,7 +9593,7 @@ declare const LicenseApiFp: (configuration?: Configuration) => {
9586
9593
  */
9587
9594
  declare const LicenseApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
9588
9595
  /**
9589
- * **Required permissions:** `can_manage_license` - Manage license configuration ___ Activates a license using the provided license owner authentication token. The refresh token is used to enable communication with the license provider without requiring user interaction.
9596
+ * **Required permissions:** `can_manage_license` - Manage license configuration ___ Activates a license, either directly using a license key or using the provided license owner authentication token. The refresh token is used to enable communication with the license provider without requiring user interaction.
9590
9597
  * @summary Activate license
9591
9598
  * @param {ActivateLicenseRequest} activateLicenseRequest
9592
9599
  * @param {*} [options] Override http request option.
@@ -9620,7 +9627,7 @@ declare const LicenseApiFactory: (configuration?: Configuration, basePath?: stri
9620
9627
  */
9621
9628
  declare class LicenseApi extends BaseAPI {
9622
9629
  /**
9623
- * **Required permissions:** `can_manage_license` - Manage license configuration ___ Activates a license using the provided license owner authentication token. The refresh token is used to enable communication with the license provider without requiring user interaction.
9630
+ * **Required permissions:** `can_manage_license` - Manage license configuration ___ Activates a license, either directly using a license key or using the provided license owner authentication token. The refresh token is used to enable communication with the license provider without requiring user interaction.
9624
9631
  * @summary Activate license
9625
9632
  * @param {ActivateLicenseRequest} activateLicenseRequest
9626
9633
  * @param {*} [options] Override http request option.
@@ -224,10 +224,17 @@ declare const ActionChunkResponseKindEnum: {
224
224
  };
225
225
  type ActionChunkResponseKindEnum = typeof ActionChunkResponseKindEnum[keyof typeof ActionChunkResponseKindEnum];
226
226
  /**
227
- * The authentication token to fetch the license from the license server.
227
+ * Either a license key or an owner refresh token to activate a license. Exactly one of the two must be provided.
228
228
  */
229
229
  interface ActivateLicenseRequest {
230
- 'owner_refresh_token': string;
230
+ /**
231
+ * The license key to activate directly.
232
+ */
233
+ 'license_key'?: string;
234
+ /**
235
+ * The authentication token used to fetch the license from the license server.
236
+ */
237
+ 'owner_refresh_token'?: string;
231
238
  }
232
239
  interface AddTrajectoryError {
233
240
  'message'?: string;
@@ -9518,7 +9525,7 @@ declare class KinematicsApi extends BaseAPI {
9518
9525
  */
9519
9526
  declare const LicenseApiAxiosParamCreator: (configuration?: Configuration) => {
9520
9527
  /**
9521
- * **Required permissions:** `can_manage_license` - Manage license configuration ___ Activates a license using the provided license owner authentication token. The refresh token is used to enable communication with the license provider without requiring user interaction.
9528
+ * **Required permissions:** `can_manage_license` - Manage license configuration ___ Activates a license, either directly using a license key or using the provided license owner authentication token. The refresh token is used to enable communication with the license provider without requiring user interaction.
9522
9529
  * @summary Activate license
9523
9530
  * @param {ActivateLicenseRequest} activateLicenseRequest
9524
9531
  * @param {*} [options] Override http request option.
@@ -9552,7 +9559,7 @@ declare const LicenseApiAxiosParamCreator: (configuration?: Configuration) => {
9552
9559
  */
9553
9560
  declare const LicenseApiFp: (configuration?: Configuration) => {
9554
9561
  /**
9555
- * **Required permissions:** `can_manage_license` - Manage license configuration ___ Activates a license using the provided license owner authentication token. The refresh token is used to enable communication with the license provider without requiring user interaction.
9562
+ * **Required permissions:** `can_manage_license` - Manage license configuration ___ Activates a license, either directly using a license key or using the provided license owner authentication token. The refresh token is used to enable communication with the license provider without requiring user interaction.
9556
9563
  * @summary Activate license
9557
9564
  * @param {ActivateLicenseRequest} activateLicenseRequest
9558
9565
  * @param {*} [options] Override http request option.
@@ -9586,7 +9593,7 @@ declare const LicenseApiFp: (configuration?: Configuration) => {
9586
9593
  */
9587
9594
  declare const LicenseApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
9588
9595
  /**
9589
- * **Required permissions:** `can_manage_license` - Manage license configuration ___ Activates a license using the provided license owner authentication token. The refresh token is used to enable communication with the license provider without requiring user interaction.
9596
+ * **Required permissions:** `can_manage_license` - Manage license configuration ___ Activates a license, either directly using a license key or using the provided license owner authentication token. The refresh token is used to enable communication with the license provider without requiring user interaction.
9590
9597
  * @summary Activate license
9591
9598
  * @param {ActivateLicenseRequest} activateLicenseRequest
9592
9599
  * @param {*} [options] Override http request option.
@@ -9620,7 +9627,7 @@ declare const LicenseApiFactory: (configuration?: Configuration, basePath?: stri
9620
9627
  */
9621
9628
  declare class LicenseApi extends BaseAPI {
9622
9629
  /**
9623
- * **Required permissions:** `can_manage_license` - Manage license configuration ___ Activates a license using the provided license owner authentication token. The refresh token is used to enable communication with the license provider without requiring user interaction.
9630
+ * **Required permissions:** `can_manage_license` - Manage license configuration ___ Activates a license, either directly using a license key or using the provided license owner authentication token. The refresh token is used to enable communication with the license provider without requiring user interaction.
9624
9631
  * @summary Activate license
9625
9632
  * @param {ActivateLicenseRequest} activateLicenseRequest
9626
9633
  * @param {*} [options] Override http request option.
package/dist/v2/index.js CHANGED
@@ -4577,7 +4577,7 @@ const LicenseApiFactory = function(configuration, basePath, axios) {
4577
4577
  */
4578
4578
  var LicenseApi = class extends BaseAPI {
4579
4579
  /**
4580
- * **Required permissions:** `can_manage_license` - Manage license configuration ___ Activates a license using the provided license owner authentication token. The refresh token is used to enable communication with the license provider without requiring user interaction.
4580
+ * **Required permissions:** `can_manage_license` - Manage license configuration ___ Activates a license, either directly using a license key or using the provided license owner authentication token. The refresh token is used to enable communication with the license provider without requiring user interaction.
4581
4581
  * @summary Activate license
4582
4582
  * @param {ActivateLicenseRequest} activateLicenseRequest
4583
4583
  * @param {*} [options] Override http request option.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wandelbots/nova-api",
3
- "version": "26.8.0-dev.48",
3
+ "version": "26.8.0-dev.49",
4
4
  "description": "API Client to interact with Wandelbots Public API.",
5
5
  "type": "module",
6
6
  "files": [