New database structure for sync engine

This commit is contained in:
Hakan Shehu
2024-10-26 11:38:06 +02:00
parent f7d1d12e95
commit 35ee77ea06
7 changed files with 259 additions and 150 deletions

View File

@@ -115,6 +115,7 @@ export class ServerNodeSyncMutationHandler
type: 'local_node_sync',
nodeId: input.id,
versionId: input.versionId,
workspaceId: input.workspaceId,
});
return {

View File

@@ -2,6 +2,7 @@ export type LocalNodeSyncMessageInput = {
type: 'local_node_sync';
nodeId: string;
versionId: string;
workspaceId: string;
};
declare module '@/operations/messages' {