1
0

fix: missing field in db schema

This commit is contained in:
alikia2x (寒寒) 2025-06-10 15:03:39 +08:00
parent 39ca394a56
commit 497ea031d8
Signed by: alikia2x
GPG Key ID: 56209E0CCD8420C6
2 changed files with 2 additions and 1 deletions

View File

@ -48,6 +48,7 @@ export interface UserType {
password: string;
unq_id: string;
role: string;
created_at: Date;
}
export interface BiliVideoMetadataType {

View File

@ -1,7 +1,7 @@
{
"name": "@cvsa/core",
"private": false,
"version": "0.0.9",
"version": "0.0.10",
"scripts": {
"test": "bun --env-file=.env.test run vitest",
"build": "bun build ./index.ts --target node --outdir ./dist"