summaryrefslogtreecommitdiffstats
path: root/common/commands/modifyentity.fbs
blob: efa2fa0b9f10b10070dbd3e2dd485c1765b86a8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
namespace Sink.Commands;

table ModifyEntity {
    revision: ulong;
    entityId: string;
    deletions: [string]; //A list of deleted properties
    domainType: string;
    delta: [ubyte]; //Contains an entity buffer with all changed properties set
    replayToSource: bool = true;
}

root_type ModifyEntity;