node-opcua-nodeset-gds 2.76.2 → 2.78.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/dist/dt_application_record.d.ts +3 -0
- package/dist/dt_application_record.js +1 -0
- package/dist/dt_application_record.js.map +1 -1
- package/package.json +10 -9
- package/source/dt_application_record.ts +3 -1
- package/source/ua_certificate_directory.ts +1 -1
- package/source/ua_directory.ts +1 -1
- package/source/ua_key_credential_requested_audit_event.ts +1 -1
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { LocalizedText } from "node-opcua-data-model";
|
|
2
2
|
import { NodeId } from "node-opcua-nodeid";
|
|
3
3
|
import { UAString } from "node-opcua-basic-types";
|
|
4
|
+
import { ExtensionObject } from "node-opcua-extension-object";
|
|
4
5
|
import { DTStructure } from "node-opcua-nodeset-ua/source/dt_structure";
|
|
5
6
|
import { EnumApplication } from "node-opcua-nodeset-ua/source/enum_application";
|
|
6
7
|
/**
|
|
@@ -20,3 +21,5 @@ export interface DTApplicationRecord extends DTStructure {
|
|
|
20
21
|
discoveryUrls: UAString[];
|
|
21
22
|
serverCapabilities: UAString[];
|
|
22
23
|
}
|
|
24
|
+
export interface UDTApplicationRecord extends ExtensionObject, DTApplicationRecord {
|
|
25
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dt_application_record.js","sourceRoot":"","sources":["../source/dt_application_record.ts"],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"dt_application_record.js","sourceRoot":"","sources":["../source/dt_application_record.ts"],"names":[],"mappings":";;AAwBqF,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-opcua-nodeset-gds",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.78.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -10,13 +10,14 @@
|
|
|
10
10
|
"author": "etienne.rossignon@sterfive.com",
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"node-opcua-address-space-base": "2.
|
|
14
|
-
"node-opcua-basic-types": "2.
|
|
15
|
-
"node-opcua-data-model": "2.
|
|
16
|
-
"node-opcua-
|
|
17
|
-
"node-opcua-
|
|
18
|
-
"node-opcua-
|
|
19
|
-
"node-opcua-
|
|
13
|
+
"node-opcua-address-space-base": "2.78.0",
|
|
14
|
+
"node-opcua-basic-types": "2.77.0",
|
|
15
|
+
"node-opcua-data-model": "2.78.0",
|
|
16
|
+
"node-opcua-extension-object": "2.78.0",
|
|
17
|
+
"node-opcua-nodeid": "2.77.0",
|
|
18
|
+
"node-opcua-nodeset-ua": "2.78.0",
|
|
19
|
+
"node-opcua-status-code": "2.77.0",
|
|
20
|
+
"node-opcua-variant": "2.78.0"
|
|
20
21
|
},
|
|
21
|
-
"gitHead": "
|
|
22
|
+
"gitHead": "31c6eee3c51f52427584364fff2fdb07bbac65be"
|
|
22
23
|
}
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
import { LocalizedText } from "node-opcua-data-model"
|
|
3
3
|
import { NodeId } from "node-opcua-nodeid"
|
|
4
4
|
import { UAString } from "node-opcua-basic-types"
|
|
5
|
+
import { ExtensionObject } from "node-opcua-extension-object"
|
|
5
6
|
import { DTStructure } from "node-opcua-nodeset-ua/source/dt_structure"
|
|
6
7
|
import { EnumApplication } from "node-opcua-nodeset-ua/source/enum_application"
|
|
7
8
|
/**
|
|
@@ -20,4 +21,5 @@ export interface DTApplicationRecord extends DTStructure {
|
|
|
20
21
|
productUri: UAString; // String ns=0;i=12
|
|
21
22
|
discoveryUrls: UAString[]; // String ns=0;i=12
|
|
22
23
|
serverCapabilities: UAString[]; // String ns=0;i=12
|
|
23
|
-
}
|
|
24
|
+
}
|
|
25
|
+
export interface UDTApplicationRecord extends ExtensionObject, DTApplicationRecord {};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
import { UAMethod } from "node-opcua-address-space-base"
|
|
3
|
-
import { DataType } from "node-opcua-variant"
|
|
3
|
+
import { DataType, VariantOptions } from "node-opcua-variant"
|
|
4
4
|
import { LocalizedText, QualifiedName } from "node-opcua-data-model"
|
|
5
5
|
import { NodeId } from "node-opcua-nodeid"
|
|
6
6
|
import { StatusCode } from "node-opcua-status-code"
|
package/source/ua_directory.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
import { UAMethod } from "node-opcua-address-space-base"
|
|
3
|
-
import { DataType } from "node-opcua-variant"
|
|
3
|
+
import { DataType, VariantOptions } from "node-opcua-variant"
|
|
4
4
|
import { DTArgument } from "node-opcua-nodeset-ua/source/dt_argument"
|
|
5
5
|
import { UAFolder, UAFolder_Base } from "node-opcua-nodeset-ua/source/ua_folder"
|
|
6
6
|
/**
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
|
-
import { DataType } from "node-opcua-variant"
|
|
2
|
+
import { DataType, VariantOptions } from "node-opcua-variant"
|
|
3
3
|
import { NodeId } from "node-opcua-nodeid"
|
|
4
4
|
import { UAString } from "node-opcua-basic-types"
|
|
5
5
|
import { UAKeyCredentialAuditEvent, UAKeyCredentialAuditEvent_Base } from "node-opcua-nodeset-ua/source/ua_key_credential_audit_event"
|