server-ts: Fix most errors in bnote

This commit is contained in:
Elian Doran
2024-02-17 10:56:27 +02:00
parent f9ba8ca87d
commit 9aec3390dd
10 changed files with 359 additions and 362 deletions

View File

@@ -31,9 +31,9 @@ abstract class AbstractBeccaEntity<T extends AbstractBeccaEntity<T>> {
protected utcDateCreated?: string;
protected utcDateModified?: string;
protected dateCreated?: string;
protected dateModified?: string;
protected isProtected?: boolean;
protected isDeleted?: boolean;
protected isSynced?: boolean;
protected blobId?: string;
@@ -92,6 +92,8 @@ abstract class AbstractBeccaEntity<T extends AbstractBeccaEntity<T>> {
abstract getPojo(): {};
abstract get isDeleted(): boolean;
/**
* Saves entity - executes SQL, but doesn't commit the transaction on its own
*/