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