@versatiles/versatiles-rs 3.8.1 → 3.9.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/index.cjs +52 -52
- package/index.js +52 -52
- package/package.json +18 -18
- package/vpl.d.ts +24 -12
- package/vpl.js +24 -10
package/index.cjs
CHANGED
|
@@ -77,8 +77,8 @@ function requireNative() {
|
|
|
77
77
|
try {
|
|
78
78
|
const binding = require('@versatiles/versatiles-rs-android-arm64')
|
|
79
79
|
const bindingPackageVersion = require('@versatiles/versatiles-rs-android-arm64/package.json').version
|
|
80
|
-
if (bindingPackageVersion !== '3.
|
|
81
|
-
throw new Error(`Native binding package version mismatch, expected 3.
|
|
80
|
+
if (bindingPackageVersion !== '3.9.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
81
|
+
throw new Error(`Native binding package version mismatch, expected 3.9.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
82
82
|
}
|
|
83
83
|
return binding
|
|
84
84
|
} catch (e) {
|
|
@@ -93,8 +93,8 @@ function requireNative() {
|
|
|
93
93
|
try {
|
|
94
94
|
const binding = require('@versatiles/versatiles-rs-android-arm-eabi')
|
|
95
95
|
const bindingPackageVersion = require('@versatiles/versatiles-rs-android-arm-eabi/package.json').version
|
|
96
|
-
if (bindingPackageVersion !== '3.
|
|
97
|
-
throw new Error(`Native binding package version mismatch, expected 3.
|
|
96
|
+
if (bindingPackageVersion !== '3.9.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
97
|
+
throw new Error(`Native binding package version mismatch, expected 3.9.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
98
98
|
}
|
|
99
99
|
return binding
|
|
100
100
|
} catch (e) {
|
|
@@ -114,8 +114,8 @@ function requireNative() {
|
|
|
114
114
|
try {
|
|
115
115
|
const binding = require('@versatiles/versatiles-rs-win32-x64-gnu')
|
|
116
116
|
const bindingPackageVersion = require('@versatiles/versatiles-rs-win32-x64-gnu/package.json').version
|
|
117
|
-
if (bindingPackageVersion !== '3.
|
|
118
|
-
throw new Error(`Native binding package version mismatch, expected 3.
|
|
117
|
+
if (bindingPackageVersion !== '3.9.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
118
|
+
throw new Error(`Native binding package version mismatch, expected 3.9.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
119
119
|
}
|
|
120
120
|
return binding
|
|
121
121
|
} catch (e) {
|
|
@@ -130,8 +130,8 @@ function requireNative() {
|
|
|
130
130
|
try {
|
|
131
131
|
const binding = require('@versatiles/versatiles-rs-win32-x64-msvc')
|
|
132
132
|
const bindingPackageVersion = require('@versatiles/versatiles-rs-win32-x64-msvc/package.json').version
|
|
133
|
-
if (bindingPackageVersion !== '3.
|
|
134
|
-
throw new Error(`Native binding package version mismatch, expected 3.
|
|
133
|
+
if (bindingPackageVersion !== '3.9.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
134
|
+
throw new Error(`Native binding package version mismatch, expected 3.9.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
135
135
|
}
|
|
136
136
|
return binding
|
|
137
137
|
} catch (e) {
|
|
@@ -147,8 +147,8 @@ function requireNative() {
|
|
|
147
147
|
try {
|
|
148
148
|
const binding = require('@versatiles/versatiles-rs-win32-ia32-msvc')
|
|
149
149
|
const bindingPackageVersion = require('@versatiles/versatiles-rs-win32-ia32-msvc/package.json').version
|
|
150
|
-
if (bindingPackageVersion !== '3.
|
|
151
|
-
throw new Error(`Native binding package version mismatch, expected 3.
|
|
150
|
+
if (bindingPackageVersion !== '3.9.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
151
|
+
throw new Error(`Native binding package version mismatch, expected 3.9.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
152
152
|
}
|
|
153
153
|
return binding
|
|
154
154
|
} catch (e) {
|
|
@@ -163,8 +163,8 @@ function requireNative() {
|
|
|
163
163
|
try {
|
|
164
164
|
const binding = require('@versatiles/versatiles-rs-win32-arm64-msvc')
|
|
165
165
|
const bindingPackageVersion = require('@versatiles/versatiles-rs-win32-arm64-msvc/package.json').version
|
|
166
|
-
if (bindingPackageVersion !== '3.
|
|
167
|
-
throw new Error(`Native binding package version mismatch, expected 3.
|
|
166
|
+
if (bindingPackageVersion !== '3.9.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
167
|
+
throw new Error(`Native binding package version mismatch, expected 3.9.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
168
168
|
}
|
|
169
169
|
return binding
|
|
170
170
|
} catch (e) {
|
|
@@ -182,8 +182,8 @@ function requireNative() {
|
|
|
182
182
|
try {
|
|
183
183
|
const binding = require('@versatiles/versatiles-rs-darwin-universal')
|
|
184
184
|
const bindingPackageVersion = require('@versatiles/versatiles-rs-darwin-universal/package.json').version
|
|
185
|
-
if (bindingPackageVersion !== '3.
|
|
186
|
-
throw new Error(`Native binding package version mismatch, expected 3.
|
|
185
|
+
if (bindingPackageVersion !== '3.9.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
186
|
+
throw new Error(`Native binding package version mismatch, expected 3.9.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
187
187
|
}
|
|
188
188
|
return binding
|
|
189
189
|
} catch (e) {
|
|
@@ -198,8 +198,8 @@ function requireNative() {
|
|
|
198
198
|
try {
|
|
199
199
|
const binding = require('@versatiles/versatiles-rs-darwin-x64')
|
|
200
200
|
const bindingPackageVersion = require('@versatiles/versatiles-rs-darwin-x64/package.json').version
|
|
201
|
-
if (bindingPackageVersion !== '3.
|
|
202
|
-
throw new Error(`Native binding package version mismatch, expected 3.
|
|
201
|
+
if (bindingPackageVersion !== '3.9.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
202
|
+
throw new Error(`Native binding package version mismatch, expected 3.9.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
203
203
|
}
|
|
204
204
|
return binding
|
|
205
205
|
} catch (e) {
|
|
@@ -214,8 +214,8 @@ function requireNative() {
|
|
|
214
214
|
try {
|
|
215
215
|
const binding = require('@versatiles/versatiles-rs-darwin-arm64')
|
|
216
216
|
const bindingPackageVersion = require('@versatiles/versatiles-rs-darwin-arm64/package.json').version
|
|
217
|
-
if (bindingPackageVersion !== '3.
|
|
218
|
-
throw new Error(`Native binding package version mismatch, expected 3.
|
|
217
|
+
if (bindingPackageVersion !== '3.9.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
218
|
+
throw new Error(`Native binding package version mismatch, expected 3.9.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
219
219
|
}
|
|
220
220
|
return binding
|
|
221
221
|
} catch (e) {
|
|
@@ -234,8 +234,8 @@ function requireNative() {
|
|
|
234
234
|
try {
|
|
235
235
|
const binding = require('@versatiles/versatiles-rs-freebsd-x64')
|
|
236
236
|
const bindingPackageVersion = require('@versatiles/versatiles-rs-freebsd-x64/package.json').version
|
|
237
|
-
if (bindingPackageVersion !== '3.
|
|
238
|
-
throw new Error(`Native binding package version mismatch, expected 3.
|
|
237
|
+
if (bindingPackageVersion !== '3.9.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
238
|
+
throw new Error(`Native binding package version mismatch, expected 3.9.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
239
239
|
}
|
|
240
240
|
return binding
|
|
241
241
|
} catch (e) {
|
|
@@ -250,8 +250,8 @@ function requireNative() {
|
|
|
250
250
|
try {
|
|
251
251
|
const binding = require('@versatiles/versatiles-rs-freebsd-arm64')
|
|
252
252
|
const bindingPackageVersion = require('@versatiles/versatiles-rs-freebsd-arm64/package.json').version
|
|
253
|
-
if (bindingPackageVersion !== '3.
|
|
254
|
-
throw new Error(`Native binding package version mismatch, expected 3.
|
|
253
|
+
if (bindingPackageVersion !== '3.9.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
254
|
+
throw new Error(`Native binding package version mismatch, expected 3.9.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
255
255
|
}
|
|
256
256
|
return binding
|
|
257
257
|
} catch (e) {
|
|
@@ -271,8 +271,8 @@ function requireNative() {
|
|
|
271
271
|
try {
|
|
272
272
|
const binding = require('@versatiles/versatiles-rs-linux-x64-musl')
|
|
273
273
|
const bindingPackageVersion = require('@versatiles/versatiles-rs-linux-x64-musl/package.json').version
|
|
274
|
-
if (bindingPackageVersion !== '3.
|
|
275
|
-
throw new Error(`Native binding package version mismatch, expected 3.
|
|
274
|
+
if (bindingPackageVersion !== '3.9.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
275
|
+
throw new Error(`Native binding package version mismatch, expected 3.9.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
276
276
|
}
|
|
277
277
|
return binding
|
|
278
278
|
} catch (e) {
|
|
@@ -287,8 +287,8 @@ function requireNative() {
|
|
|
287
287
|
try {
|
|
288
288
|
const binding = require('@versatiles/versatiles-rs-linux-x64-gnu')
|
|
289
289
|
const bindingPackageVersion = require('@versatiles/versatiles-rs-linux-x64-gnu/package.json').version
|
|
290
|
-
if (bindingPackageVersion !== '3.
|
|
291
|
-
throw new Error(`Native binding package version mismatch, expected 3.
|
|
290
|
+
if (bindingPackageVersion !== '3.9.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
291
|
+
throw new Error(`Native binding package version mismatch, expected 3.9.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
292
292
|
}
|
|
293
293
|
return binding
|
|
294
294
|
} catch (e) {
|
|
@@ -305,8 +305,8 @@ function requireNative() {
|
|
|
305
305
|
try {
|
|
306
306
|
const binding = require('@versatiles/versatiles-rs-linux-arm64-musl')
|
|
307
307
|
const bindingPackageVersion = require('@versatiles/versatiles-rs-linux-arm64-musl/package.json').version
|
|
308
|
-
if (bindingPackageVersion !== '3.
|
|
309
|
-
throw new Error(`Native binding package version mismatch, expected 3.
|
|
308
|
+
if (bindingPackageVersion !== '3.9.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
309
|
+
throw new Error(`Native binding package version mismatch, expected 3.9.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
310
310
|
}
|
|
311
311
|
return binding
|
|
312
312
|
} catch (e) {
|
|
@@ -321,8 +321,8 @@ function requireNative() {
|
|
|
321
321
|
try {
|
|
322
322
|
const binding = require('@versatiles/versatiles-rs-linux-arm64-gnu')
|
|
323
323
|
const bindingPackageVersion = require('@versatiles/versatiles-rs-linux-arm64-gnu/package.json').version
|
|
324
|
-
if (bindingPackageVersion !== '3.
|
|
325
|
-
throw new Error(`Native binding package version mismatch, expected 3.
|
|
324
|
+
if (bindingPackageVersion !== '3.9.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
325
|
+
throw new Error(`Native binding package version mismatch, expected 3.9.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
326
326
|
}
|
|
327
327
|
return binding
|
|
328
328
|
} catch (e) {
|
|
@@ -339,8 +339,8 @@ function requireNative() {
|
|
|
339
339
|
try {
|
|
340
340
|
const binding = require('@versatiles/versatiles-rs-linux-arm-musleabihf')
|
|
341
341
|
const bindingPackageVersion = require('@versatiles/versatiles-rs-linux-arm-musleabihf/package.json').version
|
|
342
|
-
if (bindingPackageVersion !== '3.
|
|
343
|
-
throw new Error(`Native binding package version mismatch, expected 3.
|
|
342
|
+
if (bindingPackageVersion !== '3.9.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
343
|
+
throw new Error(`Native binding package version mismatch, expected 3.9.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
344
344
|
}
|
|
345
345
|
return binding
|
|
346
346
|
} catch (e) {
|
|
@@ -355,8 +355,8 @@ function requireNative() {
|
|
|
355
355
|
try {
|
|
356
356
|
const binding = require('@versatiles/versatiles-rs-linux-arm-gnueabihf')
|
|
357
357
|
const bindingPackageVersion = require('@versatiles/versatiles-rs-linux-arm-gnueabihf/package.json').version
|
|
358
|
-
if (bindingPackageVersion !== '3.
|
|
359
|
-
throw new Error(`Native binding package version mismatch, expected 3.
|
|
358
|
+
if (bindingPackageVersion !== '3.9.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
359
|
+
throw new Error(`Native binding package version mismatch, expected 3.9.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
360
360
|
}
|
|
361
361
|
return binding
|
|
362
362
|
} catch (e) {
|
|
@@ -373,8 +373,8 @@ function requireNative() {
|
|
|
373
373
|
try {
|
|
374
374
|
const binding = require('@versatiles/versatiles-rs-linux-loong64-musl')
|
|
375
375
|
const bindingPackageVersion = require('@versatiles/versatiles-rs-linux-loong64-musl/package.json').version
|
|
376
|
-
if (bindingPackageVersion !== '3.
|
|
377
|
-
throw new Error(`Native binding package version mismatch, expected 3.
|
|
376
|
+
if (bindingPackageVersion !== '3.9.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
377
|
+
throw new Error(`Native binding package version mismatch, expected 3.9.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
378
378
|
}
|
|
379
379
|
return binding
|
|
380
380
|
} catch (e) {
|
|
@@ -389,8 +389,8 @@ function requireNative() {
|
|
|
389
389
|
try {
|
|
390
390
|
const binding = require('@versatiles/versatiles-rs-linux-loong64-gnu')
|
|
391
391
|
const bindingPackageVersion = require('@versatiles/versatiles-rs-linux-loong64-gnu/package.json').version
|
|
392
|
-
if (bindingPackageVersion !== '3.
|
|
393
|
-
throw new Error(`Native binding package version mismatch, expected 3.
|
|
392
|
+
if (bindingPackageVersion !== '3.9.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
393
|
+
throw new Error(`Native binding package version mismatch, expected 3.9.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
394
394
|
}
|
|
395
395
|
return binding
|
|
396
396
|
} catch (e) {
|
|
@@ -407,8 +407,8 @@ function requireNative() {
|
|
|
407
407
|
try {
|
|
408
408
|
const binding = require('@versatiles/versatiles-rs-linux-riscv64-musl')
|
|
409
409
|
const bindingPackageVersion = require('@versatiles/versatiles-rs-linux-riscv64-musl/package.json').version
|
|
410
|
-
if (bindingPackageVersion !== '3.
|
|
411
|
-
throw new Error(`Native binding package version mismatch, expected 3.
|
|
410
|
+
if (bindingPackageVersion !== '3.9.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
411
|
+
throw new Error(`Native binding package version mismatch, expected 3.9.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
412
412
|
}
|
|
413
413
|
return binding
|
|
414
414
|
} catch (e) {
|
|
@@ -423,8 +423,8 @@ function requireNative() {
|
|
|
423
423
|
try {
|
|
424
424
|
const binding = require('@versatiles/versatiles-rs-linux-riscv64-gnu')
|
|
425
425
|
const bindingPackageVersion = require('@versatiles/versatiles-rs-linux-riscv64-gnu/package.json').version
|
|
426
|
-
if (bindingPackageVersion !== '3.
|
|
427
|
-
throw new Error(`Native binding package version mismatch, expected 3.
|
|
426
|
+
if (bindingPackageVersion !== '3.9.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
427
|
+
throw new Error(`Native binding package version mismatch, expected 3.9.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
428
428
|
}
|
|
429
429
|
return binding
|
|
430
430
|
} catch (e) {
|
|
@@ -440,8 +440,8 @@ function requireNative() {
|
|
|
440
440
|
try {
|
|
441
441
|
const binding = require('@versatiles/versatiles-rs-linux-ppc64-gnu')
|
|
442
442
|
const bindingPackageVersion = require('@versatiles/versatiles-rs-linux-ppc64-gnu/package.json').version
|
|
443
|
-
if (bindingPackageVersion !== '3.
|
|
444
|
-
throw new Error(`Native binding package version mismatch, expected 3.
|
|
443
|
+
if (bindingPackageVersion !== '3.9.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
444
|
+
throw new Error(`Native binding package version mismatch, expected 3.9.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
445
445
|
}
|
|
446
446
|
return binding
|
|
447
447
|
} catch (e) {
|
|
@@ -456,8 +456,8 @@ function requireNative() {
|
|
|
456
456
|
try {
|
|
457
457
|
const binding = require('@versatiles/versatiles-rs-linux-s390x-gnu')
|
|
458
458
|
const bindingPackageVersion = require('@versatiles/versatiles-rs-linux-s390x-gnu/package.json').version
|
|
459
|
-
if (bindingPackageVersion !== '3.
|
|
460
|
-
throw new Error(`Native binding package version mismatch, expected 3.
|
|
459
|
+
if (bindingPackageVersion !== '3.9.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
460
|
+
throw new Error(`Native binding package version mismatch, expected 3.9.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
461
461
|
}
|
|
462
462
|
return binding
|
|
463
463
|
} catch (e) {
|
|
@@ -476,8 +476,8 @@ function requireNative() {
|
|
|
476
476
|
try {
|
|
477
477
|
const binding = require('@versatiles/versatiles-rs-openharmony-arm64')
|
|
478
478
|
const bindingPackageVersion = require('@versatiles/versatiles-rs-openharmony-arm64/package.json').version
|
|
479
|
-
if (bindingPackageVersion !== '3.
|
|
480
|
-
throw new Error(`Native binding package version mismatch, expected 3.
|
|
479
|
+
if (bindingPackageVersion !== '3.9.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
480
|
+
throw new Error(`Native binding package version mismatch, expected 3.9.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
481
481
|
}
|
|
482
482
|
return binding
|
|
483
483
|
} catch (e) {
|
|
@@ -492,8 +492,8 @@ function requireNative() {
|
|
|
492
492
|
try {
|
|
493
493
|
const binding = require('@versatiles/versatiles-rs-openharmony-x64')
|
|
494
494
|
const bindingPackageVersion = require('@versatiles/versatiles-rs-openharmony-x64/package.json').version
|
|
495
|
-
if (bindingPackageVersion !== '3.
|
|
496
|
-
throw new Error(`Native binding package version mismatch, expected 3.
|
|
495
|
+
if (bindingPackageVersion !== '3.9.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
496
|
+
throw new Error(`Native binding package version mismatch, expected 3.9.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
497
497
|
}
|
|
498
498
|
return binding
|
|
499
499
|
} catch (e) {
|
|
@@ -508,8 +508,8 @@ function requireNative() {
|
|
|
508
508
|
try {
|
|
509
509
|
const binding = require('@versatiles/versatiles-rs-openharmony-arm')
|
|
510
510
|
const bindingPackageVersion = require('@versatiles/versatiles-rs-openharmony-arm/package.json').version
|
|
511
|
-
if (bindingPackageVersion !== '3.
|
|
512
|
-
throw new Error(`Native binding package version mismatch, expected 3.
|
|
511
|
+
if (bindingPackageVersion !== '3.9.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
512
|
+
throw new Error(`Native binding package version mismatch, expected 3.9.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
513
513
|
}
|
|
514
514
|
return binding
|
|
515
515
|
} catch (e) {
|
package/index.js
CHANGED
|
@@ -81,8 +81,8 @@ function requireNative() {
|
|
|
81
81
|
try {
|
|
82
82
|
const binding = require('@versatiles/versatiles-rs-android-arm64')
|
|
83
83
|
const bindingPackageVersion = require('@versatiles/versatiles-rs-android-arm64/package.json').version
|
|
84
|
-
if (bindingPackageVersion !== '3.
|
|
85
|
-
throw new Error(`Native binding package version mismatch, expected 3.
|
|
84
|
+
if (bindingPackageVersion !== '3.9.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
85
|
+
throw new Error(`Native binding package version mismatch, expected 3.9.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
86
86
|
}
|
|
87
87
|
return binding
|
|
88
88
|
} catch (e) {
|
|
@@ -97,8 +97,8 @@ function requireNative() {
|
|
|
97
97
|
try {
|
|
98
98
|
const binding = require('@versatiles/versatiles-rs-android-arm-eabi')
|
|
99
99
|
const bindingPackageVersion = require('@versatiles/versatiles-rs-android-arm-eabi/package.json').version
|
|
100
|
-
if (bindingPackageVersion !== '3.
|
|
101
|
-
throw new Error(`Native binding package version mismatch, expected 3.
|
|
100
|
+
if (bindingPackageVersion !== '3.9.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
101
|
+
throw new Error(`Native binding package version mismatch, expected 3.9.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
102
102
|
}
|
|
103
103
|
return binding
|
|
104
104
|
} catch (e) {
|
|
@@ -118,8 +118,8 @@ function requireNative() {
|
|
|
118
118
|
try {
|
|
119
119
|
const binding = require('@versatiles/versatiles-rs-win32-x64-gnu')
|
|
120
120
|
const bindingPackageVersion = require('@versatiles/versatiles-rs-win32-x64-gnu/package.json').version
|
|
121
|
-
if (bindingPackageVersion !== '3.
|
|
122
|
-
throw new Error(`Native binding package version mismatch, expected 3.
|
|
121
|
+
if (bindingPackageVersion !== '3.9.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
122
|
+
throw new Error(`Native binding package version mismatch, expected 3.9.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
123
123
|
}
|
|
124
124
|
return binding
|
|
125
125
|
} catch (e) {
|
|
@@ -134,8 +134,8 @@ function requireNative() {
|
|
|
134
134
|
try {
|
|
135
135
|
const binding = require('@versatiles/versatiles-rs-win32-x64-msvc')
|
|
136
136
|
const bindingPackageVersion = require('@versatiles/versatiles-rs-win32-x64-msvc/package.json').version
|
|
137
|
-
if (bindingPackageVersion !== '3.
|
|
138
|
-
throw new Error(`Native binding package version mismatch, expected 3.
|
|
137
|
+
if (bindingPackageVersion !== '3.9.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
138
|
+
throw new Error(`Native binding package version mismatch, expected 3.9.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
139
139
|
}
|
|
140
140
|
return binding
|
|
141
141
|
} catch (e) {
|
|
@@ -151,8 +151,8 @@ function requireNative() {
|
|
|
151
151
|
try {
|
|
152
152
|
const binding = require('@versatiles/versatiles-rs-win32-ia32-msvc')
|
|
153
153
|
const bindingPackageVersion = require('@versatiles/versatiles-rs-win32-ia32-msvc/package.json').version
|
|
154
|
-
if (bindingPackageVersion !== '3.
|
|
155
|
-
throw new Error(`Native binding package version mismatch, expected 3.
|
|
154
|
+
if (bindingPackageVersion !== '3.9.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
155
|
+
throw new Error(`Native binding package version mismatch, expected 3.9.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
156
156
|
}
|
|
157
157
|
return binding
|
|
158
158
|
} catch (e) {
|
|
@@ -167,8 +167,8 @@ function requireNative() {
|
|
|
167
167
|
try {
|
|
168
168
|
const binding = require('@versatiles/versatiles-rs-win32-arm64-msvc')
|
|
169
169
|
const bindingPackageVersion = require('@versatiles/versatiles-rs-win32-arm64-msvc/package.json').version
|
|
170
|
-
if (bindingPackageVersion !== '3.
|
|
171
|
-
throw new Error(`Native binding package version mismatch, expected 3.
|
|
170
|
+
if (bindingPackageVersion !== '3.9.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
171
|
+
throw new Error(`Native binding package version mismatch, expected 3.9.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
172
172
|
}
|
|
173
173
|
return binding
|
|
174
174
|
} catch (e) {
|
|
@@ -186,8 +186,8 @@ function requireNative() {
|
|
|
186
186
|
try {
|
|
187
187
|
const binding = require('@versatiles/versatiles-rs-darwin-universal')
|
|
188
188
|
const bindingPackageVersion = require('@versatiles/versatiles-rs-darwin-universal/package.json').version
|
|
189
|
-
if (bindingPackageVersion !== '3.
|
|
190
|
-
throw new Error(`Native binding package version mismatch, expected 3.
|
|
189
|
+
if (bindingPackageVersion !== '3.9.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
190
|
+
throw new Error(`Native binding package version mismatch, expected 3.9.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
191
191
|
}
|
|
192
192
|
return binding
|
|
193
193
|
} catch (e) {
|
|
@@ -202,8 +202,8 @@ function requireNative() {
|
|
|
202
202
|
try {
|
|
203
203
|
const binding = require('@versatiles/versatiles-rs-darwin-x64')
|
|
204
204
|
const bindingPackageVersion = require('@versatiles/versatiles-rs-darwin-x64/package.json').version
|
|
205
|
-
if (bindingPackageVersion !== '3.
|
|
206
|
-
throw new Error(`Native binding package version mismatch, expected 3.
|
|
205
|
+
if (bindingPackageVersion !== '3.9.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
206
|
+
throw new Error(`Native binding package version mismatch, expected 3.9.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
207
207
|
}
|
|
208
208
|
return binding
|
|
209
209
|
} catch (e) {
|
|
@@ -218,8 +218,8 @@ function requireNative() {
|
|
|
218
218
|
try {
|
|
219
219
|
const binding = require('@versatiles/versatiles-rs-darwin-arm64')
|
|
220
220
|
const bindingPackageVersion = require('@versatiles/versatiles-rs-darwin-arm64/package.json').version
|
|
221
|
-
if (bindingPackageVersion !== '3.
|
|
222
|
-
throw new Error(`Native binding package version mismatch, expected 3.
|
|
221
|
+
if (bindingPackageVersion !== '3.9.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
222
|
+
throw new Error(`Native binding package version mismatch, expected 3.9.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
223
223
|
}
|
|
224
224
|
return binding
|
|
225
225
|
} catch (e) {
|
|
@@ -238,8 +238,8 @@ function requireNative() {
|
|
|
238
238
|
try {
|
|
239
239
|
const binding = require('@versatiles/versatiles-rs-freebsd-x64')
|
|
240
240
|
const bindingPackageVersion = require('@versatiles/versatiles-rs-freebsd-x64/package.json').version
|
|
241
|
-
if (bindingPackageVersion !== '3.
|
|
242
|
-
throw new Error(`Native binding package version mismatch, expected 3.
|
|
241
|
+
if (bindingPackageVersion !== '3.9.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
242
|
+
throw new Error(`Native binding package version mismatch, expected 3.9.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
243
243
|
}
|
|
244
244
|
return binding
|
|
245
245
|
} catch (e) {
|
|
@@ -254,8 +254,8 @@ function requireNative() {
|
|
|
254
254
|
try {
|
|
255
255
|
const binding = require('@versatiles/versatiles-rs-freebsd-arm64')
|
|
256
256
|
const bindingPackageVersion = require('@versatiles/versatiles-rs-freebsd-arm64/package.json').version
|
|
257
|
-
if (bindingPackageVersion !== '3.
|
|
258
|
-
throw new Error(`Native binding package version mismatch, expected 3.
|
|
257
|
+
if (bindingPackageVersion !== '3.9.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
258
|
+
throw new Error(`Native binding package version mismatch, expected 3.9.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
259
259
|
}
|
|
260
260
|
return binding
|
|
261
261
|
} catch (e) {
|
|
@@ -275,8 +275,8 @@ function requireNative() {
|
|
|
275
275
|
try {
|
|
276
276
|
const binding = require('@versatiles/versatiles-rs-linux-x64-musl')
|
|
277
277
|
const bindingPackageVersion = require('@versatiles/versatiles-rs-linux-x64-musl/package.json').version
|
|
278
|
-
if (bindingPackageVersion !== '3.
|
|
279
|
-
throw new Error(`Native binding package version mismatch, expected 3.
|
|
278
|
+
if (bindingPackageVersion !== '3.9.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
279
|
+
throw new Error(`Native binding package version mismatch, expected 3.9.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
280
280
|
}
|
|
281
281
|
return binding
|
|
282
282
|
} catch (e) {
|
|
@@ -291,8 +291,8 @@ function requireNative() {
|
|
|
291
291
|
try {
|
|
292
292
|
const binding = require('@versatiles/versatiles-rs-linux-x64-gnu')
|
|
293
293
|
const bindingPackageVersion = require('@versatiles/versatiles-rs-linux-x64-gnu/package.json').version
|
|
294
|
-
if (bindingPackageVersion !== '3.
|
|
295
|
-
throw new Error(`Native binding package version mismatch, expected 3.
|
|
294
|
+
if (bindingPackageVersion !== '3.9.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
295
|
+
throw new Error(`Native binding package version mismatch, expected 3.9.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
296
296
|
}
|
|
297
297
|
return binding
|
|
298
298
|
} catch (e) {
|
|
@@ -309,8 +309,8 @@ function requireNative() {
|
|
|
309
309
|
try {
|
|
310
310
|
const binding = require('@versatiles/versatiles-rs-linux-arm64-musl')
|
|
311
311
|
const bindingPackageVersion = require('@versatiles/versatiles-rs-linux-arm64-musl/package.json').version
|
|
312
|
-
if (bindingPackageVersion !== '3.
|
|
313
|
-
throw new Error(`Native binding package version mismatch, expected 3.
|
|
312
|
+
if (bindingPackageVersion !== '3.9.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
313
|
+
throw new Error(`Native binding package version mismatch, expected 3.9.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
314
314
|
}
|
|
315
315
|
return binding
|
|
316
316
|
} catch (e) {
|
|
@@ -325,8 +325,8 @@ function requireNative() {
|
|
|
325
325
|
try {
|
|
326
326
|
const binding = require('@versatiles/versatiles-rs-linux-arm64-gnu')
|
|
327
327
|
const bindingPackageVersion = require('@versatiles/versatiles-rs-linux-arm64-gnu/package.json').version
|
|
328
|
-
if (bindingPackageVersion !== '3.
|
|
329
|
-
throw new Error(`Native binding package version mismatch, expected 3.
|
|
328
|
+
if (bindingPackageVersion !== '3.9.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
329
|
+
throw new Error(`Native binding package version mismatch, expected 3.9.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
330
330
|
}
|
|
331
331
|
return binding
|
|
332
332
|
} catch (e) {
|
|
@@ -343,8 +343,8 @@ function requireNative() {
|
|
|
343
343
|
try {
|
|
344
344
|
const binding = require('@versatiles/versatiles-rs-linux-arm-musleabihf')
|
|
345
345
|
const bindingPackageVersion = require('@versatiles/versatiles-rs-linux-arm-musleabihf/package.json').version
|
|
346
|
-
if (bindingPackageVersion !== '3.
|
|
347
|
-
throw new Error(`Native binding package version mismatch, expected 3.
|
|
346
|
+
if (bindingPackageVersion !== '3.9.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
347
|
+
throw new Error(`Native binding package version mismatch, expected 3.9.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
348
348
|
}
|
|
349
349
|
return binding
|
|
350
350
|
} catch (e) {
|
|
@@ -359,8 +359,8 @@ function requireNative() {
|
|
|
359
359
|
try {
|
|
360
360
|
const binding = require('@versatiles/versatiles-rs-linux-arm-gnueabihf')
|
|
361
361
|
const bindingPackageVersion = require('@versatiles/versatiles-rs-linux-arm-gnueabihf/package.json').version
|
|
362
|
-
if (bindingPackageVersion !== '3.
|
|
363
|
-
throw new Error(`Native binding package version mismatch, expected 3.
|
|
362
|
+
if (bindingPackageVersion !== '3.9.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
363
|
+
throw new Error(`Native binding package version mismatch, expected 3.9.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
364
364
|
}
|
|
365
365
|
return binding
|
|
366
366
|
} catch (e) {
|
|
@@ -377,8 +377,8 @@ function requireNative() {
|
|
|
377
377
|
try {
|
|
378
378
|
const binding = require('@versatiles/versatiles-rs-linux-loong64-musl')
|
|
379
379
|
const bindingPackageVersion = require('@versatiles/versatiles-rs-linux-loong64-musl/package.json').version
|
|
380
|
-
if (bindingPackageVersion !== '3.
|
|
381
|
-
throw new Error(`Native binding package version mismatch, expected 3.
|
|
380
|
+
if (bindingPackageVersion !== '3.9.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
381
|
+
throw new Error(`Native binding package version mismatch, expected 3.9.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
382
382
|
}
|
|
383
383
|
return binding
|
|
384
384
|
} catch (e) {
|
|
@@ -393,8 +393,8 @@ function requireNative() {
|
|
|
393
393
|
try {
|
|
394
394
|
const binding = require('@versatiles/versatiles-rs-linux-loong64-gnu')
|
|
395
395
|
const bindingPackageVersion = require('@versatiles/versatiles-rs-linux-loong64-gnu/package.json').version
|
|
396
|
-
if (bindingPackageVersion !== '3.
|
|
397
|
-
throw new Error(`Native binding package version mismatch, expected 3.
|
|
396
|
+
if (bindingPackageVersion !== '3.9.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
397
|
+
throw new Error(`Native binding package version mismatch, expected 3.9.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
398
398
|
}
|
|
399
399
|
return binding
|
|
400
400
|
} catch (e) {
|
|
@@ -411,8 +411,8 @@ function requireNative() {
|
|
|
411
411
|
try {
|
|
412
412
|
const binding = require('@versatiles/versatiles-rs-linux-riscv64-musl')
|
|
413
413
|
const bindingPackageVersion = require('@versatiles/versatiles-rs-linux-riscv64-musl/package.json').version
|
|
414
|
-
if (bindingPackageVersion !== '3.
|
|
415
|
-
throw new Error(`Native binding package version mismatch, expected 3.
|
|
414
|
+
if (bindingPackageVersion !== '3.9.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
415
|
+
throw new Error(`Native binding package version mismatch, expected 3.9.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
416
416
|
}
|
|
417
417
|
return binding
|
|
418
418
|
} catch (e) {
|
|
@@ -427,8 +427,8 @@ function requireNative() {
|
|
|
427
427
|
try {
|
|
428
428
|
const binding = require('@versatiles/versatiles-rs-linux-riscv64-gnu')
|
|
429
429
|
const bindingPackageVersion = require('@versatiles/versatiles-rs-linux-riscv64-gnu/package.json').version
|
|
430
|
-
if (bindingPackageVersion !== '3.
|
|
431
|
-
throw new Error(`Native binding package version mismatch, expected 3.
|
|
430
|
+
if (bindingPackageVersion !== '3.9.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
431
|
+
throw new Error(`Native binding package version mismatch, expected 3.9.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
432
432
|
}
|
|
433
433
|
return binding
|
|
434
434
|
} catch (e) {
|
|
@@ -444,8 +444,8 @@ function requireNative() {
|
|
|
444
444
|
try {
|
|
445
445
|
const binding = require('@versatiles/versatiles-rs-linux-ppc64-gnu')
|
|
446
446
|
const bindingPackageVersion = require('@versatiles/versatiles-rs-linux-ppc64-gnu/package.json').version
|
|
447
|
-
if (bindingPackageVersion !== '3.
|
|
448
|
-
throw new Error(`Native binding package version mismatch, expected 3.
|
|
447
|
+
if (bindingPackageVersion !== '3.9.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
448
|
+
throw new Error(`Native binding package version mismatch, expected 3.9.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
449
449
|
}
|
|
450
450
|
return binding
|
|
451
451
|
} catch (e) {
|
|
@@ -460,8 +460,8 @@ function requireNative() {
|
|
|
460
460
|
try {
|
|
461
461
|
const binding = require('@versatiles/versatiles-rs-linux-s390x-gnu')
|
|
462
462
|
const bindingPackageVersion = require('@versatiles/versatiles-rs-linux-s390x-gnu/package.json').version
|
|
463
|
-
if (bindingPackageVersion !== '3.
|
|
464
|
-
throw new Error(`Native binding package version mismatch, expected 3.
|
|
463
|
+
if (bindingPackageVersion !== '3.9.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
464
|
+
throw new Error(`Native binding package version mismatch, expected 3.9.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
465
465
|
}
|
|
466
466
|
return binding
|
|
467
467
|
} catch (e) {
|
|
@@ -480,8 +480,8 @@ function requireNative() {
|
|
|
480
480
|
try {
|
|
481
481
|
const binding = require('@versatiles/versatiles-rs-openharmony-arm64')
|
|
482
482
|
const bindingPackageVersion = require('@versatiles/versatiles-rs-openharmony-arm64/package.json').version
|
|
483
|
-
if (bindingPackageVersion !== '3.
|
|
484
|
-
throw new Error(`Native binding package version mismatch, expected 3.
|
|
483
|
+
if (bindingPackageVersion !== '3.9.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
484
|
+
throw new Error(`Native binding package version mismatch, expected 3.9.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
485
485
|
}
|
|
486
486
|
return binding
|
|
487
487
|
} catch (e) {
|
|
@@ -496,8 +496,8 @@ function requireNative() {
|
|
|
496
496
|
try {
|
|
497
497
|
const binding = require('@versatiles/versatiles-rs-openharmony-x64')
|
|
498
498
|
const bindingPackageVersion = require('@versatiles/versatiles-rs-openharmony-x64/package.json').version
|
|
499
|
-
if (bindingPackageVersion !== '3.
|
|
500
|
-
throw new Error(`Native binding package version mismatch, expected 3.
|
|
499
|
+
if (bindingPackageVersion !== '3.9.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
500
|
+
throw new Error(`Native binding package version mismatch, expected 3.9.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
501
501
|
}
|
|
502
502
|
return binding
|
|
503
503
|
} catch (e) {
|
|
@@ -512,8 +512,8 @@ function requireNative() {
|
|
|
512
512
|
try {
|
|
513
513
|
const binding = require('@versatiles/versatiles-rs-openharmony-arm')
|
|
514
514
|
const bindingPackageVersion = require('@versatiles/versatiles-rs-openharmony-arm/package.json').version
|
|
515
|
-
if (bindingPackageVersion !== '3.
|
|
516
|
-
throw new Error(`Native binding package version mismatch, expected 3.
|
|
515
|
+
if (bindingPackageVersion !== '3.9.0' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
516
|
+
throw new Error(`Native binding package version mismatch, expected 3.9.0 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`)
|
|
517
517
|
}
|
|
518
518
|
return binding
|
|
519
519
|
} catch (e) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@versatiles/versatiles-rs",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.9.0",
|
|
4
4
|
"description": "Node.js bindings for VersaTiles - convert, serve, and process map tiles",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -87,28 +87,28 @@
|
|
|
87
87
|
},
|
|
88
88
|
"devDependencies": {
|
|
89
89
|
"@eslint/js": "^10.0.1",
|
|
90
|
-
"@napi-rs/cli": "^3.
|
|
91
|
-
"@types/node": "^25.
|
|
92
|
-
"@vitest/ui": "^4.
|
|
90
|
+
"@napi-rs/cli": "^3.6.0",
|
|
91
|
+
"@types/node": "^25.5.2",
|
|
92
|
+
"@vitest/ui": "^4.1.2",
|
|
93
93
|
"chalk": "^5.6.2",
|
|
94
|
-
"eslint": "^10.0
|
|
94
|
+
"eslint": "^10.1.0",
|
|
95
95
|
"eslint-config-prettier": "^10.1.8",
|
|
96
|
-
"npm-check-updates": "^
|
|
96
|
+
"npm-check-updates": "^20.0.0",
|
|
97
97
|
"prettier": "^3.8.1",
|
|
98
98
|
"tsx": "^4.21.0",
|
|
99
|
-
"typedoc": "^0.28.
|
|
100
|
-
"typescript": "^
|
|
101
|
-
"typescript-eslint": "^8.
|
|
102
|
-
"vitest": "^4.
|
|
99
|
+
"typedoc": "^0.28.18",
|
|
100
|
+
"typescript": "^6.0.2",
|
|
101
|
+
"typescript-eslint": "^8.58.0",
|
|
102
|
+
"vitest": "^4.1.2"
|
|
103
103
|
},
|
|
104
104
|
"optionalDependencies": {
|
|
105
|
-
"@versatiles/versatiles-rs-darwin-arm64": "3.
|
|
106
|
-
"@versatiles/versatiles-rs-darwin-x64": "3.
|
|
107
|
-
"@versatiles/versatiles-rs-linux-arm64-gnu": "3.
|
|
108
|
-
"@versatiles/versatiles-rs-linux-arm64-musl": "3.
|
|
109
|
-
"@versatiles/versatiles-rs-linux-x64-gnu": "3.
|
|
110
|
-
"@versatiles/versatiles-rs-linux-x64-musl": "3.
|
|
111
|
-
"@versatiles/versatiles-rs-win32-arm64-msvc": "3.
|
|
112
|
-
"@versatiles/versatiles-rs-win32-x64-msvc": "3.
|
|
105
|
+
"@versatiles/versatiles-rs-darwin-arm64": "3.9.0",
|
|
106
|
+
"@versatiles/versatiles-rs-darwin-x64": "3.9.0",
|
|
107
|
+
"@versatiles/versatiles-rs-linux-arm64-gnu": "3.9.0",
|
|
108
|
+
"@versatiles/versatiles-rs-linux-arm64-musl": "3.9.0",
|
|
109
|
+
"@versatiles/versatiles-rs-linux-x64-gnu": "3.9.0",
|
|
110
|
+
"@versatiles/versatiles-rs-linux-x64-musl": "3.9.0",
|
|
111
|
+
"@versatiles/versatiles-rs-win32-arm64-msvc": "3.9.0",
|
|
112
|
+
"@versatiles/versatiles-rs-win32-x64-msvc": "3.9.0"
|
|
113
113
|
}
|
|
114
114
|
}
|
package/vpl.d.ts
CHANGED
|
@@ -18,7 +18,7 @@ export interface FromDebugOptions {
|
|
|
18
18
|
export interface FromStackedRasterOptions {
|
|
19
19
|
/** The tile format to use for the output tiles. Default: format of the first source. */
|
|
20
20
|
format?: string;
|
|
21
|
-
/** Whether to automatically
|
|
21
|
+
/** Whether to automatically wrap each source with `raster_overscale` so that sources missing native tiles at the requested zoom level still contribute via upscaled tiles. When all sources overlapping a requested bbox are overscaled (none have native data), this operation returns an empty stream. Place a `raster_overscale` *after* `from_stacked_raster` in the pipeline to cover those tiles — it is more efficient to upscale one blended tile than N individual tiles. Default: `false`. */
|
|
22
22
|
autoOverscale?: boolean;
|
|
23
23
|
}
|
|
24
24
|
export interface FromTileOptions {
|
|
@@ -62,16 +62,20 @@ export interface MetaUpdateOptions {
|
|
|
62
62
|
export interface DemOverviewOptions {
|
|
63
63
|
/** Use this zoom level to build the overview. Defaults to the maximum zoom level of the source. */
|
|
64
64
|
level?: number;
|
|
65
|
-
/** Size of the tiles in pixels. Defaults to 512. */
|
|
66
|
-
tileSize?: number;
|
|
67
65
|
/** Override auto-detection of DEM encoding. Values: "mapbox", "terrarium". */
|
|
68
66
|
encoding?: string;
|
|
69
67
|
}
|
|
70
68
|
export interface DemQuantizeOptions {
|
|
71
|
-
/**
|
|
72
|
-
|
|
73
|
-
/** Maximum allowed
|
|
74
|
-
|
|
69
|
+
/** Allowed elevation error as fraction of pixel ground size. E.g. 0.5 means for a 10 m pixel, allow up to 5 m elevation error. Defaults to 0.5. */
|
|
70
|
+
elevationError?: number;
|
|
71
|
+
/** Maximum allowed slope change in degrees due to quantization. Defaults to 1.0. */
|
|
72
|
+
slopeError?: number;
|
|
73
|
+
/** Override auto-detection of DEM encoding. Values: "mapbox", "terrarium". */
|
|
74
|
+
encoding?: string;
|
|
75
|
+
}
|
|
76
|
+
export interface DemTileResizeOptions {
|
|
77
|
+
/** Target tile size in pixels. Must be 256 or 512. */
|
|
78
|
+
tileSize?: number;
|
|
75
79
|
/** Override auto-detection of DEM encoding. Values: "mapbox", "terrarium". */
|
|
76
80
|
encoding?: string;
|
|
77
81
|
}
|
|
@@ -82,10 +86,12 @@ export interface RasterFlattenOptions {
|
|
|
82
86
|
export interface RasterFormatOptions {
|
|
83
87
|
/** The desired tile format. Allowed values are: AVIF, JPG, PNG or WEBP. If not specified, the source format will be used. */
|
|
84
88
|
format?: string;
|
|
85
|
-
/** Quality level for the tile compression (only AVIF, JPG or WEBP), between 0 (worst) and 100 (lossless). To allow different quality levels for different zoom levels, this can also be a comma-separated list like this: "
|
|
89
|
+
/** Quality level for the tile compression (only AVIF, JPG or WEBP), between 0 (worst) and 100 (lossless). To allow different quality levels for different zoom levels, this can also be a comma-separated list like this: "70,14:50,15:20", where the first value is the default quality, and the other values specify the quality for the specified zoom level (and higher). */
|
|
86
90
|
quality?: string;
|
|
87
|
-
/**
|
|
88
|
-
|
|
91
|
+
/** Quality level for translucent (semi-transparent) tiles, using the same zoom-dependent syntax as quality. When set, tiles are checked for opacity: opaque tiles use the normal quality setting, while translucent tiles use this value (typically 100 for lossless). */
|
|
92
|
+
qualityTranslucent?: string;
|
|
93
|
+
/** Compression effort, between 0 (fastest) and 100 (slowest/best). */
|
|
94
|
+
effort?: number;
|
|
89
95
|
}
|
|
90
96
|
export interface RasterLevelsOptions {
|
|
91
97
|
/** Brightness adjustment, between -255 and 255. Defaults to 0.0 (no change). */
|
|
@@ -116,7 +122,9 @@ export interface RasterOverscaleOptions {
|
|
|
116
122
|
export interface RasterOverviewOptions {
|
|
117
123
|
/** use this zoom level to build the overview. Defaults to the maximum zoom level of the source. */
|
|
118
124
|
level?: number;
|
|
119
|
-
|
|
125
|
+
}
|
|
126
|
+
export interface RasterTileResizeOptions {
|
|
127
|
+
/** Target tile size in pixels. A value of `256` expects source tiles of 512px, which will be split into four 256px output tiles at the next higher zoom level. Level 0 is downscaled instead. A value of `512` expects source tiles measuring 256px, which will be merged into 512px output tiles at the next lower zoom level. */
|
|
120
128
|
tileSize?: number;
|
|
121
129
|
}
|
|
122
130
|
export interface VectorFilterLayersOptions {
|
|
@@ -178,9 +186,11 @@ export declare class VPL {
|
|
|
178
186
|
demOverview(options?: DemOverviewOptions): VPL;
|
|
179
187
|
/** Quantize DEM (elevation) raster tiles by zeroing unnecessary low bits. */
|
|
180
188
|
demQuantize(options?: DemQuantizeOptions): VPL;
|
|
189
|
+
/** Convert DEM tile size between 256px and 512px by splitting or merging tiles. */
|
|
190
|
+
demTileResize(options?: DemTileResizeOptions): VPL;
|
|
181
191
|
/** Flattens (translucent) raster tiles onto a background */
|
|
182
192
|
rasterFlatten(options?: RasterFlattenOptions): VPL;
|
|
183
|
-
/** Convert raster tiles to a different image format and/or adjust quality/
|
|
193
|
+
/** Convert raster tiles to a different image format and/or adjust quality/effort settings. */
|
|
184
194
|
rasterFormat(options?: RasterFormatOptions): VPL;
|
|
185
195
|
/** Adjust brightness, contrast and gamma of raster tiles. */
|
|
186
196
|
rasterLevels(options?: RasterLevelsOptions): VPL;
|
|
@@ -190,6 +200,8 @@ export declare class VPL {
|
|
|
190
200
|
rasterOverscale(options?: RasterOverscaleOptions): VPL;
|
|
191
201
|
/** Generate lower-zoom overview tiles by downscaling from a base zoom level. */
|
|
192
202
|
rasterOverview(options?: RasterOverviewOptions): VPL;
|
|
203
|
+
/** Convert the size of tiles by splitting or merging them to a width of 256px or 512px. */
|
|
204
|
+
rasterTileResize(options?: RasterTileResizeOptions): VPL;
|
|
193
205
|
/** Filters vector tile layers based on a comma-separated list of layer names. */
|
|
194
206
|
vectorFilterLayers(options: VectorFilterLayersOptions): VPL;
|
|
195
207
|
/** Filters properties based on a regular expressions. */
|
package/vpl.js
CHANGED
|
@@ -118,8 +118,6 @@ export class VPL {
|
|
|
118
118
|
const params = {};
|
|
119
119
|
if (options?.level !== undefined)
|
|
120
120
|
params['level'] = options?.level;
|
|
121
|
-
if (options?.tileSize !== undefined)
|
|
122
|
-
params['tile_size'] = options?.tileSize;
|
|
123
121
|
if (options?.encoding !== undefined)
|
|
124
122
|
params['encoding'] = options?.encoding;
|
|
125
123
|
return new VPL([...this.steps, { name: 'dem_overview', params }]);
|
|
@@ -127,14 +125,23 @@ export class VPL {
|
|
|
127
125
|
/** Quantize DEM (elevation) raster tiles by zeroing unnecessary low bits. */
|
|
128
126
|
demQuantize(options) {
|
|
129
127
|
const params = {};
|
|
130
|
-
if (options?.
|
|
131
|
-
params['
|
|
132
|
-
if (options?.
|
|
133
|
-
params['
|
|
128
|
+
if (options?.elevationError !== undefined)
|
|
129
|
+
params['elevation_error'] = options?.elevationError;
|
|
130
|
+
if (options?.slopeError !== undefined)
|
|
131
|
+
params['slope_error'] = options?.slopeError;
|
|
134
132
|
if (options?.encoding !== undefined)
|
|
135
133
|
params['encoding'] = options?.encoding;
|
|
136
134
|
return new VPL([...this.steps, { name: 'dem_quantize', params }]);
|
|
137
135
|
}
|
|
136
|
+
/** Convert DEM tile size between 256px and 512px by splitting or merging tiles. */
|
|
137
|
+
demTileResize(options) {
|
|
138
|
+
const params = {};
|
|
139
|
+
if (options?.tileSize !== undefined)
|
|
140
|
+
params['tile_size'] = options?.tileSize;
|
|
141
|
+
if (options?.encoding !== undefined)
|
|
142
|
+
params['encoding'] = options?.encoding;
|
|
143
|
+
return new VPL([...this.steps, { name: 'dem_tile_resize', params }]);
|
|
144
|
+
}
|
|
138
145
|
/** Flattens (translucent) raster tiles onto a background */
|
|
139
146
|
rasterFlatten(options) {
|
|
140
147
|
const params = {};
|
|
@@ -142,15 +149,17 @@ export class VPL {
|
|
|
142
149
|
params['color'] = options?.color;
|
|
143
150
|
return new VPL([...this.steps, { name: 'raster_flatten', params }]);
|
|
144
151
|
}
|
|
145
|
-
/** Convert raster tiles to a different image format and/or adjust quality/
|
|
152
|
+
/** Convert raster tiles to a different image format and/or adjust quality/effort settings. */
|
|
146
153
|
rasterFormat(options) {
|
|
147
154
|
const params = {};
|
|
148
155
|
if (options?.format !== undefined)
|
|
149
156
|
params['format'] = options?.format;
|
|
150
157
|
if (options?.quality !== undefined)
|
|
151
158
|
params['quality'] = options?.quality;
|
|
152
|
-
if (options?.
|
|
153
|
-
params['
|
|
159
|
+
if (options?.qualityTranslucent !== undefined)
|
|
160
|
+
params['quality_translucent'] = options?.qualityTranslucent;
|
|
161
|
+
if (options?.effort !== undefined)
|
|
162
|
+
params['effort'] = options?.effort;
|
|
154
163
|
return new VPL([...this.steps, { name: 'raster_format', params }]);
|
|
155
164
|
}
|
|
156
165
|
/** Adjust brightness, contrast and gamma of raster tiles. */
|
|
@@ -192,9 +201,14 @@ export class VPL {
|
|
|
192
201
|
const params = {};
|
|
193
202
|
if (options?.level !== undefined)
|
|
194
203
|
params['level'] = options?.level;
|
|
204
|
+
return new VPL([...this.steps, { name: 'raster_overview', params }]);
|
|
205
|
+
}
|
|
206
|
+
/** Convert the size of tiles by splitting or merging them to a width of 256px or 512px. */
|
|
207
|
+
rasterTileResize(options) {
|
|
208
|
+
const params = {};
|
|
195
209
|
if (options?.tileSize !== undefined)
|
|
196
210
|
params['tile_size'] = options?.tileSize;
|
|
197
|
-
return new VPL([...this.steps, { name: '
|
|
211
|
+
return new VPL([...this.steps, { name: 'raster_tile_resize', params }]);
|
|
198
212
|
}
|
|
199
213
|
/** Filters vector tile layers based on a comma-separated list of layer names. */
|
|
200
214
|
vectorFilterLayers(options) {
|