PeerTube/server/typings/models/account/account-blocklist.ts

28 lines
1.0 KiB
TypeScript
Raw Normal View History

2019-08-15 04:53:26 -05:00
import { AccountBlocklistModel } from '../../../models/account/account-blocklist'
import { PickWith } from '../../utils'
2019-08-20 12:05:31 -05:00
import { MAccountDefault, MAccountFormattable } from './account'
2019-08-15 04:53:26 -05:00
2019-08-20 06:52:49 -05:00
type Use<K extends keyof AccountBlocklistModel, M> = PickWith<AccountBlocklistModel, K, M>
// ############################################################################
2019-08-15 04:53:26 -05:00
export type MAccountBlocklist = Omit<AccountBlocklistModel, 'ByAccount' | 'BlockedAccount'>
2019-08-20 06:52:49 -05:00
// ############################################################################
2019-08-15 04:53:26 -05:00
export type MAccountBlocklistId = Pick<AccountBlocklistModel, 'id'>
2020-01-31 09:56:52 -06:00
export type MAccountBlocklistAccounts =
MAccountBlocklist &
2019-08-20 06:52:49 -05:00
Use<'ByAccount', MAccountDefault> &
Use<'BlockedAccount', MAccountDefault>
2019-08-20 12:05:31 -05:00
// ############################################################################
// Format for API or AP object
2020-01-31 09:56:52 -06:00
export type MAccountBlocklistFormattable =
Pick<MAccountBlocklist, 'createdAt'> &
2019-08-20 12:05:31 -05:00
Use<'ByAccount', MAccountFormattable> &
Use<'BlockedAccount', MAccountFormattable>