aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/types/models/oauth/oauth-token.ts
blob: 396cf642960787c01bc3a993feeeb6c1d426a8a1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { OAuthTokenModel } from '@server/models/oauth/oauth-token'
import { PickWith } from '@server/types/utils'
import { MUserAccountUrl } from '../user/user'

type Use<K extends keyof OAuthTokenModel, M> = PickWith<OAuthTokenModel, K, M>

// ############################################################################

export type MOAuthToken = Omit<OAuthTokenModel, 'User' | 'OAuthClients'>

export type MOAuthTokenUser =
  MOAuthToken &
  Use<'User', MUserAccountUrl> &
  { user?: MUserAccountUrl }