@wandelbots/nova-api 25.10.0-dev.46 → 25.10.0-dev.48

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 CHANGED
@@ -545,11 +545,14 @@ const VirtualControllerTypes = {
545
545
  KukaKr16R20102: "kuka-kr16_r2010_2",
546
546
  KukaKr20R1810: "kuka-kr20_r1810",
547
547
  KukaKr20R18102: "kuka-kr20_r1810_2",
548
+ KukaKr210R2700Extra: "kuka-kr210_r2700_extra",
548
549
  KukaKr210R27002: "kuka-kr210_r2700_2",
549
550
  KukaKr210R31002: "kuka-kr210_r3100_2",
550
551
  KukaKr210R33002: "kuka-kr210_r3300_2",
551
552
  KukaKr240R2700: "kuka-kr240_r2700",
553
+ KukaKr240R2900: "kuka-kr240_r2900",
552
554
  KukaKr250R27002: "kuka-kr250_r2700_2",
555
+ KukaKr270R2700: "kuka-kr270_r2700",
553
556
  KukaKr30R2100: "kuka-kr30_r2100",
554
557
  KukaKr30R3: "kuka-kr30_r3",
555
558
  KukaKr360L2403: "kuka-kr360_l240_3",
@@ -8338,12 +8341,14 @@ const GetDefaultLinkChainMotionGroupModelEnum = {
8338
8341
  KukaKr20R1810: "KUKA_KR20_R1810",
8339
8342
  KukaKr20R18102: "KUKA_KR20_R1810_2",
8340
8343
  KukaKr210R2700: "KUKA_KR210_R2700",
8344
+ KukaKr210R2700Extra: "KUKA_KR210_R2700_extra",
8341
8345
  KukaKr210R27002: "KUKA_KR210_R2700_2",
8342
8346
  KukaKr210R3100: "KUKA_KR210_R3100",
8343
8347
  KukaKr210R31002: "KUKA_KR210_R3100_2",
8344
8348
  KukaKr210R3300: "KUKA_KR210_R3300",
8345
8349
  KukaKr210R33002: "KUKA_KR210_R3300_2",
8346
8350
  KukaKr240R2700: "KUKA_KR240_R2700",
8351
+ KukaKr240R2900: "KUKA_KR240_R2900",
8347
8352
  KukaKr250R27002: "KUKA_KR250_R2700_2",
8348
8353
  KukaKr270R2700: "KUKA_KR270_R2700",
8349
8354
  KukaKr270R3100: "KUKA_KR270_R3100",
@@ -9245,6 +9250,78 @@ var SystemApi = class extends BaseAPI {
9245
9250
  }
9246
9251
  };
9247
9252
  /**
9253
+ * VersionApi - axios parameter creator
9254
+ * @export
9255
+ */
9256
+ const VersionApiAxiosParamCreator = function(configuration) {
9257
+ return { getApiVersion: async (options = {}) => {
9258
+ const localVarUrlObj = new URL(`/version`, DUMMY_BASE_URL);
9259
+ let baseOptions;
9260
+ if (configuration) baseOptions = configuration.baseOptions;
9261
+ const localVarRequestOptions = {
9262
+ method: "GET",
9263
+ ...baseOptions,
9264
+ ...options
9265
+ };
9266
+ const localVarHeaderParameter = {};
9267
+ const localVarQueryParameter = {};
9268
+ setBasicAuthToObject(localVarRequestOptions, configuration);
9269
+ await setBearerAuthToObject(localVarHeaderParameter, configuration);
9270
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
9271
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
9272
+ localVarRequestOptions.headers = {
9273
+ ...localVarHeaderParameter,
9274
+ ...headersFromBaseOptions,
9275
+ ...options.headers
9276
+ };
9277
+ return {
9278
+ url: toPathString(localVarUrlObj),
9279
+ options: localVarRequestOptions
9280
+ };
9281
+ } };
9282
+ };
9283
+ /**
9284
+ * VersionApi - functional programming interface
9285
+ * @export
9286
+ */
9287
+ const VersionApiFp = function(configuration) {
9288
+ const localVarAxiosParamCreator = VersionApiAxiosParamCreator(configuration);
9289
+ return { async getApiVersion(options) {
9290
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getApiVersion(options);
9291
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
9292
+ const localVarOperationServerBasePath = operationServerMap["VersionApi.getApiVersion"]?.[localVarOperationServerIndex]?.url;
9293
+ return (axios$1, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$1, localVarOperationServerBasePath || basePath);
9294
+ } };
9295
+ };
9296
+ /**
9297
+ * VersionApi - factory interface
9298
+ * @export
9299
+ */
9300
+ const VersionApiFactory = function(configuration, basePath, axios$1) {
9301
+ const localVarFp = VersionApiFp(configuration);
9302
+ return { getApiVersion(options) {
9303
+ return localVarFp.getApiVersion(options).then((request) => request(axios$1, basePath));
9304
+ } };
9305
+ };
9306
+ /**
9307
+ * VersionApi - object-oriented interface
9308
+ * @export
9309
+ * @class VersionApi
9310
+ * @extends {BaseAPI}
9311
+ */
9312
+ var VersionApi = class extends BaseAPI {
9313
+ /**
9314
+ * Retrieves the version of the NOVA API.
9315
+ * @summary API Version
9316
+ * @param {*} [options] Override http request option.
9317
+ * @throws {RequiredError}
9318
+ * @memberof VersionApi
9319
+ */
9320
+ getApiVersion(options) {
9321
+ return VersionApiFp(this.configuration).getApiVersion(options).then((request) => request(this.axios, this.basePath));
9322
+ }
9323
+ };
9324
+ /**
9248
9325
  * VirtualRobotApi - axios parameter creator
9249
9326
  * @export
9250
9327
  */
@@ -10861,6 +10938,10 @@ exports.SystemApiFactory = SystemApiFactory;
10861
10938
  exports.SystemApiFp = SystemApiFp;
10862
10939
  exports.TriggerType = TriggerType;
10863
10940
  exports.UniversalrobotsControllerKindEnum = UniversalrobotsControllerKindEnum;
10941
+ exports.VersionApi = VersionApi;
10942
+ exports.VersionApiAxiosParamCreator = VersionApiAxiosParamCreator;
10943
+ exports.VersionApiFactory = VersionApiFactory;
10944
+ exports.VersionApiFp = VersionApiFp;
10864
10945
  exports.VirtualControllerKindEnum = VirtualControllerKindEnum;
10865
10946
  exports.VirtualControllerTypes = VirtualControllerTypes;
10866
10947
  exports.VirtualRobotApi = VirtualRobotApi;