node-opcua-nodeset-i-4-aas 2.177.0
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/LICENSE +23 -0
- package/package.json +38 -0
- package/source/dt_aas_key.ts +24 -0
- package/source/enum_aas_asset_kind.ts +33 -0
- package/source/enum_aas_category.ts +28 -0
- package/source/enum_aas_data_type_iec_61360.ts +27 -0
- package/source/enum_aas_entity_type.ts +30 -0
- package/source/enum_aas_identifier_type.ts +27 -0
- package/source/enum_aas_key_elements.ts +108 -0
- package/source/enum_aas_key_type.ts +32 -0
- package/source/enum_aas_level_type.ts +28 -0
- package/source/enum_aas_modeling_kind.ts +34 -0
- package/source/enum_aas_value_type.ts +28 -0
- package/source/index.ts +43 -0
- package/source/ua_aas_administrative_information.ts +19 -0
- package/source/ua_aas_annotated_relationship_element.ts +25 -0
- package/source/ua_aas_asset.ts +23 -0
- package/source/ua_aas_asset_administration_shell.ts +25 -0
- package/source/ua_aas_blob.ts +18 -0
- package/source/ua_aas_capability.ts +13 -0
- package/source/ua_aas_concept_dictionary.ts +7 -0
- package/source/ua_aas_custom_concept_description.ts +13 -0
- package/source/ua_aas_data_specification.ts +7 -0
- package/source/ua_aas_data_specification_iec_61360.ts +44 -0
- package/source/ua_aas_entity.ts +30 -0
- package/source/ua_aas_event.ts +13 -0
- package/source/ua_aas_file.ts +23 -0
- package/source/ua_aas_identifier.ts +21 -0
- package/source/ua_aas_irdi_concept_description.ts +13 -0
- package/source/ua_aas_iri_concept_description.ts +13 -0
- package/source/ua_aas_multi_language_property.ts +22 -0
- package/source/ua_aas_operation.ts +13 -0
- package/source/ua_aas_ordered_submodel_element_collection.ts +24 -0
- package/source/ua_aas_property.ts +23 -0
- package/source/ua_aas_qualifier.ts +24 -0
- package/source/ua_aas_range.ts +22 -0
- package/source/ua_aas_reference.ts +20 -0
- package/source/ua_aas_reference_element.ts +17 -0
- package/source/ua_aas_relationship_element.ts +18 -0
- package/source/ua_aas_submodel.ts +29 -0
- package/source/ua_aas_submodel_element.ts +23 -0
- package/source/ua_aas_submodel_element_collection.ts +27 -0
- package/source/ua_aas_view.ts +13 -0
- package/source/ua_iaas_identifiable.ts +19 -0
- package/source/ua_iaas_referable.ts +19 -0
- package/source/ua_value_list.ts +7 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
|
|
2
|
+
The MIT License (MIT)
|
|
3
|
+
|
|
4
|
+
Copyright (c) 2022-2026 Sterfive SAS - 833264583 RCS ORLEANS - France (https://www.sterfive.com)
|
|
5
|
+
|
|
6
|
+
Copyright (c) 2014-2022 Etienne Rossignon
|
|
7
|
+
|
|
8
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
9
|
+
this software and associated documentation files (the "Software"), to deal in
|
|
10
|
+
the Software without restriction, including without limitation the rights to
|
|
11
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
12
|
+
the Software, and to permit persons to whom the Software is furnished to do so,
|
|
13
|
+
subject to the following conditions:
|
|
14
|
+
|
|
15
|
+
The above copyright notice and this permission notice shall be included in all
|
|
16
|
+
copies or substantial portions of the Software.
|
|
17
|
+
|
|
18
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
19
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
20
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
21
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
22
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
23
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
package/package.json
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "node-opcua-nodeset-i-4-aas",
|
|
3
|
+
"version": "2.177.0",
|
|
4
|
+
"description": "pure nodejs OPCUA SDK - module node-opcua-nodeset-i-4-aas",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"clean": "npx rimraf -g dist *.tsbuildinfo",
|
|
9
|
+
"build": "tsc -b"
|
|
10
|
+
},
|
|
11
|
+
"author": "Etienne Rossignon <etienne.rossignon@sterfive.com>",
|
|
12
|
+
"license": "MIT",
|
|
13
|
+
"dependencies": {
|
|
14
|
+
"node-opcua-address-space-base": "2.177.0",
|
|
15
|
+
"node-opcua-basic-types": "2.177.0",
|
|
16
|
+
"node-opcua-data-model": "2.177.0",
|
|
17
|
+
"node-opcua-extension-object": "2.177.0",
|
|
18
|
+
"node-opcua-nodeset-ua": "2.177.0",
|
|
19
|
+
"node-opcua-variant": "2.177.0"
|
|
20
|
+
},
|
|
21
|
+
"files": [
|
|
22
|
+
"dist",
|
|
23
|
+
"source"
|
|
24
|
+
],
|
|
25
|
+
"repository": {
|
|
26
|
+
"type": "git",
|
|
27
|
+
"url": "git://github.com/node-opcua/node-opcua.git"
|
|
28
|
+
},
|
|
29
|
+
"keywords": [
|
|
30
|
+
"OPCUA",
|
|
31
|
+
"opcua",
|
|
32
|
+
"m2m",
|
|
33
|
+
"iot",
|
|
34
|
+
"opc ua",
|
|
35
|
+
"internet of things"
|
|
36
|
+
],
|
|
37
|
+
"homepage": "http://node-opcua.github.io/"
|
|
38
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { UAString } from "node-opcua-basic-types";
|
|
2
|
+
import type { ExtensionObject } from "node-opcua-extension-object";
|
|
3
|
+
import type { DTStructure } from "node-opcua-nodeset-ua/dist/dt_structure";
|
|
4
|
+
|
|
5
|
+
import type { EnumAASKeyElements } from "./enum_aas_key_elements";
|
|
6
|
+
import type { EnumAASKeyType } from "./enum_aas_key_type";
|
|
7
|
+
|
|
8
|
+
// ----- this file has been automatically generated - do not edit
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* | | |
|
|
12
|
+
* |-----------|------------------------------------------------------------|
|
|
13
|
+
* | namespace |http://opcfoundation.org/UA/I4AAS/ |
|
|
14
|
+
* | nodeClass |DataType |
|
|
15
|
+
* | name |AASKeyDataType |
|
|
16
|
+
* | isAbstract|false |
|
|
17
|
+
*/
|
|
18
|
+
export interface DTAASKey extends DTStructure {
|
|
19
|
+
type: EnumAASKeyElements; // Int32 ns=29;i=3012
|
|
20
|
+
local: boolean; // Boolean ns=0;i=1
|
|
21
|
+
value: UAString; // String ns=0;i=12
|
|
22
|
+
idType: EnumAASKeyType; // Int32 ns=29;i=3002
|
|
23
|
+
}
|
|
24
|
+
export interface UDTAASKey extends ExtensionObject, DTAASKey {};
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
// ----- this file has been automatically generated - do not edit
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* | | |
|
|
5
|
+
* |-----------|------------------------------------------------------------|
|
|
6
|
+
* | namespace |http://opcfoundation.org/UA/I4AAS/ |
|
|
7
|
+
* | nodeClass |DataType |
|
|
8
|
+
* | name |AASAssetKindDataType |
|
|
9
|
+
* | isAbstract|false |
|
|
10
|
+
*/
|
|
11
|
+
export enum EnumAASAssetKind {
|
|
12
|
+
/**
|
|
13
|
+
* hardware or software element which specifies the
|
|
14
|
+
* common attributes shared by all instances of the
|
|
15
|
+
* type
|
|
16
|
+
* [SOURCE: IEC TR 62390:2005-01, 3.1.25]
|
|
17
|
+
*/
|
|
18
|
+
Type = 0,
|
|
19
|
+
/**
|
|
20
|
+
* concrete, clearly identifiable component of a
|
|
21
|
+
* certain type
|
|
22
|
+
*
|
|
23
|
+
* Note: It becomes an individual entity of a type,
|
|
24
|
+
* for example a device, by defining specific
|
|
25
|
+
* property values.
|
|
26
|
+
*
|
|
27
|
+
* Note: In an object-oriented view, an instance
|
|
28
|
+
* denotes an object of a class (of a type).
|
|
29
|
+
*
|
|
30
|
+
* [SOURCE: IEC 62890:2016, 3.1.16] 65/617/CDV
|
|
31
|
+
*/
|
|
32
|
+
Instance = 1,
|
|
33
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
// ----- this file has been automatically generated - do not edit
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* | | |
|
|
5
|
+
* |-----------|------------------------------------------------------------|
|
|
6
|
+
* | namespace |http://opcfoundation.org/UA/I4AAS/ |
|
|
7
|
+
* | nodeClass |DataType |
|
|
8
|
+
* | name |AASCategoryDataType |
|
|
9
|
+
* | isAbstract|false |
|
|
10
|
+
*/
|
|
11
|
+
export enum EnumAASCategory {
|
|
12
|
+
/**
|
|
13
|
+
* Constant
|
|
14
|
+
*/
|
|
15
|
+
CONSTANT = 0,
|
|
16
|
+
/**
|
|
17
|
+
* Parameter
|
|
18
|
+
*/
|
|
19
|
+
PARAMETER = 1,
|
|
20
|
+
/**
|
|
21
|
+
* Variable
|
|
22
|
+
*/
|
|
23
|
+
VARIABLE = 2,
|
|
24
|
+
/**
|
|
25
|
+
* Relationship
|
|
26
|
+
*/
|
|
27
|
+
RELATIONSHIP = 3,
|
|
28
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
// ----- this file has been automatically generated - do not edit
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* | | |
|
|
5
|
+
* |-----------|------------------------------------------------------------|
|
|
6
|
+
* | namespace |http://opcfoundation.org/UA/I4AAS/ |
|
|
7
|
+
* | nodeClass |DataType |
|
|
8
|
+
* | name |AASDataTypeIEC61360DataType |
|
|
9
|
+
* | isAbstract|false |
|
|
10
|
+
*/
|
|
11
|
+
export enum EnumAASDataTypeIEC61360 {
|
|
12
|
+
BOOLEAN = 0,
|
|
13
|
+
DATE = 1,
|
|
14
|
+
RATIONAL = 2,
|
|
15
|
+
RATIONAL_MEASURE = 3,
|
|
16
|
+
REAL_COUNT = 4,
|
|
17
|
+
REAL_CURRENCY = 5,
|
|
18
|
+
REAL_MEASURE = 6,
|
|
19
|
+
STRING = 7,
|
|
20
|
+
STRING_TRANSLATABLE = 8,
|
|
21
|
+
TIME = 9,
|
|
22
|
+
TIME_STAMP = 10,
|
|
23
|
+
URL = 11,
|
|
24
|
+
INTEGER = 12,
|
|
25
|
+
INTEGER_COUNT = 13,
|
|
26
|
+
INTEGER_CURRENCY = 14,
|
|
27
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
// ----- this file has been automatically generated - do not edit
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* | | |
|
|
5
|
+
* |-----------|------------------------------------------------------------|
|
|
6
|
+
* | namespace |http://opcfoundation.org/UA/I4AAS/ |
|
|
7
|
+
* | nodeClass |DataType |
|
|
8
|
+
* | name |AASEntityTypeDataType |
|
|
9
|
+
* | isAbstract|false |
|
|
10
|
+
*/
|
|
11
|
+
export enum EnumAASEntityType {
|
|
12
|
+
/**
|
|
13
|
+
* Self-Managed Entities have their own AAS. This is
|
|
14
|
+
* why a reference to this asset is specified as
|
|
15
|
+
* well (Entity/asset). Additionally, further
|
|
16
|
+
* property statements (compare to [15]) can be
|
|
17
|
+
* added to the asset that are not specified in the
|
|
18
|
+
* AAS of the asset itself because they are
|
|
19
|
+
* specified in relation to the complex I4.0
|
|
20
|
+
* Component only.
|
|
21
|
+
*/
|
|
22
|
+
CoManagedEntity = 0,
|
|
23
|
+
/**
|
|
24
|
+
* For co-managed entities there is no separate AAS.
|
|
25
|
+
* The relationships and property statements of such
|
|
26
|
+
* entities are managed within the AAS of the
|
|
27
|
+
* composite I4.0 Component.
|
|
28
|
+
*/
|
|
29
|
+
SelfManagedEntity = 1,
|
|
30
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
// ----- this file has been automatically generated - do not edit
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* | | |
|
|
5
|
+
* |-----------|------------------------------------------------------------|
|
|
6
|
+
* | namespace |http://opcfoundation.org/UA/I4AAS/ |
|
|
7
|
+
* | nodeClass |DataType |
|
|
8
|
+
* | name |AASIdentifierTypeDataType |
|
|
9
|
+
* | isAbstract|false |
|
|
10
|
+
*/
|
|
11
|
+
export enum EnumAASIdentifierType {
|
|
12
|
+
/**
|
|
13
|
+
* IRDI according to ISO29002-5 as an Identifier
|
|
14
|
+
* scheme for properties and classifications
|
|
15
|
+
*/
|
|
16
|
+
IRDI = 0,
|
|
17
|
+
/**
|
|
18
|
+
* Internationalized Resource Identifier according
|
|
19
|
+
* to RFC3305
|
|
20
|
+
*/
|
|
21
|
+
IRI = 1,
|
|
22
|
+
/**
|
|
23
|
+
* Custom identifiers like GUIDs (globally unique
|
|
24
|
+
* Identifiers)
|
|
25
|
+
*/
|
|
26
|
+
Custom = 2,
|
|
27
|
+
}
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
// ----- this file has been automatically generated - do not edit
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* | | |
|
|
5
|
+
* |-----------|------------------------------------------------------------|
|
|
6
|
+
* | namespace |http://opcfoundation.org/UA/I4AAS/ |
|
|
7
|
+
* | nodeClass |DataType |
|
|
8
|
+
* | name |AASKeyElementsDataType |
|
|
9
|
+
* | isAbstract|false |
|
|
10
|
+
*/
|
|
11
|
+
export enum EnumAASKeyElements {
|
|
12
|
+
/**
|
|
13
|
+
* "AccessPermissionRule"
|
|
14
|
+
*/
|
|
15
|
+
AccessPermissionRule = 0,
|
|
16
|
+
/**
|
|
17
|
+
* “AnnotatedRelationshipElement”
|
|
18
|
+
*/
|
|
19
|
+
AnnotatedRelationshipElement = 1,
|
|
20
|
+
/**
|
|
21
|
+
* "Asset"
|
|
22
|
+
*/
|
|
23
|
+
Asset = 2,
|
|
24
|
+
/**
|
|
25
|
+
* "AssetAdministrationShell"
|
|
26
|
+
*/
|
|
27
|
+
AssetAdministrationShell = 3,
|
|
28
|
+
/**
|
|
29
|
+
* "Blob"
|
|
30
|
+
*/
|
|
31
|
+
Blob = 4,
|
|
32
|
+
/**
|
|
33
|
+
* "Capability"
|
|
34
|
+
*/
|
|
35
|
+
Capability = 5,
|
|
36
|
+
/**
|
|
37
|
+
* "ConceptDescription"
|
|
38
|
+
*/
|
|
39
|
+
ConceptDescription = 6,
|
|
40
|
+
/**
|
|
41
|
+
* "ConceptDictionary"
|
|
42
|
+
*/
|
|
43
|
+
ConceptDictionary = 7,
|
|
44
|
+
/**
|
|
45
|
+
* "DataElement"
|
|
46
|
+
*/
|
|
47
|
+
DataElement = 8,
|
|
48
|
+
/**
|
|
49
|
+
* "Entity"
|
|
50
|
+
*/
|
|
51
|
+
Entity = 9,
|
|
52
|
+
/**
|
|
53
|
+
* "Event"
|
|
54
|
+
*/
|
|
55
|
+
Event = 10,
|
|
56
|
+
/**
|
|
57
|
+
* "File"
|
|
58
|
+
*/
|
|
59
|
+
File = 11,
|
|
60
|
+
/**
|
|
61
|
+
* "FragmentReference"
|
|
62
|
+
*/
|
|
63
|
+
FragmentReference = 12,
|
|
64
|
+
/**
|
|
65
|
+
* "GlobalReference"
|
|
66
|
+
*/
|
|
67
|
+
GlobalReference = 13,
|
|
68
|
+
/**
|
|
69
|
+
* "MultiLanguageProperty"
|
|
70
|
+
*/
|
|
71
|
+
MultiLanguageProperty = 14,
|
|
72
|
+
/**
|
|
73
|
+
* "Operation"
|
|
74
|
+
*/
|
|
75
|
+
Operation = 15,
|
|
76
|
+
/**
|
|
77
|
+
* "Property"
|
|
78
|
+
*/
|
|
79
|
+
Property = 16,
|
|
80
|
+
/**
|
|
81
|
+
* "Range"
|
|
82
|
+
*/
|
|
83
|
+
Range = 17,
|
|
84
|
+
/**
|
|
85
|
+
* "ReferenceElement"
|
|
86
|
+
*/
|
|
87
|
+
ReferenceElement = 18,
|
|
88
|
+
/**
|
|
89
|
+
* "RelationshipElement"
|
|
90
|
+
*/
|
|
91
|
+
RelationshipElement = 19,
|
|
92
|
+
/**
|
|
93
|
+
* "Submodel"
|
|
94
|
+
*/
|
|
95
|
+
Submodel = 20,
|
|
96
|
+
/**
|
|
97
|
+
* "SubmodelElement"
|
|
98
|
+
*/
|
|
99
|
+
SubmodelElement = 21,
|
|
100
|
+
/**
|
|
101
|
+
* "SubmodelElementCollection"
|
|
102
|
+
*/
|
|
103
|
+
SubmodelElementCollection = 22,
|
|
104
|
+
/**
|
|
105
|
+
* "View"
|
|
106
|
+
*/
|
|
107
|
+
View = 23,
|
|
108
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
// ----- this file has been automatically generated - do not edit
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* | | |
|
|
5
|
+
* |-----------|------------------------------------------------------------|
|
|
6
|
+
* | namespace |http://opcfoundation.org/UA/I4AAS/ |
|
|
7
|
+
* | nodeClass |DataType |
|
|
8
|
+
* | name |AASKeyTypeDataType |
|
|
9
|
+
* | isAbstract|false |
|
|
10
|
+
*/
|
|
11
|
+
export enum EnumAASKeyType {
|
|
12
|
+
/**
|
|
13
|
+
* ...
|
|
14
|
+
*/
|
|
15
|
+
IdShort = 0,
|
|
16
|
+
/**
|
|
17
|
+
* ...
|
|
18
|
+
*/
|
|
19
|
+
FragmentId = 1,
|
|
20
|
+
/**
|
|
21
|
+
* ...
|
|
22
|
+
*/
|
|
23
|
+
Custom = 2,
|
|
24
|
+
/**
|
|
25
|
+
* ...
|
|
26
|
+
*/
|
|
27
|
+
IRDI = 3,
|
|
28
|
+
/**
|
|
29
|
+
* ...
|
|
30
|
+
*/
|
|
31
|
+
IRI = 4,
|
|
32
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
// ----- this file has been automatically generated - do not edit
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* | | |
|
|
5
|
+
* |-----------|------------------------------------------------------------|
|
|
6
|
+
* | namespace |http://opcfoundation.org/UA/I4AAS/ |
|
|
7
|
+
* | nodeClass |DataType |
|
|
8
|
+
* | name |AASLevelTypeDataType |
|
|
9
|
+
* | isAbstract|false |
|
|
10
|
+
*/
|
|
11
|
+
export enum EnumAASLevelType {
|
|
12
|
+
/**
|
|
13
|
+
* “Minimum”
|
|
14
|
+
*/
|
|
15
|
+
Min = 0,
|
|
16
|
+
/**
|
|
17
|
+
* “Maximum”
|
|
18
|
+
*/
|
|
19
|
+
Max = 1,
|
|
20
|
+
/**
|
|
21
|
+
* "Number"
|
|
22
|
+
*/
|
|
23
|
+
Num = 2,
|
|
24
|
+
/**
|
|
25
|
+
* "Type"
|
|
26
|
+
*/
|
|
27
|
+
Type = 3,
|
|
28
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
// ----- this file has been automatically generated - do not edit
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* | | |
|
|
5
|
+
* |-----------|------------------------------------------------------------|
|
|
6
|
+
* | namespace |http://opcfoundation.org/UA/I4AAS/ |
|
|
7
|
+
* | nodeClass |DataType |
|
|
8
|
+
* | name |AASModelingKindDataType |
|
|
9
|
+
* | isAbstract|false |
|
|
10
|
+
*/
|
|
11
|
+
export enum EnumAASModelingKind {
|
|
12
|
+
/**
|
|
13
|
+
* Hardware or software element which specifies the
|
|
14
|
+
* common attributes shared by all instances of the
|
|
15
|
+
* type
|
|
16
|
+
* [SOURCE: IEC TR 62390:2005-01, 3.1.25]
|
|
17
|
+
*/
|
|
18
|
+
Template = 0,
|
|
19
|
+
/**
|
|
20
|
+
* Concrete, clearly identifiable component of a
|
|
21
|
+
* certain template.
|
|
22
|
+
*
|
|
23
|
+
* Note: It becomes an individual entity of a
|
|
24
|
+
* template, for example a device model, by defining
|
|
25
|
+
* specific property values.
|
|
26
|
+
*
|
|
27
|
+
* Note: In an object oriented view, an instance
|
|
28
|
+
* denotes an object of a template (class).
|
|
29
|
+
*
|
|
30
|
+
* [SOURCE: IEC 62890:2016, 3.1.16 65/617/CDV]
|
|
31
|
+
* modified
|
|
32
|
+
*/
|
|
33
|
+
Instance = 1,
|
|
34
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
// ----- this file has been automatically generated - do not edit
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* | | |
|
|
5
|
+
* |-----------|------------------------------------------------------------|
|
|
6
|
+
* | namespace |http://opcfoundation.org/UA/I4AAS/ |
|
|
7
|
+
* | nodeClass |DataType |
|
|
8
|
+
* | name |AASValueTypeDataType |
|
|
9
|
+
* | isAbstract|false |
|
|
10
|
+
*/
|
|
11
|
+
export enum EnumAASValueType {
|
|
12
|
+
Boolean = 0,
|
|
13
|
+
SByte = 1,
|
|
14
|
+
Byte = 2,
|
|
15
|
+
Int16 = 3,
|
|
16
|
+
UInt16 = 4,
|
|
17
|
+
Int32 = 5,
|
|
18
|
+
UInt32 = 6,
|
|
19
|
+
Int64 = 7,
|
|
20
|
+
UInt64 = 8,
|
|
21
|
+
Float = 9,
|
|
22
|
+
Double = 10,
|
|
23
|
+
String = 11,
|
|
24
|
+
DateTime = 12,
|
|
25
|
+
ByteString = 13,
|
|
26
|
+
LocalizedText = 14,
|
|
27
|
+
UtcTime = 15,
|
|
28
|
+
}
|
package/source/index.ts
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
export * from "./dt_aas_key";
|
|
2
|
+
export * from "./enum_aas_asset_kind";
|
|
3
|
+
export * from "./enum_aas_category";
|
|
4
|
+
export * from "./enum_aas_data_type_iec_61360";
|
|
5
|
+
export * from "./enum_aas_entity_type";
|
|
6
|
+
export * from "./enum_aas_identifier_type";
|
|
7
|
+
export * from "./enum_aas_key_elements";
|
|
8
|
+
export * from "./enum_aas_key_type";
|
|
9
|
+
export * from "./enum_aas_level_type";
|
|
10
|
+
export * from "./enum_aas_modeling_kind";
|
|
11
|
+
export * from "./enum_aas_value_type";
|
|
12
|
+
export * from "./ua_aas_administrative_information";
|
|
13
|
+
export * from "./ua_aas_annotated_relationship_element";
|
|
14
|
+
export * from "./ua_aas_asset";
|
|
15
|
+
export * from "./ua_aas_asset_administration_shell";
|
|
16
|
+
export * from "./ua_aas_blob";
|
|
17
|
+
export * from "./ua_aas_capability";
|
|
18
|
+
export * from "./ua_aas_concept_dictionary";
|
|
19
|
+
export * from "./ua_aas_custom_concept_description";
|
|
20
|
+
export * from "./ua_aas_data_specification";
|
|
21
|
+
export * from "./ua_aas_data_specification_iec_61360";
|
|
22
|
+
export * from "./ua_aas_entity";
|
|
23
|
+
export * from "./ua_aas_event";
|
|
24
|
+
export * from "./ua_aas_file";
|
|
25
|
+
export * from "./ua_aas_identifier";
|
|
26
|
+
export * from "./ua_aas_irdi_concept_description";
|
|
27
|
+
export * from "./ua_aas_iri_concept_description";
|
|
28
|
+
export * from "./ua_aas_multi_language_property";
|
|
29
|
+
export * from "./ua_aas_operation";
|
|
30
|
+
export * from "./ua_aas_ordered_submodel_element_collection";
|
|
31
|
+
export * from "./ua_aas_property";
|
|
32
|
+
export * from "./ua_aas_qualifier";
|
|
33
|
+
export * from "./ua_aas_range";
|
|
34
|
+
export * from "./ua_aas_reference";
|
|
35
|
+
export * from "./ua_aas_reference_element";
|
|
36
|
+
export * from "./ua_aas_relationship_element";
|
|
37
|
+
export * from "./ua_aas_submodel";
|
|
38
|
+
export * from "./ua_aas_submodel_element";
|
|
39
|
+
export * from "./ua_aas_submodel_element_collection";
|
|
40
|
+
export * from "./ua_aas_view";
|
|
41
|
+
export * from "./ua_iaas_identifiable";
|
|
42
|
+
export * from "./ua_iaas_referable";
|
|
43
|
+
export * from "./ua_value_list";
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import type { UAObject, UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { UAString } from "node-opcua-basic-types";
|
|
3
|
+
import type { DataType } from "node-opcua-variant";
|
|
4
|
+
|
|
5
|
+
// ----- this file has been automatically generated - do not edit
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* | | |
|
|
9
|
+
* |----------------|------------------------------------------------------------|
|
|
10
|
+
* |namespace |http://opcfoundation.org/UA/I4AAS/ |
|
|
11
|
+
* |nodeClass |ObjectType |
|
|
12
|
+
* |typedDefinition |AASAdministrativeInformationType i=1030 |
|
|
13
|
+
* |isAbstract |false |
|
|
14
|
+
*/
|
|
15
|
+
export interface UAAASAdministrativeInformation_Base {
|
|
16
|
+
revision?: UAProperty<UAString, DataType.String>;
|
|
17
|
+
version?: UAProperty<UAString, DataType.String>;
|
|
18
|
+
}
|
|
19
|
+
export interface UAAASAdministrativeInformation extends UAObject, UAAASAdministrativeInformation_Base {}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { UAString } from "node-opcua-basic-types";
|
|
3
|
+
import type { DataType } from "node-opcua-variant";
|
|
4
|
+
|
|
5
|
+
import type { EnumAASModelingKind } from "./enum_aas_modeling_kind";
|
|
6
|
+
import type { UAAASRelationshipElement, UAAASRelationshipElement_Base } from "./ua_aas_relationship_element";
|
|
7
|
+
import type { UAAASSubmodelElement } from "./ua_aas_submodel_element";
|
|
8
|
+
|
|
9
|
+
// ----- this file has been automatically generated - do not edit
|
|
10
|
+
|
|
11
|
+
export interface UAAASAnnotatedRelationshipElement_$DataElement$ extends Omit<UAAASSubmodelElement, "category"|"modelingKind"> { // Object
|
|
12
|
+
category: UAProperty<UAString, DataType.String>;
|
|
13
|
+
idShort: UAProperty<UAString, DataType.String>;
|
|
14
|
+
modelingKind: UAProperty<EnumAASModelingKind, DataType.Int32>;
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* | | |
|
|
18
|
+
* |----------------|------------------------------------------------------------|
|
|
19
|
+
* |namespace |http://opcfoundation.org/UA/I4AAS/ |
|
|
20
|
+
* |nodeClass |ObjectType |
|
|
21
|
+
* |typedDefinition |AASAnnotatedRelationshipElementType i=1019 |
|
|
22
|
+
* |isAbstract |false |
|
|
23
|
+
*/
|
|
24
|
+
export type UAAASAnnotatedRelationshipElement_Base = UAAASRelationshipElement_Base;
|
|
25
|
+
export interface UAAASAnnotatedRelationshipElement extends UAAASRelationshipElement, UAAASAnnotatedRelationshipElement_Base {}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import type { UAObject, UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { DataType } from "node-opcua-variant";
|
|
3
|
+
|
|
4
|
+
import type { EnumAASAssetKind } from "./enum_aas_asset_kind";
|
|
5
|
+
import type { UAAASReference } from "./ua_aas_reference";
|
|
6
|
+
|
|
7
|
+
// ----- this file has been automatically generated - do not edit
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* | | |
|
|
11
|
+
* |----------------|------------------------------------------------------------|
|
|
12
|
+
* |namespace |http://opcfoundation.org/UA/I4AAS/ |
|
|
13
|
+
* |nodeClass |ObjectType |
|
|
14
|
+
* |typedDefinition |AASAssetType i=1005 |
|
|
15
|
+
* |isAbstract |false |
|
|
16
|
+
*/
|
|
17
|
+
export interface UAAASAsset_Base {
|
|
18
|
+
// PlaceHolder for $DataSpecification$
|
|
19
|
+
assetIdentificationModel?: UAAASReference;
|
|
20
|
+
assetKind: UAProperty<EnumAASAssetKind, DataType.Int32>;
|
|
21
|
+
billOfMaterial?: UAAASReference;
|
|
22
|
+
}
|
|
23
|
+
export interface UAAASAsset extends UAObject, UAAASAsset_Base {}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import type { UAObject } from "node-opcua-address-space-base";
|
|
2
|
+
|
|
3
|
+
import type { UAAASAsset } from "./ua_aas_asset";
|
|
4
|
+
import type { UAAASReference } from "./ua_aas_reference";
|
|
5
|
+
|
|
6
|
+
// ----- this file has been automatically generated - do not edit
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* | | |
|
|
10
|
+
* |----------------|------------------------------------------------------------|
|
|
11
|
+
* |namespace |http://opcfoundation.org/UA/I4AAS/ |
|
|
12
|
+
* |nodeClass |ObjectType |
|
|
13
|
+
* |typedDefinition |AASAssetAdministrationShellType i=1002 |
|
|
14
|
+
* |isAbstract |false |
|
|
15
|
+
*/
|
|
16
|
+
export interface UAAASAssetAdministrationShell_Base {
|
|
17
|
+
// PlaceHolder for $ConceptDictionary$
|
|
18
|
+
// PlaceHolder for $DataSpecification$
|
|
19
|
+
// PlaceHolder for $Submodel$
|
|
20
|
+
// PlaceHolder for $SubmodelReference$
|
|
21
|
+
// PlaceHolder for $View$
|
|
22
|
+
asset: UAAASAsset;
|
|
23
|
+
derivedFrom?: UAAASReference;
|
|
24
|
+
}
|
|
25
|
+
export interface UAAASAssetAdministrationShell extends UAObject, UAAASAssetAdministrationShell_Base {}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { UAFile } from "node-opcua-nodeset-ua/dist/ua_file";
|
|
2
|
+
|
|
3
|
+
import type { UAAASSubmodelElement, UAAASSubmodelElement_Base } from "./ua_aas_submodel_element";
|
|
4
|
+
|
|
5
|
+
// ----- this file has been automatically generated - do not edit
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* | | |
|
|
9
|
+
* |----------------|------------------------------------------------------------|
|
|
10
|
+
* |namespace |http://opcfoundation.org/UA/I4AAS/ |
|
|
11
|
+
* |nodeClass |ObjectType |
|
|
12
|
+
* |typedDefinition |AASBlobType i=1016 |
|
|
13
|
+
* |isAbstract |false |
|
|
14
|
+
*/
|
|
15
|
+
export interface UAAASBlob_Base extends UAAASSubmodelElement_Base {
|
|
16
|
+
file: UAFile;
|
|
17
|
+
}
|
|
18
|
+
export interface UAAASBlob extends UAAASSubmodelElement, UAAASBlob_Base {}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { UAAASSubmodelElement, UAAASSubmodelElement_Base } from "./ua_aas_submodel_element";
|
|
2
|
+
|
|
3
|
+
// ----- this file has been automatically generated - do not edit
|
|
4
|
+
/**
|
|
5
|
+
* | | |
|
|
6
|
+
* |----------------|------------------------------------------------------------|
|
|
7
|
+
* |namespace |http://opcfoundation.org/UA/I4AAS/ |
|
|
8
|
+
* |nodeClass |ObjectType |
|
|
9
|
+
* |typedDefinition |AASCapabilityType i=1014 |
|
|
10
|
+
* |isAbstract |false |
|
|
11
|
+
*/
|
|
12
|
+
export type UAAASCapability_Base = UAAASSubmodelElement_Base;
|
|
13
|
+
export interface UAAASCapability extends UAAASSubmodelElement, UAAASCapability_Base {}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { UAObject } from "node-opcua-address-space-base";
|
|
2
|
+
|
|
3
|
+
// ----- this file has been automatically generated - do not edit
|
|
4
|
+
|
|
5
|
+
// biome-ignore lint/suspicious/noEmptyInterface: forward-compatible placeholder for OPC-UA generated types
|
|
6
|
+
export interface UAAASConceptDictionary_Base {}
|
|
7
|
+
export interface UAAASConceptDictionary extends UAObject, UAAASConceptDictionary_Base {}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { UADictionaryEntry, UADictionaryEntry_Base } from "node-opcua-nodeset-ua/dist/ua_dictionary_entry";
|
|
2
|
+
|
|
3
|
+
// ----- this file has been automatically generated - do not edit
|
|
4
|
+
/**
|
|
5
|
+
* | | |
|
|
6
|
+
* |----------------|------------------------------------------------------------|
|
|
7
|
+
* |namespace |http://opcfoundation.org/UA/I4AAS/ |
|
|
8
|
+
* |nodeClass |ObjectType |
|
|
9
|
+
* |typedDefinition |AASCustomConceptDescriptionType i=1026 |
|
|
10
|
+
* |isAbstract |false |
|
|
11
|
+
*/
|
|
12
|
+
export type UAAASCustomConceptDescription_Base = UADictionaryEntry_Base;
|
|
13
|
+
export interface UAAASCustomConceptDescription extends UADictionaryEntry, UAAASCustomConceptDescription_Base {}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { UAObject } from "node-opcua-address-space-base";
|
|
2
|
+
|
|
3
|
+
// ----- this file has been automatically generated - do not edit
|
|
4
|
+
|
|
5
|
+
// biome-ignore lint/suspicious/noEmptyInterface: forward-compatible placeholder for OPC-UA generated types
|
|
6
|
+
export interface UAAASDataSpecification_Base {}
|
|
7
|
+
export interface UAAASDataSpecification extends UAObject, UAAASDataSpecification_Base {}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { UAString } from "node-opcua-basic-types";
|
|
3
|
+
import type { LocalizedText } from "node-opcua-data-model";
|
|
4
|
+
import type { DataType } from "node-opcua-variant";
|
|
5
|
+
|
|
6
|
+
import type { EnumAASCategory } from "./enum_aas_category";
|
|
7
|
+
import type { EnumAASDataTypeIEC61360 } from "./enum_aas_data_type_iec_61360";
|
|
8
|
+
import type { EnumAASLevelType } from "./enum_aas_level_type";
|
|
9
|
+
import type { UAAASAdministrativeInformation } from "./ua_aas_administrative_information";
|
|
10
|
+
import type { UAAASDataSpecification, UAAASDataSpecification_Base } from "./ua_aas_data_specification";
|
|
11
|
+
import type { UAAASIdentifier } from "./ua_aas_identifier";
|
|
12
|
+
import type { UAAASReference } from "./ua_aas_reference";
|
|
13
|
+
import type { UAValueList } from "./ua_value_list";
|
|
14
|
+
|
|
15
|
+
// ----- this file has been automatically generated - do not edit
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* | | |
|
|
19
|
+
* |----------------|------------------------------------------------------------|
|
|
20
|
+
* |namespace |http://opcfoundation.org/UA/I4AAS/ |
|
|
21
|
+
* |nodeClass |ObjectType |
|
|
22
|
+
* |typedDefinition |AASDataSpecificationIEC61360Type i=1028 |
|
|
23
|
+
* |isAbstract |false |
|
|
24
|
+
*/
|
|
25
|
+
export interface UAAASDataSpecificationIEC61360_Base extends UAAASDataSpecification_Base {
|
|
26
|
+
administration: UAAASAdministrativeInformation;
|
|
27
|
+
category?: UAProperty<EnumAASCategory, DataType.Int32>;
|
|
28
|
+
dataType?: UAProperty<EnumAASDataTypeIEC61360, DataType.Int32>;
|
|
29
|
+
defaultInstanceBrowseName: UAProperty<UAString, DataType.String>;
|
|
30
|
+
definition?: UAProperty<LocalizedText, DataType.LocalizedText>;
|
|
31
|
+
identification: UAAASIdentifier;
|
|
32
|
+
levelType?: UAProperty<EnumAASLevelType, DataType.Int32>;
|
|
33
|
+
preferredName: UAProperty<LocalizedText, DataType.LocalizedText>;
|
|
34
|
+
shortName?: UAProperty<LocalizedText, DataType.LocalizedText>;
|
|
35
|
+
sourceOfDefinition?: UAProperty<UAString, DataType.String>;
|
|
36
|
+
symbol?: UAProperty<UAString, DataType.String>;
|
|
37
|
+
unit?: UAProperty<UAString, DataType.String>;
|
|
38
|
+
unitId?: UAAASReference;
|
|
39
|
+
value?: UAProperty<any, any>;
|
|
40
|
+
valueFormat?: UAProperty<UAString, DataType.String>;
|
|
41
|
+
valueId?: UAAASReference;
|
|
42
|
+
valueList?: UAValueList;
|
|
43
|
+
}
|
|
44
|
+
export interface UAAASDataSpecificationIEC61360 extends UAAASDataSpecification, UAAASDataSpecificationIEC61360_Base {}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { UAString } from "node-opcua-basic-types";
|
|
3
|
+
import type { DataType } from "node-opcua-variant";
|
|
4
|
+
|
|
5
|
+
import type { EnumAASEntityType } from "./enum_aas_entity_type";
|
|
6
|
+
import type { EnumAASModelingKind } from "./enum_aas_modeling_kind";
|
|
7
|
+
import type { UAAASReference } from "./ua_aas_reference";
|
|
8
|
+
import type { UAAASSubmodelElement, UAAASSubmodelElement_Base } from "./ua_aas_submodel_element";
|
|
9
|
+
|
|
10
|
+
// ----- this file has been automatically generated - do not edit
|
|
11
|
+
|
|
12
|
+
export interface UAAASEntity_$SubmodelElement$ extends Omit<UAAASSubmodelElement, "category"|"modelingKind"> { // Object
|
|
13
|
+
category: UAProperty<UAString, DataType.String>;
|
|
14
|
+
idShort: UAProperty<UAString, DataType.String>;
|
|
15
|
+
modelingKind: UAProperty<EnumAASModelingKind, DataType.Int32>;
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* | | |
|
|
19
|
+
* |----------------|------------------------------------------------------------|
|
|
20
|
+
* |namespace |http://opcfoundation.org/UA/I4AAS/ |
|
|
21
|
+
* |nodeClass |ObjectType |
|
|
22
|
+
* |typedDefinition |AASEntityType i=1022 |
|
|
23
|
+
* |isAbstract |false |
|
|
24
|
+
*/
|
|
25
|
+
export interface UAAASEntity_Base extends UAAASSubmodelElement_Base {
|
|
26
|
+
// PlaceHolder for $SubmodelElement$
|
|
27
|
+
asset?: UAAASReference;
|
|
28
|
+
entityType: UAProperty<EnumAASEntityType, DataType.Int32>;
|
|
29
|
+
}
|
|
30
|
+
export interface UAAASEntity extends UAAASSubmodelElement, UAAASEntity_Base {}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { UAAASSubmodelElement, UAAASSubmodelElement_Base } from "./ua_aas_submodel_element";
|
|
2
|
+
|
|
3
|
+
// ----- this file has been automatically generated - do not edit
|
|
4
|
+
/**
|
|
5
|
+
* | | |
|
|
6
|
+
* |----------------|------------------------------------------------------------|
|
|
7
|
+
* |namespace |http://opcfoundation.org/UA/I4AAS/ |
|
|
8
|
+
* |nodeClass |ObjectType |
|
|
9
|
+
* |typedDefinition |AASEventType i=1021 |
|
|
10
|
+
* |isAbstract |false |
|
|
11
|
+
*/
|
|
12
|
+
export type UAAASEvent_Base = UAAASSubmodelElement_Base;
|
|
13
|
+
export interface UAAASEvent extends UAAASSubmodelElement, UAAASEvent_Base {}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { UAString } from "node-opcua-basic-types";
|
|
3
|
+
import type { UAFile } from "node-opcua-nodeset-ua/dist/ua_file";
|
|
4
|
+
import type { DataType } from "node-opcua-variant";
|
|
5
|
+
|
|
6
|
+
import type { UAAASSubmodelElement, UAAASSubmodelElement_Base } from "./ua_aas_submodel_element";
|
|
7
|
+
|
|
8
|
+
// ----- this file has been automatically generated - do not edit
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* | | |
|
|
12
|
+
* |----------------|------------------------------------------------------------|
|
|
13
|
+
* |namespace |http://opcfoundation.org/UA/I4AAS/ |
|
|
14
|
+
* |nodeClass |ObjectType |
|
|
15
|
+
* |typedDefinition |AASFileType i=1017 |
|
|
16
|
+
* |isAbstract |false |
|
|
17
|
+
*/
|
|
18
|
+
export interface UAAASFile_Base extends UAAASSubmodelElement_Base {
|
|
19
|
+
file?: UAFile;
|
|
20
|
+
mimeType: UAProperty<UAString, DataType.String>;
|
|
21
|
+
value: UAProperty<UAString, DataType.String>;
|
|
22
|
+
}
|
|
23
|
+
export interface UAAASFile extends UAAASSubmodelElement, UAAASFile_Base {}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import type { UAObject, UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { UAString } from "node-opcua-basic-types";
|
|
3
|
+
import type { DataType } from "node-opcua-variant";
|
|
4
|
+
|
|
5
|
+
import type { EnumAASIdentifierType } from "./enum_aas_identifier_type";
|
|
6
|
+
|
|
7
|
+
// ----- this file has been automatically generated - do not edit
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* | | |
|
|
11
|
+
* |----------------|------------------------------------------------------------|
|
|
12
|
+
* |namespace |http://opcfoundation.org/UA/I4AAS/ |
|
|
13
|
+
* |nodeClass |ObjectType |
|
|
14
|
+
* |typedDefinition |AASIdentifierType i=1029 |
|
|
15
|
+
* |isAbstract |false |
|
|
16
|
+
*/
|
|
17
|
+
export interface UAAASIdentifier_Base {
|
|
18
|
+
id: UAProperty<UAString, DataType.String>;
|
|
19
|
+
idType: UAProperty<EnumAASIdentifierType, DataType.Int32>;
|
|
20
|
+
}
|
|
21
|
+
export interface UAAASIdentifier extends UAObject, UAAASIdentifier_Base {}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { UAIrdiDictionaryEntry, UAIrdiDictionaryEntry_Base } from "node-opcua-nodeset-ua/dist/ua_irdi_dictionary_entry";
|
|
2
|
+
|
|
3
|
+
// ----- this file has been automatically generated - do not edit
|
|
4
|
+
/**
|
|
5
|
+
* | | |
|
|
6
|
+
* |----------------|------------------------------------------------------------|
|
|
7
|
+
* |namespace |http://opcfoundation.org/UA/I4AAS/ |
|
|
8
|
+
* |nodeClass |ObjectType |
|
|
9
|
+
* |typedDefinition |AASIrdiConceptDescriptionType i=1024 |
|
|
10
|
+
* |isAbstract |false |
|
|
11
|
+
*/
|
|
12
|
+
export type UAAASIrdiConceptDescription_Base = UAIrdiDictionaryEntry_Base;
|
|
13
|
+
export interface UAAASIrdiConceptDescription extends UAIrdiDictionaryEntry, UAAASIrdiConceptDescription_Base {}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { UAUriDictionaryEntry, UAUriDictionaryEntry_Base } from "node-opcua-nodeset-ua/dist/ua_uri_dictionary_entry";
|
|
2
|
+
|
|
3
|
+
// ----- this file has been automatically generated - do not edit
|
|
4
|
+
/**
|
|
5
|
+
* | | |
|
|
6
|
+
* |----------------|------------------------------------------------------------|
|
|
7
|
+
* |namespace |http://opcfoundation.org/UA/I4AAS/ |
|
|
8
|
+
* |nodeClass |ObjectType |
|
|
9
|
+
* |typedDefinition |AASIriConceptDescriptionType i=1025 |
|
|
10
|
+
* |isAbstract |false |
|
|
11
|
+
*/
|
|
12
|
+
export type UAAASIriConceptDescription_Base = UAUriDictionaryEntry_Base;
|
|
13
|
+
export interface UAAASIriConceptDescription extends UAUriDictionaryEntry, UAAASIriConceptDescription_Base {}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { LocalizedText } from "node-opcua-data-model";
|
|
3
|
+
import type { DataType } from "node-opcua-variant";
|
|
4
|
+
|
|
5
|
+
import type { UAAASReference } from "./ua_aas_reference";
|
|
6
|
+
import type { UAAASSubmodelElement, UAAASSubmodelElement_Base } from "./ua_aas_submodel_element";
|
|
7
|
+
|
|
8
|
+
// ----- this file has been automatically generated - do not edit
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* | | |
|
|
12
|
+
* |----------------|------------------------------------------------------------|
|
|
13
|
+
* |namespace |http://opcfoundation.org/UA/I4AAS/ |
|
|
14
|
+
* |nodeClass |ObjectType |
|
|
15
|
+
* |typedDefinition |AASMultiLanguagePropertyType i=1012 |
|
|
16
|
+
* |isAbstract |false |
|
|
17
|
+
*/
|
|
18
|
+
export interface UAAASMultiLanguageProperty_Base extends UAAASSubmodelElement_Base {
|
|
19
|
+
value?: UAProperty<LocalizedText[], DataType.LocalizedText>;
|
|
20
|
+
valueId?: UAAASReference;
|
|
21
|
+
}
|
|
22
|
+
export interface UAAASMultiLanguageProperty extends UAAASSubmodelElement, UAAASMultiLanguageProperty_Base {}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { UAAASSubmodelElement, UAAASSubmodelElement_Base } from "./ua_aas_submodel_element";
|
|
2
|
+
|
|
3
|
+
// ----- this file has been automatically generated - do not edit
|
|
4
|
+
/**
|
|
5
|
+
* | | |
|
|
6
|
+
* |----------------|------------------------------------------------------------|
|
|
7
|
+
* |namespace |http://opcfoundation.org/UA/I4AAS/ |
|
|
8
|
+
* |nodeClass |ObjectType |
|
|
9
|
+
* |typedDefinition |AASOperationType i=1015 |
|
|
10
|
+
* |isAbstract |false |
|
|
11
|
+
*/
|
|
12
|
+
export type UAAASOperation_Base = UAAASSubmodelElement_Base;
|
|
13
|
+
export interface UAAASOperation extends UAAASSubmodelElement, UAAASOperation_Base {}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { UAString } from "node-opcua-basic-types";
|
|
3
|
+
import type { DataType } from "node-opcua-variant";
|
|
4
|
+
|
|
5
|
+
import type { EnumAASModelingKind } from "./enum_aas_modeling_kind";
|
|
6
|
+
import type { UAAASSubmodelElementCollection, UAAASSubmodelElementCollection_$SubmodelElement$, UAAASSubmodelElementCollection_Base } from "./ua_aas_submodel_element_collection";
|
|
7
|
+
|
|
8
|
+
// ----- this file has been automatically generated - do not edit
|
|
9
|
+
|
|
10
|
+
export interface UAAASOrderedSubmodelElementCollection_$SubmodelElement$ extends Omit<UAAASSubmodelElementCollection_$SubmodelElement$, "category"|"modelingKind"> { // Object
|
|
11
|
+
category: UAProperty<UAString, DataType.String>;
|
|
12
|
+
idShort: UAProperty<UAString, DataType.String>;
|
|
13
|
+
modelingKind: UAProperty<EnumAASModelingKind, DataType.Int32>;
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* | | |
|
|
17
|
+
* |----------------|------------------------------------------------------------|
|
|
18
|
+
* |namespace |http://opcfoundation.org/UA/I4AAS/ |
|
|
19
|
+
* |nodeClass |ObjectType |
|
|
20
|
+
* |typedDefinition |AASOrderedSubmodelElementCollectionType i=1011 |
|
|
21
|
+
* |isAbstract |false |
|
|
22
|
+
*/
|
|
23
|
+
export type UAAASOrderedSubmodelElementCollection_Base = UAAASSubmodelElementCollection_Base;
|
|
24
|
+
export interface UAAASOrderedSubmodelElementCollection extends Omit<UAAASSubmodelElementCollection, "$SubmodelElement$">, UAAASOrderedSubmodelElementCollection_Base {}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { DataType } from "node-opcua-variant";
|
|
3
|
+
|
|
4
|
+
import type { EnumAASValueType } from "./enum_aas_value_type";
|
|
5
|
+
import type { UAAASReference } from "./ua_aas_reference";
|
|
6
|
+
import type { UAAASSubmodelElement, UAAASSubmodelElement_Base } from "./ua_aas_submodel_element";
|
|
7
|
+
|
|
8
|
+
// ----- this file has been automatically generated - do not edit
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* | | |
|
|
12
|
+
* |----------------|------------------------------------------------------------|
|
|
13
|
+
* |namespace |http://opcfoundation.org/UA/I4AAS/ |
|
|
14
|
+
* |nodeClass |ObjectType |
|
|
15
|
+
* |typedDefinition |AASPropertyType i=1013 |
|
|
16
|
+
* |isAbstract |false |
|
|
17
|
+
*/
|
|
18
|
+
export interface UAAASProperty_Base extends UAAASSubmodelElement_Base {
|
|
19
|
+
value?: UAProperty<any, any>;
|
|
20
|
+
valueId?: UAAASReference;
|
|
21
|
+
valueType: UAProperty<EnumAASValueType, DataType.Int32>;
|
|
22
|
+
}
|
|
23
|
+
export interface UAAASProperty extends UAAASSubmodelElement, UAAASProperty_Base {}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { UAObject, UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { UAString } from "node-opcua-basic-types";
|
|
3
|
+
import type { DataType } from "node-opcua-variant";
|
|
4
|
+
|
|
5
|
+
import type { EnumAASValueType } from "./enum_aas_value_type";
|
|
6
|
+
import type { UAAASReference } from "./ua_aas_reference";
|
|
7
|
+
|
|
8
|
+
// ----- this file has been automatically generated - do not edit
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* | | |
|
|
12
|
+
* |----------------|------------------------------------------------------------|
|
|
13
|
+
* |namespace |http://opcfoundation.org/UA/I4AAS/ |
|
|
14
|
+
* |nodeClass |ObjectType |
|
|
15
|
+
* |typedDefinition |AASQualifierType i=1032 |
|
|
16
|
+
* |isAbstract |false |
|
|
17
|
+
*/
|
|
18
|
+
export interface UAAASQualifier_Base {
|
|
19
|
+
type: UAProperty<UAString, DataType.String>;
|
|
20
|
+
value?: UAProperty<any, any>;
|
|
21
|
+
valueId?: UAAASReference;
|
|
22
|
+
valueType: UAProperty<EnumAASValueType, DataType.Int32>;
|
|
23
|
+
}
|
|
24
|
+
export interface UAAASQualifier extends UAObject, UAAASQualifier_Base {}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { DataType } from "node-opcua-variant";
|
|
3
|
+
|
|
4
|
+
import type { EnumAASValueType } from "./enum_aas_value_type";
|
|
5
|
+
import type { UAAASSubmodelElement, UAAASSubmodelElement_Base } from "./ua_aas_submodel_element";
|
|
6
|
+
|
|
7
|
+
// ----- this file has been automatically generated - do not edit
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* | | |
|
|
11
|
+
* |----------------|------------------------------------------------------------|
|
|
12
|
+
* |namespace |http://opcfoundation.org/UA/I4AAS/ |
|
|
13
|
+
* |nodeClass |ObjectType |
|
|
14
|
+
* |typedDefinition |AASRangeType i=1023 |
|
|
15
|
+
* |isAbstract |false |
|
|
16
|
+
*/
|
|
17
|
+
export interface UAAASRange_Base extends UAAASSubmodelElement_Base {
|
|
18
|
+
max?: UAProperty<any, any>;
|
|
19
|
+
min?: UAProperty<any, any>;
|
|
20
|
+
valueType: UAProperty<EnumAASValueType, DataType.Int32>;
|
|
21
|
+
}
|
|
22
|
+
export interface UAAASRange extends UAAASSubmodelElement, UAAASRange_Base {}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import type { UAObject, UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { DataType } from "node-opcua-variant";
|
|
3
|
+
|
|
4
|
+
import type { DTAASKey } from "./dt_aas_key";
|
|
5
|
+
|
|
6
|
+
// ----- this file has been automatically generated - do not edit
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* | | |
|
|
10
|
+
* |----------------|------------------------------------------------------------|
|
|
11
|
+
* |namespace |http://opcfoundation.org/UA/I4AAS/ |
|
|
12
|
+
* |nodeClass |ObjectType |
|
|
13
|
+
* |typedDefinition |AASReferenceType i=1004 |
|
|
14
|
+
* |isAbstract |false |
|
|
15
|
+
*/
|
|
16
|
+
export interface UAAASReference_Base {
|
|
17
|
+
// PlaceHolder for $Referable$
|
|
18
|
+
keys: UAProperty<DTAASKey[], DataType.ExtensionObject>;
|
|
19
|
+
}
|
|
20
|
+
export interface UAAASReference extends UAObject, UAAASReference_Base {}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import type { UAAASReference } from "./ua_aas_reference";
|
|
2
|
+
import type { UAAASSubmodelElement, UAAASSubmodelElement_Base } from "./ua_aas_submodel_element";
|
|
3
|
+
|
|
4
|
+
// ----- this file has been automatically generated - do not edit
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* | | |
|
|
8
|
+
* |----------------|------------------------------------------------------------|
|
|
9
|
+
* |namespace |http://opcfoundation.org/UA/I4AAS/ |
|
|
10
|
+
* |nodeClass |ObjectType |
|
|
11
|
+
* |typedDefinition |AASReferenceElementType i=1020 |
|
|
12
|
+
* |isAbstract |false |
|
|
13
|
+
*/
|
|
14
|
+
export interface UAAASReferenceElement_Base extends UAAASSubmodelElement_Base {
|
|
15
|
+
value: UAAASReference;
|
|
16
|
+
}
|
|
17
|
+
export interface UAAASReferenceElement extends UAAASSubmodelElement, UAAASReferenceElement_Base {}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { UAAASReference } from "./ua_aas_reference";
|
|
2
|
+
import type { UAAASSubmodelElement, UAAASSubmodelElement_Base } from "./ua_aas_submodel_element";
|
|
3
|
+
|
|
4
|
+
// ----- this file has been automatically generated - do not edit
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* | | |
|
|
8
|
+
* |----------------|------------------------------------------------------------|
|
|
9
|
+
* |namespace |http://opcfoundation.org/UA/I4AAS/ |
|
|
10
|
+
* |nodeClass |ObjectType |
|
|
11
|
+
* |typedDefinition |AASRelationshipElementType i=1018 |
|
|
12
|
+
* |isAbstract |false |
|
|
13
|
+
*/
|
|
14
|
+
export interface UAAASRelationshipElement_Base extends UAAASSubmodelElement_Base {
|
|
15
|
+
first: UAAASReference;
|
|
16
|
+
second: UAAASReference;
|
|
17
|
+
}
|
|
18
|
+
export interface UAAASRelationshipElement extends UAAASSubmodelElement, UAAASRelationshipElement_Base {}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import type { UAObject, UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { UAString } from "node-opcua-basic-types";
|
|
3
|
+
import type { DataType } from "node-opcua-variant";
|
|
4
|
+
|
|
5
|
+
import type { EnumAASModelingKind } from "./enum_aas_modeling_kind";
|
|
6
|
+
import type { UAAASSubmodelElement } from "./ua_aas_submodel_element";
|
|
7
|
+
|
|
8
|
+
// ----- this file has been automatically generated - do not edit
|
|
9
|
+
|
|
10
|
+
export interface UAAASSubmodel_$SubmodelElement$ extends Omit<UAAASSubmodelElement, "category"|"modelingKind"> { // Object
|
|
11
|
+
category: UAProperty<UAString, DataType.String>;
|
|
12
|
+
idShort: UAProperty<UAString, DataType.String>;
|
|
13
|
+
modelingKind: UAProperty<EnumAASModelingKind, DataType.Int32>;
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* | | |
|
|
17
|
+
* |----------------|------------------------------------------------------------|
|
|
18
|
+
* |namespace |http://opcfoundation.org/UA/I4AAS/ |
|
|
19
|
+
* |nodeClass |ObjectType |
|
|
20
|
+
* |typedDefinition |AASSubmodelType i=1006 |
|
|
21
|
+
* |isAbstract |false |
|
|
22
|
+
*/
|
|
23
|
+
export interface UAAASSubmodel_Base {
|
|
24
|
+
// PlaceHolder for $DataSpecification$
|
|
25
|
+
// PlaceHolder for $Qualifier$
|
|
26
|
+
// PlaceHolder for $SubmodelElement$
|
|
27
|
+
modelingKind: UAProperty<EnumAASModelingKind, DataType.Int32>;
|
|
28
|
+
}
|
|
29
|
+
export interface UAAASSubmodel extends UAObject, UAAASSubmodel_Base {}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import type { UAObject, UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { UAString } from "node-opcua-basic-types";
|
|
3
|
+
import type { DataType } from "node-opcua-variant";
|
|
4
|
+
|
|
5
|
+
import type { EnumAASModelingKind } from "./enum_aas_modeling_kind";
|
|
6
|
+
|
|
7
|
+
// ----- this file has been automatically generated - do not edit
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* | | |
|
|
11
|
+
* |----------------|------------------------------------------------------------|
|
|
12
|
+
* |namespace |http://opcfoundation.org/UA/I4AAS/ |
|
|
13
|
+
* |nodeClass |ObjectType |
|
|
14
|
+
* |typedDefinition |AASSubmodelElementType i=1009 |
|
|
15
|
+
* |isAbstract |true |
|
|
16
|
+
*/
|
|
17
|
+
export interface UAAASSubmodelElement_Base {
|
|
18
|
+
// PlaceHolder for $DataSpecification$
|
|
19
|
+
// PlaceHolder for $Qualifier$
|
|
20
|
+
category: UAProperty<UAString, DataType.String>;
|
|
21
|
+
modelingKind: UAProperty<EnumAASModelingKind, DataType.Int32>;
|
|
22
|
+
}
|
|
23
|
+
export interface UAAASSubmodelElement extends UAObject, UAAASSubmodelElement_Base {}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { UAString } from "node-opcua-basic-types";
|
|
3
|
+
import type { DataType } from "node-opcua-variant";
|
|
4
|
+
|
|
5
|
+
import type { EnumAASModelingKind } from "./enum_aas_modeling_kind";
|
|
6
|
+
import type { UAAASSubmodelElement, UAAASSubmodelElement_Base } from "./ua_aas_submodel_element";
|
|
7
|
+
|
|
8
|
+
// ----- this file has been automatically generated - do not edit
|
|
9
|
+
|
|
10
|
+
export interface UAAASSubmodelElementCollection_$SubmodelElement$ extends Omit<UAAASSubmodelElement, "category"|"modelingKind"> { // Object
|
|
11
|
+
category: UAProperty<UAString, DataType.String>;
|
|
12
|
+
idShort: UAProperty<UAString, DataType.String>;
|
|
13
|
+
modelingKind: UAProperty<EnumAASModelingKind, DataType.Int32>;
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* | | |
|
|
17
|
+
* |----------------|------------------------------------------------------------|
|
|
18
|
+
* |namespace |http://opcfoundation.org/UA/I4AAS/ |
|
|
19
|
+
* |nodeClass |ObjectType |
|
|
20
|
+
* |typedDefinition |AASSubmodelElementCollectionType i=1010 |
|
|
21
|
+
* |isAbstract |false |
|
|
22
|
+
*/
|
|
23
|
+
export interface UAAASSubmodelElementCollection_Base extends UAAASSubmodelElement_Base {
|
|
24
|
+
// PlaceHolder for $SubmodelElement$
|
|
25
|
+
allowDuplicates?: UAProperty<boolean, DataType.Boolean>;
|
|
26
|
+
}
|
|
27
|
+
export interface UAAASSubmodelElementCollection extends UAAASSubmodelElement, UAAASSubmodelElementCollection_Base {}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { UAFolder, UAFolder_Base } from "node-opcua-nodeset-ua/dist/ua_folder";
|
|
2
|
+
|
|
3
|
+
// ----- this file has been automatically generated - do not edit
|
|
4
|
+
/**
|
|
5
|
+
* | | |
|
|
6
|
+
* |----------------|------------------------------------------------------------|
|
|
7
|
+
* |namespace |http://opcfoundation.org/UA/I4AAS/ |
|
|
8
|
+
* |nodeClass |ObjectType |
|
|
9
|
+
* |typedDefinition |AASViewType i=1003 |
|
|
10
|
+
* |isAbstract |false |
|
|
11
|
+
*/
|
|
12
|
+
export type UAAASView_Base = UAFolder_Base;
|
|
13
|
+
export interface UAAASView extends UAFolder, UAAASView_Base {}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import type { UAAASAdministrativeInformation } from "./ua_aas_administrative_information";
|
|
2
|
+
import type { UAAASIdentifier } from "./ua_aas_identifier";
|
|
3
|
+
import type { UAIAASReferable, UAIAASReferable_Base } from "./ua_iaas_referable";
|
|
4
|
+
|
|
5
|
+
// ----- this file has been automatically generated - do not edit
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* | | |
|
|
9
|
+
* |----------------|------------------------------------------------------------|
|
|
10
|
+
* |namespace |http://opcfoundation.org/UA/I4AAS/ |
|
|
11
|
+
* |nodeClass |ObjectType |
|
|
12
|
+
* |typedDefinition |IAASIdentifiableType i=1034 |
|
|
13
|
+
* |isAbstract |false |
|
|
14
|
+
*/
|
|
15
|
+
export interface UAIAASIdentifiable_Base extends UAIAASReferable_Base {
|
|
16
|
+
administration: UAAASAdministrativeInformation;
|
|
17
|
+
identification: UAAASIdentifier;
|
|
18
|
+
}
|
|
19
|
+
export interface UAIAASIdentifiable extends UAIAASReferable, UAIAASIdentifiable_Base {}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import type { UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import type { UAString } from "node-opcua-basic-types";
|
|
3
|
+
import type { UABaseInterface, UABaseInterface_Base } from "node-opcua-nodeset-ua/dist/ua_base_interface";
|
|
4
|
+
import type { DataType } from "node-opcua-variant";
|
|
5
|
+
|
|
6
|
+
// ----- this file has been automatically generated - do not edit
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* | | |
|
|
10
|
+
* |----------------|------------------------------------------------------------|
|
|
11
|
+
* |namespace |http://opcfoundation.org/UA/I4AAS/ |
|
|
12
|
+
* |nodeClass |ObjectType |
|
|
13
|
+
* |typedDefinition |IAASReferableType i=1033 |
|
|
14
|
+
* |isAbstract |false |
|
|
15
|
+
*/
|
|
16
|
+
export interface UAIAASReferable_Base extends UABaseInterface_Base {
|
|
17
|
+
category: UAProperty<UAString, DataType.String>;
|
|
18
|
+
}
|
|
19
|
+
export interface UAIAASReferable extends UABaseInterface, UAIAASReferable_Base {}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { UAObject } from "node-opcua-address-space-base";
|
|
2
|
+
|
|
3
|
+
// ----- this file has been automatically generated - do not edit
|
|
4
|
+
|
|
5
|
+
// biome-ignore lint/suspicious/noEmptyInterface: forward-compatible placeholder for OPC-UA generated types
|
|
6
|
+
export interface UAValueList_Base {}
|
|
7
|
+
export interface UAValueList extends UAObject, UAValueList_Base {}
|