1
0
Fork 0

Fix context types

This commit is contained in:
Chocobozzz 2019-04-08 09:55:25 +02:00
parent abf325b4f6
commit 4e10f4b2f1
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 11 additions and 11 deletions

View File

@ -29,47 +29,47 @@ function activityPubContextify <T> (data: T) {
Infohash: 'pt:Infohash', Infohash: 'pt:Infohash',
originallyPublishedAt: 'sc:datePublished', originallyPublishedAt: 'sc:datePublished',
views: { views: {
type: 'sc:Number', '@type': 'sc:Number',
'@id': 'pt:views' '@id': 'pt:views'
}, },
state: { state: {
type: 'sc:Number', '@type': 'sc:Number',
'@id': 'pt:state' '@id': 'pt:state'
}, },
size: { size: {
type: 'sc:Number', '@type': 'sc:Number',
'@id': 'pt:size' '@id': 'pt:size'
}, },
fps: { fps: {
type: 'sc:Number', '@type': 'sc:Number',
'@id': 'pt:fps' '@id': 'pt:fps'
}, },
startTimestamp: { startTimestamp: {
type: 'sc:Number', '@type': 'sc:Number',
'@id': 'pt:startTimestamp' '@id': 'pt:startTimestamp'
}, },
stopTimestamp: { stopTimestamp: {
type: 'sc:Number', '@type': 'sc:Number',
'@id': 'pt:stopTimestamp' '@id': 'pt:stopTimestamp'
}, },
position: { position: {
type: 'sc:Number', '@type': 'sc:Number',
'@id': 'pt:position' '@id': 'pt:position'
}, },
commentsEnabled: { commentsEnabled: {
type: 'sc:Boolean', '@type': 'sc:Boolean',
'@id': 'pt:commentsEnabled' '@id': 'pt:commentsEnabled'
}, },
downloadEnabled: { downloadEnabled: {
type: 'sc:Boolean', '@type': 'sc:Boolean',
'@id': 'pt:downloadEnabled' '@id': 'pt:downloadEnabled'
}, },
waitTranscoding: { waitTranscoding: {
type: 'sc:Boolean', '@type': 'sc:Boolean',
'@id': 'pt:waitTranscoding' '@id': 'pt:waitTranscoding'
}, },
support: { support: {
type: 'sc:Text', '@type': 'sc:Text',
'@id': 'pt:support' '@id': 'pt:support'
} }
}, },