@wandelbots/nova-api 26.8.0-dev.5 → 26.8.0-dev.50

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.
@@ -4827,7 +4827,7 @@ var MotionGroupApi = class extends BaseAPI {
4827
4827
  */
4828
4828
  const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
4829
4829
  return {
4830
- copyMotionGroupModel: async (motionGroupModel, copyMotionGroupModelRequest, options = {}) => {
4830
+ copyMotionGroupModel: async (motionGroupModel, copyMotionGroupModelRequest, serialNumber, options = {}) => {
4831
4831
  assertParamExists("copyMotionGroupModel", "motionGroupModel", motionGroupModel);
4832
4832
  assertParamExists("copyMotionGroupModel", "copyMotionGroupModelRequest", copyMotionGroupModelRequest);
4833
4833
  const localVarPath = `/experimental/motion-group-models/{motion-group-model}/archive`.replace("{motion-group-model}", encodeURIComponent(String(motionGroupModel)));
@@ -4842,6 +4842,7 @@ const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
4842
4842
  const localVarHeaderParameter = {};
4843
4843
  const localVarQueryParameter = {};
4844
4844
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
4845
+ if (serialNumber !== void 0) localVarQueryParameter["serial_number"] = serialNumber;
4845
4846
  localVarHeaderParameter["Content-Type"] = "application/json";
4846
4847
  localVarHeaderParameter["Accept"] = "application/json";
4847
4848
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -4857,7 +4858,7 @@ const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
4857
4858
  options: localVarRequestOptions
4858
4859
  };
4859
4860
  },
4860
- deleteExperimentalMotionGroupModel: async (motionGroupModel, options = {}) => {
4861
+ deleteExperimentalMotionGroupModel: async (motionGroupModel, serialNumber, options = {}) => {
4861
4862
  assertParamExists("deleteExperimentalMotionGroupModel", "motionGroupModel", motionGroupModel);
4862
4863
  const localVarPath = `/experimental/motion-group-models/{motion-group-model}/archive`.replace("{motion-group-model}", encodeURIComponent(String(motionGroupModel)));
4863
4864
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -4871,6 +4872,7 @@ const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
4871
4872
  const localVarHeaderParameter = {};
4872
4873
  const localVarQueryParameter = {};
4873
4874
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
4875
+ if (serialNumber !== void 0) localVarQueryParameter["serial_number"] = serialNumber;
4874
4876
  setSearchParams(localVarUrlObj, localVarQueryParameter);
4875
4877
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
4876
4878
  localVarRequestOptions.headers = {
@@ -4883,7 +4885,7 @@ const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
4883
4885
  options: localVarRequestOptions
4884
4886
  };
4885
4887
  },
4886
- exportMotionGroupModel: async (motionGroupModel, options = {}) => {
4888
+ exportMotionGroupModel: async (motionGroupModel, serialNumber, options = {}) => {
4887
4889
  assertParamExists("exportMotionGroupModel", "motionGroupModel", motionGroupModel);
4888
4890
  const localVarPath = `/experimental/motion-group-models/{motion-group-model}/archive`.replace("{motion-group-model}", encodeURIComponent(String(motionGroupModel)));
4889
4891
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -4897,6 +4899,7 @@ const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
4897
4899
  const localVarHeaderParameter = {};
4898
4900
  const localVarQueryParameter = {};
4899
4901
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
4902
+ if (serialNumber !== void 0) localVarQueryParameter["serial_number"] = serialNumber;
4900
4903
  localVarHeaderParameter["Accept"] = "application/gzip";
4901
4904
  setSearchParams(localVarUrlObj, localVarQueryParameter);
4902
4905
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -5212,20 +5215,20 @@ const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
5212
5215
  const MotionGroupModelsApiFp = function(configuration) {
5213
5216
  const localVarAxiosParamCreator = MotionGroupModelsApiAxiosParamCreator(configuration);
5214
5217
  return {
5215
- async copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, options) {
5216
- const localVarAxiosArgs = await localVarAxiosParamCreator.copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, options);
5218
+ async copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, serialNumber, options) {
5219
+ const localVarAxiosArgs = await localVarAxiosParamCreator.copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, serialNumber, options);
5217
5220
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
5218
5221
  const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.copyMotionGroupModel"]?.[localVarOperationServerIndex]?.url;
5219
5222
  return (axios$90, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$90, localVarOperationServerBasePath || basePath);
5220
5223
  },
5221
- async deleteExperimentalMotionGroupModel(motionGroupModel, options) {
5222
- const localVarAxiosArgs = await localVarAxiosParamCreator.deleteExperimentalMotionGroupModel(motionGroupModel, options);
5224
+ async deleteExperimentalMotionGroupModel(motionGroupModel, serialNumber, options) {
5225
+ const localVarAxiosArgs = await localVarAxiosParamCreator.deleteExperimentalMotionGroupModel(motionGroupModel, serialNumber, options);
5223
5226
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
5224
5227
  const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.deleteExperimentalMotionGroupModel"]?.[localVarOperationServerIndex]?.url;
5225
5228
  return (axios$91, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$91, localVarOperationServerBasePath || basePath);
5226
5229
  },
5227
- async exportMotionGroupModel(motionGroupModel, options) {
5228
- const localVarAxiosArgs = await localVarAxiosParamCreator.exportMotionGroupModel(motionGroupModel, options);
5230
+ async exportMotionGroupModel(motionGroupModel, serialNumber, options) {
5231
+ const localVarAxiosArgs = await localVarAxiosParamCreator.exportMotionGroupModel(motionGroupModel, serialNumber, options);
5229
5232
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
5230
5233
  const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.exportMotionGroupModel"]?.[localVarOperationServerIndex]?.url;
5231
5234
  return (axios$92, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$92, localVarOperationServerBasePath || basePath);
@@ -5304,14 +5307,14 @@ const MotionGroupModelsApiFp = function(configuration) {
5304
5307
  const MotionGroupModelsApiFactory = function(configuration, basePath, axios$104) {
5305
5308
  const localVarFp = MotionGroupModelsApiFp(configuration);
5306
5309
  return {
5307
- copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, options) {
5308
- return localVarFp.copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, options).then((request) => request(axios$104, basePath));
5310
+ copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, serialNumber, options) {
5311
+ return localVarFp.copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, serialNumber, options).then((request) => request(axios$104, basePath));
5309
5312
  },
5310
- deleteExperimentalMotionGroupModel(motionGroupModel, options) {
5311
- return localVarFp.deleteExperimentalMotionGroupModel(motionGroupModel, options).then((request) => request(axios$104, basePath));
5313
+ deleteExperimentalMotionGroupModel(motionGroupModel, serialNumber, options) {
5314
+ return localVarFp.deleteExperimentalMotionGroupModel(motionGroupModel, serialNumber, options).then((request) => request(axios$104, basePath));
5312
5315
  },
5313
- exportMotionGroupModel(motionGroupModel, options) {
5314
- return localVarFp.exportMotionGroupModel(motionGroupModel, options).then((request) => request(axios$104, basePath));
5316
+ exportMotionGroupModel(motionGroupModel, serialNumber, options) {
5317
+ return localVarFp.exportMotionGroupModel(motionGroupModel, serialNumber, options).then((request) => request(axios$104, basePath));
5315
5318
  },
5316
5319
  getConfigurationForMotionGroup(motionGroupModel, options) {
5317
5320
  return localVarFp.getConfigurationForMotionGroup(motionGroupModel, options).then((request) => request(axios$104, basePath));
@@ -5357,31 +5360,34 @@ var MotionGroupModelsApi = class extends BaseAPI {
5357
5360
  * @summary Copy Motion Group Model
5358
5361
  * @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
5359
5362
  * @param {CopyMotionGroupModelRequest} copyMotionGroupModelRequest
5363
+ * @param {string} [serialNumber] Serial number of the robot, optional. If provided, the motion group data is resolved for the robot with this specific serial number.
5360
5364
  * @param {*} [options] Override http request option.
5361
5365
  * @throws {RequiredError}
5362
5366
  */
5363
- copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, options) {
5364
- return MotionGroupModelsApiFp(this.configuration).copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, options).then((request) => request(this.axios, this.basePath));
5367
+ copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, serialNumber, options) {
5368
+ return MotionGroupModelsApiFp(this.configuration).copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, serialNumber, options).then((request) => request(this.axios, this.basePath));
5365
5369
  }
5366
5370
  /**
5367
5371
  * **Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models, where `is_custom` is `true`, can be deleted. Built-in base models cannot be removed.
5368
5372
  * @summary Delete Motion Group Model
5369
5373
  * @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
5374
+ * @param {string} [serialNumber] Serial number of the robot, optional. If provided, the motion group data is resolved for the robot with this specific serial number.
5370
5375
  * @param {*} [options] Override http request option.
5371
5376
  * @throws {RequiredError}
5372
5377
  */
5373
- deleteExperimentalMotionGroupModel(motionGroupModel, options) {
5374
- return MotionGroupModelsApiFp(this.configuration).deleteExperimentalMotionGroupModel(motionGroupModel, options).then((request) => request(this.axios, this.basePath));
5378
+ deleteExperimentalMotionGroupModel(motionGroupModel, serialNumber, options) {
5379
+ return MotionGroupModelsApiFp(this.configuration).deleteExperimentalMotionGroupModel(motionGroupModel, serialNumber, options).then((request) => request(this.axios, this.basePath));
5375
5380
  }
5376
5381
  /**
5377
5382
  * **Required permissions:** `can_access_system` - View system status and metadata ___ Exports the specified motion group model as a tar.gz archive. The resulting tar.gz file can be imported on another system using the import endpoint.
5378
5383
  * @summary Export Motion Group Model
5379
5384
  * @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
5385
+ * @param {string} [serialNumber] Serial number of the robot, optional. If provided, the motion group data is resolved for the robot with this specific serial number.
5380
5386
  * @param {*} [options] Override http request option.
5381
5387
  * @throws {RequiredError}
5382
5388
  */
5383
- exportMotionGroupModel(motionGroupModel, options) {
5384
- return MotionGroupModelsApiFp(this.configuration).exportMotionGroupModel(motionGroupModel, options).then((request) => request(this.axios, this.basePath));
5389
+ exportMotionGroupModel(motionGroupModel, serialNumber, options) {
5390
+ return MotionGroupModelsApiFp(this.configuration).exportMotionGroupModel(motionGroupModel, serialNumber, options).then((request) => request(this.axios, this.basePath));
5385
5391
  }
5386
5392
  /**
5387
5393
  * **Required permissions:** `can_access_system` - View system status and metadata ___ Get a robot configuration containing the specified motion group model. This endpoint is designed for Virtual Robot to dynamically add motion groups by model name without needing to know the robot configuration name. Returns the full GCI transcript along with the motion group UID that corresponds to the requested motion group model.
@@ -6,7 +6,7 @@ import { AxiosInstance, AxiosPromise, RawAxiosRequestConfig } from "axios";
6
6
  * Wandelbots NOVA API
7
7
  * Interact with robots in an easy and intuitive way.
8
8
  *
9
- * The version of the OpenAPI document: 2.7.0
9
+ * The version of the OpenAPI document: 2.8.0 dev
10
10
  *
11
11
  *
12
12
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -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.
@@ -9810,26 +9817,29 @@ declare const MotionGroupModelsApiAxiosParamCreator: (configuration?: Configurat
9810
9817
  * @summary Copy Motion Group Model
9811
9818
  * @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., `UniversalRobots_UR10e`. Get the `model` of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
9812
9819
  * @param {CopyMotionGroupModelRequest} copyMotionGroupModelRequest
9820
+ * @param {string} [serialNumber] Serial number of the robot, optional. If provided, the motion group data is resolved for the robot with this specific serial number.
9813
9821
  * @param {*} [options] Override http request option.
9814
9822
  * @throws {RequiredError}
9815
9823
  */
9816
- copyMotionGroupModel: (motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9824
+ copyMotionGroupModel: (motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, serialNumber?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9817
9825
  /**
9818
9826
  * **Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models, where `is_custom` is `true`, can be deleted. Built-in base models cannot be removed.
9819
9827
  * @summary Delete Motion Group Model
9820
9828
  * @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., &#x60;UniversalRobots_UR10e&#x60;. Get the &#x60;model&#x60; of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
9829
+ * @param {string} [serialNumber] Serial number of the robot, optional. If provided, the motion group data is resolved for the robot with this specific serial number.
9821
9830
  * @param {*} [options] Override http request option.
9822
9831
  * @throws {RequiredError}
9823
9832
  */
9824
- deleteExperimentalMotionGroupModel: (motionGroupModel: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9833
+ deleteExperimentalMotionGroupModel: (motionGroupModel: string, serialNumber?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9825
9834
  /**
9826
9835
  * **Required permissions:** `can_access_system` - View system status and metadata ___ Exports the specified motion group model as a tar.gz archive. The resulting tar.gz file can be imported on another system using the import endpoint.
9827
9836
  * @summary Export Motion Group Model
9828
9837
  * @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., &#x60;UniversalRobots_UR10e&#x60;. Get the &#x60;model&#x60; of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
9838
+ * @param {string} [serialNumber] Serial number of the robot, optional. If provided, the motion group data is resolved for the robot with this specific serial number.
9829
9839
  * @param {*} [options] Override http request option.
9830
9840
  * @throws {RequiredError}
9831
9841
  */
9832
- exportMotionGroupModel: (motionGroupModel: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9842
+ exportMotionGroupModel: (motionGroupModel: string, serialNumber?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9833
9843
  /**
9834
9844
  * **Required permissions:** `can_access_system` - View system status and metadata ___ Get a robot configuration containing the specified motion group model. This endpoint is designed for Virtual Robot to dynamically add motion groups by model name without needing to know the robot configuration name. Returns the full GCI transcript along with the motion group UID that corresponds to the requested motion group model.
9835
9845
  * @summary Get Configuration for Motion Group
@@ -9926,26 +9936,29 @@ declare const MotionGroupModelsApiFp: (configuration?: Configuration) => {
9926
9936
  * @summary Copy Motion Group Model
9927
9937
  * @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., &#x60;UniversalRobots_UR10e&#x60;. Get the &#x60;model&#x60; of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
9928
9938
  * @param {CopyMotionGroupModelRequest} copyMotionGroupModelRequest
9939
+ * @param {string} [serialNumber] Serial number of the robot, optional. If provided, the motion group data is resolved for the robot with this specific serial number.
9929
9940
  * @param {*} [options] Override http request option.
9930
9941
  * @throws {RequiredError}
9931
9942
  */
9932
- copyMotionGroupModel(motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MotionGroupModelDescription>>;
9943
+ copyMotionGroupModel(motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, serialNumber?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MotionGroupModelDescription>>;
9933
9944
  /**
9934
9945
  * **Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models, where `is_custom` is `true`, can be deleted. Built-in base models cannot be removed.
9935
9946
  * @summary Delete Motion Group Model
9936
9947
  * @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., &#x60;UniversalRobots_UR10e&#x60;. Get the &#x60;model&#x60; of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
9948
+ * @param {string} [serialNumber] Serial number of the robot, optional. If provided, the motion group data is resolved for the robot with this specific serial number.
9937
9949
  * @param {*} [options] Override http request option.
9938
9950
  * @throws {RequiredError}
9939
9951
  */
9940
- deleteExperimentalMotionGroupModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
9952
+ deleteExperimentalMotionGroupModel(motionGroupModel: string, serialNumber?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
9941
9953
  /**
9942
9954
  * **Required permissions:** `can_access_system` - View system status and metadata ___ Exports the specified motion group model as a tar.gz archive. The resulting tar.gz file can be imported on another system using the import endpoint.
9943
9955
  * @summary Export Motion Group Model
9944
9956
  * @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., &#x60;UniversalRobots_UR10e&#x60;. Get the &#x60;model&#x60; of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
9957
+ * @param {string} [serialNumber] Serial number of the robot, optional. If provided, the motion group data is resolved for the robot with this specific serial number.
9945
9958
  * @param {*} [options] Override http request option.
9946
9959
  * @throws {RequiredError}
9947
9960
  */
9948
- exportMotionGroupModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
9961
+ exportMotionGroupModel(motionGroupModel: string, serialNumber?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
9949
9962
  /**
9950
9963
  * **Required permissions:** `can_access_system` - View system status and metadata ___ Get a robot configuration containing the specified motion group model. This endpoint is designed for Virtual Robot to dynamically add motion groups by model name without needing to know the robot configuration name. Returns the full GCI transcript along with the motion group UID that corresponds to the requested motion group model.
9951
9964
  * @summary Get Configuration for Motion Group
@@ -10044,26 +10057,29 @@ declare const MotionGroupModelsApiFactory: (configuration?: Configuration, baseP
10044
10057
  * @summary Copy Motion Group Model
10045
10058
  * @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., &#x60;UniversalRobots_UR10e&#x60;. Get the &#x60;model&#x60; of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
10046
10059
  * @param {CopyMotionGroupModelRequest} copyMotionGroupModelRequest
10060
+ * @param {string} [serialNumber] Serial number of the robot, optional. If provided, the motion group data is resolved for the robot with this specific serial number.
10047
10061
  * @param {*} [options] Override http request option.
10048
10062
  * @throws {RequiredError}
10049
10063
  */
10050
- copyMotionGroupModel(motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, options?: RawAxiosRequestConfig): AxiosPromise<MotionGroupModelDescription>;
10064
+ copyMotionGroupModel(motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, serialNumber?: string, options?: RawAxiosRequestConfig): AxiosPromise<MotionGroupModelDescription>;
10051
10065
  /**
10052
10066
  * **Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models, where `is_custom` is `true`, can be deleted. Built-in base models cannot be removed.
10053
10067
  * @summary Delete Motion Group Model
10054
10068
  * @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., &#x60;UniversalRobots_UR10e&#x60;. Get the &#x60;model&#x60; of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
10069
+ * @param {string} [serialNumber] Serial number of the robot, optional. If provided, the motion group data is resolved for the robot with this specific serial number.
10055
10070
  * @param {*} [options] Override http request option.
10056
10071
  * @throws {RequiredError}
10057
10072
  */
10058
- deleteExperimentalMotionGroupModel(motionGroupModel: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
10073
+ deleteExperimentalMotionGroupModel(motionGroupModel: string, serialNumber?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
10059
10074
  /**
10060
10075
  * **Required permissions:** `can_access_system` - View system status and metadata ___ Exports the specified motion group model as a tar.gz archive. The resulting tar.gz file can be imported on another system using the import endpoint.
10061
10076
  * @summary Export Motion Group Model
10062
10077
  * @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., &#x60;UniversalRobots_UR10e&#x60;. Get the &#x60;model&#x60; of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
10078
+ * @param {string} [serialNumber] Serial number of the robot, optional. If provided, the motion group data is resolved for the robot with this specific serial number.
10063
10079
  * @param {*} [options] Override http request option.
10064
10080
  * @throws {RequiredError}
10065
10081
  */
10066
- exportMotionGroupModel(motionGroupModel: string, options?: RawAxiosRequestConfig): AxiosPromise<File>;
10082
+ exportMotionGroupModel(motionGroupModel: string, serialNumber?: string, options?: RawAxiosRequestConfig): AxiosPromise<File>;
10067
10083
  /**
10068
10084
  * **Required permissions:** `can_access_system` - View system status and metadata ___ Get a robot configuration containing the specified motion group model. This endpoint is designed for Virtual Robot to dynamically add motion groups by model name without needing to know the robot configuration name. Returns the full GCI transcript along with the motion group UID that corresponds to the requested motion group model.
10069
10085
  * @summary Get Configuration for Motion Group
@@ -10162,26 +10178,29 @@ declare class MotionGroupModelsApi extends BaseAPI {
10162
10178
  * @summary Copy Motion Group Model
10163
10179
  * @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., &#x60;UniversalRobots_UR10e&#x60;. Get the &#x60;model&#x60; of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
10164
10180
  * @param {CopyMotionGroupModelRequest} copyMotionGroupModelRequest
10181
+ * @param {string} [serialNumber] Serial number of the robot, optional. If provided, the motion group data is resolved for the robot with this specific serial number.
10165
10182
  * @param {*} [options] Override http request option.
10166
10183
  * @throws {RequiredError}
10167
10184
  */
10168
- copyMotionGroupModel(motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<MotionGroupModelDescription, any, {}>>;
10185
+ copyMotionGroupModel(motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, serialNumber?: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<MotionGroupModelDescription, any, {}>>;
10169
10186
  /**
10170
10187
  * **Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models, where `is_custom` is `true`, can be deleted. Built-in base models cannot be removed.
10171
10188
  * @summary Delete Motion Group Model
10172
10189
  * @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., &#x60;UniversalRobots_UR10e&#x60;. Get the &#x60;model&#x60; of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
10190
+ * @param {string} [serialNumber] Serial number of the robot, optional. If provided, the motion group data is resolved for the robot with this specific serial number.
10173
10191
  * @param {*} [options] Override http request option.
10174
10192
  * @throws {RequiredError}
10175
10193
  */
10176
- deleteExperimentalMotionGroupModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
10194
+ deleteExperimentalMotionGroupModel(motionGroupModel: string, serialNumber?: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
10177
10195
  /**
10178
10196
  * **Required permissions:** `can_access_system` - View system status and metadata ___ Exports the specified motion group model as a tar.gz archive. The resulting tar.gz file can be imported on another system using the import endpoint.
10179
10197
  * @summary Export Motion Group Model
10180
10198
  * @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., &#x60;UniversalRobots_UR10e&#x60;. Get the &#x60;model&#x60; of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
10199
+ * @param {string} [serialNumber] Serial number of the robot, optional. If provided, the motion group data is resolved for the robot with this specific serial number.
10181
10200
  * @param {*} [options] Override http request option.
10182
10201
  * @throws {RequiredError}
10183
10202
  */
10184
- exportMotionGroupModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<File, any, {}>>;
10203
+ exportMotionGroupModel(motionGroupModel: string, serialNumber?: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<File, any, {}>>;
10185
10204
  /**
10186
10205
  * **Required permissions:** `can_access_system` - View system status and metadata ___ Get a robot configuration containing the specified motion group model. This endpoint is designed for Virtual Robot to dynamically add motion groups by model name without needing to know the robot configuration name. Returns the full GCI transcript along with the motion group UID that corresponds to the requested motion group model.
10187
10206
  * @summary Get Configuration for Motion Group
@@ -6,7 +6,7 @@ import { AxiosInstance, AxiosPromise, RawAxiosRequestConfig } from "axios";
6
6
  * Wandelbots NOVA API
7
7
  * Interact with robots in an easy and intuitive way.
8
8
  *
9
- * The version of the OpenAPI document: 2.7.0
9
+ * The version of the OpenAPI document: 2.8.0 dev
10
10
  *
11
11
  *
12
12
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -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.
@@ -9810,26 +9817,29 @@ declare const MotionGroupModelsApiAxiosParamCreator: (configuration?: Configurat
9810
9817
  * @summary Copy Motion Group Model
9811
9818
  * @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., &#x60;UniversalRobots_UR10e&#x60;. Get the &#x60;model&#x60; of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
9812
9819
  * @param {CopyMotionGroupModelRequest} copyMotionGroupModelRequest
9820
+ * @param {string} [serialNumber] Serial number of the robot, optional. If provided, the motion group data is resolved for the robot with this specific serial number.
9813
9821
  * @param {*} [options] Override http request option.
9814
9822
  * @throws {RequiredError}
9815
9823
  */
9816
- copyMotionGroupModel: (motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9824
+ copyMotionGroupModel: (motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, serialNumber?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9817
9825
  /**
9818
9826
  * **Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models, where `is_custom` is `true`, can be deleted. Built-in base models cannot be removed.
9819
9827
  * @summary Delete Motion Group Model
9820
9828
  * @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., &#x60;UniversalRobots_UR10e&#x60;. Get the &#x60;model&#x60; of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
9829
+ * @param {string} [serialNumber] Serial number of the robot, optional. If provided, the motion group data is resolved for the robot with this specific serial number.
9821
9830
  * @param {*} [options] Override http request option.
9822
9831
  * @throws {RequiredError}
9823
9832
  */
9824
- deleteExperimentalMotionGroupModel: (motionGroupModel: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9833
+ deleteExperimentalMotionGroupModel: (motionGroupModel: string, serialNumber?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9825
9834
  /**
9826
9835
  * **Required permissions:** `can_access_system` - View system status and metadata ___ Exports the specified motion group model as a tar.gz archive. The resulting tar.gz file can be imported on another system using the import endpoint.
9827
9836
  * @summary Export Motion Group Model
9828
9837
  * @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., &#x60;UniversalRobots_UR10e&#x60;. Get the &#x60;model&#x60; of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
9838
+ * @param {string} [serialNumber] Serial number of the robot, optional. If provided, the motion group data is resolved for the robot with this specific serial number.
9829
9839
  * @param {*} [options] Override http request option.
9830
9840
  * @throws {RequiredError}
9831
9841
  */
9832
- exportMotionGroupModel: (motionGroupModel: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9842
+ exportMotionGroupModel: (motionGroupModel: string, serialNumber?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9833
9843
  /**
9834
9844
  * **Required permissions:** `can_access_system` - View system status and metadata ___ Get a robot configuration containing the specified motion group model. This endpoint is designed for Virtual Robot to dynamically add motion groups by model name without needing to know the robot configuration name. Returns the full GCI transcript along with the motion group UID that corresponds to the requested motion group model.
9835
9845
  * @summary Get Configuration for Motion Group
@@ -9926,26 +9936,29 @@ declare const MotionGroupModelsApiFp: (configuration?: Configuration) => {
9926
9936
  * @summary Copy Motion Group Model
9927
9937
  * @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., &#x60;UniversalRobots_UR10e&#x60;. Get the &#x60;model&#x60; of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
9928
9938
  * @param {CopyMotionGroupModelRequest} copyMotionGroupModelRequest
9939
+ * @param {string} [serialNumber] Serial number of the robot, optional. If provided, the motion group data is resolved for the robot with this specific serial number.
9929
9940
  * @param {*} [options] Override http request option.
9930
9941
  * @throws {RequiredError}
9931
9942
  */
9932
- copyMotionGroupModel(motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MotionGroupModelDescription>>;
9943
+ copyMotionGroupModel(motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, serialNumber?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MotionGroupModelDescription>>;
9933
9944
  /**
9934
9945
  * **Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models, where `is_custom` is `true`, can be deleted. Built-in base models cannot be removed.
9935
9946
  * @summary Delete Motion Group Model
9936
9947
  * @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., &#x60;UniversalRobots_UR10e&#x60;. Get the &#x60;model&#x60; of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
9948
+ * @param {string} [serialNumber] Serial number of the robot, optional. If provided, the motion group data is resolved for the robot with this specific serial number.
9937
9949
  * @param {*} [options] Override http request option.
9938
9950
  * @throws {RequiredError}
9939
9951
  */
9940
- deleteExperimentalMotionGroupModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
9952
+ deleteExperimentalMotionGroupModel(motionGroupModel: string, serialNumber?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
9941
9953
  /**
9942
9954
  * **Required permissions:** `can_access_system` - View system status and metadata ___ Exports the specified motion group model as a tar.gz archive. The resulting tar.gz file can be imported on another system using the import endpoint.
9943
9955
  * @summary Export Motion Group Model
9944
9956
  * @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., &#x60;UniversalRobots_UR10e&#x60;. Get the &#x60;model&#x60; of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
9957
+ * @param {string} [serialNumber] Serial number of the robot, optional. If provided, the motion group data is resolved for the robot with this specific serial number.
9945
9958
  * @param {*} [options] Override http request option.
9946
9959
  * @throws {RequiredError}
9947
9960
  */
9948
- exportMotionGroupModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
9961
+ exportMotionGroupModel(motionGroupModel: string, serialNumber?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
9949
9962
  /**
9950
9963
  * **Required permissions:** `can_access_system` - View system status and metadata ___ Get a robot configuration containing the specified motion group model. This endpoint is designed for Virtual Robot to dynamically add motion groups by model name without needing to know the robot configuration name. Returns the full GCI transcript along with the motion group UID that corresponds to the requested motion group model.
9951
9964
  * @summary Get Configuration for Motion Group
@@ -10044,26 +10057,29 @@ declare const MotionGroupModelsApiFactory: (configuration?: Configuration, baseP
10044
10057
  * @summary Copy Motion Group Model
10045
10058
  * @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., &#x60;UniversalRobots_UR10e&#x60;. Get the &#x60;model&#x60; of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
10046
10059
  * @param {CopyMotionGroupModelRequest} copyMotionGroupModelRequest
10060
+ * @param {string} [serialNumber] Serial number of the robot, optional. If provided, the motion group data is resolved for the robot with this specific serial number.
10047
10061
  * @param {*} [options] Override http request option.
10048
10062
  * @throws {RequiredError}
10049
10063
  */
10050
- copyMotionGroupModel(motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, options?: RawAxiosRequestConfig): AxiosPromise<MotionGroupModelDescription>;
10064
+ copyMotionGroupModel(motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, serialNumber?: string, options?: RawAxiosRequestConfig): AxiosPromise<MotionGroupModelDescription>;
10051
10065
  /**
10052
10066
  * **Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models, where `is_custom` is `true`, can be deleted. Built-in base models cannot be removed.
10053
10067
  * @summary Delete Motion Group Model
10054
10068
  * @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., &#x60;UniversalRobots_UR10e&#x60;. Get the &#x60;model&#x60; of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
10069
+ * @param {string} [serialNumber] Serial number of the robot, optional. If provided, the motion group data is resolved for the robot with this specific serial number.
10055
10070
  * @param {*} [options] Override http request option.
10056
10071
  * @throws {RequiredError}
10057
10072
  */
10058
- deleteExperimentalMotionGroupModel(motionGroupModel: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
10073
+ deleteExperimentalMotionGroupModel(motionGroupModel: string, serialNumber?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
10059
10074
  /**
10060
10075
  * **Required permissions:** `can_access_system` - View system status and metadata ___ Exports the specified motion group model as a tar.gz archive. The resulting tar.gz file can be imported on another system using the import endpoint.
10061
10076
  * @summary Export Motion Group Model
10062
10077
  * @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., &#x60;UniversalRobots_UR10e&#x60;. Get the &#x60;model&#x60; of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
10078
+ * @param {string} [serialNumber] Serial number of the robot, optional. If provided, the motion group data is resolved for the robot with this specific serial number.
10063
10079
  * @param {*} [options] Override http request option.
10064
10080
  * @throws {RequiredError}
10065
10081
  */
10066
- exportMotionGroupModel(motionGroupModel: string, options?: RawAxiosRequestConfig): AxiosPromise<File>;
10082
+ exportMotionGroupModel(motionGroupModel: string, serialNumber?: string, options?: RawAxiosRequestConfig): AxiosPromise<File>;
10067
10083
  /**
10068
10084
  * **Required permissions:** `can_access_system` - View system status and metadata ___ Get a robot configuration containing the specified motion group model. This endpoint is designed for Virtual Robot to dynamically add motion groups by model name without needing to know the robot configuration name. Returns the full GCI transcript along with the motion group UID that corresponds to the requested motion group model.
10069
10085
  * @summary Get Configuration for Motion Group
@@ -10162,26 +10178,29 @@ declare class MotionGroupModelsApi extends BaseAPI {
10162
10178
  * @summary Copy Motion Group Model
10163
10179
  * @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., &#x60;UniversalRobots_UR10e&#x60;. Get the &#x60;model&#x60; of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
10164
10180
  * @param {CopyMotionGroupModelRequest} copyMotionGroupModelRequest
10181
+ * @param {string} [serialNumber] Serial number of the robot, optional. If provided, the motion group data is resolved for the robot with this specific serial number.
10165
10182
  * @param {*} [options] Override http request option.
10166
10183
  * @throws {RequiredError}
10167
10184
  */
10168
- copyMotionGroupModel(motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<MotionGroupModelDescription, any, {}>>;
10185
+ copyMotionGroupModel(motionGroupModel: string, copyMotionGroupModelRequest: CopyMotionGroupModelRequest, serialNumber?: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<MotionGroupModelDescription, any, {}>>;
10169
10186
  /**
10170
10187
  * **Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models, where `is_custom` is `true`, can be deleted. Built-in base models cannot be removed.
10171
10188
  * @summary Delete Motion Group Model
10172
10189
  * @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., &#x60;UniversalRobots_UR10e&#x60;. Get the &#x60;model&#x60; of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
10190
+ * @param {string} [serialNumber] Serial number of the robot, optional. If provided, the motion group data is resolved for the robot with this specific serial number.
10173
10191
  * @param {*} [options] Override http request option.
10174
10192
  * @throws {RequiredError}
10175
10193
  */
10176
- deleteExperimentalMotionGroupModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
10194
+ deleteExperimentalMotionGroupModel(motionGroupModel: string, serialNumber?: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<void, any, {}>>;
10177
10195
  /**
10178
10196
  * **Required permissions:** `can_access_system` - View system status and metadata ___ Exports the specified motion group model as a tar.gz archive. The resulting tar.gz file can be imported on another system using the import endpoint.
10179
10197
  * @summary Export Motion Group Model
10180
10198
  * @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., &#x60;UniversalRobots_UR10e&#x60;. Get the &#x60;model&#x60; of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
10199
+ * @param {string} [serialNumber] Serial number of the robot, optional. If provided, the motion group data is resolved for the robot with this specific serial number.
10181
10200
  * @param {*} [options] Override http request option.
10182
10201
  * @throws {RequiredError}
10183
10202
  */
10184
- exportMotionGroupModel(motionGroupModel: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<File, any, {}>>;
10203
+ exportMotionGroupModel(motionGroupModel: string, serialNumber?: string, options?: RawAxiosRequestConfig): Promise<_$axios.AxiosResponse<File, any, {}>>;
10185
10204
  /**
10186
10205
  * **Required permissions:** `can_access_system` - View system status and metadata ___ Get a robot configuration containing the specified motion group model. This endpoint is designed for Virtual Robot to dynamically add motion groups by model name without needing to know the robot configuration name. Returns the full GCI transcript along with the motion group UID that corresponds to the requested motion group model.
10187
10206
  * @summary Get Configuration for Motion Group
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.
@@ -4803,7 +4803,7 @@ var MotionGroupApi = class extends BaseAPI {
4803
4803
  */
4804
4804
  const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
4805
4805
  return {
4806
- copyMotionGroupModel: async (motionGroupModel, copyMotionGroupModelRequest, options = {}) => {
4806
+ copyMotionGroupModel: async (motionGroupModel, copyMotionGroupModelRequest, serialNumber, options = {}) => {
4807
4807
  assertParamExists("copyMotionGroupModel", "motionGroupModel", motionGroupModel);
4808
4808
  assertParamExists("copyMotionGroupModel", "copyMotionGroupModelRequest", copyMotionGroupModelRequest);
4809
4809
  const localVarPath = `/experimental/motion-group-models/{motion-group-model}/archive`.replace("{motion-group-model}", encodeURIComponent(String(motionGroupModel)));
@@ -4818,6 +4818,7 @@ const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
4818
4818
  const localVarHeaderParameter = {};
4819
4819
  const localVarQueryParameter = {};
4820
4820
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
4821
+ if (serialNumber !== void 0) localVarQueryParameter["serial_number"] = serialNumber;
4821
4822
  localVarHeaderParameter["Content-Type"] = "application/json";
4822
4823
  localVarHeaderParameter["Accept"] = "application/json";
4823
4824
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -4833,7 +4834,7 @@ const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
4833
4834
  options: localVarRequestOptions
4834
4835
  };
4835
4836
  },
4836
- deleteExperimentalMotionGroupModel: async (motionGroupModel, options = {}) => {
4837
+ deleteExperimentalMotionGroupModel: async (motionGroupModel, serialNumber, options = {}) => {
4837
4838
  assertParamExists("deleteExperimentalMotionGroupModel", "motionGroupModel", motionGroupModel);
4838
4839
  const localVarPath = `/experimental/motion-group-models/{motion-group-model}/archive`.replace("{motion-group-model}", encodeURIComponent(String(motionGroupModel)));
4839
4840
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -4847,6 +4848,7 @@ const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
4847
4848
  const localVarHeaderParameter = {};
4848
4849
  const localVarQueryParameter = {};
4849
4850
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
4851
+ if (serialNumber !== void 0) localVarQueryParameter["serial_number"] = serialNumber;
4850
4852
  setSearchParams(localVarUrlObj, localVarQueryParameter);
4851
4853
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
4852
4854
  localVarRequestOptions.headers = {
@@ -4859,7 +4861,7 @@ const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
4859
4861
  options: localVarRequestOptions
4860
4862
  };
4861
4863
  },
4862
- exportMotionGroupModel: async (motionGroupModel, options = {}) => {
4864
+ exportMotionGroupModel: async (motionGroupModel, serialNumber, options = {}) => {
4863
4865
  assertParamExists("exportMotionGroupModel", "motionGroupModel", motionGroupModel);
4864
4866
  const localVarPath = `/experimental/motion-group-models/{motion-group-model}/archive`.replace("{motion-group-model}", encodeURIComponent(String(motionGroupModel)));
4865
4867
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -4873,6 +4875,7 @@ const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
4873
4875
  const localVarHeaderParameter = {};
4874
4876
  const localVarQueryParameter = {};
4875
4877
  await setBearerAuthToObject(localVarHeaderParameter, configuration);
4878
+ if (serialNumber !== void 0) localVarQueryParameter["serial_number"] = serialNumber;
4876
4879
  localVarHeaderParameter["Accept"] = "application/gzip";
4877
4880
  setSearchParams(localVarUrlObj, localVarQueryParameter);
4878
4881
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
@@ -5188,20 +5191,20 @@ const MotionGroupModelsApiAxiosParamCreator = function(configuration) {
5188
5191
  const MotionGroupModelsApiFp = function(configuration) {
5189
5192
  const localVarAxiosParamCreator = MotionGroupModelsApiAxiosParamCreator(configuration);
5190
5193
  return {
5191
- async copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, options) {
5192
- const localVarAxiosArgs = await localVarAxiosParamCreator.copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, options);
5194
+ async copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, serialNumber, options) {
5195
+ const localVarAxiosArgs = await localVarAxiosParamCreator.copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, serialNumber, options);
5193
5196
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
5194
5197
  const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.copyMotionGroupModel"]?.[localVarOperationServerIndex]?.url;
5195
5198
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
5196
5199
  },
5197
- async deleteExperimentalMotionGroupModel(motionGroupModel, options) {
5198
- const localVarAxiosArgs = await localVarAxiosParamCreator.deleteExperimentalMotionGroupModel(motionGroupModel, options);
5200
+ async deleteExperimentalMotionGroupModel(motionGroupModel, serialNumber, options) {
5201
+ const localVarAxiosArgs = await localVarAxiosParamCreator.deleteExperimentalMotionGroupModel(motionGroupModel, serialNumber, options);
5199
5202
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
5200
5203
  const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.deleteExperimentalMotionGroupModel"]?.[localVarOperationServerIndex]?.url;
5201
5204
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
5202
5205
  },
5203
- async exportMotionGroupModel(motionGroupModel, options) {
5204
- const localVarAxiosArgs = await localVarAxiosParamCreator.exportMotionGroupModel(motionGroupModel, options);
5206
+ async exportMotionGroupModel(motionGroupModel, serialNumber, options) {
5207
+ const localVarAxiosArgs = await localVarAxiosParamCreator.exportMotionGroupModel(motionGroupModel, serialNumber, options);
5205
5208
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
5206
5209
  const localVarOperationServerBasePath = operationServerMap["MotionGroupModelsApi.exportMotionGroupModel"]?.[localVarOperationServerIndex]?.url;
5207
5210
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -5280,14 +5283,14 @@ const MotionGroupModelsApiFp = function(configuration) {
5280
5283
  const MotionGroupModelsApiFactory = function(configuration, basePath, axios) {
5281
5284
  const localVarFp = MotionGroupModelsApiFp(configuration);
5282
5285
  return {
5283
- copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, options) {
5284
- return localVarFp.copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, options).then((request) => request(axios, basePath));
5286
+ copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, serialNumber, options) {
5287
+ return localVarFp.copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, serialNumber, options).then((request) => request(axios, basePath));
5285
5288
  },
5286
- deleteExperimentalMotionGroupModel(motionGroupModel, options) {
5287
- return localVarFp.deleteExperimentalMotionGroupModel(motionGroupModel, options).then((request) => request(axios, basePath));
5289
+ deleteExperimentalMotionGroupModel(motionGroupModel, serialNumber, options) {
5290
+ return localVarFp.deleteExperimentalMotionGroupModel(motionGroupModel, serialNumber, options).then((request) => request(axios, basePath));
5288
5291
  },
5289
- exportMotionGroupModel(motionGroupModel, options) {
5290
- return localVarFp.exportMotionGroupModel(motionGroupModel, options).then((request) => request(axios, basePath));
5292
+ exportMotionGroupModel(motionGroupModel, serialNumber, options) {
5293
+ return localVarFp.exportMotionGroupModel(motionGroupModel, serialNumber, options).then((request) => request(axios, basePath));
5291
5294
  },
5292
5295
  getConfigurationForMotionGroup(motionGroupModel, options) {
5293
5296
  return localVarFp.getConfigurationForMotionGroup(motionGroupModel, options).then((request) => request(axios, basePath));
@@ -5333,31 +5336,34 @@ var MotionGroupModelsApi = class extends BaseAPI {
5333
5336
  * @summary Copy Motion Group Model
5334
5337
  * @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., &#x60;UniversalRobots_UR10e&#x60;. Get the &#x60;model&#x60; of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
5335
5338
  * @param {CopyMotionGroupModelRequest} copyMotionGroupModelRequest
5339
+ * @param {string} [serialNumber] Serial number of the robot, optional. If provided, the motion group data is resolved for the robot with this specific serial number.
5336
5340
  * @param {*} [options] Override http request option.
5337
5341
  * @throws {RequiredError}
5338
5342
  */
5339
- copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, options) {
5340
- return MotionGroupModelsApiFp(this.configuration).copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, options).then((request) => request(this.axios, this.basePath));
5343
+ copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, serialNumber, options) {
5344
+ return MotionGroupModelsApiFp(this.configuration).copyMotionGroupModel(motionGroupModel, copyMotionGroupModelRequest, serialNumber, options).then((request) => request(this.axios, this.basePath));
5341
5345
  }
5342
5346
  /**
5343
5347
  * **Required permissions:** `can_access_system` - View system status and metadata ___ Deletes a custom motion group model. Only custom models, where `is_custom` is `true`, can be deleted. Built-in base models cannot be removed.
5344
5348
  * @summary Delete Motion Group Model
5345
5349
  * @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., &#x60;UniversalRobots_UR10e&#x60;. Get the &#x60;model&#x60; of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
5350
+ * @param {string} [serialNumber] Serial number of the robot, optional. If provided, the motion group data is resolved for the robot with this specific serial number.
5346
5351
  * @param {*} [options] Override http request option.
5347
5352
  * @throws {RequiredError}
5348
5353
  */
5349
- deleteExperimentalMotionGroupModel(motionGroupModel, options) {
5350
- return MotionGroupModelsApiFp(this.configuration).deleteExperimentalMotionGroupModel(motionGroupModel, options).then((request) => request(this.axios, this.basePath));
5354
+ deleteExperimentalMotionGroupModel(motionGroupModel, serialNumber, options) {
5355
+ return MotionGroupModelsApiFp(this.configuration).deleteExperimentalMotionGroupModel(motionGroupModel, serialNumber, options).then((request) => request(this.axios, this.basePath));
5351
5356
  }
5352
5357
  /**
5353
5358
  * **Required permissions:** `can_access_system` - View system status and metadata ___ Exports the specified motion group model as a tar.gz archive. The resulting tar.gz file can be imported on another system using the import endpoint.
5354
5359
  * @summary Export Motion Group Model
5355
5360
  * @param {string} motionGroupModel Unique identifier for the model of a motion group, e.g., &#x60;UniversalRobots_UR10e&#x60;. Get the &#x60;model&#x60; of a configured motion group with [getOptimizerConfiguration](#/operations/getOptimizerConfiguration).
5361
+ * @param {string} [serialNumber] Serial number of the robot, optional. If provided, the motion group data is resolved for the robot with this specific serial number.
5356
5362
  * @param {*} [options] Override http request option.
5357
5363
  * @throws {RequiredError}
5358
5364
  */
5359
- exportMotionGroupModel(motionGroupModel, options) {
5360
- return MotionGroupModelsApiFp(this.configuration).exportMotionGroupModel(motionGroupModel, options).then((request) => request(this.axios, this.basePath));
5365
+ exportMotionGroupModel(motionGroupModel, serialNumber, options) {
5366
+ return MotionGroupModelsApiFp(this.configuration).exportMotionGroupModel(motionGroupModel, serialNumber, options).then((request) => request(this.axios, this.basePath));
5361
5367
  }
5362
5368
  /**
5363
5369
  * **Required permissions:** `can_access_system` - View system status and metadata ___ Get a robot configuration containing the specified motion group model. This endpoint is designed for Virtual Robot to dynamically add motion groups by model name without needing to know the robot configuration name. Returns the full GCI transcript along with the motion group UID that corresponds to the requested motion group model.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wandelbots/nova-api",
3
- "version": "26.8.0-dev.5",
3
+ "version": "26.8.0-dev.50",
4
4
  "description": "API Client to interact with Wandelbots Public API.",
5
5
  "type": "module",
6
6
  "files": [