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