From bdee12bbf5d98f714775297824db33d5b3514d7b Mon Sep 17 00:00:00 2001 From: Christien Rioux Date: Sat, 21 Oct 2023 15:03:26 -0400 Subject: [PATCH] add message field for python schema --- veilid-python/veilid/schema/RecvMessage.json | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/veilid-python/veilid/schema/RecvMessage.json b/veilid-python/veilid/schema/RecvMessage.json index f4dcf69c..475ca99d 100644 --- a/veilid-python/veilid/schema/RecvMessage.json +++ b/veilid-python/veilid/schema/RecvMessage.json @@ -2974,7 +2974,8 @@ { "type": "object", "required": [ - "kind" + "kind", + "message" ], "properties": { "kind": { @@ -2982,6 +2983,9 @@ "enum": [ "TryAgain" ] + }, + "message": { + "type": "string" } } }, @@ -3002,7 +3006,8 @@ { "type": "object", "required": [ - "kind" + "kind", + "message" ], "properties": { "kind": { @@ -3010,6 +3015,9 @@ "enum": [ "InvalidTarget" ] + }, + "message": { + "type": "string" } } },