bfd0667f3a
fixes #193 fixes #192 fixes #107 - [x] Implement the new login process - [x] Tested - [x] Update the authenticator setup process - [x] Tested - [x] Update the authenticator remove process - [x] Tested - [x] Manifest format migrator - [x] Tested - [x] Make it possible to import SDA accounts - [x] Make sure confirmations still work - [x] Fetching - [x] Responding - [x] Make it so that the login process doesn't prompt for which method to use - [x] Make it so that device confirmation and email confirmation auth session guards work
33 lines
778 B
Protocol Buffer
33 lines
778 B
Protocol Buffer
import "google/protobuf/descriptor.proto";
|
|
|
|
option optimize_for = SPEED;
|
|
option cc_generic_services = false;
|
|
|
|
extend .google.protobuf.FieldOptions {
|
|
optional string description = 50000;
|
|
}
|
|
|
|
extend .google.protobuf.ServiceOptions {
|
|
optional string service_description = 50000;
|
|
optional .EProtoExecutionSite service_execution_site = 50008 [default = k_EProtoExecutionSiteUnknown];
|
|
}
|
|
|
|
extend .google.protobuf.MethodOptions {
|
|
optional string method_description = 50000;
|
|
}
|
|
|
|
extend .google.protobuf.EnumOptions {
|
|
optional string enum_description = 50000;
|
|
}
|
|
|
|
extend .google.protobuf.EnumValueOptions {
|
|
optional string enum_value_description = 50000;
|
|
}
|
|
|
|
enum EProtoExecutionSite {
|
|
k_EProtoExecutionSiteUnknown = 0;
|
|
k_EProtoExecutionSiteSteamClient = 2;
|
|
}
|
|
|
|
message NoResponse {
|
|
}
|