Fix ci
tests / tests (push) Successful in 10m53s

This commit is contained in:
Jon Staab
2026-06-23 15:58:40 -07:00
parent f97215de47
commit 62bbb486d8
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ import eslintPluginPrettierRecommended from "eslint-plugin-prettier/recommended"
export default tsEslint.config( export default tsEslint.config(
{ {
ignores: ["node_modules", "!.*", "**/dist", "**/build", "docs"], ignores: ["node_modules", "**/.pnpm-store/**", "**/dist", "**/build", "docs"],
}, },
{ {
extends: [js.configs.recommended, ...tsEslint.configs.recommended], extends: [js.configs.recommended, ...tsEslint.configs.recommended],
+2 -1
View File
@@ -27,11 +27,12 @@ export enum ManagementMethod {
BlockIp = "blockip", BlockIp = "blockip",
UnblockIp = "unblockip", UnblockIp = "unblockip",
ListBlockedIps = "listblockedips", ListBlockedIps = "listblockedips",
SignEvent = "signevent",
} }
export type ManagementRequest = { export type ManagementRequest = {
method: ManagementMethod method: ManagementMethod
params: string[] params: any[]
} }
export type ManagementResponse = { export type ManagementResponse = {