Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump prettier from 3.1.1 to 3.2.2 #1136

Merged
merged 3 commits into from
Jan 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions API_SCHEMA.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,12 @@ Base schema.
---

# Schema 33

- Fixed `node.set_raw_config_parameter_value` command to match Z-Wave JS types
- Added `endpoint.set_raw_config_parameter_value` command
- Added `driver.update_options` command

# Schema 34

- Added `rebuildRoutesProgress` to controller state dump
- Listen for clients using IPv6 in addition to IPv4 which was already supported
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -970,8 +970,8 @@ Send the following JSON to the server to invoke [`UserCodeCC.set(1, UserIDStatus
"args": [
1, // userId = 1
1, // userIdStatus = UserIDStatus.Enabled
"1234" // userCode = "1234"
]
"1234", // userCode = "1234"
],
}
```

Expand All @@ -994,7 +994,7 @@ For `Buffer` type arguments, use the following JSON format to represent the argu
```jsonc
{
"type": "Buffer",
"data": [] // array of numbers
"data": [], // array of numbers
}
```

Expand Down
12 changes: 6 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions src/bin/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -142,9 +142,9 @@ interface Args {
);
}
presets = presetNames
.map<PartialZWaveOptions | undefined>(
(name) => (driverPresets as any)[name],
)
.map<
PartialZWaveOptions | undefined
>((name) => (driverPresets as any)[name])
.filter((preset): preset is PartialZWaveOptions => preset !== undefined);
}
const driver = args["mock-driver"]
Expand Down