node-opcua-convert-nodeset-to-javascript 2.102.0 → 2.104.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/_dataType.js +1 -1
- package/dist/_dataType.js.map +1 -1
- package/dist/convert_namespace_to_typescript.js +31 -3
- package/dist/convert_namespace_to_typescript.js.map +1 -1
- package/dist/convert_to_typescript.js +14 -10
- package/dist/convert_to_typescript.js.map +1 -1
- package/dist/main.js +28 -75
- package/dist/main.js.map +1 -1
- package/dist/options.d.ts +1 -0
- package/dist/private/cache.js +28 -2
- package/dist/private/cache.js.map +1 -1
- package/dist/private/get_corresponding_data_type.d.ts +2 -2
- package/dist/private/get_corresponding_data_type.js +6 -6
- package/dist/private/get_corresponding_data_type.js.map +1 -1
- package/dist/update_parent_tsconfig.d.ts +1 -0
- package/dist/update_parent_tsconfig.js +91 -0
- package/dist/update_parent_tsconfig.js.map +1 -0
- package/dist/utils2.js +7 -4
- package/dist/utils2.js.map +1 -1
- package/dist/walk_through.js +4 -4
- package/dist/walk_through.js.map +1 -1
- package/package.json +18 -18
- package/source/_dataType.ts +2 -2
- package/source/convert_namespace_to_typescript.ts +6 -1
- package/source/convert_to_typescript.ts +8 -8
- package/source/main.ts +10 -76
- package/source/options.ts +1 -0
- package/source/private/get_corresponding_data_type.ts +3 -3
- package/source/update_parent_tsconfig.ts +56 -0
- package/source/utils2.ts +3 -3
- package/source/walk_through.ts +5 -4
- package/source/official_namespaces.ts +0 -98
|
@@ -1,98 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
export const officialNamespaces = {
|
|
4
|
-
"standard": {
|
|
5
|
-
location: "node-opcua-ua-types-ua"
|
|
6
|
-
},
|
|
7
|
-
"di": {
|
|
8
|
-
location: "node-opcua-nodeset-di"
|
|
9
|
-
},
|
|
10
|
-
"adi": {
|
|
11
|
-
location: "node-opcua-nodeset-adi"
|
|
12
|
-
},
|
|
13
|
-
"autoId": {
|
|
14
|
-
location: "node-opcua-nodeset-auto-id"
|
|
15
|
-
},
|
|
16
|
-
"machineVision": {
|
|
17
|
-
location: "node-opcua-nodeset-machine-vision"
|
|
18
|
-
},
|
|
19
|
-
"commercialKitchenEquipment": {
|
|
20
|
-
location: "node-opcua-nodeset-commercial-kitchen-equipment"
|
|
21
|
-
},
|
|
22
|
-
"gds": {
|
|
23
|
-
location: "node-opcua-types-gds"
|
|
24
|
-
},
|
|
25
|
-
"robotics": {
|
|
26
|
-
location: "node-opcua-robotics"
|
|
27
|
-
},
|
|
28
|
-
"machinery": {
|
|
29
|
-
location: "node-opcua-machinery"
|
|
30
|
-
},
|
|
31
|
-
"ia": {
|
|
32
|
-
location: "node-opcua-ia"
|
|
33
|
-
},
|
|
34
|
-
"machineTool": {
|
|
35
|
-
location: "node-opcua-machineTool"
|
|
36
|
-
},
|
|
37
|
-
"cnc": {
|
|
38
|
-
location: "node-opcua-cnc"
|
|
39
|
-
},
|
|
40
|
-
"woodWorking": {
|
|
41
|
-
location: "node-opcua-woodWorking"
|
|
42
|
-
},
|
|
43
|
-
"glass": {
|
|
44
|
-
location: "node-opcua-glass"
|
|
45
|
-
},
|
|
46
|
-
"tightening": {
|
|
47
|
-
location: "node-opcua-tightening"
|
|
48
|
-
},
|
|
49
|
-
"packML": {
|
|
50
|
-
location: "node-opcua-packML"
|
|
51
|
-
},
|
|
52
|
-
"eumabois": {
|
|
53
|
-
location: "node-opcua-eumabois"
|
|
54
|
-
},
|
|
55
|
-
"iolink": {
|
|
56
|
-
location: "node-opcua-iolink"
|
|
57
|
-
},
|
|
58
|
-
"iolinkIODD": {
|
|
59
|
-
location: "node-opcua-iolinkIODD"
|
|
60
|
-
},
|
|
61
|
-
"irdi": {
|
|
62
|
-
location: "node-opcua-irdi"
|
|
63
|
-
},
|
|
64
|
-
"padim": {
|
|
65
|
-
location: "node-opcua-padim"
|
|
66
|
-
},
|
|
67
|
-
"machineryProcessValues": {
|
|
68
|
-
location: "node-opcua-machineryProcessValues"
|
|
69
|
-
},
|
|
70
|
-
"machineryResult": {
|
|
71
|
-
location: "node-opcua-machineryResult"
|
|
72
|
-
}
|
|
73
|
-
};
|
|
74
|
-
/*
|
|
75
|
-
nodesets.standard,
|
|
76
|
-
nodesets.di,
|
|
77
|
-
nodesets.adi,
|
|
78
|
-
nodesets.autoId,
|
|
79
|
-
nodesets.machineVision,
|
|
80
|
-
nodesets.commercialKitchenEquipment,
|
|
81
|
-
nodesets.gds,
|
|
82
|
-
nodesets.robotics,
|
|
83
|
-
nodesets.machinery,
|
|
84
|
-
nodesets.ia,
|
|
85
|
-
nodesets.machineTool,
|
|
86
|
-
nodesets.cnc,
|
|
87
|
-
nodesets.woodWorking,
|
|
88
|
-
nodesets.glass,
|
|
89
|
-
nodesets.tightening,
|
|
90
|
-
nodesets.packML,
|
|
91
|
-
nodesets.eumabois,
|
|
92
|
-
nodesets.iolink,
|
|
93
|
-
nodesets.iolinkIODD,
|
|
94
|
-
nodesets.irdi,
|
|
95
|
-
nodesets.padim,
|
|
96
|
-
nodesets.machineryProcessValues,
|
|
97
|
-
nodesets.machineryResult,
|
|
98
|
-
*/
|