import { UserNotificationModel } from '../../../models/account/user-notification' import { PickWith } from '../../utils' import { VideoModel } from '../../../models/video/video' import { ActorModel } from '../../../models/activitypub/actor' import { ServerModel } from '../../../models/server/server' import { AvatarModel } from '../../../models/avatar/avatar' import { VideoChannelModel } from '../../../models/video/video-channel' import { AccountModel } from '../../../models/account/account' import { VideoCommentModel } from '../../../models/video/video-comment' import { VideoAbuseModel } from '../../../models/video/video-abuse' import { VideoBlacklistModel } from '../../../models/video/video-blacklist' import { VideoImportModel } from '../../../models/video/video-import' import { ActorFollowModel } from '../../../models/activitypub/actor-follow' export namespace UserNotificationIncludes { export type VideoInclude = Pick export type VideoIncludeChannel = VideoInclude & PickWith export type ActorInclude = Pick & PickWith> & PickWith> export type VideoChannelInclude = Pick export type VideoChannelIncludeActor = VideoChannelInclude & PickWith export type AccountInclude = Pick export type AccountIncludeActor = AccountInclude & PickWith export type VideoCommentInclude = Pick & PickWith & PickWith export type VideoAbuseInclude = Pick & PickWith export type VideoBlacklistInclude = Pick & PickWith export type VideoImportInclude = Pick & PickWith export type ActorFollower = Pick & PickWith & PickWith> & PickWith> export type ActorFollowing = Pick & PickWith & PickWith export type ActorFollowInclude = Pick & PickWith & PickWith } export type UserNotificationModelOnly = Omit export type UserNotificationModelForApi = UserNotificationModelOnly & PickWith & PickWith & PickWith & PickWith & PickWith & PickWith & PickWith