Merge branch 'main' of dev.discours.io:authorizer
Some checks failed
deploy / deploy (push) Failing after 5s
Some checks failed
deploy / deploy (push) Failing after 5s
This commit is contained in:
1
server/graph/model/mod.go
Normal file
1
server/graph/model/mod.go
Normal file
@@ -0,0 +1 @@
|
||||
package model
|
@@ -40,6 +40,21 @@ type AuthResponse struct {
|
||||
AuthenticatorRecoveryCodes []*string `json:"authenticator_recovery_codes,omitempty"`
|
||||
}
|
||||
|
||||
type CreateUserInput struct {
|
||||
Email *string `json:"email,omitempty"`
|
||||
EmailVerified *bool `json:"email_verified,omitempty"`
|
||||
EmailVerifiedAt *int64 `json:"email_verified_at,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"`
|
||||
CreatedAt *int64 `json:"created_at,omitempty"`
|
||||
UpdatedAt *int64 `json:"updated_at,omitempty"`
|
||||
}
|
||||
|
||||
type DeleteEmailTemplateRequest struct {
|
||||
ID string `json:"id"`
|
||||
}
|
||||
|
Reference in New Issue
Block a user