From c425324b8ee957cbaf2bd9f8fccd8e165e08cf78 Mon Sep 17 00:00:00 2001 From: Abhinav Nekkanti <10552725+anekkanti@users.noreply.github.com> Date: Wed, 6 Sep 2023 19:34:40 -0700 Subject: [PATCH 1/2] fix tense of invitation create and expiry fields --- temporal/api/cloud/identity/v1/message.proto | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/temporal/api/cloud/identity/v1/message.proto b/temporal/api/cloud/identity/v1/message.proto index dda7ec2..ce8da60 100644 --- a/temporal/api/cloud/identity/v1/message.proto +++ b/temporal/api/cloud/identity/v1/message.proto @@ -39,9 +39,9 @@ message UserSpec { message Invitation { // The date and time when the user was created - google.protobuf.Timestamp create_time = 1; + google.protobuf.Timestamp created_time = 1; // The date and time when the invitation expires or has expired - google.protobuf.Timestamp expiry_time = 2; + google.protobuf.Timestamp expired_time = 2; } message User { From f02b0d1717ae9d722a4376ac2e6fad035dfdad33 Mon Sep 17 00:00:00 2001 From: Abhinav Nekkanti <10552725+anekkanti@users.noreply.github.com> Date: Wed, 6 Sep 2023 19:39:00 -0700 Subject: [PATCH 2/2] more fixes --- temporal/api/cloud/operation/v1/message.proto | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/temporal/api/cloud/operation/v1/message.proto b/temporal/api/cloud/operation/v1/message.proto index 839733a..adb98d0 100644 --- a/temporal/api/cloud/operation/v1/message.proto +++ b/temporal/api/cloud/operation/v1/message.proto @@ -23,7 +23,7 @@ message AsyncOperation { // If the operation failed, the reason for the failure string failure_reason = 6; // The date and time when the operation initiated - google.protobuf.Timestamp start_time = 7; + google.protobuf.Timestamp started_time = 7; // The date and time when the operation completed - google.protobuf.Timestamp finish_time = 8; -} + google.protobuf.Timestamp finished_time = 8; +}