Compare commits
4 Commits
live-table
...
colonelpan
| Author | SHA1 | Date | |
|---|---|---|---|
| ef4782fc14 | |||
| 905a1ca6db | |||
| 6f63189703 | |||
| 958057764c |
@@ -3338,6 +3338,14 @@ export type QuotaStatusGql = {
|
||||
tierName: Scalars["String"]["output"];
|
||||
};
|
||||
|
||||
export type RgbColorGql = {
|
||||
__typename?: "RGBColorGQL";
|
||||
b: Scalars["Int"]["output"];
|
||||
g: Scalars["Int"]["output"];
|
||||
hex: Scalars["String"]["output"];
|
||||
r: Scalars["Int"]["output"];
|
||||
};
|
||||
|
||||
export enum ReactionEnum {
|
||||
Bullseye = "BULLSEYE",
|
||||
Heart = "HEART",
|
||||
@@ -3803,6 +3811,7 @@ export type SyncAppleSubscriptionResultGql = {
|
||||
export type TableStateGql = {
|
||||
__typename?: "TableStateGQL";
|
||||
homography?: Maybe<HomographyInfoGql>;
|
||||
identifierToColor: Array<Maybe<RgbColorGql>>;
|
||||
identifierToPosition: Array<Array<Scalars["Float"]["output"]>>;
|
||||
};
|
||||
|
||||
@@ -6736,6 +6745,10 @@ export type GetTableStateQuery = {
|
||||
getTableState: {
|
||||
__typename?: "TableStateGQL";
|
||||
identifierToPosition: Array<Array<number>>;
|
||||
identifierToColor: Array<{
|
||||
__typename?: "RGBColorGQL";
|
||||
hex: string;
|
||||
} | null>;
|
||||
};
|
||||
};
|
||||
|
||||
@@ -6752,6 +6765,10 @@ export type GetLiveTableStateQuery = {
|
||||
tableState: {
|
||||
__typename?: "TableStateGQL";
|
||||
identifierToPosition: Array<Array<number>>;
|
||||
identifierToColor: Array<{
|
||||
__typename?: "RGBColorGQL";
|
||||
hex: string;
|
||||
} | null>;
|
||||
homography?: {
|
||||
__typename?: "HomographyInfoGQL";
|
||||
id: number;
|
||||
@@ -14417,6 +14434,9 @@ export const GetTableStateDocument = gql`
|
||||
useHomography: $useHomography
|
||||
) {
|
||||
identifierToPosition
|
||||
identifierToColor {
|
||||
hex
|
||||
}
|
||||
}
|
||||
}
|
||||
`;
|
||||
@@ -14495,6 +14515,9 @@ export const GetLiveTableStateDocument = gql`
|
||||
frameIndex
|
||||
tableState {
|
||||
identifierToPosition
|
||||
identifierToColor {
|
||||
hex
|
||||
}
|
||||
homography {
|
||||
...HomographyInfo
|
||||
}
|
||||
|
||||
@@ -9,6 +9,9 @@ query GetTableState(
|
||||
useHomography: $useHomography
|
||||
) {
|
||||
identifierToPosition
|
||||
identifierToColor {
|
||||
hex
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -18,6 +21,9 @@ query GetLiveTableState($videoId: Int!) {
|
||||
frameIndex
|
||||
tableState {
|
||||
identifierToPosition
|
||||
identifierToColor {
|
||||
hex
|
||||
}
|
||||
homography {
|
||||
...HomographyInfo
|
||||
}
|
||||
|
||||
@@ -1020,6 +1020,14 @@ type PlayerClusterShotGQL {
|
||||
type TableStateGQL {
|
||||
identifierToPosition: [[Float!]!]!
|
||||
homography: HomographyInfoGQL
|
||||
identifierToColor: [RGBColorGQL]!
|
||||
}
|
||||
|
||||
type RGBColorGQL {
|
||||
r: Int!
|
||||
g: Int!
|
||||
b: Int!
|
||||
hex: String!
|
||||
}
|
||||
|
||||
input HomographyInputGQL {
|
||||
|
||||
Reference in New Issue
Block a user