feat(accounts): доработать управление аккаунтами хостеров
Docker / build (push) Has been cancelled

Добавить apiLogin из credentials, сводку и health-индикаторы на /accounts, фильтры, раздельную форму логина и пароля, безопасное удаление с 409 и тесты API/repository.

Co-authored-by: Cursor <[email protected]>
This commit is contained in:
Denozordec
2026-06-28 16:53:51 +07:00
co-authored by Cursor
parent 06f5b27e53
commit c80090ed08
21 changed files with 844 additions and 84 deletions
+10 -3
View File
@@ -17,19 +17,26 @@
"./repositories/*": {
"types": "./dist/repositories/*.d.ts",
"default": "./dist/repositories/*.js"
},
"./test-setup": {
"types": "./dist/test-setup.d.ts",
"default": "./dist/test-setup.js"
}
},
"scripts": {
"build": "tsc -p tsconfig.json"
"build": "tsc -p tsconfig.json",
"test": "vitest run"
},
"dependencies": {
"drizzle-orm": "^0.40.0",
"better-sqlite3": "^11.10.0"
"better-sqlite3": "^11.10.0",
"@cfdm/shared": "workspace:*"
},
"devDependencies": {
"drizzle-kit": "^0.30.0",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.10.0",
"typescript": "^5.9.2"
"typescript": "^5.9.2",
"vitest": "^3.0.0"
}
}