@thi.ng/uuid 1.1.9 → 1.1.10

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/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2024-11-10T17:11:51Z
3
+ - **Last updated**: 2024-11-24T18:15:49Z
4
4
  - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
5
 
6
6
  All notable changes to this project will be documented in this file.
package/index.d.ts CHANGED
@@ -13,7 +13,7 @@ import type { IRandom } from "@thi.ng/random";
13
13
  * @param buf -
14
14
  * @param rnd -
15
15
  */
16
- export declare const uuidv4Bytes: (buf?: Uint8Array, rnd?: IRandom) => Uint8Array;
16
+ export declare const uuidv4Bytes: (buf?: Uint8Array, rnd?: IRandom) => Uint8Array<ArrayBufferLike>;
17
17
  /**
18
18
  * Returns a UUID string, either from given byte array, or if omitted, using a
19
19
  * new UUID v4 produced by {@link uuidv4Bytes}.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/uuid",
3
- "version": "1.1.9",
3
+ "version": "1.1.10",
4
4
  "description": "Fast binary & string-based UUID v4 generation",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -36,14 +36,14 @@
36
36
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
37
37
  },
38
38
  "dependencies": {
39
- "@thi.ng/hex": "^2.3.56",
40
- "@thi.ng/random": "^4.1.3"
39
+ "@thi.ng/hex": "^2.3.57",
40
+ "@thi.ng/random": "^4.1.4"
41
41
  },
42
42
  "devDependencies": {
43
- "@microsoft/api-extractor": "^7.47.9",
43
+ "@microsoft/api-extractor": "^7.48.0",
44
44
  "esbuild": "^0.24.0",
45
- "typedoc": "^0.26.7",
46
- "typescript": "^5.6.2"
45
+ "typedoc": "^0.26.11",
46
+ "typescript": "^5.7.2"
47
47
  },
48
48
  "keywords": [
49
49
  "binary",
@@ -74,5 +74,5 @@
74
74
  "thi.ng": {
75
75
  "year": 2020
76
76
  },
77
- "gitHead": "ef89090bb19fc5bca23be5da8cfce05b82ff4ad1\n"
77
+ "gitHead": "85e2f0935b58bde5d165fbe754fafec5da0b731e\n"
78
78
  }