create-user
All checks were successful
deploy / deploy (push) Successful in 1m41s

This commit is contained in:
2023-10-24 17:01:05 +03:00
parent 739fcbfaae
commit ef5aa743bf
10 changed files with 457 additions and 0 deletions

View File

@@ -36,6 +36,17 @@ type AuthResponse struct {
User *User `json:"user,omitempty"`
}
type CreateUserInput struct {
Email *string `json:"email,omitempty"`
Password *string `json:"password,omitempty"`
GivenName *string `json:"given_name,omitempty"`
FamilyName *string `json:"family_name,omitempty"`
MiddleName *string `json:"middle_name,omitempty"`
Nickname *string `json:"nickname,omitempty"`
PhoneNumber *string `json:"phone_number,omitempty"`
Picture *string `json:"picture,omitempty"`
}
type DeleteEmailTemplateRequest struct {
ID string `json:"id"`
}