@thi.ng/ksuid 2.1.6 → 2.1.9
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 +1 -1
- package/ksuid32.d.ts +1 -1
- package/ksuid64.d.ts +1 -1
- package/package.json +10 -10
- package/ulid.d.ts +1 -1
package/CHANGELOG.md
CHANGED
package/ksuid32.d.ts
CHANGED
|
@@ -14,5 +14,5 @@ export declare class KSUID32 extends AKSUID {
|
|
|
14
14
|
*
|
|
15
15
|
* @param opts -
|
|
16
16
|
*/
|
|
17
|
-
export declare const defKSUID32: (opts?: Partial<KSUIDOpts>
|
|
17
|
+
export declare const defKSUID32: (opts?: Partial<KSUIDOpts>) => KSUID32;
|
|
18
18
|
//# sourceMappingURL=ksuid32.d.ts.map
|
package/ksuid64.d.ts
CHANGED
|
@@ -14,5 +14,5 @@ export declare class KSUID64 extends AKSUID {
|
|
|
14
14
|
*
|
|
15
15
|
* @param opts -
|
|
16
16
|
*/
|
|
17
|
-
export declare const defKSUID64: (opts?: Partial<KSUIDOpts>
|
|
17
|
+
export declare const defKSUID64: (opts?: Partial<KSUIDOpts>) => KSUID64;
|
|
18
18
|
//# sourceMappingURL=ksuid64.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/ksuid",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.9",
|
|
4
4
|
"description": "Configurable K-sortable unique IDs, ULIDs, binary & base-N encoded, 32/48/64bit time resolutions",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -35,18 +35,18 @@
|
|
|
35
35
|
"test": "testament test"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@thi.ng/base-n": "^2.
|
|
39
|
-
"@thi.ng/errors": "^2.1.
|
|
40
|
-
"@thi.ng/random": "^3.
|
|
41
|
-
"@thi.ng/strings": "^3.3.
|
|
38
|
+
"@thi.ng/base-n": "^2.3.1",
|
|
39
|
+
"@thi.ng/errors": "^2.1.7",
|
|
40
|
+
"@thi.ng/random": "^3.3.1",
|
|
41
|
+
"@thi.ng/strings": "^3.3.5"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@microsoft/api-extractor": "^7.
|
|
45
|
-
"@thi.ng/testament": "^0.2.
|
|
44
|
+
"@microsoft/api-extractor": "^7.25.0",
|
|
45
|
+
"@thi.ng/testament": "^0.2.8",
|
|
46
46
|
"rimraf": "^3.0.2",
|
|
47
47
|
"tools": "^0.0.1",
|
|
48
|
-
"typedoc": "^0.22.
|
|
49
|
-
"typescript": "^4.
|
|
48
|
+
"typedoc": "^0.22.17",
|
|
49
|
+
"typescript": "^4.7.3"
|
|
50
50
|
},
|
|
51
51
|
"keywords": [
|
|
52
52
|
"32bit",
|
|
@@ -109,5 +109,5 @@
|
|
|
109
109
|
"status": "stable",
|
|
110
110
|
"year": 2020
|
|
111
111
|
},
|
|
112
|
-
"gitHead": "
|
|
112
|
+
"gitHead": "9e516d30a1a537e027a6b3d78bf9121bc5831d31\n"
|
|
113
113
|
}
|
package/ulid.d.ts
CHANGED