From b3961f4eecf1bdea5bd3171f16cb3cf9f594c6d6 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Sun, 21 Jan 2024 12:52:17 +0100 Subject: [PATCH] api/message/types.go: Update TableDeltaRow --- api/message/types.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/api/message/types.go b/api/message/types.go index f9442e0..6d75bd6 100644 --- a/api/message/types.go +++ b/api/message/types.go @@ -82,9 +82,9 @@ func (act ActionTrace) GetData() (map[string]any, error) { } type TableDeltaRow struct { - Present bool `json:"present" msgpack:"present"` - Data []byte `json:"data" msgpack:"data"` - RawData []byte `json:"raw_data" msgpack:"raw_data"` + Present bool `json:"present" msgpack:"present"` + Data map[string]any `json:"data" msgpack:"data"` + RawData []byte `json:"raw_data" msgpack:"raw_data"` } type TableDelta struct {