Skip to content

Commit

Permalink
feat!: Rename fields in Firebase auth UserMetadata message
Browse files Browse the repository at this point in the history
This allows them to conform with our API conventions better.
Functions Frameworks will need to perform appropriate conversions.
  • Loading branch information
jskeet committed Feb 9, 2021
1 parent fc742ac commit 9e830d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions proto/google/events/firebase/auth/v1/data.proto
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ message AuthEventData {
// Additional metadata about the user.
message UserMetadata {
// The date the user was created.
google.protobuf.Timestamp created_at = 1;
google.protobuf.Timestamp create_time = 1;

// The date the user last signed in.
google.protobuf.Timestamp last_signed_in_at = 2;
google.protobuf.Timestamp last_sign_in_time = 2;
}

// User's info at the identity provider
Expand Down

0 comments on commit 9e830d6

Please sign in to comment.