node-opcua-nodeset-robotics 2.64.0 → 2.64.1

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.
Files changed (41) hide show
  1. package/dist/enum_axis_motion_profile.d.ts +43 -43
  2. package/dist/enum_axis_motion_profile.js +48 -48
  3. package/dist/enum_execution_mode.d.ts +24 -24
  4. package/dist/enum_execution_mode.js +29 -29
  5. package/dist/enum_motion_device_category.d.ts +61 -61
  6. package/dist/enum_motion_device_category.js +66 -66
  7. package/dist/enum_operational_mode.d.ts +35 -35
  8. package/dist/enum_operational_mode.js +40 -40
  9. package/dist/index.d.ts +19 -19
  10. package/dist/index.js +31 -31
  11. package/dist/ua_auxiliary_component.d.ts +28 -28
  12. package/dist/ua_auxiliary_component.js +2 -2
  13. package/dist/ua_axis.d.ts +59 -59
  14. package/dist/ua_axis.js +2 -2
  15. package/dist/ua_controller.d.ts +112 -112
  16. package/dist/ua_controller.js +2 -2
  17. package/dist/ua_drive.d.ts +29 -29
  18. package/dist/ua_drive.js +2 -2
  19. package/dist/ua_emergency_stop_function.d.ts +34 -34
  20. package/dist/ua_emergency_stop_function.js +2 -2
  21. package/dist/ua_gear.d.ts +44 -44
  22. package/dist/ua_gear.js +2 -2
  23. package/dist/ua_load.d.ts +52 -52
  24. package/dist/ua_load.js +2 -2
  25. package/dist/ua_motion_device.d.ts +95 -95
  26. package/dist/ua_motion_device.js +2 -2
  27. package/dist/ua_motion_device_system.d.ts +35 -35
  28. package/dist/ua_motion_device_system.js +2 -2
  29. package/dist/ua_motor.d.ts +57 -57
  30. package/dist/ua_motor.js +2 -2
  31. package/dist/ua_power_train.d.ts +16 -16
  32. package/dist/ua_power_train.js +2 -2
  33. package/dist/ua_protective_stop_function.d.ts +0 -0
  34. package/dist/ua_protective_stop_function.js +2 -2
  35. package/dist/ua_safety_state.d.ts +71 -71
  36. package/dist/ua_safety_state.js +2 -2
  37. package/dist/ua_task_control.d.ts +52 -52
  38. package/dist/ua_task_control.js +2 -2
  39. package/dist/ua_user.d.ts +31 -31
  40. package/dist/ua_user.js +2 -2
  41. package/package.json +22 -21
