diff options
Diffstat (limited to 'shared/models/activitypub/activitypub-actor.ts')
-rw-r--r-- | shared/models/activitypub/activitypub-actor.ts | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/shared/models/activitypub/activitypub-actor.ts b/shared/models/activitypub/activitypub-actor.ts deleted file mode 100644 index b86bcb764..000000000 --- a/shared/models/activitypub/activitypub-actor.ts +++ /dev/null | |||
@@ -1,34 +0,0 @@ | |||
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 | icon?: ActivityIconObject | ActivityIconObject[] | ||
32 | |||
33 | published?: string | ||
34 | } | ||