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