rebase master
parent
057dd67100
commit
b9de9d63a1
|
|
@ -48,6 +48,7 @@ export type Mutation = {
|
|||
__typename?: 'Mutation'
|
||||
createInvitation: Scalars['Int']['output']
|
||||
deleteInvitation: Scalars['Int']['output']
|
||||
refreshToken: RefreshTokenResponse
|
||||
register: RegisterResponse
|
||||
resetRegistrationToken: Scalars['String']['output']
|
||||
tokenAuth: TokenAuthResponse
|
||||
|
|
@ -62,6 +63,10 @@ export type MutationDeleteInvitationArgs = {
|
|||
id: Scalars['Int']['input']
|
||||
}
|
||||
|
||||
export type MutationRefreshTokenArgs = {
|
||||
refreshToken: Scalars['String']['input']
|
||||
}
|
||||
|
||||
export type MutationRegisterArgs = {
|
||||
email: Scalars['String']['input']
|
||||
invitationCode?: InputMaybe<Scalars['String']['input']>
|
||||
|
|
@ -87,6 +92,13 @@ export type Query = {
|
|||
workers: Array<Worker>
|
||||
}
|
||||
|
||||
export type RefreshTokenResponse = {
|
||||
__typename?: 'RefreshTokenResponse'
|
||||
accessToken: Scalars['String']['output']
|
||||
refreshExpiresAt: Scalars['Float']['output']
|
||||
refreshToken: Scalars['String']['output']
|
||||
}
|
||||
|
||||
export type RegisterResponse = {
|
||||
__typename?: 'RegisterResponse'
|
||||
accessToken: Scalars['String']['output']
|
||||
|
|
|
|||
Loading…
Reference in New Issue