node-opcua-server 2.62.5 → 2.63.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.
@@ -340,11 +340,28 @@ export class ServerEngine extends EventEmitter {
340
340
 
341
341
  // --------------------------------------------------- ServerCapabilities
342
342
  options.serverCapabilities = options.serverCapabilities || {};
343
+
344
+ // https://profiles.opcfoundation.org/profile
343
345
  options.serverCapabilities.serverProfileArray = options.serverCapabilities.serverProfileArray || [
344
- "Standard UA Server Profile",
345
- "Embedded UA Server Profile",
346
- "Micro Embedded Device Server Profile",
347
- "Nano Embedded Device Server Profile"
346
+ "http://opcfoundation.org/UA-Profile/Server/Standard", // Standard UA Server Profile",
347
+ "http://opcfoundation.org/UA-Profile/Server/DataAccess",
348
+ "http://opcfoundation.org/UA-Profile/Server/Events",
349
+ "http://opcfoundation.org/UA-Profile/Client/HistoricalAccess",
350
+ "http://opcfoundation.org/UA-Profile/Server/Methods",
351
+ "http://opcfoundation.org/UA-Profile/Server/StandardEventSubscription",
352
+ "http://opcfoundation.org/UA-Profile/Transport/uatcp-uasc-uabinary",
353
+ "http://opcfoundation.org/UA-Profile/Server/FileAccess",
354
+ "http://opcfoundation.org/UA-Profile/Server/StateMachine"
355
+ // "http://opcfoundation.org/UA-Profile/Transport/wss-uajson",
356
+ // "http://opcfoundation.org/UA-Profile/Transport/wss-uasc-uabinary"
357
+ // "http://opcfoundation.org/UA-Profile/Server/DurableSubscription"
358
+
359
+ // "http://opcfoundation.org/UA-Profile/Server/ReverseConnect",
360
+ // "http://opcfoundation.org/UAProfile/Server/NodeManagement",
361
+
362
+ // "Embedded UA Server Profile",
363
+ // "Micro Embedded Device Server Profile",
364
+ // "Nano Embedded Device Server Profile"
348
365
  ];
349
366
  options.serverCapabilities.localeIdArray = options.serverCapabilities.localeIdArray || ["en-EN", "fr-FR"];
350
367
 
package/.mocharc.yml DELETED
@@ -1,10 +0,0 @@
1
- require:
2
- - ../../node_modules/source-map-support/register
3
- - ../../node_modules/ts-node/register
4
- - ../../node_modules/should
5
- timeout: 60000
6
- extension:
7
- - ts
8
- - js
9
- bail: true
10
- parallel: true