]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/types/models/oauth/oauth-token.ts
Merge branch 'release/3.3.0' into develop
[github/Chocobozzz/PeerTube.git] / server / types / models / oauth / oauth-token.ts
1 import { OAuthTokenModel } from '@server/models/oauth/oauth-token'
2 import { PickWith } from '@shared/core-utils'
3 import { MUserAccountUrl } from '../user/user'
4
5 type Use<K extends keyof OAuthTokenModel, M> = PickWith<OAuthTokenModel, K, M>
6
7 // ############################################################################
8
9 export type MOAuthToken = Omit<OAuthTokenModel, 'User' | 'OAuthClients'>
10
11 export type MOAuthTokenUser =
12 MOAuthToken &
13 Use<'User', MUserAccountUrl> &
14 { user?: MUserAccountUrl }