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