From f40c5006a890965fd208a8837973c7dd78bcdb1d Mon Sep 17 00:00:00 2001 From: thetek Date: Wed, 22 May 2024 10:14:27 +0200 Subject: [PATCH] feat: add tags field --- schema-types.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/schema-types.ts b/schema-types.ts index e17346b..caac188 100644 --- a/schema-types.ts +++ b/schema-types.ts @@ -14,6 +14,7 @@ export type BaseMessage = { id: Uuid, conversationId: Uuid, priority: Priority, + tags: Array, kind: TKind, data: TData, };