node-opcua-types 2.97.0 → 2.98.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.
- package/dist/_generated_opcua_types.d.ts +6972 -6972
- package/dist/_generated_opcua_types.js +25749 -25749
- package/dist/_generated_opcua_types.js.map +1 -1
- package/dist/generate.d.ts +1 -0
- package/dist/generate.js +41 -0
- package/dist/generate.js.map +1 -0
- package/dist/index.d.ts +4 -4
- package/dist/index.js +20 -20
- package/package.json +20 -16
- package/source/_generated_opcua_types.ts +1008 -1008
- package/xmlschemas/OPCBinarySchema.xsd +0 -149
- package/xmlschemas/Opc.Ua.Types.bsd +0 -3353
- package/xmlschemas/Opc.Ua.Types.bsd.xml +0 -1
- package/xmlschemas/Opc.Ua.Types.xsd +0 -5712
|
@@ -1,149 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8" ?>
|
|
2
|
-
<!--
|
|
3
|
-
* Copyright (c) 2005-2020 The OPC Foundation, Inc. All rights reserved.
|
|
4
|
-
*
|
|
5
|
-
* OPC Foundation MIT License 1.00
|
|
6
|
-
*
|
|
7
|
-
* Permission is hereby granted, free of charge, to any person
|
|
8
|
-
* obtaining a copy of this software and associated documentation
|
|
9
|
-
* files (the "Software"), to deal in the Software without
|
|
10
|
-
* restriction, including without limitation the rights to use,
|
|
11
|
-
* copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
12
|
-
* copies of the Software, and to permit persons to whom the
|
|
13
|
-
* Software is furnished to do so, subject to the following
|
|
14
|
-
* conditions:
|
|
15
|
-
*
|
|
16
|
-
* The above copyright notice and this permission notice shall be
|
|
17
|
-
* included in all copies or substantial portions of the Software.
|
|
18
|
-
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
19
|
-
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
|
20
|
-
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
21
|
-
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
|
22
|
-
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
23
|
-
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
24
|
-
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
25
|
-
* OTHER DEALINGS IN THE SOFTWARE.
|
|
26
|
-
*
|
|
27
|
-
* The complete license agreement can be found here:
|
|
28
|
-
* http://opcfoundation.org/License/MIT/1.00/
|
|
29
|
-
-->
|
|
30
|
-
|
|
31
|
-
<xs:schema
|
|
32
|
-
targetNamespace="http://opcfoundation.org/BinarySchema/"
|
|
33
|
-
elementFormDefault="qualified"
|
|
34
|
-
xmlns="http://opcfoundation.org/BinarySchema/"
|
|
35
|
-
xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
|
36
|
-
>
|
|
37
|
-
<xs:element name="Documentation">
|
|
38
|
-
<xs:complexType mixed="true">
|
|
39
|
-
<xs:choice minOccurs="0" maxOccurs="unbounded">
|
|
40
|
-
<xs:any minOccurs="0" maxOccurs="unbounded"/>
|
|
41
|
-
</xs:choice>
|
|
42
|
-
<xs:anyAttribute/>
|
|
43
|
-
</xs:complexType>
|
|
44
|
-
</xs:element>
|
|
45
|
-
|
|
46
|
-
<xs:complexType name="ImportDirective">
|
|
47
|
-
<xs:attribute name="Namespace" type="xs:string" use="optional" />
|
|
48
|
-
<xs:attribute name="Location" type="xs:string" use="optional" />
|
|
49
|
-
</xs:complexType>
|
|
50
|
-
|
|
51
|
-
<xs:simpleType name="ByteOrder">
|
|
52
|
-
<xs:restriction base="xs:string">
|
|
53
|
-
<xs:enumeration value="BigEndian" />
|
|
54
|
-
<xs:enumeration value="LittleEndian" />
|
|
55
|
-
</xs:restriction>
|
|
56
|
-
</xs:simpleType>
|
|
57
|
-
|
|
58
|
-
<xs:complexType name="TypeDescription">
|
|
59
|
-
<xs:sequence>
|
|
60
|
-
<xs:element ref="Documentation" minOccurs="0" maxOccurs="1" />
|
|
61
|
-
</xs:sequence>
|
|
62
|
-
<xs:attribute name="Name" type="xs:NCName" use="required" />
|
|
63
|
-
<xs:attribute name="DefaultByteOrder" type="ByteOrder" use="optional" />
|
|
64
|
-
<xs:anyAttribute processContents="lax" />
|
|
65
|
-
</xs:complexType>
|
|
66
|
-
|
|
67
|
-
<xs:complexType name="OpaqueType">
|
|
68
|
-
<xs:complexContent>
|
|
69
|
-
<xs:extension base="TypeDescription">
|
|
70
|
-
<xs:attribute name="LengthInBits" type="xs:int" use="optional" />
|
|
71
|
-
<xs:attribute name="ByteOrderSignificant" type="xs:boolean" default="false" />
|
|
72
|
-
</xs:extension>
|
|
73
|
-
</xs:complexContent>
|
|
74
|
-
</xs:complexType>
|
|
75
|
-
|
|
76
|
-
<xs:complexType name="EnumeratedValue">
|
|
77
|
-
<xs:sequence>
|
|
78
|
-
<xs:element ref="Documentation" minOccurs="0" maxOccurs="1" />
|
|
79
|
-
</xs:sequence>
|
|
80
|
-
<xs:attribute name="Name" type="xs:string" use="optional" />
|
|
81
|
-
<xs:attribute name="Value" type="xs:int" use="optional" />
|
|
82
|
-
</xs:complexType>
|
|
83
|
-
|
|
84
|
-
<xs:complexType name="EnumeratedType">
|
|
85
|
-
<xs:complexContent>
|
|
86
|
-
<xs:extension base="OpaqueType">
|
|
87
|
-
<xs:sequence>
|
|
88
|
-
<xs:element name="EnumeratedValue" type="EnumeratedValue" maxOccurs="unbounded" />
|
|
89
|
-
</xs:sequence>
|
|
90
|
-
<xs:attribute name="IsOptionSet" type="xs:boolean" default="false" />
|
|
91
|
-
</xs:extension>
|
|
92
|
-
</xs:complexContent>
|
|
93
|
-
</xs:complexType>
|
|
94
|
-
|
|
95
|
-
<xs:simpleType name="SwitchOperand">
|
|
96
|
-
<xs:restriction base="xs:string">
|
|
97
|
-
<xs:enumeration value="Equals" />
|
|
98
|
-
<xs:enumeration value="GreaterThan" />
|
|
99
|
-
<xs:enumeration value="LessThan" />
|
|
100
|
-
<xs:enumeration value="GreaterThanOrEqual" />
|
|
101
|
-
<xs:enumeration value="LessThanOrEqual" />
|
|
102
|
-
<xs:enumeration value="NotEqual" />
|
|
103
|
-
</xs:restriction>
|
|
104
|
-
</xs:simpleType>
|
|
105
|
-
|
|
106
|
-
<xs:complexType name="FieldType">
|
|
107
|
-
<xs:sequence>
|
|
108
|
-
<xs:element ref="Documentation" minOccurs="0" maxOccurs="1" />
|
|
109
|
-
</xs:sequence>
|
|
110
|
-
<xs:attribute name="Name" type="xs:string" use="required" />
|
|
111
|
-
<xs:attribute name="TypeName" type="xs:QName" use="optional" />
|
|
112
|
-
<xs:attribute name="Length" type="xs:unsignedInt" use="optional" />
|
|
113
|
-
<xs:attribute name="LengthField" type="xs:string" use="optional" />
|
|
114
|
-
<xs:attribute name="IsLengthInBytes" type="xs:boolean" default="false" />
|
|
115
|
-
<xs:attribute name="SwitchField" type="xs:string" use="optional" />
|
|
116
|
-
<xs:attribute name="SwitchValue" type="xs:unsignedInt" use="optional" />
|
|
117
|
-
<xs:attribute name="SwitchOperand" type="SwitchOperand" use="optional" />
|
|
118
|
-
<xs:attribute name="Terminator" type="xs:hexBinary" use="optional" />
|
|
119
|
-
<xs:anyAttribute processContents="lax" />
|
|
120
|
-
</xs:complexType>
|
|
121
|
-
|
|
122
|
-
<xs:complexType name="StructuredType">
|
|
123
|
-
<xs:complexContent>
|
|
124
|
-
<xs:extension base="TypeDescription">
|
|
125
|
-
<xs:sequence>
|
|
126
|
-
<xs:element name="Field" type="FieldType" minOccurs="0" maxOccurs="unbounded" />
|
|
127
|
-
</xs:sequence>
|
|
128
|
-
</xs:extension>
|
|
129
|
-
</xs:complexContent>
|
|
130
|
-
</xs:complexType>
|
|
131
|
-
|
|
132
|
-
<xs:element name="TypeDictionary">
|
|
133
|
-
<xs:complexType>
|
|
134
|
-
<xs:sequence>
|
|
135
|
-
<xs:element ref="Documentation" minOccurs="0" maxOccurs="1" />
|
|
136
|
-
<xs:element name="Import" type="ImportDirective" minOccurs="0" maxOccurs="unbounded" />
|
|
137
|
-
<xs:choice minOccurs="0" maxOccurs="unbounded">
|
|
138
|
-
<xs:element name="OpaqueType" type="OpaqueType" />
|
|
139
|
-
<xs:element name="EnumeratedType" type="EnumeratedType" />
|
|
140
|
-
<xs:element name="StructuredType" type="StructuredType" />
|
|
141
|
-
</xs:choice>
|
|
142
|
-
</xs:sequence>
|
|
143
|
-
<xs:attribute name="TargetNamespace" type="xs:string" use="required" />
|
|
144
|
-
<xs:attribute name="DefaultByteOrder" type="ByteOrder" use="optional" />
|
|
145
|
-
<xs:anyAttribute processContents="lax" />
|
|
146
|
-
</xs:complexType>
|
|
147
|
-
</xs:element>
|
|
148
|
-
|
|
149
|
-
</xs:schema>
|