Skip to content

Commit

Permalink
added JWT Token fields
Browse files Browse the repository at this point in the history
  • Loading branch information
dlucek committed Aug 26, 2023
1 parent ec83768 commit 3a6cf8a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions openfeed_api.proto
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ message OpenfeedGatewayMessage {
enum Result {
UNKNOWN_RESULT = 0;
SUCCESS = 1;
JWT_EXPIRED = 113;
JWT_INVALID = 114;
DUPLICATE_LOGIN = 115;
INVALID_SYMBOL = 116;
INVALID_MARKET_ID = 117;
Expand Down Expand Up @@ -102,6 +104,7 @@ message LoginRequest {
string password = 3;
string clientVersion = 4;
sint32 protocolVersion = 5;
string jwtToken = 6;
}
message LoginResponse {
sint64 correlationId = 1;
Expand Down

0 comments on commit 3a6cf8a

Please sign in to comment.