Compare commits
1 Commits
dean/leade
...
dean/uploa
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8441bb12e9 |
@@ -2404,11 +2404,6 @@ export type Header = {
|
|||||||
value: Scalars["String"]["output"];
|
value: Scalars["String"]["output"];
|
||||||
};
|
};
|
||||||
|
|
||||||
export enum HomographyBackendGql {
|
|
||||||
Classic = "CLASSIC",
|
|
||||||
Tablenet = "TABLENET",
|
|
||||||
}
|
|
||||||
|
|
||||||
export type HomographyInfoGql = {
|
export type HomographyInfoGql = {
|
||||||
__typename?: "HomographyInfoGQL";
|
__typename?: "HomographyInfoGQL";
|
||||||
crop: BoundingBoxGql;
|
crop: BoundingBoxGql;
|
||||||
@@ -3195,28 +3190,14 @@ export type QueryGetLiveTableStateArgs = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
export type QueryGetLongestRunsLeaderboardArgs = {
|
export type QueryGetLongestRunsLeaderboardArgs = {
|
||||||
excludeDrills?: Scalars["Boolean"]["input"];
|
|
||||||
gameType?: InputMaybe<Scalars["String"]["input"]>;
|
|
||||||
interval?: InputMaybe<TimeInterval>;
|
interval?: InputMaybe<TimeInterval>;
|
||||||
limit?: Scalars["Int"]["input"];
|
limit?: Scalars["Int"]["input"];
|
||||||
pocketSizeMax?: InputMaybe<Scalars["Float"]["input"]>;
|
|
||||||
pocketSizeMin?: InputMaybe<Scalars["Float"]["input"]>;
|
|
||||||
rankedOnly?: Scalars["Boolean"]["input"];
|
|
||||||
requiredTags?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
requiredTags?: InputMaybe<Array<Scalars["String"]["input"]>>;
|
||||||
tableSizeMax?: InputMaybe<Scalars["Float"]["input"]>;
|
|
||||||
tableSizeMin?: InputMaybe<Scalars["Float"]["input"]>;
|
|
||||||
when?: InputMaybe<Scalars["DateTime"]["input"]>;
|
when?: InputMaybe<Scalars["DateTime"]["input"]>;
|
||||||
};
|
};
|
||||||
|
|
||||||
export type QueryGetMakesLeaderboardArgs = {
|
export type QueryGetMakesLeaderboardArgs = {
|
||||||
excludeDrills?: Scalars["Boolean"]["input"];
|
|
||||||
gameType?: InputMaybe<Scalars["String"]["input"]>;
|
|
||||||
interval?: InputMaybe<TimeInterval>;
|
interval?: InputMaybe<TimeInterval>;
|
||||||
pocketSizeMax?: InputMaybe<Scalars["Float"]["input"]>;
|
|
||||||
pocketSizeMin?: InputMaybe<Scalars["Float"]["input"]>;
|
|
||||||
rankedOnly?: Scalars["Boolean"]["input"];
|
|
||||||
tableSizeMax?: InputMaybe<Scalars["Float"]["input"]>;
|
|
||||||
tableSizeMin?: InputMaybe<Scalars["Float"]["input"]>;
|
|
||||||
when?: InputMaybe<Scalars["DateTime"]["input"]>;
|
when?: InputMaybe<Scalars["DateTime"]["input"]>;
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -4297,7 +4278,6 @@ export type VideoMetadataInput = {
|
|||||||
framesPerSecond?: InputMaybe<Scalars["Float"]["input"]>;
|
framesPerSecond?: InputMaybe<Scalars["Float"]["input"]>;
|
||||||
/** @deprecated `game_type` is deprecated. Use `tags` instead. */
|
/** @deprecated `game_type` is deprecated. Use `tags` instead. */
|
||||||
gameType?: InputMaybe<Scalars["String"]["input"]>;
|
gameType?: InputMaybe<Scalars["String"]["input"]>;
|
||||||
homographyBackend?: InputMaybe<HomographyBackendGql>;
|
|
||||||
lastIntendedSegmentBound?: InputMaybe<Scalars["Int"]["input"]>;
|
lastIntendedSegmentBound?: InputMaybe<Scalars["Int"]["input"]>;
|
||||||
pocketSize?: InputMaybe<Scalars["Float"]["input"]>;
|
pocketSize?: InputMaybe<Scalars["Float"]["input"]>;
|
||||||
private?: InputMaybe<Scalars["Boolean"]["input"]>;
|
private?: InputMaybe<Scalars["Boolean"]["input"]>;
|
||||||
@@ -9051,6 +9031,7 @@ export type GetUploadLinkMutation = {
|
|||||||
};
|
};
|
||||||
stream?: {
|
stream?: {
|
||||||
__typename?: "UploadStreamGQL";
|
__typename?: "UploadStreamGQL";
|
||||||
|
id: string;
|
||||||
uploadCompletionCursor: number;
|
uploadCompletionCursor: number;
|
||||||
} | null;
|
} | null;
|
||||||
};
|
};
|
||||||
@@ -9149,6 +9130,7 @@ export type UploadStreamWithDetailsFragment = {
|
|||||||
startTime?: any | null;
|
startTime?: any | null;
|
||||||
stream?: {
|
stream?: {
|
||||||
__typename?: "UploadStreamGQL";
|
__typename?: "UploadStreamGQL";
|
||||||
|
id: string;
|
||||||
isCompleted: boolean;
|
isCompleted: boolean;
|
||||||
lastIntendedSegmentBound?: number | null;
|
lastIntendedSegmentBound?: number | null;
|
||||||
uploadCompletionCursor: number;
|
uploadCompletionCursor: number;
|
||||||
@@ -9173,6 +9155,7 @@ export type GetUploadStreamsWithDetailsQuery = {
|
|||||||
startTime?: any | null;
|
startTime?: any | null;
|
||||||
stream?: {
|
stream?: {
|
||||||
__typename?: "UploadStreamGQL";
|
__typename?: "UploadStreamGQL";
|
||||||
|
id: string;
|
||||||
isCompleted: boolean;
|
isCompleted: boolean;
|
||||||
lastIntendedSegmentBound?: number | null;
|
lastIntendedSegmentBound?: number | null;
|
||||||
uploadCompletionCursor: number;
|
uploadCompletionCursor: number;
|
||||||
@@ -9712,6 +9695,7 @@ export const UploadStreamWithDetailsFragmentDoc = gql`
|
|||||||
name
|
name
|
||||||
startTime
|
startTime
|
||||||
stream {
|
stream {
|
||||||
|
id
|
||||||
isCompleted
|
isCompleted
|
||||||
lastIntendedSegmentBound
|
lastIntendedSegmentBound
|
||||||
uploadCompletionCursor
|
uploadCompletionCursor
|
||||||
@@ -19495,6 +19479,7 @@ export const GetUploadLinkDocument = gql`
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
stream {
|
stream {
|
||||||
|
id
|
||||||
uploadCompletionCursor
|
uploadCompletionCursor
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -48,6 +48,7 @@ mutation GetUploadLink($videoId: Int!, $segmentIndex: Int!) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
stream {
|
stream {
|
||||||
|
id
|
||||||
uploadCompletionCursor
|
uploadCompletionCursor
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -127,6 +128,7 @@ fragment UploadStreamWithDetails on VideoGQL {
|
|||||||
name
|
name
|
||||||
startTime
|
startTime
|
||||||
stream {
|
stream {
|
||||||
|
id
|
||||||
isCompleted
|
isCompleted
|
||||||
lastIntendedSegmentBound
|
lastIntendedSegmentBound
|
||||||
uploadCompletionCursor
|
uploadCompletionCursor
|
||||||
|
|||||||
3190
src/schema.gql
3190
src/schema.gql
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user