node-opcua-nodeset-machinery 2.76.0 → 2.76.2

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/index.d.ts CHANGED
@@ -1,9 +1,9 @@
1
- export * from "./ua_i_machine_tag_nameplate";
2
- export * from "./ua_i_machine_vendor_nameplate";
3
- export * from "./ua_i_machinery_item_vendor_nameplate";
4
- export * from "./ua_machine_components";
5
- export * from "./ua_machine_identification";
6
- export * from "./ua_machinery_component_identification";
7
- export * from "./ua_machinery_item_identification";
8
- export * from "./ua_machinery_item_state_state_machine";
9
- export * from "./ua_machinery_operation_mode_state_machine";
1
+ export * from "./ua_i_machine_tag_nameplate";
2
+ export * from "./ua_i_machine_vendor_nameplate";
3
+ export * from "./ua_i_machinery_item_vendor_nameplate";
4
+ export * from "./ua_machine_components";
5
+ export * from "./ua_machine_identification";
6
+ export * from "./ua_machinery_component_identification";
7
+ export * from "./ua_machinery_item_identification";
8
+ export * from "./ua_machinery_item_state_state_machine";
9
+ export * from "./ua_machinery_operation_mode_state_machine";
package/dist/index.js CHANGED
@@ -1,26 +1,26 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- var desc = Object.getOwnPropertyDescriptor(m, k);
5
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
- desc = { enumerable: true, get: function() { return m[k]; } };
7
- }
8
- Object.defineProperty(o, k2, desc);
9
- }) : (function(o, m, k, k2) {
10
- if (k2 === undefined) k2 = k;
11
- o[k2] = m[k];
12
- }));
13
- var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
- };
16
- Object.defineProperty(exports, "__esModule", { value: true });
17
- __exportStar(require("./ua_i_machine_tag_nameplate"), exports);
18
- __exportStar(require("./ua_i_machine_vendor_nameplate"), exports);
19
- __exportStar(require("./ua_i_machinery_item_vendor_nameplate"), exports);
20
- __exportStar(require("./ua_machine_components"), exports);
21
- __exportStar(require("./ua_machine_identification"), exports);
22
- __exportStar(require("./ua_machinery_component_identification"), exports);
23
- __exportStar(require("./ua_machinery_item_identification"), exports);
24
- __exportStar(require("./ua_machinery_item_state_state_machine"), exports);
25
- __exportStar(require("./ua_machinery_operation_mode_state_machine"), exports);
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./ua_i_machine_tag_nameplate"), exports);
18
+ __exportStar(require("./ua_i_machine_vendor_nameplate"), exports);
19
+ __exportStar(require("./ua_i_machinery_item_vendor_nameplate"), exports);
20
+ __exportStar(require("./ua_machine_components"), exports);
21
+ __exportStar(require("./ua_machine_identification"), exports);
22
+ __exportStar(require("./ua_machinery_component_identification"), exports);
23
+ __exportStar(require("./ua_machinery_item_identification"), exports);
24
+ __exportStar(require("./ua_machinery_item_state_state_machine"), exports);
25
+ __exportStar(require("./ua_machinery_operation_mode_state_machine"), exports);
26
26
  //# sourceMappingURL=index.js.map
