Update comments

This commit is contained in:
Lakhan Samani 2023-10-22 02:36:10 +05:30
parent 3ed31b0557
commit 4bddbde280
2 changed files with 8 additions and 8 deletions

View File

@ -2560,7 +2560,7 @@ input AdminSignupInput {
admin_secret: String! admin_secret: String!
} }
# Deprecated with v1.2.0 # Deprecated from v1.2.0
input MobileSignUpInput { input MobileSignUpInput {
email: String email: String
given_name: String given_name: String
@ -2619,7 +2619,7 @@ input LoginInput {
state: String state: String
} }
# Deprecated with v1.2.0 # Deprecated from v1.2.0
input MobileLoginInput { input MobileLoginInput {
phone_number: String! phone_number: String!
password: String! password: String!
@ -2831,10 +2831,10 @@ input GetUserRequest {
type Mutation { type Mutation {
signup(params: SignUpInput!): AuthResponse! signup(params: SignUpInput!): AuthResponse!
# Deprecated with v1.2.0 # Deprecated from v1.2.0
mobile_signup(params: MobileSignUpInput): AuthResponse! mobile_signup(params: MobileSignUpInput): AuthResponse!
login(params: LoginInput!): AuthResponse! login(params: LoginInput!): AuthResponse!
# Deprecated with v1.2.0 # Deprecated from v1.2.0
mobile_login(params: MobileLoginInput!): AuthResponse! mobile_login(params: MobileLoginInput!): AuthResponse!
magic_link_login(params: MagicLinkLoginInput!): Response! magic_link_login(params: MagicLinkLoginInput!): Response!
logout: Response! logout: Response!

View File

@ -306,7 +306,7 @@ input AdminSignupInput {
admin_secret: String! admin_secret: String!
} }
# Deprecated with v1.2.0 # Deprecated from v1.2.0
input MobileSignUpInput { input MobileSignUpInput {
email: String email: String
given_name: String given_name: String
@ -365,7 +365,7 @@ input LoginInput {
state: String state: String
} }
# Deprecated with v1.2.0 # Deprecated from v1.2.0
input MobileLoginInput { input MobileLoginInput {
phone_number: String! phone_number: String!
password: String! password: String!
@ -577,10 +577,10 @@ input GetUserRequest {
type Mutation { type Mutation {
signup(params: SignUpInput!): AuthResponse! signup(params: SignUpInput!): AuthResponse!
# Deprecated with v1.2.0 # Deprecated from v1.2.0
mobile_signup(params: MobileSignUpInput): AuthResponse! mobile_signup(params: MobileSignUpInput): AuthResponse!
login(params: LoginInput!): AuthResponse! login(params: LoginInput!): AuthResponse!
# Deprecated with v1.2.0 # Deprecated from v1.2.0
mobile_login(params: MobileLoginInput!): AuthResponse! mobile_login(params: MobileLoginInput!): AuthResponse!
magic_link_login(params: MagicLinkLoginInput!): Response! magic_link_login(params: MagicLinkLoginInput!): Response!
logout: Response! logout: Response!