feature: add first time install process
This commit is contained in:
@ -267,6 +267,7 @@ export type Mutation = {
|
||||
updateTaskLocation: UpdateTaskLocationPayload;
|
||||
updateTaskName: Task;
|
||||
updateTeamMemberRole: UpdateTeamMemberRolePayload;
|
||||
updateUserPassword: UpdateUserPasswordPayload;
|
||||
updateUserRole: UpdateUserRolePayload;
|
||||
};
|
||||
|
||||
@ -506,6 +507,11 @@ export type MutationUpdateTeamMemberRoleArgs = {
|
||||
};
|
||||
|
||||
|
||||
export type MutationUpdateUserPasswordArgs = {
|
||||
input: UpdateUserPassword;
|
||||
};
|
||||
|
||||
|
||||
export type MutationUpdateUserRoleArgs = {
|
||||
input: UpdateUserRole;
|
||||
};
|
||||
@ -862,6 +868,17 @@ export type SetTeamOwnerPayload = {
|
||||
newOwner: Member;
|
||||
};
|
||||
|
||||
export type UpdateUserPassword = {
|
||||
userID: Scalars['UUID'];
|
||||
password: Scalars['String'];
|
||||
};
|
||||
|
||||
export type UpdateUserPasswordPayload = {
|
||||
__typename?: 'UpdateUserPasswordPayload';
|
||||
ok: Scalars['Boolean'];
|
||||
user: UserAccount;
|
||||
};
|
||||
|
||||
export type UpdateUserRole = {
|
||||
userID: Scalars['UUID'];
|
||||
roleCode: RoleCode;
|
||||
|
Reference in New Issue
Block a user