Move to eslint
[oweals/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   icon: ActivityIconObject
31 }