node-opcua-nodeset-gds 2.102.0 → 2.103.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 +6 -6
- package/dist/ua_access_token_issued_audit_event.d.ts +6 -6
- package/dist/ua_application_registration_changed_audit_event.d.ts +6 -6
- package/dist/ua_authorization_service.d.ts +6 -6
- package/dist/ua_authorization_services_folder.d.ts +6 -6
- package/dist/ua_certificate_delivered_audit_event.d.ts +6 -6
- package/dist/ua_certificate_directory.d.ts +6 -6
- package/dist/ua_certificate_requested_audit_event.d.ts +6 -6
- package/dist/ua_directory.d.ts +6 -6
- package/dist/ua_key_credential_delivered_audit_event.d.ts +6 -6
- package/dist/ua_key_credential_management_folder.d.ts +6 -6
- package/dist/ua_key_credential_requested_audit_event.d.ts +6 -6
- package/dist/ua_key_credential_revoked_audit_event.d.ts +6 -6
- package/dist/ua_key_credential_service.d.ts +6 -6
- package/package.json +5 -4
- package/source/dt_application_record.ts +6 -6
- package/source/ua_access_token_issued_audit_event.ts +6 -6
- package/source/ua_application_registration_changed_audit_event.ts +6 -6
- package/source/ua_authorization_service.ts +6 -6
- package/source/ua_authorization_services_folder.ts +6 -6
- package/source/ua_certificate_delivered_audit_event.ts +6 -6
- package/source/ua_certificate_directory.ts +6 -6
- package/source/ua_certificate_requested_audit_event.ts +6 -6
- package/source/ua_directory.ts +6 -6
- package/source/ua_key_credential_delivered_audit_event.ts +6 -6
- package/source/ua_key_credential_management_folder.ts +6 -6
- package/source/ua_key_credential_requested_audit_event.ts +6 -6
- package/source/ua_key_credential_revoked_audit_event.ts +6 -6
- package/source/ua_key_credential_service.ts +6 -6
|
@@ -5,12 +5,12 @@ import { ExtensionObject } from "node-opcua-extension-object";
|
|
|
5
5
|
import { DTStructure } from "node-opcua-nodeset-ua/source/dt_structure";
|
|
6
6
|
import { EnumApplication } from "node-opcua-nodeset-ua/source/enum_application";
|
|
7
7
|
/**
|
|
8
|
-
* | |
|
|
9
|
-
*
|
|
10
|
-
* | namespace |http://opcfoundation.org/UA/GDS/
|
|
11
|
-
* | nodeClass |DataType
|
|
12
|
-
* | name |6:ApplicationRecordDataType
|
|
13
|
-
* | isAbstract|false
|
|
8
|
+
* | | |
|
|
9
|
+
* |-----------|------------------------------------------------------------|
|
|
10
|
+
* | namespace |http://opcfoundation.org/UA/GDS/ |
|
|
11
|
+
* | nodeClass |DataType |
|
|
12
|
+
* | name |6:ApplicationRecordDataType |
|
|
13
|
+
* | isAbstract|false |
|
|
14
14
|
*/
|
|
15
15
|
export interface DTApplicationRecord extends DTStructure {
|
|
16
16
|
applicationId: NodeId;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { UAAuditUpdateMethodEvent, UAAuditUpdateMethodEvent_Base } from "node-opcua-nodeset-ua/source/ua_audit_update_method_event";
|
|
2
2
|
/**
|
|
3
|
-
* | |
|
|
4
|
-
*
|
|
5
|
-
* |namespace |http://opcfoundation.org/UA/GDS/
|
|
6
|
-
* |nodeClass |ObjectType
|
|
7
|
-
* |typedDefinition |
|
|
8
|
-
* |isAbstract |true
|
|
3
|
+
* | | |
|
|
4
|
+
* |----------------|------------------------------------------------------------|
|
|
5
|
+
* |namespace |http://opcfoundation.org/UA/GDS/ |
|
|
6
|
+
* |nodeClass |ObjectType |
|
|
7
|
+
* |typedDefinition |AccessTokenIssuedAuditEventType i=975 |
|
|
8
|
+
* |isAbstract |true |
|
|
9
9
|
*/
|
|
10
10
|
export type UAAccessTokenIssuedAuditEvent_Base = UAAuditUpdateMethodEvent_Base;
|
|
11
11
|
export interface UAAccessTokenIssuedAuditEvent extends UAAuditUpdateMethodEvent, UAAccessTokenIssuedAuditEvent_Base {
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { UAAuditUpdateMethodEvent, UAAuditUpdateMethodEvent_Base } from "node-opcua-nodeset-ua/source/ua_audit_update_method_event";
|
|
2
2
|
/**
|
|
3
|
-
* | |
|
|
4
|
-
*
|
|
5
|
-
* |namespace |http://opcfoundation.org/UA/GDS/
|
|
6
|
-
* |nodeClass |ObjectType
|
|
7
|
-
* |typedDefinition |
|
|
8
|
-
* |isAbstract |true
|
|
3
|
+
* | | |
|
|
4
|
+
* |----------------|------------------------------------------------------------|
|
|
5
|
+
* |namespace |http://opcfoundation.org/UA/GDS/ |
|
|
6
|
+
* |nodeClass |ObjectType |
|
|
7
|
+
* |typedDefinition |ApplicationRegistrationChangedAuditEventType i=26 |
|
|
8
|
+
* |isAbstract |true |
|
|
9
9
|
*/
|
|
10
10
|
export type UAApplicationRegistrationChangedAuditEvent_Base = UAAuditUpdateMethodEvent_Base;
|
|
11
11
|
export interface UAApplicationRegistrationChangedAuditEvent extends UAAuditUpdateMethodEvent, UAApplicationRegistrationChangedAuditEvent_Base {
|
|
@@ -4,12 +4,12 @@ import { DataType } from "node-opcua-variant";
|
|
|
4
4
|
import { UAString } from "node-opcua-basic-types";
|
|
5
5
|
import { DTUserTokenPolicy } from "node-opcua-nodeset-ua/source/dt_user_token_policy";
|
|
6
6
|
/**
|
|
7
|
-
* | |
|
|
8
|
-
*
|
|
9
|
-
* |namespace |http://opcfoundation.org/UA/GDS/
|
|
10
|
-
* |nodeClass |ObjectType
|
|
11
|
-
* |typedDefinition |
|
|
12
|
-
* |isAbstract |false
|
|
7
|
+
* | | |
|
|
8
|
+
* |----------------|------------------------------------------------------------|
|
|
9
|
+
* |namespace |http://opcfoundation.org/UA/GDS/ |
|
|
10
|
+
* |nodeClass |ObjectType |
|
|
11
|
+
* |typedDefinition |AuthorizationServiceType i=966 |
|
|
12
|
+
* |isAbstract |false |
|
|
13
13
|
*/
|
|
14
14
|
export interface UAAuthorizationService_Base {
|
|
15
15
|
serviceUri: UAProperty<UAString, DataType.String>;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { UAFolder, UAFolder_Base } from "node-opcua-nodeset-ua/source/ua_folder";
|
|
2
2
|
/**
|
|
3
|
-
* | |
|
|
4
|
-
*
|
|
5
|
-
* |namespace |http://opcfoundation.org/UA/GDS/
|
|
6
|
-
* |nodeClass |ObjectType
|
|
7
|
-
* |typedDefinition |
|
|
8
|
-
* |isAbstract |false
|
|
3
|
+
* | | |
|
|
4
|
+
* |----------------|------------------------------------------------------------|
|
|
5
|
+
* |namespace |http://opcfoundation.org/UA/GDS/ |
|
|
6
|
+
* |nodeClass |ObjectType |
|
|
7
|
+
* |typedDefinition |AuthorizationServicesFolderType i=233 |
|
|
8
|
+
* |isAbstract |false |
|
|
9
9
|
*/
|
|
10
10
|
export type UAAuthorizationServicesFolder_Base = UAFolder_Base;
|
|
11
11
|
export interface UAAuthorizationServicesFolder extends UAFolder, UAAuthorizationServicesFolder_Base {
|
|
@@ -3,12 +3,12 @@ import { DataType } from "node-opcua-variant";
|
|
|
3
3
|
import { NodeId } from "node-opcua-nodeid";
|
|
4
4
|
import { UAAuditUpdateMethodEvent, UAAuditUpdateMethodEvent_Base } from "node-opcua-nodeset-ua/source/ua_audit_update_method_event";
|
|
5
5
|
/**
|
|
6
|
-
* | |
|
|
7
|
-
*
|
|
8
|
-
* |namespace |http://opcfoundation.org/UA/GDS/
|
|
9
|
-
* |nodeClass |ObjectType
|
|
10
|
-
* |typedDefinition |
|
|
11
|
-
* |isAbstract |true
|
|
6
|
+
* | | |
|
|
7
|
+
* |----------------|------------------------------------------------------------|
|
|
8
|
+
* |namespace |http://opcfoundation.org/UA/GDS/ |
|
|
9
|
+
* |nodeClass |ObjectType |
|
|
10
|
+
* |typedDefinition |CertificateDeliveredAuditEventType i=109 |
|
|
11
|
+
* |isAbstract |true |
|
|
12
12
|
*/
|
|
13
13
|
export interface UACertificateDeliveredAuditEvent_Base extends UAAuditUpdateMethodEvent_Base {
|
|
14
14
|
certificateGroup: UAProperty<NodeId, DataType.NodeId>;
|
|
@@ -2,12 +2,12 @@ import { UAMethod } from "node-opcua-address-space-base";
|
|
|
2
2
|
import { UACertificateGroupFolder } from "node-opcua-nodeset-ua/source/ua_certificate_group_folder";
|
|
3
3
|
import { UADirectory, UADirectory_Base } from "./ua_directory";
|
|
4
4
|
/**
|
|
5
|
-
* | |
|
|
6
|
-
*
|
|
7
|
-
* |namespace |http://opcfoundation.org/UA/GDS/
|
|
8
|
-
* |nodeClass |ObjectType
|
|
9
|
-
* |typedDefinition |
|
|
10
|
-
* |isAbstract |false
|
|
5
|
+
* | | |
|
|
6
|
+
* |----------------|------------------------------------------------------------|
|
|
7
|
+
* |namespace |http://opcfoundation.org/UA/GDS/ |
|
|
8
|
+
* |nodeClass |ObjectType |
|
|
9
|
+
* |typedDefinition |CertificateDirectoryType i=63 |
|
|
10
|
+
* |isAbstract |false |
|
|
11
11
|
*/
|
|
12
12
|
export interface UACertificateDirectory_Base extends UADirectory_Base {
|
|
13
13
|
startSigningRequest: UAMethod;
|
|
@@ -3,12 +3,12 @@ import { DataType } from "node-opcua-variant";
|
|
|
3
3
|
import { NodeId } from "node-opcua-nodeid";
|
|
4
4
|
import { UAAuditUpdateMethodEvent, UAAuditUpdateMethodEvent_Base } from "node-opcua-nodeset-ua/source/ua_audit_update_method_event";
|
|
5
5
|
/**
|
|
6
|
-
* | |
|
|
7
|
-
*
|
|
8
|
-
* |namespace |http://opcfoundation.org/UA/GDS/
|
|
9
|
-
* |nodeClass |ObjectType
|
|
10
|
-
* |typedDefinition |
|
|
11
|
-
* |isAbstract |true
|
|
6
|
+
* | | |
|
|
7
|
+
* |----------------|------------------------------------------------------------|
|
|
8
|
+
* |namespace |http://opcfoundation.org/UA/GDS/ |
|
|
9
|
+
* |nodeClass |ObjectType |
|
|
10
|
+
* |typedDefinition |CertificateRequestedAuditEventType i=91 |
|
|
11
|
+
* |isAbstract |true |
|
|
12
12
|
*/
|
|
13
13
|
export interface UACertificateRequestedAuditEvent_Base extends UAAuditUpdateMethodEvent_Base {
|
|
14
14
|
certificateGroup: UAProperty<NodeId, DataType.NodeId>;
|
package/dist/ua_directory.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { UAMethod } from "node-opcua-address-space-base";
|
|
2
2
|
import { UAFolder, UAFolder_Base } from "node-opcua-nodeset-ua/source/ua_folder";
|
|
3
3
|
/**
|
|
4
|
-
* | |
|
|
5
|
-
*
|
|
6
|
-
* |namespace |http://opcfoundation.org/UA/GDS/
|
|
7
|
-
* |nodeClass |ObjectType
|
|
8
|
-
* |typedDefinition |
|
|
9
|
-
* |isAbstract |false
|
|
4
|
+
* | | |
|
|
5
|
+
* |----------------|------------------------------------------------------------|
|
|
6
|
+
* |namespace |http://opcfoundation.org/UA/GDS/ |
|
|
7
|
+
* |nodeClass |ObjectType |
|
|
8
|
+
* |typedDefinition |DirectoryType i=13 |
|
|
9
|
+
* |isAbstract |false |
|
|
10
10
|
*/
|
|
11
11
|
export interface UADirectory_Base extends UAFolder_Base {
|
|
12
12
|
applications: UAFolder;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { UAKeyCredentialAuditEvent, UAKeyCredentialAuditEvent_Base } from "node-opcua-nodeset-ua/source/ua_key_credential_audit_event";
|
|
2
2
|
/**
|
|
3
|
-
* | |
|
|
4
|
-
*
|
|
5
|
-
* |namespace |http://opcfoundation.org/UA/GDS/
|
|
6
|
-
* |nodeClass |ObjectType
|
|
7
|
-
* |typedDefinition |
|
|
8
|
-
* |isAbstract |false
|
|
3
|
+
* | | |
|
|
4
|
+
* |----------------|------------------------------------------------------------|
|
|
5
|
+
* |namespace |http://opcfoundation.org/UA/GDS/ |
|
|
6
|
+
* |nodeClass |ObjectType |
|
|
7
|
+
* |typedDefinition |KeyCredentialDeliveredAuditEventType i=1057 |
|
|
8
|
+
* |isAbstract |false |
|
|
9
9
|
*/
|
|
10
10
|
export type UAKeyCredentialDeliveredAuditEvent_Base = UAKeyCredentialAuditEvent_Base;
|
|
11
11
|
export interface UAKeyCredentialDeliveredAuditEvent extends UAKeyCredentialAuditEvent, UAKeyCredentialDeliveredAuditEvent_Base {
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { UAFolder, UAFolder_Base } from "node-opcua-nodeset-ua/source/ua_folder";
|
|
2
2
|
/**
|
|
3
|
-
* | |
|
|
4
|
-
*
|
|
5
|
-
* |namespace |http://opcfoundation.org/UA/GDS/
|
|
6
|
-
* |nodeClass |ObjectType
|
|
7
|
-
* |typedDefinition |
|
|
8
|
-
* |isAbstract |false
|
|
3
|
+
* | | |
|
|
4
|
+
* |----------------|------------------------------------------------------------|
|
|
5
|
+
* |namespace |http://opcfoundation.org/UA/GDS/ |
|
|
6
|
+
* |nodeClass |ObjectType |
|
|
7
|
+
* |typedDefinition |KeyCredentialManagementFolderType i=55 |
|
|
8
|
+
* |isAbstract |false |
|
|
9
9
|
*/
|
|
10
10
|
export type UAKeyCredentialManagementFolder_Base = UAFolder_Base;
|
|
11
11
|
export interface UAKeyCredentialManagementFolder extends UAFolder, UAKeyCredentialManagementFolder_Base {
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { UAKeyCredentialAuditEvent, UAKeyCredentialAuditEvent_Base } from "node-opcua-nodeset-ua/source/ua_key_credential_audit_event";
|
|
2
2
|
/**
|
|
3
|
-
* | |
|
|
4
|
-
*
|
|
5
|
-
* |namespace |http://opcfoundation.org/UA/GDS/
|
|
6
|
-
* |nodeClass |ObjectType
|
|
7
|
-
* |typedDefinition |
|
|
8
|
-
* |isAbstract |false
|
|
3
|
+
* | | |
|
|
4
|
+
* |----------------|------------------------------------------------------------|
|
|
5
|
+
* |namespace |http://opcfoundation.org/UA/GDS/ |
|
|
6
|
+
* |nodeClass |ObjectType |
|
|
7
|
+
* |typedDefinition |KeyCredentialRequestedAuditEventType i=1039 |
|
|
8
|
+
* |isAbstract |false |
|
|
9
9
|
*/
|
|
10
10
|
export type UAKeyCredentialRequestedAuditEvent_Base = UAKeyCredentialAuditEvent_Base;
|
|
11
11
|
export interface UAKeyCredentialRequestedAuditEvent extends UAKeyCredentialAuditEvent, UAKeyCredentialRequestedAuditEvent_Base {
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { UAKeyCredentialAuditEvent, UAKeyCredentialAuditEvent_Base } from "node-opcua-nodeset-ua/source/ua_key_credential_audit_event";
|
|
2
2
|
/**
|
|
3
|
-
* | |
|
|
4
|
-
*
|
|
5
|
-
* |namespace |http://opcfoundation.org/UA/GDS/
|
|
6
|
-
* |nodeClass |ObjectType
|
|
7
|
-
* |typedDefinition |
|
|
8
|
-
* |isAbstract |false
|
|
3
|
+
* | | |
|
|
4
|
+
* |----------------|------------------------------------------------------------|
|
|
5
|
+
* |namespace |http://opcfoundation.org/UA/GDS/ |
|
|
6
|
+
* |nodeClass |ObjectType |
|
|
7
|
+
* |typedDefinition |KeyCredentialRevokedAuditEventType i=1075 |
|
|
8
|
+
* |isAbstract |false |
|
|
9
9
|
*/
|
|
10
10
|
export type UAKeyCredentialRevokedAuditEvent_Base = UAKeyCredentialAuditEvent_Base;
|
|
11
11
|
export interface UAKeyCredentialRevokedAuditEvent extends UAKeyCredentialAuditEvent, UAKeyCredentialRevokedAuditEvent_Base {
|
|
@@ -2,12 +2,12 @@ import { UAObject, UAMethod, UAProperty } from "node-opcua-address-space-base";
|
|
|
2
2
|
import { DataType } from "node-opcua-variant";
|
|
3
3
|
import { UAString } from "node-opcua-basic-types";
|
|
4
4
|
/**
|
|
5
|
-
* | |
|
|
6
|
-
*
|
|
7
|
-
* |namespace |http://opcfoundation.org/UA/GDS/
|
|
8
|
-
* |nodeClass |ObjectType
|
|
9
|
-
* |typedDefinition |
|
|
10
|
-
* |isAbstract |false
|
|
5
|
+
* | | |
|
|
6
|
+
* |----------------|------------------------------------------------------------|
|
|
7
|
+
* |namespace |http://opcfoundation.org/UA/GDS/ |
|
|
8
|
+
* |nodeClass |ObjectType |
|
|
9
|
+
* |typedDefinition |KeyCredentialServiceType i=1020 |
|
|
10
|
+
* |isAbstract |false |
|
|
11
11
|
*/
|
|
12
12
|
export interface UAKeyCredentialService_Base {
|
|
13
13
|
resourceUri: UAProperty<UAString, DataType.String>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-opcua-nodeset-gds",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.103.0",
|
|
4
4
|
"description": "pure nodejs OPCUA SDK - module node-opcua-nodeset-gds",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -10,12 +10,12 @@
|
|
|
10
10
|
"author": "Etienne Rossignon <etienne.rossignon@sterfive.com>",
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"node-opcua-address-space-base": "2.
|
|
13
|
+
"node-opcua-address-space-base": "2.103.0",
|
|
14
14
|
"node-opcua-basic-types": "2.99.0",
|
|
15
15
|
"node-opcua-data-model": "2.102.0",
|
|
16
16
|
"node-opcua-extension-object": "2.99.0",
|
|
17
17
|
"node-opcua-nodeid": "2.99.0",
|
|
18
|
-
"node-opcua-nodeset-ua": "2.
|
|
18
|
+
"node-opcua-nodeset-ua": "2.103.0",
|
|
19
19
|
"node-opcua-status-code": "2.98.1",
|
|
20
20
|
"node-opcua-variant": "2.102.0"
|
|
21
21
|
},
|
|
@@ -35,5 +35,6 @@
|
|
|
35
35
|
"opc ua",
|
|
36
36
|
"internet of things"
|
|
37
37
|
],
|
|
38
|
-
"homepage": "http://node-opcua.github.io/"
|
|
38
|
+
"homepage": "http://node-opcua.github.io/",
|
|
39
|
+
"gitHead": "e206cac2daf39bd07e5ac6cbd744f966bb54759e"
|
|
39
40
|
}
|
|
@@ -6,12 +6,12 @@ import { ExtensionObject } from "node-opcua-extension-object"
|
|
|
6
6
|
import { DTStructure } from "node-opcua-nodeset-ua/source/dt_structure"
|
|
7
7
|
import { EnumApplication } from "node-opcua-nodeset-ua/source/enum_application"
|
|
8
8
|
/**
|
|
9
|
-
* | |
|
|
10
|
-
*
|
|
11
|
-
* | namespace |http://opcfoundation.org/UA/GDS/
|
|
12
|
-
* | nodeClass |DataType
|
|
13
|
-
* | name |6:ApplicationRecordDataType
|
|
14
|
-
* | isAbstract|false
|
|
9
|
+
* | | |
|
|
10
|
+
* |-----------|------------------------------------------------------------|
|
|
11
|
+
* | namespace |http://opcfoundation.org/UA/GDS/ |
|
|
12
|
+
* | nodeClass |DataType |
|
|
13
|
+
* | name |6:ApplicationRecordDataType |
|
|
14
|
+
* | isAbstract|false |
|
|
15
15
|
*/
|
|
16
16
|
export interface DTApplicationRecord extends DTStructure {
|
|
17
17
|
applicationId: NodeId; // NodeId ns=0;i=17
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
import { UAAuditUpdateMethodEvent, UAAuditUpdateMethodEvent_Base } from "node-opcua-nodeset-ua/source/ua_audit_update_method_event"
|
|
3
3
|
/**
|
|
4
|
-
* | |
|
|
5
|
-
*
|
|
6
|
-
* |namespace |http://opcfoundation.org/UA/GDS/
|
|
7
|
-
* |nodeClass |ObjectType
|
|
8
|
-
* |typedDefinition |
|
|
9
|
-
* |isAbstract |true
|
|
4
|
+
* | | |
|
|
5
|
+
* |----------------|------------------------------------------------------------|
|
|
6
|
+
* |namespace |http://opcfoundation.org/UA/GDS/ |
|
|
7
|
+
* |nodeClass |ObjectType |
|
|
8
|
+
* |typedDefinition |AccessTokenIssuedAuditEventType i=975 |
|
|
9
|
+
* |isAbstract |true |
|
|
10
10
|
*/
|
|
11
11
|
export type UAAccessTokenIssuedAuditEvent_Base = UAAuditUpdateMethodEvent_Base;
|
|
12
12
|
export interface UAAccessTokenIssuedAuditEvent extends UAAuditUpdateMethodEvent, UAAccessTokenIssuedAuditEvent_Base {
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
import { UAAuditUpdateMethodEvent, UAAuditUpdateMethodEvent_Base } from "node-opcua-nodeset-ua/source/ua_audit_update_method_event"
|
|
3
3
|
/**
|
|
4
|
-
* | |
|
|
5
|
-
*
|
|
6
|
-
* |namespace |http://opcfoundation.org/UA/GDS/
|
|
7
|
-
* |nodeClass |ObjectType
|
|
8
|
-
* |typedDefinition |
|
|
9
|
-
* |isAbstract |true
|
|
4
|
+
* | | |
|
|
5
|
+
* |----------------|------------------------------------------------------------|
|
|
6
|
+
* |namespace |http://opcfoundation.org/UA/GDS/ |
|
|
7
|
+
* |nodeClass |ObjectType |
|
|
8
|
+
* |typedDefinition |ApplicationRegistrationChangedAuditEventType i=26 |
|
|
9
|
+
* |isAbstract |true |
|
|
10
10
|
*/
|
|
11
11
|
export type UAApplicationRegistrationChangedAuditEvent_Base = UAAuditUpdateMethodEvent_Base;
|
|
12
12
|
export interface UAApplicationRegistrationChangedAuditEvent extends UAAuditUpdateMethodEvent, UAApplicationRegistrationChangedAuditEvent_Base {
|
|
@@ -4,12 +4,12 @@ import { DataType } from "node-opcua-variant"
|
|
|
4
4
|
import { UAString } from "node-opcua-basic-types"
|
|
5
5
|
import { DTUserTokenPolicy } from "node-opcua-nodeset-ua/source/dt_user_token_policy"
|
|
6
6
|
/**
|
|
7
|
-
* | |
|
|
8
|
-
*
|
|
9
|
-
* |namespace |http://opcfoundation.org/UA/GDS/
|
|
10
|
-
* |nodeClass |ObjectType
|
|
11
|
-
* |typedDefinition |
|
|
12
|
-
* |isAbstract |false
|
|
7
|
+
* | | |
|
|
8
|
+
* |----------------|------------------------------------------------------------|
|
|
9
|
+
* |namespace |http://opcfoundation.org/UA/GDS/ |
|
|
10
|
+
* |nodeClass |ObjectType |
|
|
11
|
+
* |typedDefinition |AuthorizationServiceType i=966 |
|
|
12
|
+
* |isAbstract |false |
|
|
13
13
|
*/
|
|
14
14
|
export interface UAAuthorizationService_Base {
|
|
15
15
|
serviceUri: UAProperty<UAString, DataType.String>;
|
|
@@ -5,12 +5,12 @@ import { DTUserTokenPolicy } from "node-opcua-nodeset-ua/source/dt_user_token_po
|
|
|
5
5
|
import { DTArgument } from "node-opcua-nodeset-ua/source/dt_argument"
|
|
6
6
|
import { UAFolder, UAFolder_Base } from "node-opcua-nodeset-ua/source/ua_folder"
|
|
7
7
|
/**
|
|
8
|
-
* | |
|
|
9
|
-
*
|
|
10
|
-
* |namespace |http://opcfoundation.org/UA/GDS/
|
|
11
|
-
* |nodeClass |ObjectType
|
|
12
|
-
* |typedDefinition |
|
|
13
|
-
* |isAbstract |false
|
|
8
|
+
* | | |
|
|
9
|
+
* |----------------|------------------------------------------------------------|
|
|
10
|
+
* |namespace |http://opcfoundation.org/UA/GDS/ |
|
|
11
|
+
* |nodeClass |ObjectType |
|
|
12
|
+
* |typedDefinition |AuthorizationServicesFolderType i=233 |
|
|
13
|
+
* |isAbstract |false |
|
|
14
14
|
*/
|
|
15
15
|
export type UAAuthorizationServicesFolder_Base = UAFolder_Base;
|
|
16
16
|
export interface UAAuthorizationServicesFolder extends UAFolder, UAAuthorizationServicesFolder_Base {
|
|
@@ -4,12 +4,12 @@ import { DataType } from "node-opcua-variant"
|
|
|
4
4
|
import { NodeId } from "node-opcua-nodeid"
|
|
5
5
|
import { UAAuditUpdateMethodEvent, UAAuditUpdateMethodEvent_Base } from "node-opcua-nodeset-ua/source/ua_audit_update_method_event"
|
|
6
6
|
/**
|
|
7
|
-
* | |
|
|
8
|
-
*
|
|
9
|
-
* |namespace |http://opcfoundation.org/UA/GDS/
|
|
10
|
-
* |nodeClass |ObjectType
|
|
11
|
-
* |typedDefinition |
|
|
12
|
-
* |isAbstract |true
|
|
7
|
+
* | | |
|
|
8
|
+
* |----------------|------------------------------------------------------------|
|
|
9
|
+
* |namespace |http://opcfoundation.org/UA/GDS/ |
|
|
10
|
+
* |nodeClass |ObjectType |
|
|
11
|
+
* |typedDefinition |CertificateDeliveredAuditEventType i=109 |
|
|
12
|
+
* |isAbstract |true |
|
|
13
13
|
*/
|
|
14
14
|
export interface UACertificateDeliveredAuditEvent_Base extends UAAuditUpdateMethodEvent_Base {
|
|
15
15
|
certificateGroup: UAProperty<NodeId, DataType.NodeId>;
|
|
@@ -10,12 +10,12 @@ import { DTTimeZone } from "node-opcua-nodeset-ua/source/dt_time_zone"
|
|
|
10
10
|
import { UACertificateGroupFolder } from "node-opcua-nodeset-ua/source/ua_certificate_group_folder"
|
|
11
11
|
import { UADirectory, UADirectory_Base } from "./ua_directory"
|
|
12
12
|
/**
|
|
13
|
-
* | |
|
|
14
|
-
*
|
|
15
|
-
* |namespace |http://opcfoundation.org/UA/GDS/
|
|
16
|
-
* |nodeClass |ObjectType
|
|
17
|
-
* |typedDefinition |
|
|
18
|
-
* |isAbstract |false
|
|
13
|
+
* | | |
|
|
14
|
+
* |----------------|------------------------------------------------------------|
|
|
15
|
+
* |namespace |http://opcfoundation.org/UA/GDS/ |
|
|
16
|
+
* |nodeClass |ObjectType |
|
|
17
|
+
* |typedDefinition |CertificateDirectoryType i=63 |
|
|
18
|
+
* |isAbstract |false |
|
|
19
19
|
*/
|
|
20
20
|
export interface UACertificateDirectory_Base extends UADirectory_Base {
|
|
21
21
|
startSigningRequest: UAMethod;
|
|
@@ -4,12 +4,12 @@ import { DataType } from "node-opcua-variant"
|
|
|
4
4
|
import { NodeId } from "node-opcua-nodeid"
|
|
5
5
|
import { UAAuditUpdateMethodEvent, UAAuditUpdateMethodEvent_Base } from "node-opcua-nodeset-ua/source/ua_audit_update_method_event"
|
|
6
6
|
/**
|
|
7
|
-
* | |
|
|
8
|
-
*
|
|
9
|
-
* |namespace |http://opcfoundation.org/UA/GDS/
|
|
10
|
-
* |nodeClass |ObjectType
|
|
11
|
-
* |typedDefinition |
|
|
12
|
-
* |isAbstract |true
|
|
7
|
+
* | | |
|
|
8
|
+
* |----------------|------------------------------------------------------------|
|
|
9
|
+
* |namespace |http://opcfoundation.org/UA/GDS/ |
|
|
10
|
+
* |nodeClass |ObjectType |
|
|
11
|
+
* |typedDefinition |CertificateRequestedAuditEventType i=91 |
|
|
12
|
+
* |isAbstract |true |
|
|
13
13
|
*/
|
|
14
14
|
export interface UACertificateRequestedAuditEvent_Base extends UAAuditUpdateMethodEvent_Base {
|
|
15
15
|
certificateGroup: UAProperty<NodeId, DataType.NodeId>;
|
package/source/ua_directory.ts
CHANGED
|
@@ -4,12 +4,12 @@ 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
|
/**
|
|
7
|
-
* | |
|
|
8
|
-
*
|
|
9
|
-
* |namespace |http://opcfoundation.org/UA/GDS/
|
|
10
|
-
* |nodeClass |ObjectType
|
|
11
|
-
* |typedDefinition |
|
|
12
|
-
* |isAbstract |false
|
|
7
|
+
* | | |
|
|
8
|
+
* |----------------|------------------------------------------------------------|
|
|
9
|
+
* |namespace |http://opcfoundation.org/UA/GDS/ |
|
|
10
|
+
* |nodeClass |ObjectType |
|
|
11
|
+
* |typedDefinition |DirectoryType i=13 |
|
|
12
|
+
* |isAbstract |false |
|
|
13
13
|
*/
|
|
14
14
|
export interface UADirectory_Base extends UAFolder_Base {
|
|
15
15
|
applications: UAFolder;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
import { UAKeyCredentialAuditEvent, UAKeyCredentialAuditEvent_Base } from "node-opcua-nodeset-ua/source/ua_key_credential_audit_event"
|
|
3
3
|
/**
|
|
4
|
-
* | |
|
|
5
|
-
*
|
|
6
|
-
* |namespace |http://opcfoundation.org/UA/GDS/
|
|
7
|
-
* |nodeClass |ObjectType
|
|
8
|
-
* |typedDefinition |
|
|
9
|
-
* |isAbstract |false
|
|
4
|
+
* | | |
|
|
5
|
+
* |----------------|------------------------------------------------------------|
|
|
6
|
+
* |namespace |http://opcfoundation.org/UA/GDS/ |
|
|
7
|
+
* |nodeClass |ObjectType |
|
|
8
|
+
* |typedDefinition |KeyCredentialDeliveredAuditEventType i=1057 |
|
|
9
|
+
* |isAbstract |false |
|
|
10
10
|
*/
|
|
11
11
|
export type UAKeyCredentialDeliveredAuditEvent_Base = UAKeyCredentialAuditEvent_Base;
|
|
12
12
|
export interface UAKeyCredentialDeliveredAuditEvent extends UAKeyCredentialAuditEvent, UAKeyCredentialDeliveredAuditEvent_Base {
|
|
@@ -4,12 +4,12 @@ import { UAString } from "node-opcua-basic-types"
|
|
|
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
|
/**
|
|
7
|
-
* | |
|
|
8
|
-
*
|
|
9
|
-
* |namespace |http://opcfoundation.org/UA/GDS/
|
|
10
|
-
* |nodeClass |ObjectType
|
|
11
|
-
* |typedDefinition |
|
|
12
|
-
* |isAbstract |false
|
|
7
|
+
* | | |
|
|
8
|
+
* |----------------|------------------------------------------------------------|
|
|
9
|
+
* |namespace |http://opcfoundation.org/UA/GDS/ |
|
|
10
|
+
* |nodeClass |ObjectType |
|
|
11
|
+
* |typedDefinition |KeyCredentialManagementFolderType i=55 |
|
|
12
|
+
* |isAbstract |false |
|
|
13
13
|
*/
|
|
14
14
|
export type UAKeyCredentialManagementFolder_Base = UAFolder_Base;
|
|
15
15
|
export interface UAKeyCredentialManagementFolder extends UAFolder, UAKeyCredentialManagementFolder_Base {
|
|
@@ -4,12 +4,12 @@ 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"
|
|
6
6
|
/**
|
|
7
|
-
* | |
|
|
8
|
-
*
|
|
9
|
-
* |namespace |http://opcfoundation.org/UA/GDS/
|
|
10
|
-
* |nodeClass |ObjectType
|
|
11
|
-
* |typedDefinition |
|
|
12
|
-
* |isAbstract |false
|
|
7
|
+
* | | |
|
|
8
|
+
* |----------------|------------------------------------------------------------|
|
|
9
|
+
* |namespace |http://opcfoundation.org/UA/GDS/ |
|
|
10
|
+
* |nodeClass |ObjectType |
|
|
11
|
+
* |typedDefinition |KeyCredentialRequestedAuditEventType i=1039 |
|
|
12
|
+
* |isAbstract |false |
|
|
13
13
|
*/
|
|
14
14
|
export type UAKeyCredentialRequestedAuditEvent_Base = UAKeyCredentialAuditEvent_Base;
|
|
15
15
|
export interface UAKeyCredentialRequestedAuditEvent extends UAKeyCredentialAuditEvent, UAKeyCredentialRequestedAuditEvent_Base {
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
// ----- this file has been automatically generated - do not edit
|
|
2
2
|
import { UAKeyCredentialAuditEvent, UAKeyCredentialAuditEvent_Base } from "node-opcua-nodeset-ua/source/ua_key_credential_audit_event"
|
|
3
3
|
/**
|
|
4
|
-
* | |
|
|
5
|
-
*
|
|
6
|
-
* |namespace |http://opcfoundation.org/UA/GDS/
|
|
7
|
-
* |nodeClass |ObjectType
|
|
8
|
-
* |typedDefinition |
|
|
9
|
-
* |isAbstract |false
|
|
4
|
+
* | | |
|
|
5
|
+
* |----------------|------------------------------------------------------------|
|
|
6
|
+
* |namespace |http://opcfoundation.org/UA/GDS/ |
|
|
7
|
+
* |nodeClass |ObjectType |
|
|
8
|
+
* |typedDefinition |KeyCredentialRevokedAuditEventType i=1075 |
|
|
9
|
+
* |isAbstract |false |
|
|
10
10
|
*/
|
|
11
11
|
export type UAKeyCredentialRevokedAuditEvent_Base = UAKeyCredentialAuditEvent_Base;
|
|
12
12
|
export interface UAKeyCredentialRevokedAuditEvent extends UAKeyCredentialAuditEvent, UAKeyCredentialRevokedAuditEvent_Base {
|
|
@@ -3,12 +3,12 @@ import { UAObject, UAMethod, UAProperty } from "node-opcua-address-space-base"
|
|
|
3
3
|
import { DataType } from "node-opcua-variant"
|
|
4
4
|
import { UAString } from "node-opcua-basic-types"
|
|
5
5
|
/**
|
|
6
|
-
* | |
|
|
7
|
-
*
|
|
8
|
-
* |namespace |http://opcfoundation.org/UA/GDS/
|
|
9
|
-
* |nodeClass |ObjectType
|
|
10
|
-
* |typedDefinition |
|
|
11
|
-
* |isAbstract |false
|
|
6
|
+
* | | |
|
|
7
|
+
* |----------------|------------------------------------------------------------|
|
|
8
|
+
* |namespace |http://opcfoundation.org/UA/GDS/ |
|
|
9
|
+
* |nodeClass |ObjectType |
|
|
10
|
+
* |typedDefinition |KeyCredentialServiceType i=1020 |
|
|
11
|
+
* |isAbstract |false |
|
|
12
12
|
*/
|
|
13
13
|
export interface UAKeyCredentialService_Base {
|
|
14
14
|
resourceUri: UAProperty<UAString, DataType.String>;
|