rmapi-js 12.0.2 → 12.0.3
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/raw.d.ts +3 -0
- package/dist/raw.js +6 -1
- package/dist/rmapi-js.esm.min.js +9 -9
- package/package.json +2 -1
package/dist/raw.d.ts
CHANGED
package/dist/raw.js
CHANGED
|
@@ -1,4 +1,9 @@
|
|
|
1
|
-
|
|
1
|
+
// core-js installs these only when the runtime lacks them, so node 26+ keeps
|
|
2
|
+
// its native implementations untouched
|
|
3
|
+
import "core-js/modules/es.uint8-array.from-hex.js";
|
|
4
|
+
import "core-js/modules/es.uint8-array.to-base64.js";
|
|
5
|
+
import "core-js/modules/es.uint8-array.to-hex.js";
|
|
6
|
+
import CRC32C from "crc-32/crc32c.js";
|
|
2
7
|
import { z } from "zod";
|
|
3
8
|
import { ValidationError } from "./error.js";
|
|
4
9
|
import { HEADER_LENGTH, parseV5, serializeRm, VERSION_PREFIX, } from "./rm5.js";
|