From 069662123d9b81375edf59030cf2c11fd00116a2 Mon Sep 17 00:00:00 2001 From: RickyRister Date: Sun, 6 Apr 2025 03:13:56 -0700 Subject: [PATCH] add new fields to proto --- common/pb/command_create_token.proto | 1 + common/pb/event_create_token.proto | 1 + 2 files changed, 2 insertions(+) diff --git a/common/pb/command_create_token.proto b/common/pb/command_create_token.proto index 671ce3fe3..4b7d11098 100644 --- a/common/pb/command_create_token.proto +++ b/common/pb/command_create_token.proto @@ -27,4 +27,5 @@ message Command_CreateToken { optional TargetMode target_mode = 11; optional string card_provider_id = 12; + optional bool face_down = 13; } diff --git a/common/pb/event_create_token.proto b/common/pb/event_create_token.proto index bc88a744c..6947b6048 100644 --- a/common/pb/event_create_token.proto +++ b/common/pb/event_create_token.proto @@ -15,4 +15,5 @@ message Event_CreateToken { optional sint32 x = 8; optional sint32 y = 9; optional string card_provider_id = 10; + optional bool face_down = 11; }