@4players/odin-common 2.8.0 → 2.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.
@@ -1,2 +1,2 @@
1
- export declare function msgpackEncode(value: unknown): ArrayBuffer;
2
- export declare function msgpackDecode(buffer: ArrayBuffer): unknown;
1
+ export declare function msgpackEncode(value: unknown): Uint8Array;
2
+ export declare function msgpackDecode(buffer: Uint8Array): unknown;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@4players/odin-common",
3
- "version": "2.8.0",
3
+ "version": "2.9.0",
4
4
  "description": "A collection of commonly used type definitions and utility functions across ODIN web projects",
5
5
  "author": "Josho Bleicker <josho.bleicker@4players.io> (https://www.4players.io)",
6
6
  "homepage": "https://www.4players.io",
@@ -43,4 +43,4 @@
43
43
  "testyts": "~1.5.0",
44
44
  "typescript": "~5.4.0"
45
45
  }
46
- }
46
+ }