Parameter to setSegmentDuration should be segmentIndex
This commit is contained in:
parent
80f609b8a2
commit
bce363e8ff
@ -906,7 +906,7 @@ export type MutationSetLoggerLevelArgs = {
|
||||
|
||||
export type MutationSetSegmentDurationArgs = {
|
||||
duration: Scalars["Float"]["input"];
|
||||
segmentId: Scalars["Int"]["input"];
|
||||
segmentIndex: Scalars["Int"]["input"];
|
||||
videoId: Scalars["Int"]["input"];
|
||||
};
|
||||
|
||||
|
@ -365,7 +365,11 @@ type Mutation {
|
||||
): CreateUploadStreamReturn!
|
||||
getUploadLink(videoId: Int!, segmentIndex: Int!): GetUploadLinkReturn!
|
||||
getHlsInitUploadLink(videoId: Int!): GetUploadLinkReturn!
|
||||
setSegmentDuration(videoId: Int!, segmentId: Int!, duration: Float!): Boolean!
|
||||
setSegmentDuration(
|
||||
videoId: Int!
|
||||
segmentIndex: Int!
|
||||
duration: Float!
|
||||
): Boolean!
|
||||
editUploadStream(videoId: Int!, videoMetadata: VideoMetadataInput!): Boolean!
|
||||
deleteVideo(videoId: Int!): Boolean!
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user