From 4608f1ef826646d65e2d64fdd773149f25df57f4 Mon Sep 17 00:00:00 2001 From: Panagiotis Karelis <49581292+karelispanagiotis@users.noreply.github.com> Date: Fri, 27 Sep 2024 16:54:29 +0300 Subject: [PATCH] add StartCaptureTimeout && TOO_CLOSE msg (#20) * add StartCaptureTimeout && TOO_CLOSE msg * rename to CaptureTriggerTimeout Co-authored-by: Anastasios Andronidis --------- Co-authored-by: Anastasios Andronidis --- proto/self_serve/orb/v1/orb.proto | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/proto/self_serve/orb/v1/orb.proto b/proto/self_serve/orb/v1/orb.proto index 56ba916..5b73168 100644 --- a/proto/self_serve/orb/v1/orb.proto +++ b/proto/self_serve/orb/v1/orb.proto @@ -11,12 +11,14 @@ message AnnounceOrbId { bool is_self_serve_enabled = 2; } message CaptureStarted {} +message CaptureTriggerTimeout {} message CaptureEnded { enum FailureFeedbackType { UNKNOWN = 0; FACE_OCCLUSION_OR_POOR_LIGHTING = 1; TOO_FAR = 2; - EYES_OCCLUSION = 3; + TOO_CLOSE = 3; + EYES_OCCLUSION = 4; } bool success = 1;