X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=shared%2Fmodels%2Factivitypub%2Factivitypub-ordered-collection.ts;h=3de0890bb48f22bbe1e629a46bc2780ae7f18b69;hb=0fecf427d349a416dad149ee5d0b5210b6a43005;hp=487d8cee07f10cc4b7f18ef1cbae2becaf00a832;hpb=16b90975941b78d01d7202d441bf731a10048c16;p=github%2FChocobozzz%2FPeerTube.git diff --git a/shared/models/activitypub/activitypub-ordered-collection.ts b/shared/models/activitypub/activitypub-ordered-collection.ts index 487d8cee0..3de0890bb 100644 --- a/shared/models/activitypub/activitypub-ordered-collection.ts +++ b/shared/models/activitypub/activitypub-ordered-collection.ts @@ -1,9 +1,10 @@ -import { Activity } from './activity' - export interface ActivityPubOrderedCollection { '@context': string[] type: 'OrderedCollection' | 'OrderedCollectionPage' totalItems: number - partOf?: string orderedItems: T[] + + partOf?: string + next?: string + first?: string }