From 10b65e8a783e3462596d233254bb43cc4bc7b862 Mon Sep 17 00:00:00 2001 From: Michel Osswald Date: Sat, 2 May 2026 14:35:51 +0200 Subject: [PATCH] feat: add hosted access response metadata --- kontext/agent/v1/agent.proto | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/kontext/agent/v1/agent.proto b/kontext/agent/v1/agent.proto index 2442407..9b809e7 100644 --- a/kontext/agent/v1/agent.proto +++ b/kontext/agent/v1/agent.proto @@ -53,6 +53,10 @@ message ProcessHookEventResponse { Decision decision = 1; string reason = 2; string event_id = 3; + string reason_code = 4; + string request_id = 5; + string access_mode = 6; + string policy_set_epoch = 7; } enum Decision { @@ -86,6 +90,8 @@ message BootstrapCliRequest { message BootstrapCliResponse { string application_id = 1; repeated ManagedProvider managed_providers = 2; + string access_mode = 3; + string policy_set_epoch = 4; } message ManagedProvider {