2020-07-01 10:05:30 -04:00
|
|
|
import { AbusePredefinedReasonsString } from '@shared/models'
|
2020-06-22 07:00:39 -04:00
|
|
|
|
2017-11-09 11:51:58 -05:00
|
|
|
export interface ActivityIdentifierObject {
|
|
|
|
identifier: string
|
|
|
|
name: string
|
2020-01-30 05:53:38 -05:00
|
|
|
url?: string
|
2017-11-09 11:51:58 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface ActivityIconObject {
|
|
|
|
type: 'Image'
|
|
|
|
url: string
|
2020-01-31 10:56:52 -05:00
|
|
|
mediaType: 'image/jpeg' | 'image/png'
|
|
|
|
width?: number
|
|
|
|
height?: number
|
2017-11-09 11:51:58 -05:00
|
|
|
}
|
|
|
|
|
2018-09-11 10:27:07 -04:00
|
|
|
export type ActivityVideoUrlObject = {
|
2017-11-09 11:51:58 -05:00
|
|
|
type: 'Link'
|
2018-10-18 02:48:24 -04:00
|
|
|
mediaType: 'video/mp4' | 'video/webm' | 'video/ogg'
|
2018-01-12 09:35:30 -05:00
|
|
|
href: string
|
2018-08-17 05:24:36 -04:00
|
|
|
height: number
|
2018-09-11 10:27:07 -04:00
|
|
|
size: number
|
|
|
|
fps: number
|
2017-11-09 11:51:58 -05:00
|
|
|
}
|
2017-12-14 11:38:41 -05:00
|
|
|
|
2019-01-29 02:37:25 -05:00
|
|
|
export type ActivityPlaylistSegmentHashesObject = {
|
|
|
|
type: 'Link'
|
|
|
|
name: 'sha256'
|
|
|
|
mediaType: 'application/json'
|
|
|
|
href: string
|
|
|
|
}
|
|
|
|
|
2020-03-10 09:39:40 -04:00
|
|
|
export type ActivityVideoFileMetadataObject = {
|
|
|
|
type: 'Link'
|
|
|
|
rel: [ 'metadata', any ]
|
|
|
|
mediaType: 'application/json'
|
|
|
|
height: number
|
|
|
|
href: string
|
|
|
|
fps: number
|
|
|
|
}
|
|
|
|
|
2019-01-29 02:37:25 -05:00
|
|
|
export type ActivityPlaylistInfohashesObject = {
|
|
|
|
type: 'Infohash'
|
|
|
|
name: string
|
|
|
|
}
|
|
|
|
|
|
|
|
export type ActivityPlaylistUrlObject = {
|
|
|
|
type: 'Link'
|
|
|
|
mediaType: 'application/x-mpegURL'
|
|
|
|
href: string
|
2019-11-15 09:06:03 -05:00
|
|
|
tag?: ActivityTagObject[]
|
2019-01-29 02:37:25 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
export type ActivityBitTorrentUrlObject = {
|
|
|
|
type: 'Link'
|
|
|
|
mediaType: 'application/x-bittorrent' | 'application/x-bittorrent;x-scheme-handler/magnet'
|
|
|
|
href: string
|
|
|
|
height: number
|
|
|
|
}
|
|
|
|
|
2019-11-15 09:06:03 -05:00
|
|
|
export type ActivityMagnetUrlObject = {
|
|
|
|
type: 'Link'
|
|
|
|
mediaType: 'application/x-bittorrent;x-scheme-handler/magnet'
|
|
|
|
href: string
|
|
|
|
height: number
|
|
|
|
}
|
|
|
|
|
2019-01-29 02:37:25 -05:00
|
|
|
export type ActivityHtmlUrlObject = {
|
|
|
|
type: 'Link'
|
|
|
|
mediaType: 'text/html'
|
|
|
|
href: string
|
|
|
|
}
|
|
|
|
|
2019-11-15 09:06:03 -05:00
|
|
|
export interface ActivityHashTagObject {
|
2020-06-22 07:00:39 -04:00
|
|
|
type: 'Hashtag'
|
2019-11-15 09:06:03 -05:00
|
|
|
href?: string
|
|
|
|
name: string
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface ActivityMentionObject {
|
2020-06-22 07:00:39 -04:00
|
|
|
type: 'Mention'
|
2019-11-15 09:06:03 -05:00
|
|
|
href?: string
|
|
|
|
name: string
|
|
|
|
}
|
|
|
|
|
2020-06-22 07:00:39 -04:00
|
|
|
export interface ActivityFlagReasonObject {
|
|
|
|
type: 'Hashtag'
|
2020-07-01 10:05:30 -04:00
|
|
|
name: AbusePredefinedReasonsString
|
2020-06-22 07:00:39 -04:00
|
|
|
}
|
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
export type ActivityTagObject =
|
|
|
|
ActivityPlaylistSegmentHashesObject
|
|
|
|
| ActivityPlaylistInfohashesObject
|
|
|
|
| ActivityVideoUrlObject
|
|
|
|
| ActivityHashTagObject
|
|
|
|
| ActivityMentionObject
|
|
|
|
| ActivityBitTorrentUrlObject
|
|
|
|
| ActivityMagnetUrlObject
|
2020-03-10 09:39:40 -04:00
|
|
|
| ActivityVideoFileMetadataObject
|
2019-11-15 09:06:03 -05:00
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
export type ActivityUrlObject =
|
|
|
|
ActivityVideoUrlObject
|
|
|
|
| ActivityPlaylistUrlObject
|
|
|
|
| ActivityBitTorrentUrlObject
|
|
|
|
| ActivityMagnetUrlObject
|
|
|
|
| ActivityHtmlUrlObject
|
2020-03-10 09:39:40 -04:00
|
|
|
| ActivityVideoFileMetadataObject
|
2018-09-11 10:27:07 -04:00
|
|
|
|
2017-12-14 11:38:41 -05:00
|
|
|
export interface ActivityPubAttributedTo {
|
|
|
|
type: 'Group' | 'Person'
|
|
|
|
id: string
|
|
|
|
}
|
2019-11-15 13:05:08 -05:00
|
|
|
|
|
|
|
export interface ActivityTombstoneObject {
|
|
|
|
'@context'?: any
|
|
|
|
id: string
|
2019-12-03 15:48:31 -05:00
|
|
|
url?: string
|
2019-11-15 13:05:08 -05:00
|
|
|
type: 'Tombstone'
|
|
|
|
name?: string
|
|
|
|
formerType?: string
|
2019-12-03 15:48:31 -05:00
|
|
|
inReplyTo?: string
|
2019-11-15 13:05:08 -05:00
|
|
|
published: string
|
|
|
|
updated: string
|
|
|
|
deleted: string
|
|
|
|
}
|