node-opcua-nodeset-gds 2.64.1 → 2.66.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.
Files changed (32) hide show
  1. package/dist/dt_application_record.d.ts +22 -22
  2. package/dist/dt_application_record.js +2 -2
  3. package/dist/index.d.ts +14 -14
  4. package/dist/index.js +30 -26
  5. package/dist/index.js.map +1 -1
  6. package/dist/ua_access_token_issued_audit_event.d.ts +13 -13
  7. package/dist/ua_access_token_issued_audit_event.js +2 -2
  8. package/dist/ua_application_registration_changed_audit_event.d.ts +13 -13
  9. package/dist/ua_application_registration_changed_audit_event.js +2 -2
  10. package/dist/ua_authorization_service.d.ts +22 -22
  11. package/dist/ua_authorization_service.js +2 -2
  12. package/dist/ua_authorization_services_folder.d.ts +13 -13
  13. package/dist/ua_authorization_services_folder.js +2 -2
  14. package/dist/ua_certificate_delivered_audit_event.d.ts +18 -18
  15. package/dist/ua_certificate_delivered_audit_event.js +2 -2
  16. package/dist/ua_certificate_directory.d.ts +23 -23
  17. package/dist/ua_certificate_directory.js +2 -2
  18. package/dist/ua_certificate_requested_audit_event.d.ts +18 -18
  19. package/dist/ua_certificate_requested_audit_event.js +2 -2
  20. package/dist/ua_directory.d.ts +22 -22
  21. package/dist/ua_directory.js +2 -2
  22. package/dist/ua_key_credential_delivered_audit_event.d.ts +13 -13
  23. package/dist/ua_key_credential_delivered_audit_event.js +2 -2
  24. package/dist/ua_key_credential_management_folder.d.ts +13 -13
  25. package/dist/ua_key_credential_management_folder.js +2 -2
  26. package/dist/ua_key_credential_requested_audit_event.d.ts +13 -13
  27. package/dist/ua_key_credential_requested_audit_event.js +2 -2
  28. package/dist/ua_key_credential_revoked_audit_event.d.ts +13 -13
  29. package/dist/ua_key_credential_revoked_audit_event.js +2 -2
  30. package/dist/ua_key_credential_service.d.ts +20 -20
  31. package/dist/ua_key_credential_service.js +2 -2
  32. package/package.json +9 -9