@@ -1,57 +1,57 @@
1
- import { UAObject, UAProperty } from "node-opcua-address-space-base";
2
- import { DataType } from "node-opcua-variant";
3
- import { LocalizedText } from "node-opcua-data-model";
4
- import { UInt16, UAString } from "node-opcua-basic-types";
5
- import { UABaseDataVariable } from "node-opcua-nodeset-ua/source/ua_base_data_variable";
6
- import { UAAnalogUnit } from "node-opcua-nodeset-ua/source/ua_analog_unit";
7
- import { UAComponent, UAComponent_Base } from "node-opcua-nodeset-di/source/ua_component";
8
- export interface UAMotor_parameterSet extends UAObject {
9
- /**
10
- * brakeReleased
11
- * Indicates an optional variable used only for
12
- * motors with brakes. If BrakeReleased is TRUE the
13
- * motor is free to run. FALSE means that the motor
14
- * shaft is locked by the brake.
15
- */
16
- brakeReleased?: UABaseDataVariable<boolean, /*z*/ DataType.Boolean>;
17
- /**
18
- * motorTemperature
19
- * The motor temperature provides the temperature of
20
- * the motor. If there is no temperature sensor the
21
- * value is set to \"null\".
22
- */
23
- motorTemperature: UAAnalogUnit<number, /*z*/ DataType.Double>;
24
- /**
25
- * effectiveLoadRate
26
- * EffectiveLoadRate is expressed as a percentage of
27
- * maximum continuous load. The Joule integral is
28
- * typically used to calculate the current load.
29
- * Duration should be defined and documented by the
30
- * vendor.
31
- */
32
- effectiveLoadRate?: UABaseDataVariable<UInt16, /*z*/ DataType.UInt16>;
33
- }
34
- /**
35
- * The MotorType is for representing instances of
36
- * electric motors.
37
- *
38
- * | | |
39
- * |----------------|--------------------------------------------------|
40
- * |namespace |http://opcfoundation.org/UA/Robotics/ |
41
- * |nodeClass |ObjectType |
42
- * |typedDefinition |7:MotorType ns=7;i=1019 |
43
- * |isAbstract |false |
44
- */
45
- export interface UAMotor_Base extends UAComponent_Base {
46
- /**
47
- * parameterSet
48
- * Flat list of Parameters
49
- */
50
- parameterSet: UAMotor_parameterSet;
51
- manufacturer: UAProperty<LocalizedText, /*z*/ DataType.LocalizedText>;
52
- model: UAProperty<LocalizedText, /*z*/ DataType.LocalizedText>;
53
- productCode: UAProperty<UAString, /*z*/ DataType.String>;
54
- serialNumber: UAProperty<UAString, /*z*/ DataType.String>;
55
- }
56
- export interface UAMotor extends Omit<UAComponent, "parameterSet" | "manufacturer" | "model" | "productCode" | "serialNumber">, UAMotor_Base {
57
- }
1
+ import { UAObject, UAProperty } from "node-opcua-address-space-base";
2
+ import { DataType } from "node-opcua-variant";
3
+ import { LocalizedText } from "node-opcua-data-model";
4
+ import { UInt16, UAString } from "node-opcua-basic-types";
5
+ import { UABaseDataVariable } from "node-opcua-nodeset-ua/source/ua_base_data_variable";
6
+ import { UAAnalogUnit } from "node-opcua-nodeset-ua/source/ua_analog_unit";
7
+ import { UAComponent, UAComponent_Base } from "node-opcua-nodeset-di/source/ua_component";
8
+ export interface UAMotor_parameterSet extends UAObject {
9
+ /**
10
+ * brakeReleased
11
+ * Indicates an optional variable used only for
12
+ * motors with brakes. If BrakeReleased is TRUE the
13
+ * motor is free to run. FALSE means that the motor
14
+ * shaft is locked by the brake.
15
+ */
16
+ brakeReleased?: UABaseDataVariable<boolean, /*z*/ DataType.Boolean>;
17
+ /**
18
+ * motorTemperature
19
+ * The motor temperature provides the temperature of
20
+ * the motor. If there is no temperature sensor the
21
+ * value is set to \"null\".
22
+ */
23
+ motorTemperature: UAAnalogUnit<number, /*z*/ DataType.Double>;
24
+ /**
25
+ * effectiveLoadRate
26
+ * EffectiveLoadRate is expressed as a percentage of
27
+ * maximum continuous load. The Joule integral is
28
+ * typically used to calculate the current load.
29
+ * Duration should be defined and documented by the
30
+ * vendor.
31
+ */
32
+ effectiveLoadRate?: UABaseDataVariable<UInt16, /*z*/ DataType.UInt16>;
33
+ }
34
+ /**
35
+ * The MotorType is for representing instances of
36
+ * electric motors.
37
+ *
38
+ * | | |
39
+ * |----------------|--------------------------------------------------|
40
+ * |namespace |http://opcfoundation.org/UA/Robotics/ |
41
+ * |nodeClass |ObjectType |
42
+ * |typedDefinition |7:MotorType ns=7;i=1019 |
43
+ * |isAbstract |false |
44
+ */
45
+ export interface UAMotor_Base extends UAComponent_Base {
46
+ /**
47
+ * parameterSet
48
+ * Flat list of Parameters
49
+ */
50
+ parameterSet: UAMotor_parameterSet;
51
+ manufacturer: UAProperty<LocalizedText, /*z*/ DataType.LocalizedText>;
52
+ model: UAProperty<LocalizedText, /*z*/ DataType.LocalizedText>;
53
+ productCode: UAProperty<UAString, /*z*/ DataType.String>;
54
+ serialNumber: UAProperty<UAString, /*z*/ DataType.String>;
55
+ }
56
+ export interface UAMotor extends Omit<UAComponent, "parameterSet" | "manufacturer" | "model" | "productCode" | "serialNumber">, UAMotor_Base {
57
+ }
package/dist/ua_motor.js CHANGED
@@ -1,3 +1,3 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  //# sourceMappingURL=ua_motor.js.map
@@ -1,16 +1,16 @@
1
- import { UAComponent, UAComponent_Base } from "node-opcua-nodeset-di/source/ua_component";
2
- /**
3
- * The PowerTrainType represents instances of
4
- * powertrains of a motion device.
5
- *
6
- * | | |
7
- * |----------------|--------------------------------------------------|
8
- * |namespace |http://opcfoundation.org/UA/Robotics/ |
9
- * |nodeClass |ObjectType |
10
- * |typedDefinition |7:PowerTrainType ns=7;i=16794 |
11
- * |isAbstract |false |
12
- */
13
- export interface UAPowerTrain_Base extends UAComponent_Base {
14
- }
15
- export interface UAPowerTrain extends UAComponent, UAPowerTrain_Base {
16
- }
1
+ import { UAComponent, UAComponent_Base } from "node-opcua-nodeset-di/source/ua_component";
2
+ /**
3
+ * The PowerTrainType represents instances of
4
+ * powertrains of a motion device.
5
+ *
6
+ * | | |
7
+ * |----------------|--------------------------------------------------|
8
+ * |namespace |http://opcfoundation.org/UA/Robotics/ |
9
+ * |nodeClass |ObjectType |
10
+ * |typedDefinition |7:PowerTrainType ns=7;i=16794 |
11
+ * |isAbstract |false |
12
+ */
13
+ export interface UAPowerTrain_Base extends UAComponent_Base {
14
+ }
15
+ export interface UAPowerTrain extends UAComponent, UAPowerTrain_Base {
16
+ }
@@ -1,3 +1,3 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  //# sourceMappingURL=ua_power_train.js.map
@@ -1,3 +1,3 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  //# sourceMappingURL=ua_protective_stop_function.js.map
@@ -1,71 +1,71 @@
1
- import { UAObject } from "node-opcua-address-space-base";
2
- import { DataType } from "node-opcua-variant";
3
- import { UABaseDataVariable } from "node-opcua-nodeset-ua/source/ua_base_data_variable";
4
- import { UAFolder } from "node-opcua-nodeset-ua/source/ua_folder";
5
- import { UAComponent, UAComponent_Base } from "node-opcua-nodeset-di/source/ua_component";
6
- export interface UASafetyState_parameterSet extends UAObject {
7
- /**
8
- * operationalMode
9
- * The OperationalMode variable provides information
10
- * about the current operational mode. Allowed
11
- * values are described in
12
- * OperationalModeEnumeration, see ISO 10218-1:2011
13
- * Ch.5.7 Operational Modes.
14
- */
15
- operationalMode: UABaseDataVariable<any, any>;
16
- /**
17
- * emergencyStop
18
- * The EmergencyStop variable is TRUE if one or more
19
- * of the emergency stop functions in the robot
20
- * system are active, FALSE otherwise. If the
21
- * EmergencyStopFunctions object is provided, then
22
- * the value of this variable is TRUE if one or more
23
- * of the listed emergency stop functions are active.
24
- */
25
- emergencyStop: UABaseDataVariable<boolean, /*z*/ DataType.Boolean>;
26
- /**
27
- * protectiveStop
28
- * The ProtectiveStop variable is TRUE if one or
29
- * more of the enabled protective stop functions in
30
- * the system are active, FALSE otherwise. If the
31
- * ProtectiveStopFunctions object is provided, then
32
- * the value of this variable is TRUE if one or more
33
- * of the listed protective stop functions are
34
- * enabled and active.
35
- */
36
- protectiveStop: UABaseDataVariable<boolean, /*z*/ DataType.Boolean>;
37
- }
38
- /**
39
- * SafetyStateType describes the safety states of
40
- * the motion devices and controllers. One motion
41
- * device system is associated with one or more
42
- * instances of the SafetyStateType.
43
- *
44
- * | | |
45
- * |----------------|--------------------------------------------------|
46
- * |namespace |http://opcfoundation.org/UA/Robotics/ |
47
- * |nodeClass |ObjectType |
48
- * |typedDefinition |7:SafetyStateType ns=7;i=1013 |
49
- * |isAbstract |false |
50
- */
51
- export interface UASafetyState_Base extends UAComponent_Base {
52
- /**
53
- * parameterSet
54
- * Flat list of Parameters
55
- */
56
- parameterSet: UASafetyState_parameterSet;
57
- /**
58
- * emergencyStopFunctions
59
- * EmergencyStopFunctions is a container for one or
60
- * more instances of the EmergencyStopFunctionType.
61
- */
62
- emergencyStopFunctions?: UAFolder;
63
- /**
64
- * protectiveStopFunctions
65
- * ProtectiveStopFunctions is a container for one or
66
- * more instances of the ProtectiveStopFunctionType.
67
- */
68
- protectiveStopFunctions?: UAFolder;
69
- }
70
- export interface UASafetyState extends Omit<UAComponent, "parameterSet">, UASafetyState_Base {
71
- }
1
+ import { UAObject } from "node-opcua-address-space-base";
2
+ import { DataType } from "node-opcua-variant";
3
+ import { UABaseDataVariable } from "node-opcua-nodeset-ua/source/ua_base_data_variable";
4
+ import { UAFolder } from "node-opcua-nodeset-ua/source/ua_folder";
5
+ import { UAComponent, UAComponent_Base } from "node-opcua-nodeset-di/source/ua_component";
6
+ export interface UASafetyState_parameterSet extends UAObject {
7
+ /**
8
+ * operationalMode
9
+ * The OperationalMode variable provides information
10
+ * about the current operational mode. Allowed
11
+ * values are described in
12
+ * OperationalModeEnumeration, see ISO 10218-1:2011
13
+ * Ch.5.7 Operational Modes.
14
+ */
15
+ operationalMode: UABaseDataVariable<any, any>;
16
+ /**
17
+ * emergencyStop
18
+ * The EmergencyStop variable is TRUE if one or more
19
+ * of the emergency stop functions in the robot
20
+ * system are active, FALSE otherwise. If the
21
+ * EmergencyStopFunctions object is provided, then
22
+ * the value of this variable is TRUE if one or more
23
+ * of the listed emergency stop functions are active.
24
+ */
25
+ emergencyStop: UABaseDataVariable<boolean, /*z*/ DataType.Boolean>;
26
+ /**
27
+ * protectiveStop
28
+ * The ProtectiveStop variable is TRUE if one or
29
+ * more of the enabled protective stop functions in
30
+ * the system are active, FALSE otherwise. If the
31
+ * ProtectiveStopFunctions object is provided, then
32
+ * the value of this variable is TRUE if one or more
33
+ * of the listed protective stop functions are
34
+ * enabled and active.
35
+ */
36
+ protectiveStop: UABaseDataVariable<boolean, /*z*/ DataType.Boolean>;
37
+ }
38
+ /**
39
+ * SafetyStateType describes the safety states of
40
+ * the motion devices and controllers. One motion
41
+ * device system is associated with one or more
42
+ * instances of the SafetyStateType.
43
+ *
44
+ * | | |
45
+ * |----------------|--------------------------------------------------|
46
+ * |namespace |http://opcfoundation.org/UA/Robotics/ |
47
+ * |nodeClass |ObjectType |
48
+ * |typedDefinition |7:SafetyStateType ns=7;i=1013 |
49
+ * |isAbstract |false |
50
+ */
51
+ export interface UASafetyState_Base extends UAComponent_Base {
52
+ /**
53
+ * parameterSet
54
+ * Flat list of Parameters
55
+ */
56
+ parameterSet: UASafetyState_parameterSet;
57
+ /**
58
+ * emergencyStopFunctions
59
+ * EmergencyStopFunctions is a container for one or
60
+ * more instances of the EmergencyStopFunctionType.
61
+ */
62
+ emergencyStopFunctions?: UAFolder;
63
+ /**
64
+ * protectiveStopFunctions
65
+ * ProtectiveStopFunctions is a container for one or
66
+ * more instances of the ProtectiveStopFunctionType.
67
+ */
68
+ protectiveStopFunctions?: UAFolder;
69
+ }
70
+ export interface UASafetyState extends Omit<UAComponent, "parameterSet">, UASafetyState_Base {
71
+ }
@@ -1,3 +1,3 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  //# sourceMappingURL=ua_safety_state.js.map
@@ -1,52 +1,52 @@
1
- import { UAObject, UAProperty } from "node-opcua-address-space-base";
2
- import { DataType } from "node-opcua-variant";
3
- import { LocalizedText } from "node-opcua-data-model";
4
- import { UAString } from "node-opcua-basic-types";
5
- import { UABaseDataVariable } from "node-opcua-nodeset-ua/source/ua_base_data_variable";
6
- import { UAComponent, UAComponent_Base } from "node-opcua-nodeset-di/source/ua_component";
7
- export interface UATaskControl_parameterSet extends UAObject {
8
- /**
9
- * taskProgramName
10
- * A customer given identifier for the task program.
11
- */
12
- taskProgramName: UABaseDataVariable<UAString, /*z*/ DataType.String>;
13
- /**
14
- * taskProgramLoaded
15
- * The TaskProgramLoaded variable is TRUE if a task
16
- * program is loaded in the task control, FALSE
17
- * otherwise.
18
- */
19
- taskProgramLoaded: UABaseDataVariable<boolean, /*z*/ DataType.Boolean>;
20
- /**
21
- * executionMode
22
- * Execution mode of the task control (continuous or
23
- * step-wise).
24
- */
25
- executionMode?: UABaseDataVariable<any, any>;
26
- }
27
- /**
28
- * Represents a specific task control active on the
29
- * controller.
30
- *
31
- * | | |
32
- * |----------------|--------------------------------------------------|
33
- * |namespace |http://opcfoundation.org/UA/Robotics/ |
34
- * |nodeClass |ObjectType |
35
- * |typedDefinition |7:TaskControlType ns=7;i=1011 |
36
- * |isAbstract |false |
37
- */
38
- export interface UATaskControl_Base extends UAComponent_Base {
39
- /**
40
- * parameterSet
41
- * Flat list of Parameters
42
- */
43
- parameterSet: UATaskControl_parameterSet;
44
- /**
45
- * componentName
46
- * A user writable name provided by the vendor,
47
- * integrator or user of the device.
48
- */
49
- componentName: UAProperty<LocalizedText, /*z*/ DataType.LocalizedText>;
50
- }
51
- export interface UATaskControl extends Omit<UAComponent, "parameterSet" | "componentName">, UATaskControl_Base {
52
- }
1
+ import { UAObject, UAProperty } from "node-opcua-address-space-base";
2
+ import { DataType } from "node-opcua-variant";
3
+ import { LocalizedText } from "node-opcua-data-model";
4
+ import { UAString } from "node-opcua-basic-types";
5
+ import { UABaseDataVariable } from "node-opcua-nodeset-ua/source/ua_base_data_variable";
6
+ import { UAComponent, UAComponent_Base } from "node-opcua-nodeset-di/source/ua_component";
7
+ export interface UATaskControl_parameterSet extends UAObject {
8
+ /**
9
+ * taskProgramName
10
+ * A customer given identifier for the task program.
11
+ */
12
+ taskProgramName: UABaseDataVariable<UAString, /*z*/ DataType.String>;
13
+ /**
14
+ * taskProgramLoaded
15
+ * The TaskProgramLoaded variable is TRUE if a task
16
+ * program is loaded in the task control, FALSE
17
+ * otherwise.
18
+ */
19
+ taskProgramLoaded: UABaseDataVariable<boolean, /*z*/ DataType.Boolean>;
20
+ /**
21
+ * executionMode
22
+ * Execution mode of the task control (continuous or
23
+ * step-wise).
24
+ */
25
+ executionMode?: UABaseDataVariable<any, any>;
26
+ }
27
+ /**
28
+ * Represents a specific task control active on the
29
+ * controller.
30
+ *
31
+ * | | |
32
+ * |----------------|--------------------------------------------------|
33
+ * |namespace |http://opcfoundation.org/UA/Robotics/ |
34
+ * |nodeClass |ObjectType |
35
+ * |typedDefinition |7:TaskControlType ns=7;i=1011 |
36
+ * |isAbstract |false |
37
+ */
38
+ export interface UATaskControl_Base extends UAComponent_Base {
39
+ /**
40
+ * parameterSet
41
+ * Flat list of Parameters
42
+ */
43
+ parameterSet: UATaskControl_parameterSet;
44
+ /**
45
+ * componentName
46
+ * A user writable name provided by the vendor,
47
+ * integrator or user of the device.
48
+ */
49
+ componentName: UAProperty<LocalizedText, /*z*/ DataType.LocalizedText>;
50
+ }
51
+ export interface UATaskControl extends Omit<UAComponent, "parameterSet" | "componentName">, UATaskControl_Base {
52
+ }
@@ -1,3 +1,3 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  //# sourceMappingURL=ua_task_control.js.map
package/dist/ua_user.d.ts CHANGED
@@ -1,31 +1,31 @@
1
- import { UAObject, UAProperty } from "node-opcua-address-space-base";
2
- import { DataType } from "node-opcua-variant";
3
- import { UAString } from "node-opcua-basic-types";
4
- /**
5
- * The UserType ObjectType describes information of
6
- * the registered user groups within the control
7
- * system.
8
- *
9
- * | | |
10
- * |----------------|--------------------------------------------------|
11
- * |namespace |http://opcfoundation.org/UA/Robotics/ |
12
- * |nodeClass |ObjectType |
13
- * |typedDefinition |7:UserType ns=7;i=18175 |
14
- * |isAbstract |false |
15
- */
16
- export interface UAUser_Base {
17
- /**
18
- * level
19
- * The weight of the load mounted on one mounting
20
- * point.
21
- */
22
- level: UAProperty<UAString, /*z*/ DataType.String>;
23
- /**
24
- * name
25
- * The name for the current user within the control
26
- * system.
27
- */
28
- name?: UAProperty<UAString, /*z*/ DataType.String>;
29
- }
30
- export interface UAUser extends UAObject, UAUser_Base {
31
- }
1
+ import { UAObject, UAProperty } from "node-opcua-address-space-base";
2
+ import { DataType } from "node-opcua-variant";
3
+ import { UAString } from "node-opcua-basic-types";
4
+ /**
5
+ * The UserType ObjectType describes information of
6
+ * the registered user groups within the control
7
+ * system.
8
+ *
9
+ * | | |
10
+ * |----------------|--------------------------------------------------|
11
+ * |namespace |http://opcfoundation.org/UA/Robotics/ |
12
+ * |nodeClass |ObjectType |
13
+ * |typedDefinition |7:UserType ns=7;i=18175 |
14
+ * |isAbstract |false |
15
+ */
16
+ export interface UAUser_Base {
17
+ /**
18
+ * level
19
+ * The weight of the load mounted on one mounting
20
+ * point.
21
+ */
22
+ level: UAProperty<UAString, /*z*/ DataType.String>;
23
+ /**
24
+ * name
25
+ * The name for the current user within the control
26
+ * system.
27
+ */
28
+ name?: UAProperty<UAString, /*z*/ DataType.String>;
29
+ }
30
+ export interface UAUser extends UAObject, UAUser_Base {
31
+ }
package/dist/ua_user.js CHANGED
@@ -1,3 +1,3 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  //# sourceMappingURL=ua_user.js.map
package/package.json CHANGED
@@ -1,22 +1,23 @@
1
1
  {
2
- "name": "node-opcua-nodeset-robotics",
3
- "version": "2.64.0",
4
- "description": "",
5
- "main": "dist/index.js",
6
- "types": "dist/index.d.ts",
7
- "author": "etienne.rossignon@sterfive.com",
8
- "license": "MIT",
9
- "dependencies": {
10
- "node-opcua-address-space-base": "2.64.0",
11
- "node-opcua-basic-types": "2.64.0",
12
- "node-opcua-data-access": "2.64.0",
13
- "node-opcua-data-model": "2.64.0",
14
- "node-opcua-nodeid": "2.64.0",
15
- "node-opcua-nodeset-di": "2.64.0",
16
- "node-opcua-nodeset-ua": "2.64.0",
17
- "node-opcua-variant": "2.64.0"
18
- },
19
- "scripts": {
20
- "build": "tsc -b"
21
- }
22
- }
2
+ "name": "node-opcua-nodeset-robotics",
3
+ "version": "2.64.1",
4
+ "description": "",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "scripts": {
8
+ "build": "tsc -b"
9
+ },
10
+ "author": "etienne.rossignon@sterfive.com",
11
+ "license": "MIT",
12
+ "dependencies": {
13
+ "node-opcua-address-space-base": "2.64.1",
14
+ "node-opcua-basic-types": "2.64.1",
15
+ "node-opcua-data-access": "2.64.1",
16
+ "node-opcua-data-model": "2.64.1",
17
+ "node-opcua-nodeid": "2.64.1",
18
+ "node-opcua-nodeset-di": "2.64.1",
19
+ "node-opcua-nodeset-ua": "2.64.1",
20
+ "node-opcua-variant": "2.64.1"
21
+ },
22
+ "gitHead": "b65b8738603cd475d7d99a2b20b0ae9d32b4110c"
23
+ }