mirror of
https://github.com/zadam/trilium.git
synced 2025-10-30 18:56:38 +08:00
fix(build): not all entity types taken into consideration
This commit is contained in:
parent
df7f0d4099
commit
5fc8100c5d
1 changed files with 3 additions and 1 deletions
|
|
@ -8,7 +8,7 @@ interface Entity {
|
|||
export interface EntityChange {
|
||||
id?: number | null;
|
||||
noteId?: string;
|
||||
entityName: EntityRowNames;
|
||||
entityName: EntityType;
|
||||
entityId: string;
|
||||
entity?: Entity;
|
||||
positions?: Record<string, number>;
|
||||
|
|
@ -22,3 +22,5 @@ export interface EntityChange {
|
|||
changeId?: string | null;
|
||||
instanceId?: string | null;
|
||||
}
|
||||
|
||||
export type EntityType = "notes" | "branches" | "attributes" | "note_reordering" | "revisions" | "options" | "attachments" | "blobs" | "etapi_tokens" | "note_embeddings";
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue