node-opcua-nodeset-gds 2.66.2 → 2.67.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.
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { Variant } from "node-opcua-variant";
|
|
2
1
|
import { LocalizedText } from "node-opcua-data-model";
|
|
3
2
|
import { NodeId } from "node-opcua-nodeid";
|
|
4
3
|
import { UAString } from "node-opcua-basic-types";
|
|
5
4
|
import { DTStructure } from "node-opcua-nodeset-ua/source/dt_structure";
|
|
5
|
+
import { EnumApplication } from "node-opcua-nodeset-ua/source/enum_application";
|
|
6
6
|
/**
|
|
7
7
|
* | | |
|
|
8
8
|
* |-----------|--------------------------------------------------|
|
|
@@ -14,7 +14,7 @@ import { DTStructure } from "node-opcua-nodeset-ua/source/dt_structure";
|
|
|
14
14
|
export interface DTApplicationRecord extends DTStructure {
|
|
15
15
|
applicationId: NodeId;
|
|
16
16
|
applicationUri: UAString;
|
|
17
|
-
applicationType:
|
|
17
|
+
applicationType: EnumApplication;
|
|
18
18
|
applicationNames: LocalizedText[];
|
|
19
19
|
productUri: UAString;
|
|
20
20
|
discoveryUrls: UAString[];
|
package/dist/index.js
CHANGED
|
@@ -1,11 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
3
|
if (k2 === undefined) k2 = k;
|
|
4
|
-
|
|
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);
|
|
4
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
9
5
|
}) : (function(o, m, k, k2) {
|
|
10
6
|
if (k2 === undefined) k2 = k;
|
|
11
7
|
o[k2] = m[k];
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../source/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../source/index.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,0DAAwC;AACxC,uEAAqD;AACrD,oFAAkE;AAClE,6DAA2C;AAC3C,qEAAmD;AACnD,yEAAuD;AACvD,6DAA2C;AAC3C,yEAAuD;AACvD,iDAA+B;AAC/B,4EAA0D;AAC1D,wEAAsD;AACtD,4EAA0D;AAC1D,0EAAwD;AACxD,8DAA4C"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-opcua-nodeset-gds",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.67.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -10,13 +10,13 @@
|
|
|
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-nodeid": "2.
|
|
17
|
-
"node-opcua-nodeset-ua": "2.
|
|
18
|
-
"node-opcua-status-code": "2.
|
|
19
|
-
"node-opcua-variant": "2.
|
|
13
|
+
"node-opcua-address-space-base": "2.67.1",
|
|
14
|
+
"node-opcua-basic-types": "2.67.0",
|
|
15
|
+
"node-opcua-data-model": "2.67.0",
|
|
16
|
+
"node-opcua-nodeid": "2.67.0",
|
|
17
|
+
"node-opcua-nodeset-ua": "2.67.1",
|
|
18
|
+
"node-opcua-status-code": "2.67.0",
|
|
19
|
+
"node-opcua-variant": "2.67.0"
|
|
20
20
|
},
|
|
21
|
-
"gitHead": "
|
|
21
|
+
"gitHead": "e6ea08f7a92fdf27240c5ed1bb567c6630eaf863"
|
|
22
22
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
|
-
import { Variant } from "node-opcua-variant"
|
|
3
2
|
import { LocalizedText } from "node-opcua-data-model"
|
|
4
3
|
import { NodeId } from "node-opcua-nodeid"
|
|
5
4
|
import { UAString } from "node-opcua-basic-types"
|
|
6
5
|
import { DTStructure } from "node-opcua-nodeset-ua/source/dt_structure"
|
|
6
|
+
import { EnumApplication } from "node-opcua-nodeset-ua/source/enum_application"
|
|
7
7
|
/**
|
|
8
8
|
* | | |
|
|
9
9
|
* |-----------|--------------------------------------------------|
|
|
@@ -15,7 +15,7 @@ import { DTStructure } from "node-opcua-nodeset-ua/source/dt_structure"
|
|
|
15
15
|
export interface DTApplicationRecord extends DTStructure {
|
|
16
16
|
applicationId: NodeId; // NodeId ns=0;i=17
|
|
17
17
|
applicationUri: UAString; // String ns=0;i=12
|
|
18
|
-
applicationType:
|
|
18
|
+
applicationType: EnumApplication; // Int32 ns=0;i=307
|
|
19
19
|
applicationNames: LocalizedText[]; // LocalizedText ns=0;i=21
|
|
20
20
|
productUri: UAString; // String ns=0;i=12
|
|
21
21
|
discoveryUrls: UAString[]; // String ns=0;i=12
|