This commit is contained in:
Yanis Rigaudeau
2023-02-05 22:06:48 +01:00
parent 51a95f9bf1
commit 39ba4856a2
9 changed files with 2709 additions and 17 deletions

2568
core/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -11,6 +11,7 @@
"devDependencies": {
"@types/node": "^18.8.4",
"prettier": "^2.7.1",
"mongodb": "^4.10.0",
"typescript": "^4.8.3"
}
}

View File

@ -1,4 +1,7 @@
import { ObjectId } from 'mongodb';
export type EntityInfo = {
_id: ObjectId;
uuid: string;
createdAt: Date;
updatedAt: Date;