]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/activitypub/activitypub-actor.ts
Implement avatar miniatures (#4639)
[github/Chocobozzz/PeerTube.git] / shared / models / activitypub / activitypub-actor.ts
1 import { ActivityIconObject, ActivityPubAttributedTo } from './objects/common-objects'
2
3 export type ActivityPubActorType = 'Person' | 'Application' | 'Group' | 'Service' | 'Organization'
4
5 export interface ActivityPubActor {
6 '@context': any[]
7 type: ActivityPubActorType
8 id: string
9 following: string
10 followers: string
11 playlists?: string
12 inbox: string
13 outbox: string
14 preferredUsername: string
15 url: string
16 name: string
17 endpoints: {
18 sharedInbox: string
19 }
20 summary: string
21 attributedTo: ActivityPubAttributedTo[]
22
23 support?: string
24 publicKey: {
25 id: string
26 owner: string
27 publicKeyPem: string
28 }
29
30 image?: ActivityIconObject | ActivityIconObject[]
31
32 icon?: ActivityIconObject | ActivityIconObject[]
33 // TODO: migrate to `icon`, introduced in 4.2
34 icons?: ActivityIconObject[]
35
36 published?: string
37 }