Compare commits
No commits in common. "d5ba9c2ba5ff1b18f1a89504c9dd337f10175ce0" and "655e59c43c5ab34ddcaf1ccf7dab81de38cb1554" have entirely different histories.
d5ba9c2ba5
...
655e59c43c
@ -3448,6 +3448,7 @@ export type GetStreamMonitoringDetailsQuery = {
|
||||
elapsedTime?: number | null;
|
||||
currentHomography?: {
|
||||
__typename?: "HomographyInfoGQL";
|
||||
id: number;
|
||||
frameIndex: number;
|
||||
crop: {
|
||||
__typename?: "BoundingBoxGQL";
|
||||
@ -3662,6 +3663,7 @@ export type GetVideoQuery = {
|
||||
} | null;
|
||||
homographyHistory: Array<{
|
||||
__typename?: "HomographyInfoGQL";
|
||||
id: number;
|
||||
frameIndex: number;
|
||||
crop: {
|
||||
__typename?: "BoundingBoxGQL";
|
||||
@ -3864,7 +3866,7 @@ export type GetHeaderInfoByVideoIdQuery = {
|
||||
};
|
||||
|
||||
export type FindPrerecordTableLayoutMutationVariables = Exact<{
|
||||
b64Image: Scalars["String"]["input"];
|
||||
b64Image: Scalars["Base64"]["input"];
|
||||
videoId: Scalars["Int"]["input"];
|
||||
}>;
|
||||
|
||||
@ -3872,6 +3874,7 @@ export type FindPrerecordTableLayoutMutation = {
|
||||
__typename?: "Mutation";
|
||||
findPrerecordTableLayout?: {
|
||||
__typename?: "HomographyInfoGQL";
|
||||
id: number;
|
||||
frameIndex: number;
|
||||
crop: {
|
||||
__typename?: "BoundingBoxGQL";
|
||||
@ -3901,6 +3904,7 @@ export type FindPrerecordTableLayoutMutation = {
|
||||
|
||||
export type HomographyInfoFragment = {
|
||||
__typename?: "HomographyInfoGQL";
|
||||
id: number;
|
||||
frameIndex: number;
|
||||
crop: {
|
||||
__typename?: "BoundingBoxGQL";
|
||||
@ -4261,6 +4265,7 @@ export const VideoDurationDataFragmentDoc = gql`
|
||||
`;
|
||||
export const HomographyInfoFragmentDoc = gql`
|
||||
fragment HomographyInfo on HomographyInfoGQL {
|
||||
id
|
||||
frameIndex
|
||||
crop {
|
||||
left
|
||||
@ -7097,7 +7102,7 @@ export type GetHeaderInfoByVideoIdQueryResult = Apollo.QueryResult<
|
||||
GetHeaderInfoByVideoIdQueryVariables
|
||||
>;
|
||||
export const FindPrerecordTableLayoutDocument = gql`
|
||||
mutation FindPrerecordTableLayout($b64Image: String!, $videoId: Int!) {
|
||||
mutation FindPrerecordTableLayout($b64Image: Base64!, $videoId: Int!) {
|
||||
findPrerecordTableLayout(b64Image: $b64Image, videoId: $videoId) {
|
||||
...HomographyInfo
|
||||
}
|
||||
|
@ -214,13 +214,14 @@ query GetHeaderInfoByVideoId($videoId: Int!) {
|
||||
}
|
||||
}
|
||||
|
||||
mutation FindPrerecordTableLayout($b64Image: String!, $videoId: Int!) {
|
||||
mutation FindPrerecordTableLayout($b64Image: Base64!, $videoId: Int!) {
|
||||
findPrerecordTableLayout(b64Image: $b64Image, videoId: $videoId) {
|
||||
...HomographyInfo
|
||||
}
|
||||
}
|
||||
|
||||
fragment HomographyInfo on HomographyInfoGQL {
|
||||
id
|
||||
frameIndex
|
||||
crop {
|
||||
left
|
||||
|
Loading…
Reference in New Issue
Block a user