@@ -1,30 +1,30 @@
1
- import { UAProperty } from "node-opcua-address-space-base";
2
- import { DataType } from "node-opcua-variant";
3
- import { UAString } from "node-opcua-basic-types";
4
- import { UAITagNameplate, UAITagNameplate_Base } from "node-opcua-nodeset-di/source/ua_i_tag_nameplate";
5
- /**
6
- * Interface containing information of the
7
- * identification of a machine set by the customer
8
- *
9
- * | | |
10
- * |----------------|--------------------------------------------------|
11
- * |namespace |http://opcfoundation.org/UA/Machinery/ |
12
- * |nodeClass |ObjectType |
13
- * |typedDefinition |8:IMachineTagNameplateType ns=8;i=1011 |
14
- * |isAbstract |true |
15
- */
16
- export interface UAIMachineTagNameplate_Base extends UAITagNameplate_Base {
17
- /**
18
- * location
19
- * To be used by end users to store the location of
20
- * the machine in a scheme specific to the end user
21
- * Servers shall support at least 60 Unicode
22
- * characters for the clients writing this value,
23
- * this means clients can expect to be able to write
24
- * strings with a length of 60 Unicode characters
25
- * into that field.
26
- */
27
- location?: UAProperty<UAString, DataType.String>;
28
- }
29
- export interface UAIMachineTagNameplate extends UAITagNameplate, UAIMachineTagNameplate_Base {
30
- }
1
+ import { UAProperty } from "node-opcua-address-space-base";
2
+ import { DataType } from "node-opcua-variant";
3
+ import { UAString } from "node-opcua-basic-types";
4
+ import { UAITagNameplate, UAITagNameplate_Base } from "node-opcua-nodeset-di/source/ua_i_tag_nameplate";
5
+ /**
6
+ * Interface containing information of the
7
+ * identification of a machine set by the customer
8
+ *
9
+ * | | |
10
+ * |----------------|--------------------------------------------------|
11
+ * |namespace |http://opcfoundation.org/UA/Machinery/ |
12
+ * |nodeClass |ObjectType |
13
+ * |typedDefinition |8:IMachineTagNameplateType ns=8;i=1011 |
14
+ * |isAbstract |true |
15
+ */
16
+ export interface UAIMachineTagNameplate_Base extends UAITagNameplate_Base {
17
+ /**
18
+ * location
19
+ * To be used by end users to store the location of
20
+ * the machine in a scheme specific to the end user
21
+ * Servers shall support at least 60 Unicode
22
+ * characters for the clients writing this value,
23
+ * this means clients can expect to be able to write
24
+ * strings with a length of 60 Unicode characters
25
+ * into that field.
26
+ */
27
+ location?: UAProperty<UAString, DataType.String>;
28
+ }
29
+ export interface UAIMachineTagNameplate extends UAITagNameplate, UAIMachineTagNameplate_Base {
30
+ }
@@ -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_i_machine_tag_nameplate.js.map
@@ -1,26 +1,26 @@
1
- import { UAProperty } from "node-opcua-address-space-base";
2
- import { DataType } from "node-opcua-variant";
3
- import { UAString } from "node-opcua-basic-types";
4
- import { UAIMachineryItemVendorNameplate, UAIMachineryItemVendorNameplate_Base } from "./ua_i_machinery_item_vendor_nameplate";
5
- /**
6
- * Interface containing identification and nameplate
7
- * information for a machine provided by the machine
8
- * vendor
9
- *
10
- * | | |
11
- * |----------------|--------------------------------------------------|
12
- * |namespace |http://opcfoundation.org/UA/Machinery/ |
13
- * |nodeClass |ObjectType |
14
- * |typedDefinition |8:IMachineVendorNameplateType ns=8;i=1010 |
15
- * |isAbstract |true |
16
- */
17
- export interface UAIMachineVendorNameplate_Base extends UAIMachineryItemVendorNameplate_Base {
18
- /**
19
- * productInstanceUri
20
- * A globally unique resource identifier provided by
21
- * the manufacturer of the machine
22
- */
23
- productInstanceUri: UAProperty<UAString, DataType.String>;
24
- }
25
- export interface UAIMachineVendorNameplate extends Omit<UAIMachineryItemVendorNameplate, "productInstanceUri">, UAIMachineVendorNameplate_Base {
26
- }
1
+ import { UAProperty } from "node-opcua-address-space-base";
2
+ import { DataType } from "node-opcua-variant";
3
+ import { UAString } from "node-opcua-basic-types";
4
+ import { UAIMachineryItemVendorNameplate, UAIMachineryItemVendorNameplate_Base } from "./ua_i_machinery_item_vendor_nameplate";
5
+ /**
6
+ * Interface containing identification and nameplate
7
+ * information for a machine provided by the machine
8
+ * vendor
9
+ *
10
+ * | | |
11
+ * |----------------|--------------------------------------------------|
12
+ * |namespace |http://opcfoundation.org/UA/Machinery/ |
13
+ * |nodeClass |ObjectType |
14
+ * |typedDefinition |8:IMachineVendorNameplateType ns=8;i=1010 |
15
+ * |isAbstract |true |
16
+ */
17
+ export interface UAIMachineVendorNameplate_Base extends UAIMachineryItemVendorNameplate_Base {
18
+ /**
19
+ * productInstanceUri
20
+ * A globally unique resource identifier provided by
21
+ * the manufacturer of the machine
22
+ */
23
+ productInstanceUri: UAProperty<UAString, DataType.String>;
24
+ }
25
+ export interface UAIMachineVendorNameplate extends Omit<UAIMachineryItemVendorNameplate, "productInstanceUri">, UAIMachineVendorNameplate_Base {
26
+ }
@@ -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_i_machine_vendor_nameplate.js.map
@@ -1,61 +1,61 @@
1
- import { 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, Byte, UAString } from "node-opcua-basic-types";
5
- import { UAIVendorNameplate, UAIVendorNameplate_Base } from "node-opcua-nodeset-di/source/ua_i_vendor_nameplate";
6
- /**
7
- * Interface containing identification and nameplate
8
- * information for a MachineryItem provided by the
9
- * vendor
10
- *
11
- * | | |
12
- * |----------------|--------------------------------------------------|
13
- * |namespace |http://opcfoundation.org/UA/Machinery/ |
14
- * |nodeClass |ObjectType |
15
- * |typedDefinition |8:IMachineryItemVendorNameplateType ns=8;i=1003 |
16
- * |isAbstract |true |
17
- */
18
- export interface UAIMachineryItemVendorNameplate_Base extends UAIVendorNameplate_Base {
19
- /**
20
- * initialOperationDate
21
- * The date, when the MachineryItem was switched on
22
- * the first time after it has left the manufacturer
23
- * plant.
24
- */
25
- initialOperationDate?: UAProperty<Date, DataType.DateTime>;
26
- /**
27
- * manufacturer
28
- * A human-readable, localized name of the
29
- * manufacturer of the MachineryItem.
30
- */
31
- manufacturer: UAProperty<LocalizedText, DataType.LocalizedText>;
32
- /**
33
- * monthOfConstruction
34
- * The month in which the manufacturing process of
35
- * the MachineryItem has been completed. It shall be
36
- * a number between 1 and 12, representing the month
37
- * from January to December.
38
- */
39
- monthOfConstruction?: UAProperty<Byte, DataType.Byte>;
40
- /**
41
- * serialNumber
42
- * A string containing a unique production number of
43
- * the manufacturer of the MachineryItem. The global
44
- * uniqueness of the serial number is only given in
45
- * the context of the manufacturer, and potentially
46
- * the model. The value shall not change during the
47
- * life-cycle of the MachineryItem.
48
- */
49
- serialNumber: UAProperty<UAString, DataType.String>;
50
- /**
51
- * yearOfConstruction
52
- * The year (Gregorian calendar) in which the
53
- * manufacturing process of the MachineryItem has
54
- * been completed. It shall be a four-digit number
55
- * and never change during the life-cycle of a
56
- * MachineryItem.
57
- */
58
- yearOfConstruction?: UAProperty<UInt16, DataType.UInt16>;
59
- }
60
- export interface UAIMachineryItemVendorNameplate extends Omit<UAIVendorNameplate, "manufacturer" | "serialNumber">, UAIMachineryItemVendorNameplate_Base {
61
- }
1
+ import { 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, Byte, UAString } from "node-opcua-basic-types";
5
+ import { UAIVendorNameplate, UAIVendorNameplate_Base } from "node-opcua-nodeset-di/source/ua_i_vendor_nameplate";
6
+ /**
7
+ * Interface containing identification and nameplate
8
+ * information for a MachineryItem provided by the
9
+ * vendor
10
+ *
11
+ * | | |
12
+ * |----------------|--------------------------------------------------|
13
+ * |namespace |http://opcfoundation.org/UA/Machinery/ |
14
+ * |nodeClass |ObjectType |
15
+ * |typedDefinition |8:IMachineryItemVendorNameplateType ns=8;i=1003 |
16
+ * |isAbstract |true |
17
+ */
18
+ export interface UAIMachineryItemVendorNameplate_Base extends UAIVendorNameplate_Base {
19
+ /**
20
+ * initialOperationDate
21
+ * The date, when the MachineryItem was switched on
22
+ * the first time after it has left the manufacturer
23
+ * plant.
24
+ */
25
+ initialOperationDate?: UAProperty<Date, DataType.DateTime>;
26
+ /**
27
+ * manufacturer
28
+ * A human-readable, localized name of the
29
+ * manufacturer of the MachineryItem.
30
+ */
31
+ manufacturer: UAProperty<LocalizedText, DataType.LocalizedText>;
32
+ /**
33
+ * monthOfConstruction
34
+ * The month in which the manufacturing process of
35
+ * the MachineryItem has been completed. It shall be
36
+ * a number between 1 and 12, representing the month
37
+ * from January to December.
38
+ */
39
+ monthOfConstruction?: UAProperty<Byte, DataType.Byte>;
40
+ /**
41
+ * serialNumber
42
+ * A string containing a unique production number of
43
+ * the manufacturer of the MachineryItem. The global
44
+ * uniqueness of the serial number is only given in
45
+ * the context of the manufacturer, and potentially
46
+ * the model. The value shall not change during the
47
+ * life-cycle of the MachineryItem.
48
+ */
49
+ serialNumber: UAProperty<UAString, DataType.String>;
50
+ /**
51
+ * yearOfConstruction
52
+ * The year (Gregorian calendar) in which the
53
+ * manufacturing process of the MachineryItem has
54
+ * been completed. It shall be a four-digit number
55
+ * and never change during the life-cycle of a
56
+ * MachineryItem.
57
+ */
58
+ yearOfConstruction?: UAProperty<UInt16, DataType.UInt16>;
59
+ }
60
+ export interface UAIMachineryItemVendorNameplate extends Omit<UAIVendorNameplate, "manufacturer" | "serialNumber">, UAIMachineryItemVendorNameplate_Base {
61
+ }
@@ -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_i_machinery_item_vendor_nameplate.js.map
@@ -1,31 +1,31 @@
1
- import { UAObject, UAProperty } from "node-opcua-address-space-base";
2
- import { DataType } from "node-opcua-variant";
3
- import { QualifiedName } from "node-opcua-data-model";
4
- import { UAMachineryItemIdentification } from "./ua_machinery_item_identification";
5
- export interface UAMachineComponents_$Component$ extends UAObject {
6
- /**
7
- * identification
8
- * Contains information about the identification and
9
- * nameplate of a MachineryItem
10
- */
11
- identification: UAMachineryItemIdentification;
12
- }
13
- /**
14
- * Contains all identifiable components of a machine
15
- *
16
- * | | |
17
- * |----------------|--------------------------------------------------|
18
- * |namespace |http://opcfoundation.org/UA/Machinery/ |
19
- * |nodeClass |ObjectType |
20
- * |typedDefinition |8:MachineComponentsType ns=8;i=1006 |
21
- * |isAbstract |false |
22
- */
23
- export interface UAMachineComponents_Base {
24
- /**
25
- * defaultInstanceBrowseName
26
- * The default BrowseName for instances of the type.
27
- */
28
- defaultInstanceBrowseName: UAProperty<QualifiedName, DataType.QualifiedName>;
29
- }
30
- export interface UAMachineComponents extends UAObject, UAMachineComponents_Base {
31
- }
1
+ import { UAObject, UAProperty } from "node-opcua-address-space-base";
2
+ import { DataType } from "node-opcua-variant";
3
+ import { QualifiedName } from "node-opcua-data-model";
4
+ import { UAMachineryItemIdentification } from "./ua_machinery_item_identification";
5
+ export interface UAMachineComponents_$Component$ extends UAObject {
6
+ /**
7
+ * identification
8
+ * Contains information about the identification and
9
+ * nameplate of a MachineryItem
10
+ */
11
+ identification: UAMachineryItemIdentification;
12
+ }
13
+ /**
14
+ * Contains all identifiable components of a machine
15
+ *
16
+ * | | |
17
+ * |----------------|--------------------------------------------------|
18
+ * |namespace |http://opcfoundation.org/UA/Machinery/ |
19
+ * |nodeClass |ObjectType |
20
+ * |typedDefinition |8:MachineComponentsType ns=8;i=1006 |
21
+ * |isAbstract |false |
22
+ */
23
+ export interface UAMachineComponents_Base {
24
+ /**
25
+ * defaultInstanceBrowseName
26
+ * The default BrowseName for instances of the type.
27
+ */
28
+ defaultInstanceBrowseName: UAProperty<QualifiedName, DataType.QualifiedName>;
29
+ }
30
+ export interface UAMachineComponents extends UAObject, UAMachineComponents_Base {
31
+ }
@@ -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_machine_components.js.map
@@ -1,42 +1,42 @@
1
- import { UAProperty } from "node-opcua-address-space-base";
2
- import { DataType } from "node-opcua-variant";
3
- import { QualifiedName } from "node-opcua-data-model";
4
- import { UAString } from "node-opcua-basic-types";
5
- import { UAMachineryItemIdentification, UAMachineryItemIdentification_Base } from "./ua_machinery_item_identification";
6
- /**
7
- * Contains information about the identification and
8
- * nameplate of a machine
9
- *
10
- * | | |
11
- * |----------------|--------------------------------------------------|
12
- * |namespace |http://opcfoundation.org/UA/Machinery/ |
13
- * |nodeClass |ObjectType |
14
- * |typedDefinition |8:MachineIdentificationType ns=8;i=1012 |
15
- * |isAbstract |false |
16
- */
17
- export interface UAMachineIdentification_Base extends UAMachineryItemIdentification_Base {
18
- /**
19
- * defaultInstanceBrowseName
20
- * The default BrowseName for instances of the type.
21
- */
22
- defaultInstanceBrowseName: UAProperty<QualifiedName, DataType.QualifiedName>;
23
- /**
24
- * location
25
- * To be used by end users to store the location of
26
- * the machine in a scheme specific to the end user.
27
- * Servers shall support at least 60 Unicode
28
- * characters for the clients writing this value,
29
- * this means clients can expect to be able to write
30
- * strings with a length of 60 Unicode characters
31
- * into that field.
32
- */
33
- location?: UAProperty<UAString, DataType.String>;
34
- /**
35
- * productInstanceUri
36
- * A globally unique resource identifier provided by
37
- * the manufacturer of the machine
38
- */
39
- productInstanceUri: UAProperty<UAString, DataType.String>;
40
- }
41
- export interface UAMachineIdentification extends Omit<UAMachineryItemIdentification, "productInstanceUri">, UAMachineIdentification_Base {
42
- }
1
+ import { UAProperty } from "node-opcua-address-space-base";
2
+ import { DataType } from "node-opcua-variant";
3
+ import { QualifiedName } from "node-opcua-data-model";
4
+ import { UAString } from "node-opcua-basic-types";
5
+ import { UAMachineryItemIdentification, UAMachineryItemIdentification_Base } from "./ua_machinery_item_identification";
6
+ /**
7
+ * Contains information about the identification and
8
+ * nameplate of a machine
9
+ *
10
+ * | | |
11
+ * |----------------|--------------------------------------------------|
12
+ * |namespace |http://opcfoundation.org/UA/Machinery/ |
13
+ * |nodeClass |ObjectType |
14
+ * |typedDefinition |8:MachineIdentificationType ns=8;i=1012 |
15
+ * |isAbstract |false |
16
+ */
17
+ export interface UAMachineIdentification_Base extends UAMachineryItemIdentification_Base {
18
+ /**
19
+ * defaultInstanceBrowseName
20
+ * The default BrowseName for instances of the type.
21
+ */
22
+ defaultInstanceBrowseName: UAProperty<QualifiedName, DataType.QualifiedName>;
23
+ /**
24
+ * location
25
+ * To be used by end users to store the location of
26
+ * the machine in a scheme specific to the end user.
27
+ * Servers shall support at least 60 Unicode
28
+ * characters for the clients writing this value,
29
+ * this means clients can expect to be able to write
30
+ * strings with a length of 60 Unicode characters
31
+ * into that field.
32
+ */
33
+ location?: UAProperty<UAString, DataType.String>;
34
+ /**
35
+ * productInstanceUri
36
+ * A globally unique resource identifier provided by
37
+ * the manufacturer of the machine
38
+ */
39
+ productInstanceUri: UAProperty<UAString, DataType.String>;
40
+ }
41
+ export interface UAMachineIdentification extends Omit<UAMachineryItemIdentification, "productInstanceUri">, UAMachineIdentification_Base {
42
+ }
@@ -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_machine_identification.js.map
@@ -1,35 +1,35 @@
1
- import { UAProperty } from "node-opcua-address-space-base";
2
- import { DataType } from "node-opcua-variant";
3
- import { QualifiedName } from "node-opcua-data-model";
4
- import { UAString } from "node-opcua-basic-types";
5
- import { UAMachineryItemIdentification, UAMachineryItemIdentification_Base } from "./ua_machinery_item_identification";
6
- /**
7
- * Contains information about the identification and
8
- * nameplate of a component
9
- *
10
- * | | |
11
- * |----------------|--------------------------------------------------|
12
- * |namespace |http://opcfoundation.org/UA/Machinery/ |
13
- * |nodeClass |ObjectType |
14
- * |typedDefinition |8:MachineryComponentIdentificationType ns=8;i=1005|
15
- * |isAbstract |false |
16
- */
17
- export interface UAMachineryComponentIdentification_Base extends UAMachineryItemIdentification_Base {
18
- /**
19
- * defaultInstanceBrowseName
20
- * The default BrowseName for instances of the type.
21
- */
22
- defaultInstanceBrowseName: UAProperty<QualifiedName, DataType.QualifiedName>;
23
- /**
24
- * deviceRevision
25
- * A string representation of the overall revision
26
- * level of the component. Often, it is increased
27
- * when either the SoftwareRevision and / or the
28
- * HardwareRevision of the component is increased.
29
- * As an example, it can be used in ERP systems
30
- * together with the ProductCode.
31
- */
32
- deviceRevision?: UAProperty<UAString, DataType.String>;
33
- }
34
- export interface UAMachineryComponentIdentification extends UAMachineryItemIdentification, UAMachineryComponentIdentification_Base {
35
- }
1
+ import { UAProperty } from "node-opcua-address-space-base";
2
+ import { DataType } from "node-opcua-variant";
3
+ import { QualifiedName } from "node-opcua-data-model";
4
+ import { UAString } from "node-opcua-basic-types";
5
+ import { UAMachineryItemIdentification, UAMachineryItemIdentification_Base } from "./ua_machinery_item_identification";
6
+ /**
7
+ * Contains information about the identification and
8
+ * nameplate of a component
9
+ *
10
+ * | | |
11
+ * |----------------|--------------------------------------------------|
12
+ * |namespace |http://opcfoundation.org/UA/Machinery/ |
13
+ * |nodeClass |ObjectType |
14
+ * |typedDefinition |8:MachineryComponentIdentificationType ns=8;i=1005|
15
+ * |isAbstract |false |
16
+ */
17
+ export interface UAMachineryComponentIdentification_Base extends UAMachineryItemIdentification_Base {
18
+ /**
19
+ * defaultInstanceBrowseName
20
+ * The default BrowseName for instances of the type.
21
+ */
22
+ defaultInstanceBrowseName: UAProperty<QualifiedName, DataType.QualifiedName>;
23
+ /**
24
+ * deviceRevision
25
+ * A string representation of the overall revision
26
+ * level of the component. Often, it is increased
27
+ * when either the SoftwareRevision and / or the
28
+ * HardwareRevision of the component is increased.
29
+ * As an example, it can be used in ERP systems
30
+ * together with the ProductCode.
31
+ */
32
+ deviceRevision?: UAProperty<UAString, DataType.String>;
33
+ }
34
+ export interface UAMachineryComponentIdentification extends UAMachineryItemIdentification, UAMachineryComponentIdentification_Base {
35
+ }
@@ -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_machinery_component_identification.js.map