PeerTube/shared/models/activitypub/activitypub-actor.ts

37 lines
681 B
TypeScript
Raw Normal View History

2017-12-14 17:38:41 +01:00
import { ActivityPubAttributedTo } from './objects/common-objects'
export type ActivityPubActorType = 'Person' | 'Application' | 'Group'
2017-11-09 17:51:58 +01:00
export interface ActivityPubActor {
'@context': any[]
2017-12-14 17:38:41 +01:00
type: ActivityPubActorType
2017-11-09 17:51:58 +01:00
id: string
following: string
followers: string
2019-02-26 10:55:40 +01:00
playlists?: string
2017-11-09 17:51:58 +01:00
inbox: string
outbox: string
preferredUsername: string
url: string
name: string
endpoints: {
sharedInbox: string
}
2017-12-14 17:38:41 +01:00
summary: string
attributedTo: ActivityPubAttributedTo[]
2017-11-09 17:51:58 +01:00
support?: string
2017-11-09 17:51:58 +01:00
uuid: string
publicKey: {
id: string
owner: string
publicKeyPem: string
}
2017-12-29 19:10:13 +01:00
icon: {
type: 'Image'
mediaType: 'image/png'
url: string
}
2017-11-09 17:51:58 +01:00
}