Skip to content

Commit

Permalink
fix(users): XXX-0 fix bad type
Browse files Browse the repository at this point in the history
  • Loading branch information
noticeeverything committed Mar 17, 2022
1 parent 5831db8 commit 5c08718
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ export type AddTimelyClient = OptionalExceptFor<TimelyClient, 'name'>

export type AddTimelyUser = OptionalExceptFor<TimelyUser, 'name' | 'email' | 'role_id' | 'projects'>

export type UpdateTimelyUser = AddTimelyUser & {
export interface UpdateTimelyUser extends Partial<TimelyUser> {
add_to_all_projects?: boolean
}

Expand Down

0 comments on commit 5c08718

Please sign in to comment.