diff --git a/packages/protos/io/restorecommerce/user.proto b/packages/protos/io/restorecommerce/user.proto index fc3306d3..6f120f31 100644 --- a/packages/protos/io/restorecommerce/user.proto +++ b/packages/protos/io/restorecommerce/user.proto @@ -276,6 +276,7 @@ message SendActivationEmailRequest { */ message Deleted { optional string id = 1; + optional string default_scope = 2; // default hierarchical scope } /** @@ -410,6 +411,7 @@ message User { repeated string totp_session_tokens = 29; /// TOTP Login session tokens repeated string password_hash_history = 30; // List of historical password hashes repeated string totp_recovery_codes = 31; // List of TOTP recovery codes + optional google.protobuf.Timestamp invited_at = 32; } /** @@ -459,4 +461,5 @@ message UserRole { repeated io.restorecommerce.attribute.Attribute properties = 25; // additional properties optional google.protobuf.Any data = 26; // additional data repeated io.restorecommerce.role.Role roles = 27; + optional google.protobuf.Timestamp invited_at = 28; }