syntax = "proto3"; package anonymous.v1; option go_package = "git.shenxianhe.cn/shenxianhe/sdk/anonymous/v1;anonymousv1"; import "enums/v1/user.proto"; message AuthRequest { enums.v1.AuthenticationType auth_type = 1; // 认证类型 string auth_id = 2; // 认证ID,根据auth_type存储不同的账号信息 string credential = 3; // 凭证,可以是验证码或密码 string invitation_code = 4; // 邀请码 } message AuthResponse { string token = 1; } message SendCredentialRequest { enums.v1.AuthenticationType auth_type = 1; // 认证类型 string auth_id = 2; // 认证ID,根据auth_type存储不同的账号信息 } message SendCredentialResponse {}