Compare commits
No commits in common. "400541623303cb2d1ec62130df3d99c900a7737d" and "172df6934049ad90cdaabceb301dd6b19c1ba8bc" have entirely different histories.
4005416233
...
172df69340
@ -34,16 +34,6 @@ export type Scalars = {
|
|||||||
JSON: { input: any; output: any };
|
JSON: { input: any; output: any };
|
||||||
};
|
};
|
||||||
|
|
||||||
export type AddShotAnnotationErrors = {
|
|
||||||
__typename?: "AddShotAnnotationErrors";
|
|
||||||
error: DoesNotOwnShotErrOtherErrorNeedsNote;
|
|
||||||
};
|
|
||||||
|
|
||||||
export type AddShotAnnotationReturn = {
|
|
||||||
__typename?: "AddShotAnnotationReturn";
|
|
||||||
value: SuccessfulAddAddShotAnnotationErrors;
|
|
||||||
};
|
|
||||||
|
|
||||||
export type AggregateInputGql = {
|
export type AggregateInputGql = {
|
||||||
aggregations: Array<AggregationInput>;
|
aggregations: Array<AggregationInput>;
|
||||||
filterInput?: InputMaybe<FilterInput>;
|
filterInput?: InputMaybe<FilterInput>;
|
||||||
@ -141,16 +131,6 @@ export enum DeviceTypeEnum {
|
|||||||
Ios = "IOS",
|
Ios = "IOS",
|
||||||
}
|
}
|
||||||
|
|
||||||
export type DoesNotOwnShotErr = {
|
|
||||||
__typename?: "DoesNotOwnShotErr";
|
|
||||||
msg?: Maybe<Scalars["String"]["output"]>;
|
|
||||||
shotId: Scalars["Int"]["output"];
|
|
||||||
};
|
|
||||||
|
|
||||||
export type DoesNotOwnShotErrOtherErrorNeedsNote =
|
|
||||||
| DoesNotOwnShotErr
|
|
||||||
| OtherErrorNeedsNote;
|
|
||||||
|
|
||||||
export type EnumAggregation = {
|
export type EnumAggregation = {
|
||||||
feature: Scalars["String"]["input"];
|
feature: Scalars["String"]["input"];
|
||||||
};
|
};
|
||||||
@ -1199,7 +1179,7 @@ export type MustHaveSetForUploadLinkErrSegmentAlreadyUploadedErrProcessingFailed
|
|||||||
|
|
||||||
export type Mutation = {
|
export type Mutation = {
|
||||||
__typename?: "Mutation";
|
__typename?: "Mutation";
|
||||||
addAnnotationToShot: AddShotAnnotationReturn;
|
addAnnotationToShot: Scalars["Boolean"]["output"];
|
||||||
createBucketSet: BucketSetGql;
|
createBucketSet: BucketSetGql;
|
||||||
createUploadStream: CreateUploadStreamReturn;
|
createUploadStream: CreateUploadStreamReturn;
|
||||||
deleteVideo: Scalars["Boolean"]["output"];
|
deleteVideo: Scalars["Boolean"]["output"];
|
||||||
@ -1214,7 +1194,6 @@ export type Mutation = {
|
|||||||
|
|
||||||
export type MutationAddAnnotationToShotArgs = {
|
export type MutationAddAnnotationToShotArgs = {
|
||||||
annotationName: Scalars["String"]["input"];
|
annotationName: Scalars["String"]["input"];
|
||||||
notes?: InputMaybe<Scalars["String"]["input"]>;
|
|
||||||
shotId: Scalars["Int"]["input"];
|
shotId: Scalars["Int"]["input"];
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -1268,11 +1247,6 @@ export type NoInitForChunkedUploadErr = {
|
|||||||
segmentType: StreamSegmentTypeEnum;
|
segmentType: StreamSegmentTypeEnum;
|
||||||
};
|
};
|
||||||
|
|
||||||
export type OtherErrorNeedsNote = {
|
|
||||||
__typename?: "OtherErrorNeedsNote";
|
|
||||||
msg?: Maybe<Scalars["String"]["output"]>;
|
|
||||||
};
|
|
||||||
|
|
||||||
export type PageInfoGql = {
|
export type PageInfoGql = {
|
||||||
__typename?: "PageInfoGQL";
|
__typename?: "PageInfoGQL";
|
||||||
endCursor?: Maybe<Scalars["String"]["output"]>;
|
endCursor?: Maybe<Scalars["String"]["output"]>;
|
||||||
@ -1349,10 +1323,6 @@ export type QueryGetPlayTimeArgs = {
|
|||||||
userId: Scalars["Int"]["input"];
|
userId: Scalars["Int"]["input"];
|
||||||
};
|
};
|
||||||
|
|
||||||
export type QueryGetShotAnnotationTypesArgs = {
|
|
||||||
errorTypes?: InputMaybe<Scalars["Boolean"]["input"]>;
|
|
||||||
};
|
|
||||||
|
|
||||||
export type QueryGetShotsArgs = {
|
export type QueryGetShotsArgs = {
|
||||||
filterInput: FilterInput;
|
filterInput: FilterInput;
|
||||||
limit?: Scalars["Int"]["input"];
|
limit?: Scalars["Int"]["input"];
|
||||||
@ -1417,7 +1387,6 @@ export type ShotAnnotationGql = {
|
|||||||
__typename?: "ShotAnnotationGQL";
|
__typename?: "ShotAnnotationGQL";
|
||||||
createdAt?: Maybe<Scalars["DateTime"]["output"]>;
|
createdAt?: Maybe<Scalars["DateTime"]["output"]>;
|
||||||
creator: UserGql;
|
creator: UserGql;
|
||||||
errorDefault: Scalars["Boolean"]["output"];
|
|
||||||
notes: Scalars["String"]["output"];
|
notes: Scalars["String"]["output"];
|
||||||
shotId: Scalars["Int"]["output"];
|
shotId: Scalars["Int"]["output"];
|
||||||
type: ShotAnnotationTypeGql;
|
type: ShotAnnotationTypeGql;
|
||||||
@ -1468,15 +1437,6 @@ export enum StreamSegmentTypeEnum {
|
|||||||
RbChunkedMp4 = "RB_CHUNKED_MP4",
|
RbChunkedMp4 = "RB_CHUNKED_MP4",
|
||||||
}
|
}
|
||||||
|
|
||||||
export type SuccessfulAdd = {
|
|
||||||
__typename?: "SuccessfulAdd";
|
|
||||||
value: Scalars["Boolean"]["output"];
|
|
||||||
};
|
|
||||||
|
|
||||||
export type SuccessfulAddAddShotAnnotationErrors =
|
|
||||||
| AddShotAnnotationErrors
|
|
||||||
| SuccessfulAdd;
|
|
||||||
|
|
||||||
export type TagGql = {
|
export type TagGql = {
|
||||||
__typename?: "TagGQL";
|
__typename?: "TagGQL";
|
||||||
group?: Maybe<Scalars["String"]["output"]>;
|
group?: Maybe<Scalars["String"]["output"]>;
|
||||||
@ -2055,10 +2015,13 @@ export type GetVideosQuery = {
|
|||||||
getVideos: Array<{
|
getVideos: Array<{
|
||||||
__typename?: "VideoGQL";
|
__typename?: "VideoGQL";
|
||||||
id: number;
|
id: number;
|
||||||
|
playlist?: {
|
||||||
|
__typename?: "HLSPlaylistGQL";
|
||||||
|
segmentDurations: Array<number>;
|
||||||
|
} | null;
|
||||||
stream?: {
|
stream?: {
|
||||||
__typename?: "UploadStreamGQL";
|
__typename?: "UploadStreamGQL";
|
||||||
id: string;
|
id: string;
|
||||||
streamSegmentType: StreamSegmentTypeEnum;
|
|
||||||
segments: Array<{
|
segments: Array<{
|
||||||
__typename?: "UploadSegmentGQL";
|
__typename?: "UploadSegmentGQL";
|
||||||
uploaded: boolean;
|
uploaded: boolean;
|
||||||
@ -2068,10 +2031,6 @@ export type GetVideosQuery = {
|
|||||||
framesPerSecond?: number | null;
|
framesPerSecond?: number | null;
|
||||||
}>;
|
}>;
|
||||||
} | null;
|
} | null;
|
||||||
playlist?: {
|
|
||||||
__typename?: "HLSPlaylistGQL";
|
|
||||||
segmentDurations: Array<number>;
|
|
||||||
} | null;
|
|
||||||
}>;
|
}>;
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -3621,9 +3580,11 @@ export const GetVideosDocument = gql`
|
|||||||
query GetVideos($videoIds: [Int!]!) {
|
query GetVideos($videoIds: [Int!]!) {
|
||||||
getVideos(videoIds: $videoIds) {
|
getVideos(videoIds: $videoIds) {
|
||||||
id
|
id
|
||||||
|
playlist {
|
||||||
|
segmentDurations
|
||||||
|
}
|
||||||
stream {
|
stream {
|
||||||
id
|
id
|
||||||
streamSegmentType
|
|
||||||
segments {
|
segments {
|
||||||
uploaded
|
uploaded
|
||||||
valid
|
valid
|
||||||
@ -3632,9 +3593,6 @@ export const GetVideosDocument = gql`
|
|||||||
framesPerSecond
|
framesPerSecond
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
playlist {
|
|
||||||
segmentDurations
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
@ -118,9 +118,11 @@ query GetVideoDetails($videoId: Int!) {
|
|||||||
query GetVideos($videoIds: [Int!]!) {
|
query GetVideos($videoIds: [Int!]!) {
|
||||||
getVideos(videoIds: $videoIds) {
|
getVideos(videoIds: $videoIds) {
|
||||||
id
|
id
|
||||||
|
playlist {
|
||||||
|
segmentDurations
|
||||||
|
}
|
||||||
stream {
|
stream {
|
||||||
id
|
id
|
||||||
streamSegmentType
|
|
||||||
segments {
|
segments {
|
||||||
uploaded
|
uploaded
|
||||||
valid
|
valid
|
||||||
@ -129,9 +131,6 @@ query GetVideos($videoIds: [Int!]!) {
|
|||||||
framesPerSecond
|
framesPerSecond
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
playlist {
|
|
||||||
segmentDurations
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -14,7 +14,7 @@ type Query {
|
|||||||
shotsPagination: GetShotsPagination = null
|
shotsPagination: GetShotsPagination = null
|
||||||
limit: Int! = 500
|
limit: Int! = 500
|
||||||
): [ShotGQL!]!
|
): [ShotGQL!]!
|
||||||
getShotAnnotationTypes(errorTypes: Boolean = false): [ShotAnnotationTypeGQL!]!
|
getShotAnnotationTypes: [ShotAnnotationTypeGQL!]!
|
||||||
getUser(userId: Int!): UserGQL
|
getUser(userId: Int!): UserGQL
|
||||||
getLoggedInUser: UserGQL
|
getLoggedInUser: UserGQL
|
||||||
getUsernames(
|
getUsernames(
|
||||||
@ -231,7 +231,6 @@ type ShotAnnotationGQL {
|
|||||||
type: ShotAnnotationTypeGQL!
|
type: ShotAnnotationTypeGQL!
|
||||||
creator: UserGQL!
|
creator: UserGQL!
|
||||||
notes: String!
|
notes: String!
|
||||||
errorDefault: Boolean!
|
|
||||||
createdAt: DateTime
|
createdAt: DateTime
|
||||||
updatedAt: DateTime
|
updatedAt: DateTime
|
||||||
}
|
}
|
||||||
@ -435,11 +434,7 @@ scalar JSON
|
|||||||
type Mutation {
|
type Mutation {
|
||||||
createBucketSet(params: CreateBucketSetInput!): BucketSetGQL!
|
createBucketSet(params: CreateBucketSetInput!): BucketSetGQL!
|
||||||
setLoggerLevel(path: String!, level: String!): Boolean!
|
setLoggerLevel(path: String!, level: String!): Boolean!
|
||||||
addAnnotationToShot(
|
addAnnotationToShot(shotId: Int!, annotationName: String!): Boolean!
|
||||||
shotId: Int!
|
|
||||||
annotationName: String!
|
|
||||||
notes: String = null
|
|
||||||
): AddShotAnnotationReturn!
|
|
||||||
getProfileImageUploadLink(
|
getProfileImageUploadLink(
|
||||||
fileExt: String = ".png"
|
fileExt: String = ".png"
|
||||||
): GetProfileUploadLinkReturn!
|
): GetProfileUploadLinkReturn!
|
||||||
@ -464,35 +459,6 @@ input CreateBucketSetInput {
|
|||||||
buckets: [BucketInputGQL!]!
|
buckets: [BucketInputGQL!]!
|
||||||
}
|
}
|
||||||
|
|
||||||
type AddShotAnnotationReturn {
|
|
||||||
value: SuccessfulAddAddShotAnnotationErrors!
|
|
||||||
}
|
|
||||||
|
|
||||||
union SuccessfulAddAddShotAnnotationErrors =
|
|
||||||
SuccessfulAdd
|
|
||||||
| AddShotAnnotationErrors
|
|
||||||
|
|
||||||
type SuccessfulAdd {
|
|
||||||
value: Boolean!
|
|
||||||
}
|
|
||||||
|
|
||||||
type AddShotAnnotationErrors {
|
|
||||||
error: DoesNotOwnShotErrOtherErrorNeedsNote!
|
|
||||||
}
|
|
||||||
|
|
||||||
union DoesNotOwnShotErrOtherErrorNeedsNote =
|
|
||||||
DoesNotOwnShotErr
|
|
||||||
| OtherErrorNeedsNote
|
|
||||||
|
|
||||||
type DoesNotOwnShotErr {
|
|
||||||
shotId: Int!
|
|
||||||
msg: String
|
|
||||||
}
|
|
||||||
|
|
||||||
type OtherErrorNeedsNote {
|
|
||||||
msg: String
|
|
||||||
}
|
|
||||||
|
|
||||||
type GetProfileUploadLinkReturn {
|
type GetProfileUploadLinkReturn {
|
||||||
value: UploadLinkGetProfileUploadLinkErrors!
|
value: UploadLinkGetProfileUploadLinkErrors!
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user