Fix context types
This commit is contained in:
parent
abf325b4f6
commit
4e10f4b2f1
|
@ -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'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue