Skip to content

Commit 3a997e5

Browse files
committed
Structure
1 parent 47fea80 commit 3a997e5

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

apps/nextjs/db/db.d.ts

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1254,6 +1254,24 @@ export interface SchemaMigrations {
12541254
version: string;
12551255
}
12561256

1257+
export interface Transactions {
1258+
cantidad: Generated<Numeric>;
1259+
categoria: string | null;
1260+
crypto: string;
1261+
descripcion: string | null;
1262+
fecha: Timestamp;
1263+
fecha_actualizacion: Generated<Timestamp>;
1264+
fecha_creacion: Generated<Timestamp>;
1265+
hash: string | null;
1266+
id: Generated<number>;
1267+
impacto_balance: Numeric;
1268+
metadata: Json | null;
1269+
sincronizado: Generated<boolean>;
1270+
subcategoria: string | null;
1271+
tipo: string;
1272+
usuario_id: number;
1273+
}
1274+
12571275
export interface Ubitransactions {
12581276
amount: Numeric;
12591277
date: Timestamp;
@@ -1310,6 +1328,12 @@ export interface Usuario {
13101328
updated_at: Timestamp | null;
13111329
}
13121330

1331+
export interface ViewUserScores {
1332+
learningscore: number | null;
1333+
profilescore: number | null;
1334+
user_id: number | null;
1335+
}
1336+
13131337
export interface DB {
13141338
ar_internal_metadata: ArInternalMetadata;
13151339
billetera_usuario: BilleteraUsuario;
@@ -1426,7 +1450,9 @@ export interface DB {
14261450
nonce: Nonce;
14271451
religion: Religion;
14281452
schema_migrations: SchemaMigrations;
1453+
transactions: Transactions;
14291454
ubitransactions: Ubitransactions;
14301455
userevent: Userevent;
14311456
usuario: Usuario;
1457+
view_user_scores: ViewUserScores;
14321458
}

0 commit comments

Comments
 (0)