@wandelbots/nova-api 26.4.0-dev.49 → 26.4.0-dev.51
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/v1/index.cjs +2 -2
- package/dist/v1/index.d.cts +8 -8
- package/dist/v1/index.d.ts +8 -8
- package/dist/v1/index.js +2 -2
- package/dist/v2/index.cjs +340 -225
- package/dist/v2/index.d.cts +275 -10
- package/dist/v2/index.d.ts +275 -10
- package/dist/v2/index.js +114 -3
- package/package.json +1 -1
package/dist/v1/index.cjs
CHANGED
|
@@ -3841,7 +3841,7 @@ var LicenseApi = class extends BaseAPI {
|
|
|
3841
3841
|
return LicenseApiFp(this.configuration).deactivateLicense(options).then((request) => request(this.axios, this.basePath));
|
|
3842
3842
|
}
|
|
3843
3843
|
/**
|
|
3844
|
-
* **Required permissions:** `
|
|
3844
|
+
* **Required permissions:** `can_access_license` - View license status ___ Get information on the license used with the Wandelbots NOVA instance, e.g. licensed product, expiration date, license status.
|
|
3845
3845
|
* @summary Get license
|
|
3846
3846
|
* @param {*} [options] Override http request option.
|
|
3847
3847
|
* @throws {RequiredError}
|
|
@@ -3850,7 +3850,7 @@ var LicenseApi = class extends BaseAPI {
|
|
|
3850
3850
|
return LicenseApiFp(this.configuration).getLicense(options).then((request) => request(this.axios, this.basePath));
|
|
3851
3851
|
}
|
|
3852
3852
|
/**
|
|
3853
|
-
* **Required permissions:** `
|
|
3853
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Get the license status. If `valid`, Wandelbots NOVA can be used. If `expired`, the license has to be renewed in order to use Wandelbots NOVA.
|
|
3854
3854
|
* @summary Get license status
|
|
3855
3855
|
* @param {*} [options] Override http request option.
|
|
3856
3856
|
* @throws {RequiredError}
|
package/dist/v1/index.d.cts
CHANGED
|
@@ -6337,14 +6337,14 @@ declare const LicenseApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
6337
6337
|
*/
|
|
6338
6338
|
deactivateLicense: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6339
6339
|
/**
|
|
6340
|
-
* **Required permissions:** `
|
|
6340
|
+
* **Required permissions:** `can_access_license` - View license status ___ Get information on the license used with the Wandelbots NOVA instance, e.g. licensed product, expiration date, license status.
|
|
6341
6341
|
* @summary Get license
|
|
6342
6342
|
* @param {*} [options] Override http request option.
|
|
6343
6343
|
* @throws {RequiredError}
|
|
6344
6344
|
*/
|
|
6345
6345
|
getLicense: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6346
6346
|
/**
|
|
6347
|
-
* **Required permissions:** `
|
|
6347
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Get the license status. If `valid`, Wandelbots NOVA can be used. If `expired`, the license has to be renewed in order to use Wandelbots NOVA.
|
|
6348
6348
|
* @summary Get license status
|
|
6349
6349
|
* @param {*} [options] Override http request option.
|
|
6350
6350
|
* @throws {RequiredError}
|
|
@@ -6371,14 +6371,14 @@ declare const LicenseApiFp: (configuration?: Configuration) => {
|
|
|
6371
6371
|
*/
|
|
6372
6372
|
deactivateLicense(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
6373
6373
|
/**
|
|
6374
|
-
* **Required permissions:** `
|
|
6374
|
+
* **Required permissions:** `can_access_license` - View license status ___ Get information on the license used with the Wandelbots NOVA instance, e.g. licensed product, expiration date, license status.
|
|
6375
6375
|
* @summary Get license
|
|
6376
6376
|
* @param {*} [options] Override http request option.
|
|
6377
6377
|
* @throws {RequiredError}
|
|
6378
6378
|
*/
|
|
6379
6379
|
getLicense(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<License>>;
|
|
6380
6380
|
/**
|
|
6381
|
-
* **Required permissions:** `
|
|
6381
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Get the license status. If `valid`, Wandelbots NOVA can be used. If `expired`, the license has to be renewed in order to use Wandelbots NOVA.
|
|
6382
6382
|
* @summary Get license status
|
|
6383
6383
|
* @param {*} [options] Override http request option.
|
|
6384
6384
|
* @throws {RequiredError}
|
|
@@ -6405,14 +6405,14 @@ declare const LicenseApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
6405
6405
|
*/
|
|
6406
6406
|
deactivateLicense(options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
6407
6407
|
/**
|
|
6408
|
-
* **Required permissions:** `
|
|
6408
|
+
* **Required permissions:** `can_access_license` - View license status ___ Get information on the license used with the Wandelbots NOVA instance, e.g. licensed product, expiration date, license status.
|
|
6409
6409
|
* @summary Get license
|
|
6410
6410
|
* @param {*} [options] Override http request option.
|
|
6411
6411
|
* @throws {RequiredError}
|
|
6412
6412
|
*/
|
|
6413
6413
|
getLicense(options?: RawAxiosRequestConfig): AxiosPromise<License>;
|
|
6414
6414
|
/**
|
|
6415
|
-
* **Required permissions:** `
|
|
6415
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Get the license status. If `valid`, Wandelbots NOVA can be used. If `expired`, the license has to be renewed in order to use Wandelbots NOVA.
|
|
6416
6416
|
* @summary Get license status
|
|
6417
6417
|
* @param {*} [options] Override http request option.
|
|
6418
6418
|
* @throws {RequiredError}
|
|
@@ -6439,14 +6439,14 @@ declare class LicenseApi extends BaseAPI {
|
|
|
6439
6439
|
*/
|
|
6440
6440
|
deactivateLicense(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
|
|
6441
6441
|
/**
|
|
6442
|
-
* **Required permissions:** `
|
|
6442
|
+
* **Required permissions:** `can_access_license` - View license status ___ Get information on the license used with the Wandelbots NOVA instance, e.g. licensed product, expiration date, license status.
|
|
6443
6443
|
* @summary Get license
|
|
6444
6444
|
* @param {*} [options] Override http request option.
|
|
6445
6445
|
* @throws {RequiredError}
|
|
6446
6446
|
*/
|
|
6447
6447
|
getLicense(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<License, any, {}>>;
|
|
6448
6448
|
/**
|
|
6449
|
-
* **Required permissions:** `
|
|
6449
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Get the license status. If `valid`, Wandelbots NOVA can be used. If `expired`, the license has to be renewed in order to use Wandelbots NOVA.
|
|
6450
6450
|
* @summary Get license status
|
|
6451
6451
|
* @param {*} [options] Override http request option.
|
|
6452
6452
|
* @throws {RequiredError}
|
package/dist/v1/index.d.ts
CHANGED
|
@@ -6337,14 +6337,14 @@ declare const LicenseApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
6337
6337
|
*/
|
|
6338
6338
|
deactivateLicense: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6339
6339
|
/**
|
|
6340
|
-
* **Required permissions:** `
|
|
6340
|
+
* **Required permissions:** `can_access_license` - View license status ___ Get information on the license used with the Wandelbots NOVA instance, e.g. licensed product, expiration date, license status.
|
|
6341
6341
|
* @summary Get license
|
|
6342
6342
|
* @param {*} [options] Override http request option.
|
|
6343
6343
|
* @throws {RequiredError}
|
|
6344
6344
|
*/
|
|
6345
6345
|
getLicense: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6346
6346
|
/**
|
|
6347
|
-
* **Required permissions:** `
|
|
6347
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Get the license status. If `valid`, Wandelbots NOVA can be used. If `expired`, the license has to be renewed in order to use Wandelbots NOVA.
|
|
6348
6348
|
* @summary Get license status
|
|
6349
6349
|
* @param {*} [options] Override http request option.
|
|
6350
6350
|
* @throws {RequiredError}
|
|
@@ -6371,14 +6371,14 @@ declare const LicenseApiFp: (configuration?: Configuration) => {
|
|
|
6371
6371
|
*/
|
|
6372
6372
|
deactivateLicense(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
6373
6373
|
/**
|
|
6374
|
-
* **Required permissions:** `
|
|
6374
|
+
* **Required permissions:** `can_access_license` - View license status ___ Get information on the license used with the Wandelbots NOVA instance, e.g. licensed product, expiration date, license status.
|
|
6375
6375
|
* @summary Get license
|
|
6376
6376
|
* @param {*} [options] Override http request option.
|
|
6377
6377
|
* @throws {RequiredError}
|
|
6378
6378
|
*/
|
|
6379
6379
|
getLicense(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<License>>;
|
|
6380
6380
|
/**
|
|
6381
|
-
* **Required permissions:** `
|
|
6381
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Get the license status. If `valid`, Wandelbots NOVA can be used. If `expired`, the license has to be renewed in order to use Wandelbots NOVA.
|
|
6382
6382
|
* @summary Get license status
|
|
6383
6383
|
* @param {*} [options] Override http request option.
|
|
6384
6384
|
* @throws {RequiredError}
|
|
@@ -6405,14 +6405,14 @@ declare const LicenseApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
6405
6405
|
*/
|
|
6406
6406
|
deactivateLicense(options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
6407
6407
|
/**
|
|
6408
|
-
* **Required permissions:** `
|
|
6408
|
+
* **Required permissions:** `can_access_license` - View license status ___ Get information on the license used with the Wandelbots NOVA instance, e.g. licensed product, expiration date, license status.
|
|
6409
6409
|
* @summary Get license
|
|
6410
6410
|
* @param {*} [options] Override http request option.
|
|
6411
6411
|
* @throws {RequiredError}
|
|
6412
6412
|
*/
|
|
6413
6413
|
getLicense(options?: RawAxiosRequestConfig): AxiosPromise<License>;
|
|
6414
6414
|
/**
|
|
6415
|
-
* **Required permissions:** `
|
|
6415
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Get the license status. If `valid`, Wandelbots NOVA can be used. If `expired`, the license has to be renewed in order to use Wandelbots NOVA.
|
|
6416
6416
|
* @summary Get license status
|
|
6417
6417
|
* @param {*} [options] Override http request option.
|
|
6418
6418
|
* @throws {RequiredError}
|
|
@@ -6439,14 +6439,14 @@ declare class LicenseApi extends BaseAPI {
|
|
|
6439
6439
|
*/
|
|
6440
6440
|
deactivateLicense(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
|
|
6441
6441
|
/**
|
|
6442
|
-
* **Required permissions:** `
|
|
6442
|
+
* **Required permissions:** `can_access_license` - View license status ___ Get information on the license used with the Wandelbots NOVA instance, e.g. licensed product, expiration date, license status.
|
|
6443
6443
|
* @summary Get license
|
|
6444
6444
|
* @param {*} [options] Override http request option.
|
|
6445
6445
|
* @throws {RequiredError}
|
|
6446
6446
|
*/
|
|
6447
6447
|
getLicense(options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<License, any, {}>>;
|
|
6448
6448
|
/**
|
|
6449
|
-
* **Required permissions:** `
|
|
6449
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Get the license status. If `valid`, Wandelbots NOVA can be used. If `expired`, the license has to be renewed in order to use Wandelbots NOVA.
|
|
6450
6450
|
* @summary Get license status
|
|
6451
6451
|
* @param {*} [options] Override http request option.
|
|
6452
6452
|
* @throws {RequiredError}
|
package/dist/v1/index.js
CHANGED
|
@@ -3839,7 +3839,7 @@ var LicenseApi = class extends BaseAPI {
|
|
|
3839
3839
|
return LicenseApiFp(this.configuration).deactivateLicense(options).then((request) => request(this.axios, this.basePath));
|
|
3840
3840
|
}
|
|
3841
3841
|
/**
|
|
3842
|
-
* **Required permissions:** `
|
|
3842
|
+
* **Required permissions:** `can_access_license` - View license status ___ Get information on the license used with the Wandelbots NOVA instance, e.g. licensed product, expiration date, license status.
|
|
3843
3843
|
* @summary Get license
|
|
3844
3844
|
* @param {*} [options] Override http request option.
|
|
3845
3845
|
* @throws {RequiredError}
|
|
@@ -3848,7 +3848,7 @@ var LicenseApi = class extends BaseAPI {
|
|
|
3848
3848
|
return LicenseApiFp(this.configuration).getLicense(options).then((request) => request(this.axios, this.basePath));
|
|
3849
3849
|
}
|
|
3850
3850
|
/**
|
|
3851
|
-
* **Required permissions:** `
|
|
3851
|
+
* **Required permissions:** `can_access_system` - View system status and metadata ___ Get the license status. If `valid`, Wandelbots NOVA can be used. If `expired`, the license has to be renewed in order to use Wandelbots NOVA.
|
|
3852
3852
|
* @summary Get license status
|
|
3853
3853
|
* @param {*} [options] Override http request option.
|
|
3854
3854
|
* @throws {RequiredError}
|