@chainfuse/types 4.2.0 → 4.2.2
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/index.d.ts +1 -0
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -48,6 +48,7 @@ export interface ExternallyResolvablePromise<T> {
|
|
|
48
48
|
resolve: (value: T) => void;
|
|
49
49
|
reject: (reason?: any) => void;
|
|
50
50
|
}
|
|
51
|
+
export type ReplaceHyphensWithUnderscores<S extends string> = S extends `${infer H}-${infer T}` ? `${H}_${ReplaceHyphensWithUnderscores<T>}` : S;
|
|
51
52
|
/**
|
|
52
53
|
* Mark every property of an object as undefined.
|
|
53
54
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chainfuse/types",
|
|
3
|
-
"version": "4.2.
|
|
3
|
+
"version": "4.2.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"author": "ChainFuse",
|
|
6
6
|
"homepage": "https://github.com/ChainFuse/packages/tree/main/packages/types#readme",
|
|
@@ -95,11 +95,11 @@
|
|
|
95
95
|
"prettier": "@demosjarco/prettier-config",
|
|
96
96
|
"dependencies": {
|
|
97
97
|
"validator": "^13.15.23",
|
|
98
|
-
"zod": "^4.1
|
|
98
|
+
"zod": "^4.2.1"
|
|
99
99
|
},
|
|
100
100
|
"devDependencies": {
|
|
101
|
-
"@cloudflare/workers-types": "^4.
|
|
101
|
+
"@cloudflare/workers-types": "^4.20251216.0",
|
|
102
102
|
"@types/validator": "^13.15.10"
|
|
103
103
|
},
|
|
104
|
-
"gitHead": "
|
|
104
|
+
"gitHead": "90fd8902fc31eff523845e162610ddfbf2c710d8"
|
|
105
105
|
}
|