From 82e2a8755fa71cb8bce5c05698ca27a7e4d51be9 Mon Sep 17 00:00:00 2001 From: raphael-goetz Date: Tue, 11 Nov 2025 18:58:27 +0100 Subject: [PATCH 1/2] docs: added version file to readme --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a6f535d..f05bf2d 100644 --- a/README.md +++ b/README.md @@ -67,5 +67,6 @@ services that Sagittarius must implement as a server. ├── flow_definition - Defines a definition for a Flow ├── runtime_function_definition - Defines types for runtime functions ├── struct - Defines types for json representations - └── translation - Contains translations with country codes and translated messages + ├── translation - Contains translations with country codes and translated messages + └── version - Contains verion type for definitions ``` From 52413427c6e3dfd0480b47cd4e398fcc836345e8 Mon Sep 17 00:00:00 2001 From: raphael-goetz Date: Tue, 11 Nov 2025 21:53:06 +0100 Subject: [PATCH 2/2] docs: added version file to readme --- .../sagittarius.text_execution.proto | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/proto/sagittarius/sagittarius.text_execution.proto b/proto/sagittarius/sagittarius.text_execution.proto index 3b6fe5f..b3d65ed 100644 --- a/proto/sagittarius/sagittarius.text_execution.proto +++ b/proto/sagittarius/sagittarius.text_execution.proto @@ -22,6 +22,26 @@ message TestExecutionResponse { } message Log { + oneof kind { + ApplicationLog application_log = 1; + SuccessLog success_log = 2; + RuntimeErrorLog error_log = 3; + } +} + +message SuccessLog { + int64 note_id = 1; + shared.Value result = 2; +} + +message RuntimeErrorLog { + int64 note_id = 1; + string error_code = 2; + string error_message = 3; + optional string suggestion = 4; +} + +message ApplicationLog { string message = 1; string level = 2; string timestamp = 3;