@pilotdev/pilot-bim-dataprovider 23.0.2 → 23.0.4
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/README.md +42 -42
- package/lib/index.d.ts +7 -7
- package/lib/index.js +6 -6
- package/lib/index.js.map +1 -1
- package/lib/src/model/BimDataElement.d.ts +26 -15
- package/lib/src/model/BimDataElement.js +23 -14
- package/lib/src/model/BimDataElement.js.map +1 -1
- package/lib/src/model/BimDataElementPropertySet.d.ts +23 -23
- package/lib/src/model/BimDataElementPropertySet.js +29 -29
- package/lib/src/model/BimDataIfcType.d.ts +1206 -1206
- package/lib/src/model/BimDataIfcType.js +1207 -1207
- package/lib/src/model/BimDataModel.d.ts +16 -16
- package/lib/src/model/BimDataModel.js +54 -54
- package/lib/src/model/BimDataModelPart.d.ts +24 -24
- package/lib/src/model/BimDataModelPart.js +37 -37
- package/lib/src/model/BimDataTessellation.d.ts +6 -6
- package/lib/src/model/BimDataTessellation.js +8 -8
- package/lib/src/model/Consts.d.ts +2 -2
- package/lib/src/model/Consts.js +2 -2
- package/lib/src/utils/ViewerTools.d.ts +13 -13
- package/lib/src/utils/ViewerTools.js +137 -116
- package/lib/src/utils/ViewerTools.js.map +1 -1
- package/lib/src/utils/WasmTools.d.ts +10 -10
- package/lib/src/utils/WasmTools.js +59 -59
- package/lib/src/wasm/index.js +2 -2
- package/lib/src/wasm/pilot_bim_dataprovider.d.ts +137 -127
- package/lib/src/wasm/pilot_bim_dataprovider.js +15 -15
- package/lib/src/wasm/pilot_bim_dataprovider.wasm +0 -0
- package/package.json +34 -31
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,31 +1,34 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@pilotdev/pilot-bim-dataprovider",
|
|
3
|
-
"version": "23.0.
|
|
4
|
-
"description": "",
|
|
5
|
-
"main": "lib/index.js",
|
|
6
|
-
"type": "module",
|
|
7
|
-
"files": [
|
|
8
|
-
"lib/*"
|
|
9
|
-
],
|
|
10
|
-
"scripts": {
|
|
11
|
-
"build": "tsc && node build.js",
|
|
12
|
-
"test": "echo \"Error: no test specified\" && exit 1"
|
|
13
|
-
},
|
|
14
|
-
"keywords": [
|
|
15
|
-
"pilotdev",
|
|
16
|
-
"PilotWeb3D",
|
|
17
|
-
"PilotWeb2D"
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
"
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
"
|
|
30
|
-
|
|
31
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@pilotdev/pilot-bim-dataprovider",
|
|
3
|
+
"version": "23.0.4",
|
|
4
|
+
"description": "Package for reading data from information model data container.",
|
|
5
|
+
"main": "lib/index.js",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"files": [
|
|
8
|
+
"lib/*"
|
|
9
|
+
],
|
|
10
|
+
"scripts": {
|
|
11
|
+
"build": "tsc && node build.js",
|
|
12
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
13
|
+
},
|
|
14
|
+
"keywords": [
|
|
15
|
+
"pilotdev",
|
|
16
|
+
"PilotWeb3D",
|
|
17
|
+
"PilotWeb2D",
|
|
18
|
+
"Pilot-BIM-Dataprovider",
|
|
19
|
+
"Pilot-BIM",
|
|
20
|
+
"Pilot-ICE"
|
|
21
|
+
],
|
|
22
|
+
"author": "JSC Ascon",
|
|
23
|
+
"license": "MIT",
|
|
24
|
+
"devDependencies": {
|
|
25
|
+
"@types/emscripten": "1.39.6",
|
|
26
|
+
"typescript": "4.9.4"
|
|
27
|
+
},
|
|
28
|
+
"exclude": [
|
|
29
|
+
"node_modules",
|
|
30
|
+
"lib",
|
|
31
|
+
"build.js",
|
|
32
|
+
"__test__"
|
|
33
|
+
]
|
|
34
|
+
}
|