@wandelbots/nova-api 25.10.0-dev.5 → 25.10.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/v1/index.cjs +85 -1
- package/dist/v1/index.d.cts +262 -183
- package/dist/v1/index.d.ts +262 -183
- package/dist/v1/index.js +82 -2
- package/dist/v2/index.cjs +80 -0
- package/dist/v2/index.d.cts +204 -132
- package/dist/v2/index.d.ts +74 -2
- package/dist/v2/index.js +77 -1
- package/package.json +1 -1
package/dist/v1/index.cjs
CHANGED
|
@@ -507,6 +507,7 @@ const VirtualControllerTypes = {
|
|
|
507
507
|
AbbIrb460020560: "abb-irb4600_205_60",
|
|
508
508
|
AbbIrb460025020: "abb-irb4600_250_20",
|
|
509
509
|
AbbIrb460025540: "abb-irb4600_255_40",
|
|
510
|
+
AbbIrb6730210310: "abb-irb6730_210_310",
|
|
510
511
|
FanucArcMate100iD: "fanuc-arc_mate_100iD",
|
|
511
512
|
FanucArcMate100iD16S: "fanuc-arc_mate_100iD16S",
|
|
512
513
|
FanucArcMate120iD: "fanuc-arc_mate_120iD",
|
|
@@ -544,11 +545,14 @@ const VirtualControllerTypes = {
|
|
|
544
545
|
KukaKr16R20102: "kuka-kr16_r2010_2",
|
|
545
546
|
KukaKr20R1810: "kuka-kr20_r1810",
|
|
546
547
|
KukaKr20R18102: "kuka-kr20_r1810_2",
|
|
548
|
+
KukaKr210R2700Extra: "kuka-kr210_r2700_extra",
|
|
547
549
|
KukaKr210R27002: "kuka-kr210_r2700_2",
|
|
548
550
|
KukaKr210R31002: "kuka-kr210_r3100_2",
|
|
549
551
|
KukaKr210R33002: "kuka-kr210_r3300_2",
|
|
550
552
|
KukaKr240R2700: "kuka-kr240_r2700",
|
|
553
|
+
KukaKr240R2900: "kuka-kr240_r2900",
|
|
551
554
|
KukaKr250R27002: "kuka-kr250_r2700_2",
|
|
555
|
+
KukaKr270R2700: "kuka-kr270_r2700",
|
|
552
556
|
KukaKr30R2100: "kuka-kr30_r2100",
|
|
553
557
|
KukaKr30R3: "kuka-kr30_r3",
|
|
554
558
|
KukaKr360L2403: "kuka-kr360_l240_3",
|
|
@@ -8129,11 +8133,12 @@ var StoreCollisionComponentsApi = class extends BaseAPI {
|
|
|
8129
8133
|
return StoreCollisionComponentsApiFp(this.configuration).deleteStoredCollisionTool(cell, tool, options).then((request) => request(this.axios, this.basePath));
|
|
8130
8134
|
}
|
|
8131
8135
|
/**
|
|
8132
|
-
* Returns the default collision link chain for a given motion group model. See [getPlanningMotionGroupModels](getPlanningMotionGroupModels) for supported motion group models. The default link chain is derived from 3D models and optimized for collision detection within NOVA. The default link chain includes link shapes only. It does not include any attached components like wire feeders or sensors. Use the `stored_link_chain` or `link_chain` field in [storeCollisionScene](storeCollisionScene) to attach additional shapes to the link reference frames. Additional shapes may overlap each other per link and may also overlap the respective link\'s default shape.
|
|
8136
|
+
* Deprecated endpoint. Use [getCollisionModel](https://portal.wandelbots.io/docs/api/v2/ui/#/operations/getMotionGroupCollisionModel) instead. Returns the default collision link chain for a given motion group model. See [getPlanningMotionGroupModels](getPlanningMotionGroupModels) for supported motion group models. The default link chain is derived from 3D models and optimized for collision detection within NOVA. The default link chain includes link shapes only. It does not include any attached components like wire feeders or sensors. Use the `stored_link_chain` or `link_chain` field in [storeCollisionScene](storeCollisionScene) to attach additional shapes to the link reference frames. Additional shapes may overlap each other per link and may also overlap the respective link\'s default shape.
|
|
8133
8137
|
* @summary Get Default Link Chain
|
|
8134
8138
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
8135
8139
|
* @param {GetDefaultLinkChainMotionGroupModelEnum} motionGroupModel Unique identifier for the type of a motion group (robot model). Get the model name for a configured motion group from [getOptimizerConfiguration](getOptimizerConfiguration).
|
|
8136
8140
|
* @param {*} [options] Override http request option.
|
|
8141
|
+
* @deprecated
|
|
8137
8142
|
* @throws {RequiredError}
|
|
8138
8143
|
* @memberof StoreCollisionComponentsApi
|
|
8139
8144
|
*/
|
|
@@ -8279,6 +8284,7 @@ const GetDefaultLinkChainMotionGroupModelEnum = {
|
|
|
8279
8284
|
Abb460020560: "ABB_4600_205_60",
|
|
8280
8285
|
Abb460025020: "ABB_4600_250_20",
|
|
8281
8286
|
Abb460025540: "ABB_4600_255_40",
|
|
8287
|
+
Abb6730210310: "ABB_6730_210_310",
|
|
8282
8288
|
FanucArcMate100iD: "FANUC_ARC_Mate_100iD",
|
|
8283
8289
|
FanucArcMate100iD10L: "FANUC_ARC_Mate_100iD10L",
|
|
8284
8290
|
FanucArcMate100iD16S: "FANUC_ARC_Mate_100iD16S",
|
|
@@ -8335,12 +8341,14 @@ const GetDefaultLinkChainMotionGroupModelEnum = {
|
|
|
8335
8341
|
KukaKr20R1810: "KUKA_KR20_R1810",
|
|
8336
8342
|
KukaKr20R18102: "KUKA_KR20_R1810_2",
|
|
8337
8343
|
KukaKr210R2700: "KUKA_KR210_R2700",
|
|
8344
|
+
KukaKr210R2700Extra: "KUKA_KR210_R2700_extra",
|
|
8338
8345
|
KukaKr210R27002: "KUKA_KR210_R2700_2",
|
|
8339
8346
|
KukaKr210R3100: "KUKA_KR210_R3100",
|
|
8340
8347
|
KukaKr210R31002: "KUKA_KR210_R3100_2",
|
|
8341
8348
|
KukaKr210R3300: "KUKA_KR210_R3300",
|
|
8342
8349
|
KukaKr210R33002: "KUKA_KR210_R3300_2",
|
|
8343
8350
|
KukaKr240R2700: "KUKA_KR240_R2700",
|
|
8351
|
+
KukaKr240R2900: "KUKA_KR240_R2900",
|
|
8344
8352
|
KukaKr250R27002: "KUKA_KR250_R2700_2",
|
|
8345
8353
|
KukaKr270R2700: "KUKA_KR270_R2700",
|
|
8346
8354
|
KukaKr270R3100: "KUKA_KR270_R3100",
|
|
@@ -9242,6 +9250,78 @@ var SystemApi = class extends BaseAPI {
|
|
|
9242
9250
|
}
|
|
9243
9251
|
};
|
|
9244
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
|
+
/**
|
|
9245
9325
|
* VirtualRobotApi - axios parameter creator
|
|
9246
9326
|
* @export
|
|
9247
9327
|
*/
|
|
@@ -10858,6 +10938,10 @@ exports.SystemApiFactory = SystemApiFactory;
|
|
|
10858
10938
|
exports.SystemApiFp = SystemApiFp;
|
|
10859
10939
|
exports.TriggerType = TriggerType;
|
|
10860
10940
|
exports.UniversalrobotsControllerKindEnum = UniversalrobotsControllerKindEnum;
|
|
10941
|
+
exports.VersionApi = VersionApi;
|
|
10942
|
+
exports.VersionApiAxiosParamCreator = VersionApiAxiosParamCreator;
|
|
10943
|
+
exports.VersionApiFactory = VersionApiFactory;
|
|
10944
|
+
exports.VersionApiFp = VersionApiFp;
|
|
10861
10945
|
exports.VirtualControllerKindEnum = VirtualControllerKindEnum;
|
|
10862
10946
|
exports.VirtualControllerTypes = VirtualControllerTypes;
|
|
10863
10947
|
exports.VirtualRobotApi = VirtualRobotApi;
|