@stryke/unique-id 0.2.5 → 0.2.6

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.
@@ -26,9 +26,9 @@ export interface ISnowflakeGeneratorOptions {
26
26
  }
27
27
  /**
28
28
  * Resolvable value types for a valid Snowflake:
29
- * * string
30
- * * number
31
- * * bigint
29
+ * string
30
+ * number
31
+ * bigint
32
32
  */
33
33
  export type SnowflakeResolvable = string;
34
34
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stryke/unique-id",
3
- "version": "0.2.5",
3
+ "version": "0.2.6",
4
4
  "type": "module",
5
5
  "description": "A package containing various helper functions to generate unique identifier strings",
6
6
  "repository": {
@@ -10,7 +10,7 @@
10
10
  },
11
11
  "private": false,
12
12
  "publishConfig": { "access": "public" },
13
- "dependencies": { "@stryke/hash": ">=0.8.4" },
13
+ "dependencies": { "@stryke/hash": "^0.9.2" },
14
14
  "devDependencies": {},
15
15
  "sideEffects": false,
16
16
  "files": ["dist/**/*"],