1 import { OAuthTokenModel } from '@server/models/oauth/oauth-token'
2 import { PickWith } from '@server/typings/utils'
3 import { MUserAccountUrl } from '../user/user'
5 type Use<K extends keyof OAuthTokenModel, M> = PickWith<OAuthTokenModel, K, M>
7 // ############################################################################
9 export type MOAuthToken = Omit<OAuthTokenModel, 'User' | 'OAuthClients'>
11 export type MOAuthTokenUser =
13 Use<'User', MUserAccountUrl> &
14 { user?: MUserAccountUrl }