@@ -1,22 +1,22 @@
1
- import { Variant } from "node-opcua-variant";
2
- import { LocalizedText } from "node-opcua-data-model";
3
- import { NodeId } from "node-opcua-nodeid";
4
- import { UAString } from "node-opcua-basic-types";
5
- import { DTStructure } from "node-opcua-nodeset-ua/source/dt_structure";
6
- /**
7
- * | | |
8
- * |-----------|--------------------------------------------------|
9
- * | namespace |http://opcfoundation.org/UA/GDS/ |
10
- * | nodeClass |DataType |
11
- * | name |6:ApplicationRecordDataType |
12
- * | isAbstract|false |
13
- */
14
- export interface DTApplicationRecord extends DTStructure {
15
- applicationId: NodeId;
16
- applicationUri: UAString;
17
- applicationType: Variant;
18
- applicationNames: LocalizedText[];
19
- productUri: UAString;
20
- discoveryUrls: UAString[];
21
- serverCapabilities: UAString[];
22
- }
1
+ import { Variant } from "node-opcua-variant";
2
+ import { LocalizedText } from "node-opcua-data-model";
3
+ import { NodeId } from "node-opcua-nodeid";
4
+ import { UAString } from "node-opcua-basic-types";
5
+ import { DTStructure } from "node-opcua-nodeset-ua/source/dt_structure";
6
+ /**
7
+ * | | |
8
+ * |-----------|--------------------------------------------------|
9
+ * | namespace |http://opcfoundation.org/UA/GDS/ |
10
+ * | nodeClass |DataType |
11
+ * | name |6:ApplicationRecordDataType |
12
+ * | isAbstract|false |
13
+ */
14
+ export interface DTApplicationRecord extends DTStructure {
15
+ applicationId: NodeId;
16
+ applicationUri: UAString;
17
+ applicationType: Variant;
18
+ applicationNames: LocalizedText[];
19
+ productUri: UAString;
20
+ discoveryUrls: UAString[];
21
+ serverCapabilities: UAString[];
22
+ }
@@ -1,3 +1,3 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  //# sourceMappingURL=dt_application_record.js.map
package/dist/index.d.ts CHANGED
@@ -1,14 +1,14 @@
1
- export * from "./dt_application_record";
2
- export * from "./ua_access_token_issued_audit_event";
3
- export * from "./ua_application_registration_changed_audit_event";
4
- export * from "./ua_authorization_service";
5
- export * from "./ua_authorization_services_folder";
6
- export * from "./ua_certificate_delivered_audit_event";
7
- export * from "./ua_certificate_directory";
8
- export * from "./ua_certificate_requested_audit_event";
9
- export * from "./ua_directory";
10
- export * from "./ua_key_credential_delivered_audit_event";
11
- export * from "./ua_key_credential_management_folder";
12
- export * from "./ua_key_credential_requested_audit_event";
13
- export * from "./ua_key_credential_revoked_audit_event";
14
- export * from "./ua_key_credential_service";
1
+ export * from "./dt_application_record";
2
+ export * from "./ua_access_token_issued_audit_event";
3
+ export * from "./ua_application_registration_changed_audit_event";
4
+ export * from "./ua_authorization_service";
5
+ export * from "./ua_authorization_services_folder";
6
+ export * from "./ua_certificate_delivered_audit_event";
7
+ export * from "./ua_certificate_directory";
8
+ export * from "./ua_certificate_requested_audit_event";
9
+ export * from "./ua_directory";
10
+ export * from "./ua_key_credential_delivered_audit_event";
11
+ export * from "./ua_key_credential_management_folder";
12
+ export * from "./ua_key_credential_requested_audit_event";
13
+ export * from "./ua_key_credential_revoked_audit_event";
14
+ export * from "./ua_key_credential_service";
package/dist/index.js CHANGED
@@ -1,27 +1,31 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
5
- }) : (function(o, m, k, k2) {
6
- if (k2 === undefined) k2 = k;
7
- o[k2] = m[k];
8
- }));
9
- var __exportStar = (this && this.__exportStar) || function(m, exports) {
10
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
11
- };
12
- Object.defineProperty(exports, "__esModule", { value: true });
13
- __exportStar(require("./dt_application_record"), exports);
14
- __exportStar(require("./ua_access_token_issued_audit_event"), exports);
15
- __exportStar(require("./ua_application_registration_changed_audit_event"), exports);
16
- __exportStar(require("./ua_authorization_service"), exports);
17
- __exportStar(require("./ua_authorization_services_folder"), exports);
18
- __exportStar(require("./ua_certificate_delivered_audit_event"), exports);
19
- __exportStar(require("./ua_certificate_directory"), exports);
20
- __exportStar(require("./ua_certificate_requested_audit_event"), exports);
21
- __exportStar(require("./ua_directory"), exports);
22
- __exportStar(require("./ua_key_credential_delivered_audit_event"), exports);
23
- __exportStar(require("./ua_key_credential_management_folder"), exports);
24
- __exportStar(require("./ua_key_credential_requested_audit_event"), exports);
25
- __exportStar(require("./ua_key_credential_revoked_audit_event"), exports);
26
- __exportStar(require("./ua_key_credential_service"), exports);
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
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);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./dt_application_record"), exports);
18
+ __exportStar(require("./ua_access_token_issued_audit_event"), exports);
19
+ __exportStar(require("./ua_application_registration_changed_audit_event"), exports);
20
+ __exportStar(require("./ua_authorization_service"), exports);
21
+ __exportStar(require("./ua_authorization_services_folder"), exports);
22
+ __exportStar(require("./ua_certificate_delivered_audit_event"), exports);
23
+ __exportStar(require("./ua_certificate_directory"), exports);
24
+ __exportStar(require("./ua_certificate_requested_audit_event"), exports);
25
+ __exportStar(require("./ua_directory"), exports);
26
+ __exportStar(require("./ua_key_credential_delivered_audit_event"), exports);
27
+ __exportStar(require("./ua_key_credential_management_folder"), exports);
28
+ __exportStar(require("./ua_key_credential_requested_audit_event"), exports);
29
+ __exportStar(require("./ua_key_credential_revoked_audit_event"), exports);
30
+ __exportStar(require("./ua_key_credential_service"), exports);
27
31
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
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"}
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"}
@@ -1,13 +1,13 @@
1
- import { UAAuditUpdateMethodEvent, UAAuditUpdateMethodEvent_Base } from "node-opcua-nodeset-ua/source/ua_audit_update_method_event";
2
- /**
3
- * | | |
4
- * |----------------|--------------------------------------------------|
5
- * |namespace |http://opcfoundation.org/UA/GDS/ |
6
- * |nodeClass |ObjectType |
7
- * |typedDefinition |6:AccessTokenIssuedAuditEventType ns=6;i=975 |
8
- * |isAbstract |true |
9
- */
10
- export interface UAAccessTokenIssuedAuditEvent_Base extends UAAuditUpdateMethodEvent_Base {
11
- }
12
- export interface UAAccessTokenIssuedAuditEvent extends UAAuditUpdateMethodEvent, UAAccessTokenIssuedAuditEvent_Base {
13
- }
1
+ import { UAAuditUpdateMethodEvent, UAAuditUpdateMethodEvent_Base } from "node-opcua-nodeset-ua/source/ua_audit_update_method_event";
2
+ /**
3
+ * | | |
4
+ * |----------------|--------------------------------------------------|
5
+ * |namespace |http://opcfoundation.org/UA/GDS/ |
6
+ * |nodeClass |ObjectType |
7
+ * |typedDefinition |6:AccessTokenIssuedAuditEventType ns=6;i=975 |
8
+ * |isAbstract |true |
9
+ */
10
+ export interface UAAccessTokenIssuedAuditEvent_Base extends UAAuditUpdateMethodEvent_Base {
11
+ }
12
+ export interface UAAccessTokenIssuedAuditEvent extends UAAuditUpdateMethodEvent, UAAccessTokenIssuedAuditEvent_Base {
13
+ }
@@ -1,3 +1,3 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  //# sourceMappingURL=ua_access_token_issued_audit_event.js.map
@@ -1,13 +1,13 @@
1
- import { UAAuditUpdateMethodEvent, UAAuditUpdateMethodEvent_Base } from "node-opcua-nodeset-ua/source/ua_audit_update_method_event";
2
- /**
3
- * | | |
4
- * |----------------|--------------------------------------------------|
5
- * |namespace |http://opcfoundation.org/UA/GDS/ |
6
- * |nodeClass |ObjectType |
7
- * |typedDefinition |6:ApplicationRegistrationChangedAuditEventType ns=6;i=26|
8
- * |isAbstract |true |
9
- */
10
- export interface UAApplicationRegistrationChangedAuditEvent_Base extends UAAuditUpdateMethodEvent_Base {
11
- }
12
- export interface UAApplicationRegistrationChangedAuditEvent extends UAAuditUpdateMethodEvent, UAApplicationRegistrationChangedAuditEvent_Base {
13
- }
1
+ import { UAAuditUpdateMethodEvent, UAAuditUpdateMethodEvent_Base } from "node-opcua-nodeset-ua/source/ua_audit_update_method_event";
2
+ /**
3
+ * | | |
4
+ * |----------------|--------------------------------------------------|
5
+ * |namespace |http://opcfoundation.org/UA/GDS/ |
6
+ * |nodeClass |ObjectType |
7
+ * |typedDefinition |6:ApplicationRegistrationChangedAuditEventType ns=6;i=26|
8
+ * |isAbstract |true |
9
+ */
10
+ export interface UAApplicationRegistrationChangedAuditEvent_Base extends UAAuditUpdateMethodEvent_Base {
11
+ }
12
+ export interface UAApplicationRegistrationChangedAuditEvent extends UAAuditUpdateMethodEvent, UAApplicationRegistrationChangedAuditEvent_Base {
13
+ }
@@ -1,3 +1,3 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  //# sourceMappingURL=ua_application_registration_changed_audit_event.js.map
@@ -1,22 +1,22 @@
1
- /// <reference types="node" />
2
- import { UAObject, UAMethod, UAProperty } from "node-opcua-address-space-base";
3
- import { DataType } from "node-opcua-variant";
4
- import { UAString } from "node-opcua-basic-types";
5
- import { DTUserTokenPolicy } from "node-opcua-nodeset-ua/source/dt_user_token_policy";
6
- /**
7
- * | | |
8
- * |----------------|--------------------------------------------------|
9
- * |namespace |http://opcfoundation.org/UA/GDS/ |
10
- * |nodeClass |ObjectType |
11
- * |typedDefinition |6:AuthorizationServiceType ns=6;i=966 |
12
- * |isAbstract |false |
13
- */
14
- export interface UAAuthorizationService_Base {
15
- serviceUri: UAProperty<UAString, /*z*/ DataType.String>;
16
- serviceCertificate: UAProperty<Buffer, /*z*/ DataType.ByteString>;
17
- userTokenPolicies?: UAProperty<DTUserTokenPolicy[], /*z*/ DataType.ExtensionObject>;
18
- getServiceDescription: UAMethod;
19
- requestAccessToken?: UAMethod;
20
- }
21
- export interface UAAuthorizationService extends UAObject, UAAuthorizationService_Base {
22
- }
1
+ /// <reference types="node" />
2
+ import { UAObject, UAMethod, UAProperty } from "node-opcua-address-space-base";
3
+ import { DataType } from "node-opcua-variant";
4
+ import { UAString } from "node-opcua-basic-types";
5
+ import { DTUserTokenPolicy } from "node-opcua-nodeset-ua/source/dt_user_token_policy";
6
+ /**
7
+ * | | |
8
+ * |----------------|--------------------------------------------------|
9
+ * |namespace |http://opcfoundation.org/UA/GDS/ |
10
+ * |nodeClass |ObjectType |
11
+ * |typedDefinition |6:AuthorizationServiceType ns=6;i=966 |
12
+ * |isAbstract |false |
13
+ */
14
+ export interface UAAuthorizationService_Base {
15
+ serviceUri: UAProperty<UAString, /*z*/ DataType.String>;
16
+ serviceCertificate: UAProperty<Buffer, /*z*/ DataType.ByteString>;
17
+ userTokenPolicies?: UAProperty<DTUserTokenPolicy[], /*z*/ DataType.ExtensionObject>;
18
+ getServiceDescription: UAMethod;
19
+ requestAccessToken?: UAMethod;
20
+ }
21
+ export interface UAAuthorizationService extends UAObject, UAAuthorizationService_Base {
22
+ }
@@ -1,3 +1,3 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  //# sourceMappingURL=ua_authorization_service.js.map
@@ -1,13 +1,13 @@
1
- import { UAFolder, UAFolder_Base } from "node-opcua-nodeset-ua/source/ua_folder";
2
- /**
3
- * | | |
4
- * |----------------|--------------------------------------------------|
5
- * |namespace |http://opcfoundation.org/UA/GDS/ |
6
- * |nodeClass |ObjectType |
7
- * |typedDefinition |6:AuthorizationServicesFolderType ns=6;i=233 |
8
- * |isAbstract |false |
9
- */
10
- export interface UAAuthorizationServicesFolder_Base extends UAFolder_Base {
11
- }
12
- export interface UAAuthorizationServicesFolder extends UAFolder, UAAuthorizationServicesFolder_Base {
13
- }
1
+ import { UAFolder, UAFolder_Base } from "node-opcua-nodeset-ua/source/ua_folder";
2
+ /**
3
+ * | | |
4
+ * |----------------|--------------------------------------------------|
5
+ * |namespace |http://opcfoundation.org/UA/GDS/ |
6
+ * |nodeClass |ObjectType |
7
+ * |typedDefinition |6:AuthorizationServicesFolderType ns=6;i=233 |
8
+ * |isAbstract |false |
9
+ */
10
+ export interface UAAuthorizationServicesFolder_Base extends UAFolder_Base {
11
+ }
12
+ export interface UAAuthorizationServicesFolder extends UAFolder, UAAuthorizationServicesFolder_Base {
13
+ }
@@ -1,3 +1,3 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  //# sourceMappingURL=ua_authorization_services_folder.js.map
@@ -1,18 +1,18 @@
1
- import { UAProperty } from "node-opcua-address-space-base";
2
- import { DataType } from "node-opcua-variant";
3
- import { NodeId } from "node-opcua-nodeid";
4
- import { UAAuditUpdateMethodEvent, UAAuditUpdateMethodEvent_Base } from "node-opcua-nodeset-ua/source/ua_audit_update_method_event";
5
- /**
6
- * | | |
7
- * |----------------|--------------------------------------------------|
8
- * |namespace |http://opcfoundation.org/UA/GDS/ |
9
- * |nodeClass |ObjectType |
10
- * |typedDefinition |6:CertificateDeliveredAuditEventType ns=6;i=109 |
11
- * |isAbstract |true |
12
- */
13
- export interface UACertificateDeliveredAuditEvent_Base extends UAAuditUpdateMethodEvent_Base {
14
- certificateGroup: UAProperty<NodeId, /*z*/ DataType.NodeId>;
15
- certificateType: UAProperty<NodeId, /*z*/ DataType.NodeId>;
16
- }
17
- export interface UACertificateDeliveredAuditEvent extends UAAuditUpdateMethodEvent, UACertificateDeliveredAuditEvent_Base {
18
- }
1
+ import { UAProperty } from "node-opcua-address-space-base";
2
+ import { DataType } from "node-opcua-variant";
3
+ import { NodeId } from "node-opcua-nodeid";
4
+ import { UAAuditUpdateMethodEvent, UAAuditUpdateMethodEvent_Base } from "node-opcua-nodeset-ua/source/ua_audit_update_method_event";
5
+ /**
6
+ * | | |
7
+ * |----------------|--------------------------------------------------|
8
+ * |namespace |http://opcfoundation.org/UA/GDS/ |
9
+ * |nodeClass |ObjectType |
10
+ * |typedDefinition |6:CertificateDeliveredAuditEventType ns=6;i=109 |
11
+ * |isAbstract |true |
12
+ */
13
+ export interface UACertificateDeliveredAuditEvent_Base extends UAAuditUpdateMethodEvent_Base {
14
+ certificateGroup: UAProperty<NodeId, /*z*/ DataType.NodeId>;
15
+ certificateType: UAProperty<NodeId, /*z*/ DataType.NodeId>;
16
+ }
17
+ export interface UACertificateDeliveredAuditEvent extends UAAuditUpdateMethodEvent, UACertificateDeliveredAuditEvent_Base {
18
+ }
@@ -1,3 +1,3 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  //# sourceMappingURL=ua_certificate_delivered_audit_event.js.map
@@ -1,23 +1,23 @@
1
- import { UAMethod } from "node-opcua-address-space-base";
2
- import { UACertificateGroupFolder } from "node-opcua-nodeset-ua/source/ua_certificate_group_folder";
3
- import { UADirectory, UADirectory_Base } from "./ua_directory";
4
- /**
5
- * | | |
6
- * |----------------|--------------------------------------------------|
7
- * |namespace |http://opcfoundation.org/UA/GDS/ |
8
- * |nodeClass |ObjectType |
9
- * |typedDefinition |6:CertificateDirectoryType ns=6;i=63 |
10
- * |isAbstract |false |
11
- */
12
- export interface UACertificateDirectory_Base extends UADirectory_Base {
13
- startSigningRequest: UAMethod;
14
- startNewKeyPairRequest: UAMethod;
15
- finishRequest: UAMethod;
16
- revokeCertificate?: UAMethod;
17
- getCertificateGroups: UAMethod;
18
- getTrustList: UAMethod;
19
- getCertificateStatus: UAMethod;
20
- certificateGroups: UACertificateGroupFolder;
21
- }
22
- export interface UACertificateDirectory extends UADirectory, UACertificateDirectory_Base {
23
- }
1
+ import { UAMethod } from "node-opcua-address-space-base";
2
+ import { UACertificateGroupFolder } from "node-opcua-nodeset-ua/source/ua_certificate_group_folder";
3
+ import { UADirectory, UADirectory_Base } from "./ua_directory";
4
+ /**
5
+ * | | |
6
+ * |----------------|--------------------------------------------------|
7
+ * |namespace |http://opcfoundation.org/UA/GDS/ |
8
+ * |nodeClass |ObjectType |
9
+ * |typedDefinition |6:CertificateDirectoryType ns=6;i=63 |
10
+ * |isAbstract |false |
11
+ */
12
+ export interface UACertificateDirectory_Base extends UADirectory_Base {
13
+ startSigningRequest: UAMethod;
14
+ startNewKeyPairRequest: UAMethod;
15
+ finishRequest: UAMethod;
16
+ revokeCertificate?: UAMethod;
17
+ getCertificateGroups: UAMethod;
18
+ getTrustList: UAMethod;
19
+ getCertificateStatus: UAMethod;
20
+ certificateGroups: UACertificateGroupFolder;
21
+ }
22
+ export interface UACertificateDirectory extends UADirectory, UACertificateDirectory_Base {
23
+ }
@@ -1,3 +1,3 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  //# sourceMappingURL=ua_certificate_directory.js.map
@@ -1,18 +1,18 @@
1
- import { UAProperty } from "node-opcua-address-space-base";
2
- import { DataType } from "node-opcua-variant";
3
- import { NodeId } from "node-opcua-nodeid";
4
- import { UAAuditUpdateMethodEvent, UAAuditUpdateMethodEvent_Base } from "node-opcua-nodeset-ua/source/ua_audit_update_method_event";
5
- /**
6
- * | | |
7
- * |----------------|--------------------------------------------------|
8
- * |namespace |http://opcfoundation.org/UA/GDS/ |
9
- * |nodeClass |ObjectType |
10
- * |typedDefinition |6:CertificateRequestedAuditEventType ns=6;i=91 |
11
- * |isAbstract |true |
12
- */
13
- export interface UACertificateRequestedAuditEvent_Base extends UAAuditUpdateMethodEvent_Base {
14
- certificateGroup: UAProperty<NodeId, /*z*/ DataType.NodeId>;
15
- certificateType: UAProperty<NodeId, /*z*/ DataType.NodeId>;
16
- }
17
- export interface UACertificateRequestedAuditEvent extends UAAuditUpdateMethodEvent, UACertificateRequestedAuditEvent_Base {
18
- }
1
+ import { UAProperty } from "node-opcua-address-space-base";
2
+ import { DataType } from "node-opcua-variant";
3
+ import { NodeId } from "node-opcua-nodeid";
4
+ import { UAAuditUpdateMethodEvent, UAAuditUpdateMethodEvent_Base } from "node-opcua-nodeset-ua/source/ua_audit_update_method_event";
5
+ /**
6
+ * | | |
7
+ * |----------------|--------------------------------------------------|
8
+ * |namespace |http://opcfoundation.org/UA/GDS/ |
9
+ * |nodeClass |ObjectType |
10
+ * |typedDefinition |6:CertificateRequestedAuditEventType ns=6;i=91 |
11
+ * |isAbstract |true |
12
+ */
13
+ export interface UACertificateRequestedAuditEvent_Base extends UAAuditUpdateMethodEvent_Base {
14
+ certificateGroup: UAProperty<NodeId, /*z*/ DataType.NodeId>;
15
+ certificateType: UAProperty<NodeId, /*z*/ DataType.NodeId>;
16
+ }
17
+ export interface UACertificateRequestedAuditEvent extends UAAuditUpdateMethodEvent, UACertificateRequestedAuditEvent_Base {
18
+ }
@@ -1,3 +1,3 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  //# sourceMappingURL=ua_certificate_requested_audit_event.js.map
@@ -1,22 +1,22 @@
1
- import { UAMethod } from "node-opcua-address-space-base";
2
- import { UAFolder, UAFolder_Base } from "node-opcua-nodeset-ua/source/ua_folder";
3
- /**
4
- * | | |
5
- * |----------------|--------------------------------------------------|
6
- * |namespace |http://opcfoundation.org/UA/GDS/ |
7
- * |nodeClass |ObjectType |
8
- * |typedDefinition |6:DirectoryType ns=6;i=13 |
9
- * |isAbstract |false |
10
- */
11
- export interface UADirectory_Base extends UAFolder_Base {
12
- applications: UAFolder;
13
- findApplications: UAMethod;
14
- registerApplication: UAMethod;
15
- updateApplication: UAMethod;
16
- unregisterApplication: UAMethod;
17
- getApplication: UAMethod;
18
- queryApplications: UAMethod;
19
- queryServers: UAMethod;
20
- }
21
- export interface UADirectory extends UAFolder, UADirectory_Base {
22
- }
1
+ import { UAMethod } from "node-opcua-address-space-base";
2
+ import { UAFolder, UAFolder_Base } from "node-opcua-nodeset-ua/source/ua_folder";
3
+ /**
4
+ * | | |
5
+ * |----------------|--------------------------------------------------|
6
+ * |namespace |http://opcfoundation.org/UA/GDS/ |
7
+ * |nodeClass |ObjectType |
8
+ * |typedDefinition |6:DirectoryType ns=6;i=13 |
9
+ * |isAbstract |false |
10
+ */
11
+ export interface UADirectory_Base extends UAFolder_Base {
12
+ applications: UAFolder;
13
+ findApplications: UAMethod;
14
+ registerApplication: UAMethod;
15
+ updateApplication: UAMethod;
16
+ unregisterApplication: UAMethod;
17
+ getApplication: UAMethod;
18
+ queryApplications: UAMethod;
19
+ queryServers: UAMethod;
20
+ }
21
+ export interface UADirectory extends UAFolder, UADirectory_Base {
22
+ }
@@ -1,3 +1,3 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  //# sourceMappingURL=ua_directory.js.map
@@ -1,13 +1,13 @@
1
- import { UAKeyCredentialAuditEvent, UAKeyCredentialAuditEvent_Base } from "node-opcua-nodeset-ua/source/ua_key_credential_audit_event";
2
- /**
3
- * | | |
4
- * |----------------|--------------------------------------------------|
5
- * |namespace |http://opcfoundation.org/UA/GDS/ |
6
- * |nodeClass |ObjectType |
7
- * |typedDefinition |6:KeyCredentialDeliveredAuditEventType ns=6;i=1057|
8
- * |isAbstract |false |
9
- */
10
- export interface UAKeyCredentialDeliveredAuditEvent_Base extends UAKeyCredentialAuditEvent_Base {
11
- }
12
- export interface UAKeyCredentialDeliveredAuditEvent extends UAKeyCredentialAuditEvent, UAKeyCredentialDeliveredAuditEvent_Base {
13
- }
1
+ import { UAKeyCredentialAuditEvent, UAKeyCredentialAuditEvent_Base } from "node-opcua-nodeset-ua/source/ua_key_credential_audit_event";
2
+ /**
3
+ * | | |
4
+ * |----------------|--------------------------------------------------|
5
+ * |namespace |http://opcfoundation.org/UA/GDS/ |
6
+ * |nodeClass |ObjectType |
7
+ * |typedDefinition |6:KeyCredentialDeliveredAuditEventType ns=6;i=1057|
8
+ * |isAbstract |false |
9
+ */
10
+ export interface UAKeyCredentialDeliveredAuditEvent_Base extends UAKeyCredentialAuditEvent_Base {
11
+ }
12
+ export interface UAKeyCredentialDeliveredAuditEvent extends UAKeyCredentialAuditEvent, UAKeyCredentialDeliveredAuditEvent_Base {
13
+ }
@@ -1,3 +1,3 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  //# sourceMappingURL=ua_key_credential_delivered_audit_event.js.map
@@ -1,13 +1,13 @@
1
- import { UAFolder, UAFolder_Base } from "node-opcua-nodeset-ua/source/ua_folder";
2
- /**
3
- * | | |
4
- * |----------------|--------------------------------------------------|
5
- * |namespace |http://opcfoundation.org/UA/GDS/ |
6
- * |nodeClass |ObjectType |
7
- * |typedDefinition |6:KeyCredentialManagementFolderType ns=6;i=55 |
8
- * |isAbstract |false |
9
- */
10
- export interface UAKeyCredentialManagementFolder_Base extends UAFolder_Base {
11
- }
12
- export interface UAKeyCredentialManagementFolder extends UAFolder, UAKeyCredentialManagementFolder_Base {
13
- }
1
+ import { UAFolder, UAFolder_Base } from "node-opcua-nodeset-ua/source/ua_folder";
2
+ /**
3
+ * | | |
4
+ * |----------------|--------------------------------------------------|
5
+ * |namespace |http://opcfoundation.org/UA/GDS/ |
6
+ * |nodeClass |ObjectType |
7
+ * |typedDefinition |6:KeyCredentialManagementFolderType ns=6;i=55 |
8
+ * |isAbstract |false |
9
+ */
10
+ export interface UAKeyCredentialManagementFolder_Base extends UAFolder_Base {
11
+ }
12
+ export interface UAKeyCredentialManagementFolder extends UAFolder, UAKeyCredentialManagementFolder_Base {
13
+ }
@@ -1,3 +1,3 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  //# sourceMappingURL=ua_key_credential_management_folder.js.map
@@ -1,13 +1,13 @@
1
- import { UAKeyCredentialAuditEvent, UAKeyCredentialAuditEvent_Base } from "node-opcua-nodeset-ua/source/ua_key_credential_audit_event";
2
- /**
3
- * | | |
4
- * |----------------|--------------------------------------------------|
5
- * |namespace |http://opcfoundation.org/UA/GDS/ |
6
- * |nodeClass |ObjectType |
7
- * |typedDefinition |6:KeyCredentialRequestedAuditEventType ns=6;i=1039|
8
- * |isAbstract |false |
9
- */
10
- export interface UAKeyCredentialRequestedAuditEvent_Base extends UAKeyCredentialAuditEvent_Base {
11
- }
12
- export interface UAKeyCredentialRequestedAuditEvent extends UAKeyCredentialAuditEvent, UAKeyCredentialRequestedAuditEvent_Base {
13
- }
1
+ import { UAKeyCredentialAuditEvent, UAKeyCredentialAuditEvent_Base } from "node-opcua-nodeset-ua/source/ua_key_credential_audit_event";
2
+ /**
3
+ * | | |
4
+ * |----------------|--------------------------------------------------|
5
+ * |namespace |http://opcfoundation.org/UA/GDS/ |
6
+ * |nodeClass |ObjectType |
7
+ * |typedDefinition |6:KeyCredentialRequestedAuditEventType ns=6;i=1039|
8
+ * |isAbstract |false |
9
+ */
10
+ export interface UAKeyCredentialRequestedAuditEvent_Base extends UAKeyCredentialAuditEvent_Base {
11
+ }
12
+ export interface UAKeyCredentialRequestedAuditEvent extends UAKeyCredentialAuditEvent, UAKeyCredentialRequestedAuditEvent_Base {
13
+ }
@@ -1,3 +1,3 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  //# sourceMappingURL=ua_key_credential_requested_audit_event.js.map
@@ -1,13 +1,13 @@
1
- import { UAKeyCredentialAuditEvent, UAKeyCredentialAuditEvent_Base } from "node-opcua-nodeset-ua/source/ua_key_credential_audit_event";
2
- /**
3
- * | | |
4
- * |----------------|--------------------------------------------------|
5
- * |namespace |http://opcfoundation.org/UA/GDS/ |
6
- * |nodeClass |ObjectType |
7
- * |typedDefinition |6:KeyCredentialRevokedAuditEventType ns=6;i=1075 |
8
- * |isAbstract |false |
9
- */
10
- export interface UAKeyCredentialRevokedAuditEvent_Base extends UAKeyCredentialAuditEvent_Base {
11
- }
12
- export interface UAKeyCredentialRevokedAuditEvent extends UAKeyCredentialAuditEvent, UAKeyCredentialRevokedAuditEvent_Base {
13
- }
1
+ import { UAKeyCredentialAuditEvent, UAKeyCredentialAuditEvent_Base } from "node-opcua-nodeset-ua/source/ua_key_credential_audit_event";
2
+ /**
3
+ * | | |
4
+ * |----------------|--------------------------------------------------|
5
+ * |namespace |http://opcfoundation.org/UA/GDS/ |
6
+ * |nodeClass |ObjectType |
7
+ * |typedDefinition |6:KeyCredentialRevokedAuditEventType ns=6;i=1075 |
8
+ * |isAbstract |false |
9
+ */
10
+ export interface UAKeyCredentialRevokedAuditEvent_Base extends UAKeyCredentialAuditEvent_Base {
11
+ }
12
+ export interface UAKeyCredentialRevokedAuditEvent extends UAKeyCredentialAuditEvent, UAKeyCredentialRevokedAuditEvent_Base {
13
+ }
@@ -1,3 +1,3 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  //# sourceMappingURL=ua_key_credential_revoked_audit_event.js.map
@@ -1,20 +1,20 @@
1
- import { UAObject, UAMethod, UAProperty } from "node-opcua-address-space-base";
2
- import { DataType } from "node-opcua-variant";
3
- import { UAString } from "node-opcua-basic-types";
4
- /**
5
- * | | |
6
- * |----------------|--------------------------------------------------|
7
- * |namespace |http://opcfoundation.org/UA/GDS/ |
8
- * |nodeClass |ObjectType |
9
- * |typedDefinition |6:KeyCredentialServiceType ns=6;i=1020 |
10
- * |isAbstract |false |
11
- */
12
- export interface UAKeyCredentialService_Base {
13
- resourceUri: UAProperty<UAString, /*z*/ DataType.String>;
14
- profileUris: UAProperty<UAString[], /*z*/ DataType.String>;
15
- startRequest: UAMethod;
16
- finishRequest: UAMethod;
17
- revoke?: UAMethod;
18
- }
19
- export interface UAKeyCredentialService extends UAObject, UAKeyCredentialService_Base {
20
- }
1
+ import { UAObject, UAMethod, UAProperty } from "node-opcua-address-space-base";
2
+ import { DataType } from "node-opcua-variant";
3
+ import { UAString } from "node-opcua-basic-types";
4
+ /**
5
+ * | | |
6
+ * |----------------|--------------------------------------------------|
7
+ * |namespace |http://opcfoundation.org/UA/GDS/ |
8
+ * |nodeClass |ObjectType |
9
+ * |typedDefinition |6:KeyCredentialServiceType ns=6;i=1020 |
10
+ * |isAbstract |false |
11
+ */
12
+ export interface UAKeyCredentialService_Base {
13
+ resourceUri: UAProperty<UAString, /*z*/ DataType.String>;
14
+ profileUris: UAProperty<UAString[], /*z*/ DataType.String>;
15
+ startRequest: UAMethod;
16
+ finishRequest: UAMethod;
17
+ revoke?: UAMethod;
18
+ }
19
+ export interface UAKeyCredentialService extends UAObject, UAKeyCredentialService_Base {
20
+ }
@@ -1,3 +1,3 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  //# sourceMappingURL=ua_key_credential_service.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-opcua-nodeset-gds",
3
- "version": "2.64.1",
3
+ "version": "2.66.0",
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.64.1",
14
- "node-opcua-basic-types": "2.64.1",
15
- "node-opcua-data-model": "2.64.1",
16
- "node-opcua-nodeid": "2.64.1",
17
- "node-opcua-nodeset-ua": "2.64.1",
18
- "node-opcua-status-code": "2.64.1",
19
- "node-opcua-variant": "2.64.1"
13
+ "node-opcua-address-space-base": "2.66.0",
14
+ "node-opcua-basic-types": "2.66.0",
15
+ "node-opcua-data-model": "2.66.0",
16
+ "node-opcua-nodeid": "2.66.0",
17
+ "node-opcua-nodeset-ua": "2.66.0",
18
+ "node-opcua-status-code": "2.66.0",
19
+ "node-opcua-variant": "2.66.0"
20
20
  },
21
- "gitHead": "b65b8738603cd475d7d99a2b20b0ae9d32b4110c"
21
+ "gitHead": "97f47e2e242a1fd737495fd64cb65e8fb7a9964b"
22
22
  }