Compare commits
3 Commits
v0.1.13
...
renovate/c
Author | SHA1 | Date | |
---|---|---|---|
b1e07a45e3 | |||
eb82a632ce | |||
165fe024d9 |
@ -11,8 +11,13 @@ service Accounts {
|
|||||||
rpc SignUp (AccountWithPassword) returns (AccountFullWithToken) {}
|
rpc SignUp (AccountWithPassword) returns (AccountFullWithToken) {}
|
||||||
rpc SignIn (AccountWithPassword) returns (AccountFullWithToken) {}
|
rpc SignIn (AccountWithPassword) returns (AccountFullWithToken) {}
|
||||||
rpc ResetPassword (AccountData) returns (google.protobuf.Empty) {}
|
rpc ResetPassword (AccountData) returns (google.protobuf.Empty) {}
|
||||||
|
rpc NewPassword (AccountWithPasswordAndCode) returns (google.protobuf.Empty) {}
|
||||||
|
rpc IsEmailVerified (AccountData) returns (EmailVerified) {}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
message EmailVerified {
|
||||||
|
bool verified = 1;
|
||||||
|
}
|
||||||
/**
|
/**
|
||||||
* Represents a environment UUID only
|
* Represents a environment UUID only
|
||||||
*/
|
*/
|
||||||
@ -35,6 +40,13 @@ message AccountWithPassword {
|
|||||||
AccountPassword password = 2;
|
AccountPassword password = 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
message AccountWithPasswordAndCode {
|
||||||
|
AccountData data = 1;
|
||||||
|
AccountPassword password = 2;
|
||||||
|
string code = 3;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
message AccountFull {
|
message AccountFull {
|
||||||
AccountId id = 1;
|
AccountId id = 1;
|
||||||
AccountData data = 2;
|
AccountData data = 2;
|
||||||
|
3
renovate.json
Normal file
3
renovate.json
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json"
|
||||||
|
}
|
Reference in New Issue
Block a user