From 1c6e24b3b0fd693d80546370c66a1e5f05e3ab61 Mon Sep 17 00:00:00 2001 From: Rishabh Date: Thu, 18 Jul 2024 10:41:01 +0530 Subject: [PATCH] feat(frontier): add subscription phase reason field --- raystack/frontier/v1beta1/models.proto | 1 + 1 file changed, 1 insertion(+) diff --git a/raystack/frontier/v1beta1/models.proto b/raystack/frontier/v1beta1/models.proto index d14092d2..3e6a786d 100644 --- a/raystack/frontier/v1beta1/models.proto +++ b/raystack/frontier/v1beta1/models.proto @@ -614,6 +614,7 @@ message Subscription { message Phase { google.protobuf.Timestamp effective_at = 1; string plan_id = 2; + string reason = 3; } repeated Phase phases = 20;