@build-qube/takeoff-calculator-wasm32-wasi 2.3.0 → 3.1.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@build-qube/takeoff-calculator-wasm32-wasi",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.1.0",
|
|
4
4
|
"cpu": [
|
|
5
5
|
"wasm32"
|
|
6
6
|
],
|
|
@@ -37,6 +37,6 @@
|
|
|
37
37
|
},
|
|
38
38
|
"browser": "takeoff-calculator.wasi-browser.js",
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@napi-rs/wasm-runtime": "^1.1.
|
|
40
|
+
"@napi-rs/wasm-runtime": "^1.1.6"
|
|
41
41
|
}
|
|
42
42
|
}
|
|
@@ -58,13 +58,25 @@ const {
|
|
|
58
58
|
},
|
|
59
59
|
});
|
|
60
60
|
export default __napiModule.exports;
|
|
61
|
+
export const GeometryClient = __napiModule.exports.GeometryClient;
|
|
62
|
+
export const FillRule = __napiModule.exports.FillRule;
|
|
63
|
+
export const LineCap = __napiModule.exports.LineCap;
|
|
64
|
+
export const LineJoin = __napiModule.exports.LineJoin;
|
|
65
|
+
export const scaleGeometry = __napiModule.exports.scaleGeometry;
|
|
66
|
+
export const SnapType = __napiModule.exports.SnapType;
|
|
67
|
+
export const PdfPage = __napiModule.exports.PdfPage;
|
|
68
|
+
export const PdfReader = __napiModule.exports.PdfReader;
|
|
69
|
+
export const ImageOutputFormat = __napiModule.exports.ImageOutputFormat;
|
|
61
70
|
export const ContourWrapper = __napiModule.exports.ContourWrapper;
|
|
62
71
|
export const GroupWrapper = __napiModule.exports.GroupWrapper;
|
|
63
72
|
export const MeasurementWrapper = __napiModule.exports.MeasurementWrapper;
|
|
64
73
|
export const TakeoffStateHandler = __napiModule.exports.TakeoffStateHandler;
|
|
65
74
|
export const VolumetricUnitResult = __napiModule.exports.VolumetricUnitResult;
|
|
75
|
+
export const asyncMultiTwo = __napiModule.exports.asyncMultiTwo;
|
|
66
76
|
export const plus100 = __napiModule.exports.plus100;
|
|
67
77
|
export const plus200 = __napiModule.exports.plus200;
|
|
78
|
+
export const withinAsyncRuntimeIfAvailable =
|
|
79
|
+
__napiModule.exports.withinAsyncRuntimeIfAvailable;
|
|
68
80
|
export const UnitValue = __napiModule.exports.UnitValue;
|
|
69
81
|
export const distance = __napiModule.exports.distance;
|
|
70
82
|
export const generateRandomId = __napiModule.exports.generateRandomId;
|
|
@@ -125,13 +125,25 @@ const {
|
|
|
125
125
|
},
|
|
126
126
|
});
|
|
127
127
|
module.exports = __napiModule.exports;
|
|
128
|
+
module.exports.GeometryClient = __napiModule.exports.GeometryClient;
|
|
129
|
+
module.exports.FillRule = __napiModule.exports.FillRule;
|
|
130
|
+
module.exports.LineCap = __napiModule.exports.LineCap;
|
|
131
|
+
module.exports.LineJoin = __napiModule.exports.LineJoin;
|
|
132
|
+
module.exports.scaleGeometry = __napiModule.exports.scaleGeometry;
|
|
133
|
+
module.exports.SnapType = __napiModule.exports.SnapType;
|
|
134
|
+
module.exports.PdfPage = __napiModule.exports.PdfPage;
|
|
135
|
+
module.exports.PdfReader = __napiModule.exports.PdfReader;
|
|
136
|
+
module.exports.ImageOutputFormat = __napiModule.exports.ImageOutputFormat;
|
|
128
137
|
module.exports.ContourWrapper = __napiModule.exports.ContourWrapper;
|
|
129
138
|
module.exports.GroupWrapper = __napiModule.exports.GroupWrapper;
|
|
130
139
|
module.exports.MeasurementWrapper = __napiModule.exports.MeasurementWrapper;
|
|
131
140
|
module.exports.TakeoffStateHandler = __napiModule.exports.TakeoffStateHandler;
|
|
132
141
|
module.exports.VolumetricUnitResult = __napiModule.exports.VolumetricUnitResult;
|
|
142
|
+
module.exports.asyncMultiTwo = __napiModule.exports.asyncMultiTwo;
|
|
133
143
|
module.exports.plus100 = __napiModule.exports.plus100;
|
|
134
144
|
module.exports.plus200 = __napiModule.exports.plus200;
|
|
145
|
+
module.exports.withinAsyncRuntimeIfAvailable =
|
|
146
|
+
__napiModule.exports.withinAsyncRuntimeIfAvailable;
|
|
135
147
|
module.exports.UnitValue = __napiModule.exports.UnitValue;
|
|
136
148
|
module.exports.distance = __napiModule.exports.distance;
|
|
137
149
|
module.exports.generateRandomId = __napiModule.exports.generateRandomId;
|
|
Binary file
|