-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
All optional types updated due to ts-proto update
- Loading branch information
Showing
41 changed files
with
935 additions
and
877 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 31 additions & 0 deletions
31
proto/proto_connect_secure_storage/connect_secure_storage.proto
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
syntax = "proto3"; | ||
|
||
package mg.protocol.connect_secure_storage; | ||
|
||
message Entry { | ||
bool isPrivate = 1; | ||
uint64 expirationTime = 2; | ||
bytes value = 3; | ||
} | ||
|
||
message SpaceIdBucket { | ||
map<string, Entry> elements = 1; | ||
} | ||
|
||
message SecureStorage { | ||
map<string, SpaceIdBucket> data = 1; | ||
} | ||
|
||
message Cache { | ||
oneof _prod { | ||
SecureStorage prod = 1; | ||
} | ||
|
||
oneof _uat { | ||
SecureStorage uat = 2; | ||
} | ||
|
||
oneof _dev { | ||
SecureStorage dev = 3; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
/** | ||
* The launcher version sent to the demux API on startup. It can be found in the upc.exe file properties (e.g. File version: 132.2.0.10690) | ||
*/ | ||
export const API_VERSION = 10906; | ||
export const API_VERSION = 10931; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.