Skip to content

Commit dace725

Browse files
authored
resolve type issue (#129)
1 parent 9ff3e86 commit dace725

3 files changed

Lines changed: 216 additions & 24 deletions

File tree

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"name": "@digital-alchemy/synapse",
44
"repository": "https://github.com/Digital-Alchemy-TS/synapse",
55
"homepage": "https://docs.digital-alchemy.app/Synapse",
6-
"version": "25.7.26",
6+
"version": "25.8.2",
77
"scripts": {
88
"start:mock": "tsx src/mock/main.mts",
99
"build": "rm -rf dist; tsc",
@@ -39,7 +39,7 @@
3939
},
4040
"devDependencies": {
4141
"@cspell/eslint-plugin": "^9.2.0",
42-
"@digital-alchemy/core": "^25.7.1",
42+
"@digital-alchemy/core": "^25.8.1",
4343
"@digital-alchemy/hass": "^25.7.1",
4444
"@eslint/compat": "^1.3.1",
4545
"@eslint/eslintrc": "^3.3.1",
@@ -71,7 +71,7 @@
7171
"prettier": "^3.6.2",
7272
"tsx": "^4.20.3",
7373
"type-fest": "^4.41.0",
74-
"typescript": "^5.8.3",
74+
"typescript": "^5.9.2",
7575
"uuid": "^11.1.0",
7676
"vitest": "^3.2.4",
7777
"ws": "^8.18.3"

src/helpers/common-config.mts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ export type NON_SETTABLE =
174174
export type NonReactive<CONFIGURATION extends object> = {
175175
[KEY in Extract<keyof CONFIGURATION, string>]: CONFIGURATION[KEY] extends SettableConfiguration<
176176
infer TYPE,
177-
object
177+
infer _
178178
>
179179
? TYPE
180180
: CONFIGURATION[KEY];

0 commit comments

Comments
 (0)