diff --git a/server/graph/generated/generated.go b/server/graph/generated/generated.go index 21f0e59..a02f12e 100644 --- a/server/graph/generated/generated.go +++ b/server/graph/generated/generated.go @@ -2560,7 +2560,7 @@ input AdminSignupInput { admin_secret: String! } -# Deprecated with v1.2.0 +# Deprecated from v1.2.0 input MobileSignUpInput { email: String given_name: String @@ -2619,7 +2619,7 @@ input LoginInput { state: String } -# Deprecated with v1.2.0 +# Deprecated from v1.2.0 input MobileLoginInput { phone_number: String! password: String! @@ -2831,10 +2831,10 @@ input GetUserRequest { type Mutation { signup(params: SignUpInput!): AuthResponse! - # Deprecated with v1.2.0 + # Deprecated from v1.2.0 mobile_signup(params: MobileSignUpInput): AuthResponse! login(params: LoginInput!): AuthResponse! - # Deprecated with v1.2.0 + # Deprecated from v1.2.0 mobile_login(params: MobileLoginInput!): AuthResponse! magic_link_login(params: MagicLinkLoginInput!): Response! logout: Response! diff --git a/server/graph/schema.graphqls b/server/graph/schema.graphqls index 82c5588..5e68dbb 100644 --- a/server/graph/schema.graphqls +++ b/server/graph/schema.graphqls @@ -306,7 +306,7 @@ input AdminSignupInput { admin_secret: String! } -# Deprecated with v1.2.0 +# Deprecated from v1.2.0 input MobileSignUpInput { email: String given_name: String @@ -365,7 +365,7 @@ input LoginInput { state: String } -# Deprecated with v1.2.0 +# Deprecated from v1.2.0 input MobileLoginInput { phone_number: String! password: String! @@ -577,10 +577,10 @@ input GetUserRequest { type Mutation { signup(params: SignUpInput!): AuthResponse! - # Deprecated with v1.2.0 + # Deprecated from v1.2.0 mobile_signup(params: MobileSignUpInput): AuthResponse! login(params: LoginInput!): AuthResponse! - # Deprecated with v1.2.0 + # Deprecated from v1.2.0 mobile_login(params: MobileLoginInput!): AuthResponse! magic_link_login(params: MagicLinkLoginInput!): Response! logout: Response!