@wandelbots/nova-api 25.9.0-dev.31 → 25.9.0-dev.32
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 +5 -0
- package/dist/v1/index.d.cts +182 -177
- package/dist/v1/index.d.ts +182 -177
- package/dist/v1/index.js +5 -0
- package/dist/v2/index.cjs +200 -1
- package/dist/v2/index.d.cts +389 -7
- package/dist/v2/index.d.ts +389 -7
- package/dist/v2/index.js +193 -2
- package/package.json +1 -1
package/dist/v1/index.js
CHANGED
|
@@ -564,11 +564,13 @@ const VirtualControllerTypes = {
|
|
|
564
564
|
KukaLbrIisy11R1300: "kuka-lbr_iisy_11_r1300",
|
|
565
565
|
UniversalrobotsUr10cb: "universalrobots-ur10cb",
|
|
566
566
|
UniversalrobotsUr10e: "universalrobots-ur10e",
|
|
567
|
+
UniversalrobotsUr12e: "universalrobots-ur12e",
|
|
567
568
|
UniversalrobotsUr16e: "universalrobots-ur16e",
|
|
568
569
|
UniversalrobotsUr20e: "universalrobots-ur20e",
|
|
569
570
|
UniversalrobotsUr3e: "universalrobots-ur3e",
|
|
570
571
|
UniversalrobotsUr5cb: "universalrobots-ur5cb",
|
|
571
572
|
UniversalrobotsUr5e: "universalrobots-ur5e",
|
|
573
|
+
UniversalrobotsUr7e: "universalrobots-ur7e",
|
|
572
574
|
YaskawaAr1440: "yaskawa-ar1440",
|
|
573
575
|
YaskawaAr1730: "yaskawa-ar1730",
|
|
574
576
|
YaskawaAr2010: "yaskawa-ar2010",
|
|
@@ -8294,6 +8296,7 @@ const GetDefaultLinkChainMotionGroupModelEnum = {
|
|
|
8294
8296
|
FanucCrx10iAl: "FANUC_CRX10iAL",
|
|
8295
8297
|
FanucCrx20iAl: "FANUC_CRX20iAL",
|
|
8296
8298
|
FanucCrx25iA: "FANUC_CRX25iA",
|
|
8299
|
+
FanucCrx30iA: "FANUC_CRX30iA",
|
|
8297
8300
|
FanucCrx5iA: "FANUC_CRX5iA",
|
|
8298
8301
|
FanucLrMate200iD: "FANUC_LR_Mate_200iD",
|
|
8299
8302
|
FanucLrMate200iD4S: "FANUC_LR_Mate_200iD4S",
|
|
@@ -8357,12 +8360,14 @@ const GetDefaultLinkChainMotionGroupModelEnum = {
|
|
|
8357
8360
|
KukaLbrIisy11R1300: "KUKA_LBR_IISY_11_R1300",
|
|
8358
8361
|
UniversalRobotsUr10: "UniversalRobots_UR10",
|
|
8359
8362
|
UniversalRobotsUr10e: "UniversalRobots_UR10e",
|
|
8363
|
+
UniversalRobotsUr12e: "UniversalRobots_UR12e",
|
|
8360
8364
|
UniversalRobotsUr16e: "UniversalRobots_UR16e",
|
|
8361
8365
|
UniversalRobotsUr20e: "UniversalRobots_UR20e",
|
|
8362
8366
|
UniversalRobotsUr3: "UniversalRobots_UR3",
|
|
8363
8367
|
UniversalRobotsUr3e: "UniversalRobots_UR3e",
|
|
8364
8368
|
UniversalRobotsUr5: "UniversalRobots_UR5",
|
|
8365
8369
|
UniversalRobotsUr5e: "UniversalRobots_UR5e",
|
|
8370
|
+
UniversalRobotsUr7e: "UniversalRobots_UR7e",
|
|
8366
8371
|
YaskawaAr1440: "Yaskawa_AR1440",
|
|
8367
8372
|
YaskawaAr1440E: "Yaskawa_AR1440E",
|
|
8368
8373
|
YaskawaAr1730: "Yaskawa_AR1730",
|
package/dist/v2/index.cjs
CHANGED
|
@@ -148,6 +148,11 @@ const BoxBoxTypeEnum = {
|
|
|
148
148
|
Hollow: "HOLLOW",
|
|
149
149
|
Full: "FULL"
|
|
150
150
|
};
|
|
151
|
+
const BusIOModbusClientBusTypeEnum = { ModbusClient: "modbus_client" };
|
|
152
|
+
const BusIOModbusServerBusTypeEnum = { ModbusServer: "modbus_server" };
|
|
153
|
+
const BusIOModbusTCPClientNetworkTypeEnum = { Tcp: "tcp" };
|
|
154
|
+
const BusIOModbusTCPServerNetworkTypeEnum = { Tcp: "tcp" };
|
|
155
|
+
const BusIOModbusVirtualBusTypeEnum = { ModbusVirtual: "modbus_virtual" };
|
|
151
156
|
const BusIOProfinetBusTypeEnum = { Profinet: "profinet" };
|
|
152
157
|
const BusIOProfinetVirtualBusTypeEnum = { ProfinetVirtual: "profinet_virtual" };
|
|
153
158
|
/**
|
|
@@ -269,6 +274,41 @@ const Manufacturer = {
|
|
|
269
274
|
Yaskawa: "yaskawa"
|
|
270
275
|
};
|
|
271
276
|
const MidpointInsertionAlgorithmAlgorithmNameEnum = { MidpointInsertionAlgorithm: "MidpointInsertionAlgorithm" };
|
|
277
|
+
/**
|
|
278
|
+
* Area of the MODBUS input/output variable. Is used to interpret the corresponding bits correctly.
|
|
279
|
+
* @export
|
|
280
|
+
* @enum {string}
|
|
281
|
+
*/
|
|
282
|
+
const ModbusIOArea = {
|
|
283
|
+
ModbusIoAreaUnknown: "MODBUS_IO_AREA_UNKNOWN",
|
|
284
|
+
ModbusIoAreaCoils: "MODBUS_IO_AREA_COILS",
|
|
285
|
+
ModbusIoAreaDiscreteInputs: "MODBUS_IO_AREA_DISCRETE_INPUTS",
|
|
286
|
+
ModbusIoAreaHoldingRegisters: "MODBUS_IO_AREA_HOLDING_REGISTERS",
|
|
287
|
+
ModbusIoAreaInputRegisters: "MODBUS_IO_AREA_INPUT_REGISTERS"
|
|
288
|
+
};
|
|
289
|
+
/**
|
|
290
|
+
* Byte order of the MODBUS input/output variable. Used to interpret the corresponding bits correctly.
|
|
291
|
+
* @export
|
|
292
|
+
* @enum {string}
|
|
293
|
+
*/
|
|
294
|
+
const ModbusIOByteOrder = {
|
|
295
|
+
ModbusIoByteOrderUnknown: "MODBUS_IO_BYTE_ORDER_UNKNOWN",
|
|
296
|
+
ModbusIoByteOrderAbcd: "MODBUS_IO_BYTE_ORDER_ABCD",
|
|
297
|
+
ModbusIoByteOrderBadc: "MODBUS_IO_BYTE_ORDER_BADC",
|
|
298
|
+
ModbusIoByteOrderCdab: "MODBUS_IO_BYTE_ORDER_CDAB",
|
|
299
|
+
ModbusIoByteOrderDcba: "MODBUS_IO_BYTE_ORDER_DCBA"
|
|
300
|
+
};
|
|
301
|
+
/**
|
|
302
|
+
* Value type of the MODBUS input/output variable. Used to interpret the corresponding bits correctly.
|
|
303
|
+
* @export
|
|
304
|
+
* @enum {string}
|
|
305
|
+
*/
|
|
306
|
+
const ModbusIOTypeEnum = {
|
|
307
|
+
ModbusIoTypeUnknown: "MODBUS_IO_TYPE_UNKNOWN",
|
|
308
|
+
ModbusIoTypeBool: "MODBUS_IO_TYPE_BOOL",
|
|
309
|
+
ModbusIoTypeUint16: "MODBUS_IO_TYPE_UINT16",
|
|
310
|
+
ModbusIoTypeFloat32: "MODBUS_IO_TYPE_FLOAT32"
|
|
311
|
+
};
|
|
272
312
|
const MovementErrorResponseKindEnum = { MotionError: "MOTION_ERROR" };
|
|
273
313
|
/**
|
|
274
314
|
* The operating state.
|
|
@@ -606,11 +646,13 @@ const VirtualControllerTypes = {
|
|
|
606
646
|
KukaLbrIisy11R1300: "kuka-lbr_iisy_11_r1300",
|
|
607
647
|
UniversalrobotsUr10cb: "universalrobots-ur10cb",
|
|
608
648
|
UniversalrobotsUr10e: "universalrobots-ur10e",
|
|
649
|
+
UniversalrobotsUr12e: "universalrobots-ur12e",
|
|
609
650
|
UniversalrobotsUr16e: "universalrobots-ur16e",
|
|
610
651
|
UniversalrobotsUr20e: "universalrobots-ur20e",
|
|
611
652
|
UniversalrobotsUr3e: "universalrobots-ur3e",
|
|
612
653
|
UniversalrobotsUr5cb: "universalrobots-ur5cb",
|
|
613
654
|
UniversalrobotsUr5e: "universalrobots-ur5e",
|
|
655
|
+
UniversalrobotsUr7e: "universalrobots-ur7e",
|
|
614
656
|
YaskawaAr1440: "yaskawa-ar1440",
|
|
615
657
|
YaskawaAr1730: "yaskawa-ar1730",
|
|
616
658
|
YaskawaAr2010: "yaskawa-ar2010",
|
|
@@ -1014,6 +1056,37 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
|
|
|
1014
1056
|
options: localVarRequestOptions
|
|
1015
1057
|
};
|
|
1016
1058
|
},
|
|
1059
|
+
addModbusIO: async (cell, io, modbusIOData, options = {}) => {
|
|
1060
|
+
assertParamExists("addModbusIO", "cell", cell);
|
|
1061
|
+
assertParamExists("addModbusIO", "io", io);
|
|
1062
|
+
assertParamExists("addModbusIO", "modbusIOData", modbusIOData);
|
|
1063
|
+
const localVarPath = `/cells/{cell}/bus-ios/modbus/ios/{io}`.replace(`{cell}`, encodeURIComponent(String(cell))).replace(`{io}`, encodeURIComponent(String(io)));
|
|
1064
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1065
|
+
let baseOptions;
|
|
1066
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
1067
|
+
const localVarRequestOptions = {
|
|
1068
|
+
method: "PUT",
|
|
1069
|
+
...baseOptions,
|
|
1070
|
+
...options
|
|
1071
|
+
};
|
|
1072
|
+
const localVarHeaderParameter = {};
|
|
1073
|
+
const localVarQueryParameter = {};
|
|
1074
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1075
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1076
|
+
localVarHeaderParameter["Content-Type"] = "application/json";
|
|
1077
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1078
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1079
|
+
localVarRequestOptions.headers = {
|
|
1080
|
+
...localVarHeaderParameter,
|
|
1081
|
+
...headersFromBaseOptions,
|
|
1082
|
+
...options.headers
|
|
1083
|
+
};
|
|
1084
|
+
localVarRequestOptions.data = serializeDataIfNeeded(modbusIOData, localVarRequestOptions, configuration);
|
|
1085
|
+
return {
|
|
1086
|
+
url: toPathString(localVarUrlObj),
|
|
1087
|
+
options: localVarRequestOptions
|
|
1088
|
+
};
|
|
1089
|
+
},
|
|
1017
1090
|
addProfinetIO: async (cell, io, profinetIOData, options = {}) => {
|
|
1018
1091
|
assertParamExists("addProfinetIO", "cell", cell);
|
|
1019
1092
|
assertParamExists("addProfinetIO", "io", io);
|
|
@@ -1073,6 +1146,34 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
|
|
|
1073
1146
|
options: localVarRequestOptions
|
|
1074
1147
|
};
|
|
1075
1148
|
},
|
|
1149
|
+
deleteModbusIO: async (cell, io, options = {}) => {
|
|
1150
|
+
assertParamExists("deleteModbusIO", "cell", cell);
|
|
1151
|
+
assertParamExists("deleteModbusIO", "io", io);
|
|
1152
|
+
const localVarPath = `/cells/{cell}/bus-ios/modbus/ios/{io}`.replace(`{cell}`, encodeURIComponent(String(cell))).replace(`{io}`, encodeURIComponent(String(io)));
|
|
1153
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1154
|
+
let baseOptions;
|
|
1155
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
1156
|
+
const localVarRequestOptions = {
|
|
1157
|
+
method: "DELETE",
|
|
1158
|
+
...baseOptions,
|
|
1159
|
+
...options
|
|
1160
|
+
};
|
|
1161
|
+
const localVarHeaderParameter = {};
|
|
1162
|
+
const localVarQueryParameter = {};
|
|
1163
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1164
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1165
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1166
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1167
|
+
localVarRequestOptions.headers = {
|
|
1168
|
+
...localVarHeaderParameter,
|
|
1169
|
+
...headersFromBaseOptions,
|
|
1170
|
+
...options.headers
|
|
1171
|
+
};
|
|
1172
|
+
return {
|
|
1173
|
+
url: toPathString(localVarUrlObj),
|
|
1174
|
+
options: localVarRequestOptions
|
|
1175
|
+
};
|
|
1176
|
+
},
|
|
1076
1177
|
deleteProfinetIO: async (cell, io, options = {}) => {
|
|
1077
1178
|
assertParamExists("deleteProfinetIO", "cell", cell);
|
|
1078
1179
|
assertParamExists("deleteProfinetIO", "io", io);
|
|
@@ -1266,6 +1367,33 @@ const BUSInputsOutputsApiAxiosParamCreator = function(configuration) {
|
|
|
1266
1367
|
options: localVarRequestOptions
|
|
1267
1368
|
};
|
|
1268
1369
|
},
|
|
1370
|
+
listModbusIOs: async (cell, options = {}) => {
|
|
1371
|
+
assertParamExists("listModbusIOs", "cell", cell);
|
|
1372
|
+
const localVarPath = `/cells/{cell}/bus-ios/modbus/ios`.replace(`{cell}`, encodeURIComponent(String(cell)));
|
|
1373
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1374
|
+
let baseOptions;
|
|
1375
|
+
if (configuration) baseOptions = configuration.baseOptions;
|
|
1376
|
+
const localVarRequestOptions = {
|
|
1377
|
+
method: "GET",
|
|
1378
|
+
...baseOptions,
|
|
1379
|
+
...options
|
|
1380
|
+
};
|
|
1381
|
+
const localVarHeaderParameter = {};
|
|
1382
|
+
const localVarQueryParameter = {};
|
|
1383
|
+
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
1384
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
1385
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1386
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1387
|
+
localVarRequestOptions.headers = {
|
|
1388
|
+
...localVarHeaderParameter,
|
|
1389
|
+
...headersFromBaseOptions,
|
|
1390
|
+
...options.headers
|
|
1391
|
+
};
|
|
1392
|
+
return {
|
|
1393
|
+
url: toPathString(localVarUrlObj),
|
|
1394
|
+
options: localVarRequestOptions
|
|
1395
|
+
};
|
|
1396
|
+
},
|
|
1269
1397
|
listProfinetIOs: async (cell, options = {}) => {
|
|
1270
1398
|
assertParamExists("listProfinetIOs", "cell", cell);
|
|
1271
1399
|
const localVarPath = `/cells/{cell}/bus-ios/profinet/ios`.replace(`{cell}`, encodeURIComponent(String(cell)));
|
|
@@ -1368,6 +1496,12 @@ const BUSInputsOutputsApiFp = function(configuration) {
|
|
|
1368
1496
|
const localVarOperationServerBasePath = operationServerMap["BUSInputsOutputsApi.addBusIOService"]?.[localVarOperationServerIndex]?.url;
|
|
1369
1497
|
return (axios$1, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$1, localVarOperationServerBasePath || basePath);
|
|
1370
1498
|
},
|
|
1499
|
+
async addModbusIO(cell, io, modbusIOData, options) {
|
|
1500
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.addModbusIO(cell, io, modbusIOData, options);
|
|
1501
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1502
|
+
const localVarOperationServerBasePath = operationServerMap["BUSInputsOutputsApi.addModbusIO"]?.[localVarOperationServerIndex]?.url;
|
|
1503
|
+
return (axios$1, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$1, localVarOperationServerBasePath || basePath);
|
|
1504
|
+
},
|
|
1371
1505
|
async addProfinetIO(cell, io, profinetIOData, options) {
|
|
1372
1506
|
const localVarAxiosArgs = await localVarAxiosParamCreator.addProfinetIO(cell, io, profinetIOData, options);
|
|
1373
1507
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
@@ -1380,6 +1514,12 @@ const BUSInputsOutputsApiFp = function(configuration) {
|
|
|
1380
1514
|
const localVarOperationServerBasePath = operationServerMap["BUSInputsOutputsApi.clearBusIOService"]?.[localVarOperationServerIndex]?.url;
|
|
1381
1515
|
return (axios$1, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$1, localVarOperationServerBasePath || basePath);
|
|
1382
1516
|
},
|
|
1517
|
+
async deleteModbusIO(cell, io, options) {
|
|
1518
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteModbusIO(cell, io, options);
|
|
1519
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1520
|
+
const localVarOperationServerBasePath = operationServerMap["BUSInputsOutputsApi.deleteModbusIO"]?.[localVarOperationServerIndex]?.url;
|
|
1521
|
+
return (axios$1, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$1, localVarOperationServerBasePath || basePath);
|
|
1522
|
+
},
|
|
1383
1523
|
async deleteProfinetIO(cell, io, options) {
|
|
1384
1524
|
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteProfinetIO(cell, io, options);
|
|
1385
1525
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
@@ -1422,6 +1562,12 @@ const BUSInputsOutputsApiFp = function(configuration) {
|
|
|
1422
1562
|
const localVarOperationServerBasePath = operationServerMap["BUSInputsOutputsApi.listBusIODescriptions"]?.[localVarOperationServerIndex]?.url;
|
|
1423
1563
|
return (axios$1, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$1, localVarOperationServerBasePath || basePath);
|
|
1424
1564
|
},
|
|
1565
|
+
async listModbusIOs(cell, options) {
|
|
1566
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listModbusIOs(cell, options);
|
|
1567
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
1568
|
+
const localVarOperationServerBasePath = operationServerMap["BUSInputsOutputsApi.listModbusIOs"]?.[localVarOperationServerIndex]?.url;
|
|
1569
|
+
return (axios$1, basePath) => createRequestFunction(localVarAxiosArgs, axios.default, BASE_PATH, configuration)(axios$1, localVarOperationServerBasePath || basePath);
|
|
1570
|
+
},
|
|
1425
1571
|
async listProfinetIOs(cell, options) {
|
|
1426
1572
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listProfinetIOs(cell, options);
|
|
1427
1573
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
@@ -1452,12 +1598,18 @@ const BUSInputsOutputsApiFactory = function(configuration, basePath, axios$1) {
|
|
|
1452
1598
|
addBusIOService(cell, busIOType, completionTimeout, options) {
|
|
1453
1599
|
return localVarFp.addBusIOService(cell, busIOType, completionTimeout, options).then((request) => request(axios$1, basePath));
|
|
1454
1600
|
},
|
|
1601
|
+
addModbusIO(cell, io, modbusIOData, options) {
|
|
1602
|
+
return localVarFp.addModbusIO(cell, io, modbusIOData, options).then((request) => request(axios$1, basePath));
|
|
1603
|
+
},
|
|
1455
1604
|
addProfinetIO(cell, io, profinetIOData, options) {
|
|
1456
1605
|
return localVarFp.addProfinetIO(cell, io, profinetIOData, options).then((request) => request(axios$1, basePath));
|
|
1457
1606
|
},
|
|
1458
1607
|
clearBusIOService(cell, completionTimeout, options) {
|
|
1459
1608
|
return localVarFp.clearBusIOService(cell, completionTimeout, options).then((request) => request(axios$1, basePath));
|
|
1460
1609
|
},
|
|
1610
|
+
deleteModbusIO(cell, io, options) {
|
|
1611
|
+
return localVarFp.deleteModbusIO(cell, io, options).then((request) => request(axios$1, basePath));
|
|
1612
|
+
},
|
|
1461
1613
|
deleteProfinetIO(cell, io, options) {
|
|
1462
1614
|
return localVarFp.deleteProfinetIO(cell, io, options).then((request) => request(axios$1, basePath));
|
|
1463
1615
|
},
|
|
@@ -1479,6 +1631,9 @@ const BUSInputsOutputsApiFactory = function(configuration, basePath, axios$1) {
|
|
|
1479
1631
|
listBusIODescriptions(cell, options) {
|
|
1480
1632
|
return localVarFp.listBusIODescriptions(cell, options).then((request) => request(axios$1, basePath));
|
|
1481
1633
|
},
|
|
1634
|
+
listModbusIOs(cell, options) {
|
|
1635
|
+
return localVarFp.listModbusIOs(cell, options).then((request) => request(axios$1, basePath));
|
|
1636
|
+
},
|
|
1482
1637
|
listProfinetIOs(cell, options) {
|
|
1483
1638
|
return localVarFp.listProfinetIOs(cell, options).then((request) => request(axios$1, basePath));
|
|
1484
1639
|
},
|
|
@@ -1511,6 +1666,19 @@ var BUSInputsOutputsApi = class extends BaseAPI {
|
|
|
1511
1666
|
return BUSInputsOutputsApiFp(this.configuration).addBusIOService(cell, busIOType, completionTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
1512
1667
|
}
|
|
1513
1668
|
/**
|
|
1669
|
+
* Adds an input/output variable to or updates an input/output variable on the MODBUS device, e.g., NOVA\'s MODBUS service. The inputs/outputs map variables to specific memory addresses in the process image. The NOVA\'s MODBUS service\'s configuration can be viewed via [listModbusIOs](listModbusIOs).
|
|
1670
|
+
* @summary Add MODBUS Input/Output
|
|
1671
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
1672
|
+
* @param {string} io Unique identifier to address an Input/Output in the cell.
|
|
1673
|
+
* @param {ModbusIOData} modbusIOData
|
|
1674
|
+
* @param {*} [options] Override http request option.
|
|
1675
|
+
* @throws {RequiredError}
|
|
1676
|
+
* @memberof BUSInputsOutputsApi
|
|
1677
|
+
*/
|
|
1678
|
+
addModbusIO(cell, io, modbusIOData, options) {
|
|
1679
|
+
return BUSInputsOutputsApiFp(this.configuration).addModbusIO(cell, io, modbusIOData, options).then((request) => request(this.axios, this.basePath));
|
|
1680
|
+
}
|
|
1681
|
+
/**
|
|
1514
1682
|
* Adds an input/output variable to or updates an input/output variable on the PROFINET device, e.g., NOVA\'s PROFINET service. The inputs/outputs map variables to specific memory addresses in the process image. The default process image has buffer lengths of 64 bytes for input and output. - The size of the buffer is determined by the `config_file_content` that is passed in [addBusIOService](addBusIOService) and has to be in accordance with the GSDML file describing the PROFINET device. The PROFINET controller as well as NOVA\'s PROFINET service use an input/output variable configuration to interpret the bits of the input/output process image. - The NOVA\'s PROFINET service\'s configuration can be viewed via [listProfinetIOs](listProfinetIOs). For the PROFINET controller, e.g., a connected PLC, refer to the corresponding third party software, e.g., TIA portal).
|
|
1515
1683
|
* @summary Add PROFINET Input/Output
|
|
1516
1684
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
@@ -1536,6 +1704,18 @@ var BUSInputsOutputsApi = class extends BaseAPI {
|
|
|
1536
1704
|
return BUSInputsOutputsApiFp(this.configuration).clearBusIOService(cell, completionTimeout, options).then((request) => request(this.axios, this.basePath));
|
|
1537
1705
|
}
|
|
1538
1706
|
/**
|
|
1707
|
+
* Removes an input/output variable configuration from the MODBUS device, e.g., NOVA\'s MODBUS service.
|
|
1708
|
+
* @summary Remove MODBUS Input/Ouptut
|
|
1709
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
1710
|
+
* @param {string} io Unique identifier to address an Input/Output in the cell.
|
|
1711
|
+
* @param {*} [options] Override http request option.
|
|
1712
|
+
* @throws {RequiredError}
|
|
1713
|
+
* @memberof BUSInputsOutputsApi
|
|
1714
|
+
*/
|
|
1715
|
+
deleteModbusIO(cell, io, options) {
|
|
1716
|
+
return BUSInputsOutputsApiFp(this.configuration).deleteModbusIO(cell, io, options).then((request) => request(this.axios, this.basePath));
|
|
1717
|
+
}
|
|
1718
|
+
/**
|
|
1539
1719
|
* Removes an input/output variable configuration from the PROFINET device, e.g., NOVA\'s PROFINET service.
|
|
1540
1720
|
* @summary Remove PROFINET Input/Ouptut
|
|
1541
1721
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
@@ -1617,7 +1797,18 @@ var BUSInputsOutputsApi = class extends BaseAPI {
|
|
|
1617
1797
|
return BUSInputsOutputsApiFp(this.configuration).listBusIODescriptions(cell, options).then((request) => request(this.axios, this.basePath));
|
|
1618
1798
|
}
|
|
1619
1799
|
/**
|
|
1620
|
-
* List descriptions for all configured input/output variables of the
|
|
1800
|
+
* List descriptions for all configured input/output variables of the MODBUS service. The input/output descriptions contain information like name, type and address. The input/output direction is given in perspective of the active MODBUS type (service or client). - The byte and bit addresses are the locations in the MODBUS input/output process image the variable points to. - The MODBUS controller as well as NOVA\'s MODBUS service use an input/output variable configuration to interpret the bits of the input and output process image. - The NOVA MODBUS service\'s configuration is modified via [addModbusIO](addModbusIO).
|
|
1801
|
+
* @summary List MODBUS Input/Output Configuration
|
|
1802
|
+
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
1803
|
+
* @param {*} [options] Override http request option.
|
|
1804
|
+
* @throws {RequiredError}
|
|
1805
|
+
* @memberof BUSInputsOutputsApi
|
|
1806
|
+
*/
|
|
1807
|
+
listModbusIOs(cell, options) {
|
|
1808
|
+
return BUSInputsOutputsApiFp(this.configuration).listModbusIOs(cell, options).then((request) => request(this.axios, this.basePath));
|
|
1809
|
+
}
|
|
1810
|
+
/**
|
|
1811
|
+
* List descriptions for all configured input/output variables of the PROFINET service. The input/output descriptions contain information like name, type and unit. The input/output direction is given in perspective of the PROFINET device, e.g., the configured PROFINET service. - The byte and bit addresses are the locations in the PROFINET input/output process image the variable points to. - The PROFINET controller as well as NOVA\'s PROFINET service use an input/output variable configuration to interpret the bits of the input and output process image. - The NOVA PROFINET service\'s configuration is modified via [addProfinetIO](addProfinetIO) and [setProfinetIOsFromFile](setProfinetIOsFromFile). For the PROFINET controller, e.g., a connected PLC, refer to the corresponding third party software, e.g., TIA portal.
|
|
1621
1812
|
* @summary List PROFINET Input/Output Configuration
|
|
1622
1813
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
1623
1814
|
* @param {*} [options] Override http request option.
|
|
@@ -7774,6 +7965,11 @@ exports.BlendingPositionBlendingNameEnum = BlendingPositionBlendingNameEnum;
|
|
|
7774
7965
|
exports.BooleanValueValueTypeEnum = BooleanValueValueTypeEnum;
|
|
7775
7966
|
exports.BoxBoxTypeEnum = BoxBoxTypeEnum;
|
|
7776
7967
|
exports.BoxShapeTypeEnum = BoxShapeTypeEnum;
|
|
7968
|
+
exports.BusIOModbusClientBusTypeEnum = BusIOModbusClientBusTypeEnum;
|
|
7969
|
+
exports.BusIOModbusServerBusTypeEnum = BusIOModbusServerBusTypeEnum;
|
|
7970
|
+
exports.BusIOModbusTCPClientNetworkTypeEnum = BusIOModbusTCPClientNetworkTypeEnum;
|
|
7971
|
+
exports.BusIOModbusTCPServerNetworkTypeEnum = BusIOModbusTCPServerNetworkTypeEnum;
|
|
7972
|
+
exports.BusIOModbusVirtualBusTypeEnum = BusIOModbusVirtualBusTypeEnum;
|
|
7777
7973
|
exports.BusIOProfinetBusTypeEnum = BusIOProfinetBusTypeEnum;
|
|
7778
7974
|
exports.BusIOProfinetVirtualBusTypeEnum = BusIOProfinetVirtualBusTypeEnum;
|
|
7779
7975
|
exports.BusIOsStateEnum = BusIOsStateEnum;
|
|
@@ -7844,6 +8040,9 @@ exports.LicenseApiFp = LicenseApiFp;
|
|
|
7844
8040
|
exports.LicenseStatusEnum = LicenseStatusEnum;
|
|
7845
8041
|
exports.Manufacturer = Manufacturer;
|
|
7846
8042
|
exports.MidpointInsertionAlgorithmAlgorithmNameEnum = MidpointInsertionAlgorithmAlgorithmNameEnum;
|
|
8043
|
+
exports.ModbusIOArea = ModbusIOArea;
|
|
8044
|
+
exports.ModbusIOByteOrder = ModbusIOByteOrder;
|
|
8045
|
+
exports.ModbusIOTypeEnum = ModbusIOTypeEnum;
|
|
7847
8046
|
exports.MotionGroupApi = MotionGroupApi;
|
|
7848
8047
|
exports.MotionGroupApiAxiosParamCreator = MotionGroupApiAxiosParamCreator;
|
|
7849
8048
|
exports.MotionGroupApiFactory = MotionGroupApiFactory;
|