node-opcua-modeler 2.51.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 (70) hide show
  1. package/.mocharc.js +13 -0
  2. package/LICENSE +20 -0
  3. package/MyModelIds.csv +151 -0
  4. package/dist/addExtensionObjectDataType.d.ts +24 -0
  5. package/dist/addExtensionObjectDataType.js +198 -0
  6. package/dist/addExtensionObjectDataType.js.map +1 -0
  7. package/dist/build_model_inner.d.ts +17 -0
  8. package/dist/build_model_inner.js +41 -0
  9. package/dist/build_model_inner.js.map +1 -0
  10. package/dist/displayNodeElement.d.ts +5 -0
  11. package/dist/displayNodeElement.js +157 -0
  12. package/dist/displayNodeElement.js.map +1 -0
  13. package/dist/generate_markdown_doc.d.ts +6 -0
  14. package/dist/generate_markdown_doc.js +148 -0
  15. package/dist/generate_markdown_doc.js.map +1 -0
  16. package/dist/index.d.ts +23 -0
  17. package/dist/index.js +48 -0
  18. package/dist/index.js.map +1 -0
  19. package/dist/promoteToMandatory.d.ts +8 -0
  20. package/dist/promoteToMandatory.js +98 -0
  21. package/dist/promoteToMandatory.js.map +1 -0
  22. package/dist/setNamespaceMetaData.d.ts +1 -0
  23. package/dist/setNamespaceMetaData.js +6 -0
  24. package/dist/setNamespaceMetaData.js.map +1 -0
  25. package/dist/symbol.d.ts +1 -0
  26. package/dist/symbol.js +3 -0
  27. package/dist/symbol.js.map +1 -0
  28. package/dist/tableHelper.d.ts +9 -0
  29. package/dist/tableHelper.js +61 -0
  30. package/dist/tableHelper.js.map +1 -0
  31. package/dist/to_cvs.d.ts +2 -0
  32. package/dist/to_cvs.js +12 -0
  33. package/dist/to_cvs.js.map +1 -0
  34. package/dist/types.d.ts +1 -0
  35. package/dist/types.js +3 -0
  36. package/dist/types.js.map +1 -0
  37. package/distNodeJS/build_documentation_to_file.d.ts +2 -0
  38. package/distNodeJS/build_documentation_to_file.js +27 -0
  39. package/distNodeJS/build_documentation_to_file.js.map +1 -0
  40. package/distNodeJS/build_model.d.ts +7 -0
  41. package/distNodeJS/build_model.js +22 -0
  42. package/distNodeJS/build_model.js.map +1 -0
  43. package/distNodeJS/index.d.ts +5 -0
  44. package/distNodeJS/index.js +20 -0
  45. package/distNodeJS/index.js.map +1 -0
  46. package/distNodeJS/symbol_cvs.d.ts +3 -0
  47. package/distNodeJS/symbol_cvs.js +64 -0
  48. package/distNodeJS/symbol_cvs.js.map +1 -0
  49. package/examples/make_model.ts +152 -0
  50. package/nodeJS.d.ts +1 -0
  51. package/nodeJS.js +1 -0
  52. package/package.json +53 -0
  53. package/readme.md +43 -0
  54. package/source/addExtensionObjectDataType.ts +241 -0
  55. package/source/build_model_inner.ts +45 -0
  56. package/source/displayNodeElement.ts +178 -0
  57. package/source/generate_markdown_doc.ts +156 -0
  58. package/source/index.ts +31 -0
  59. package/source/promoteToMandatory.ts +137 -0
  60. package/source/setNamespaceMetaData.ts +1 -0
  61. package/source/symbol.ts +1 -0
  62. package/source/tableHelper.ts +64 -0
  63. package/source/to_cvs.ts +9 -0
  64. package/source/types.ts +1 -0
  65. package/source_nodejs/build_documentation_to_file.ts +13 -0
  66. package/source_nodejs/build_model.ts +12 -0
  67. package/source_nodejs/index.ts +5 -0
  68. package/source_nodejs/symbol_cvs.ts +52 -0
  69. package/tsconfig_common.json +55 -0
  70. package/tsconfig_nodejs.json +25 -0
@@ -0,0 +1,55 @@
1
+ {
2
+ "extends": "../tsconfig.json",
3
+ "compilerOptions": {
4
+ "rootDir": "source",
5
+ "outDir": "dist",
6
+ "composite": true,
7
+ "incremental": true
8
+ },
9
+ "include": ["source/**/*.ts"],
10
+ "references": [
11
+ {
12
+ "path": "../node-opcua-client-dynamic-extension-object"
13
+ },
14
+ {
15
+ "path": "../node-opcua-address-space"
16
+ },
17
+ {
18
+ "path": "../node-opcua-assert"
19
+ },
20
+ {
21
+ "path": "../node-opcua-basic-types"
22
+ },
23
+ {
24
+ "path": "../node-opcua-constants"
25
+ },
26
+ {
27
+ "path": "../node-opcua-data-model"
28
+ },
29
+ {
30
+ "path": "../node-opcua-nodeid"
31
+ },
32
+ {
33
+ "path": "../node-opcua-nodesets"
34
+ },
35
+ {
36
+ "path": "../node-opcua-numeric-range"
37
+ },
38
+ {
39
+ "path": "../node-opcua-service-translate-browse-path"
40
+ },
41
+ {
42
+ "path": "../node-opcua-types"
43
+ },
44
+ {
45
+ "path": "../node-opcua-variant"
46
+ },
47
+ {
48
+ "path": "../node-opcua-xml2json"
49
+ },
50
+ {
51
+ "path": "../node-opcua-leak-detector"
52
+ }
53
+ ],
54
+ "exclude": ["node_modules", "dist"]
55
+ }
@@ -0,0 +1,25 @@
1
+ {
2
+ "extends": "../tsconfig.json",
3
+ "compilerOptions": {
4
+ "rootDir": "source_nodejs",
5
+ "outDir": "distNodeJS",
6
+ "composite": true,
7
+ "incremental": true
8
+ },
9
+ "ts-node": {
10
+ "compilerOptions": {
11
+ "inlineSourceMap": true
12
+ }
13
+ },
14
+ "include": [
15
+ "source_nodejs/**/*.ts"
16
+ ],
17
+ "references": [
18
+ {
19
+ "path": "./tsconfig_common.json"
20
+ }
21
+ ],
22
+ "exclude": [
23
+ "node_modules" , "dist"
24
+ ]
25
+ }