|
|
|
|
@@ -88,6 +88,12 @@ export type AppleIapSubscriptionOptionsGql = {
|
|
|
|
|
productIds: Array<Scalars["String"]["output"]>;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type BallTrajectoryGql = {
|
|
|
|
|
__typename?: "BallTrajectoryGQL";
|
|
|
|
|
ballId: Scalars["Int"]["output"];
|
|
|
|
|
points: Array<TrajectoryPointGql>;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type BankFeaturesGql = {
|
|
|
|
|
__typename?: "BankFeaturesGQL";
|
|
|
|
|
bankAngle: Scalars["Float"]["output"];
|
|
|
|
|
@@ -268,6 +274,14 @@ export type CueObjectFeaturesGql = {
|
|
|
|
|
spinType?: Maybe<SpinTypeEnum>;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type CueStrikeInputGql = {
|
|
|
|
|
a?: Scalars["Float"]["input"];
|
|
|
|
|
b?: Scalars["Float"]["input"];
|
|
|
|
|
phi: Scalars["Float"]["input"];
|
|
|
|
|
theta?: Scalars["Float"]["input"];
|
|
|
|
|
v0: Scalars["Float"]["input"];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type DateRangeFilter = {
|
|
|
|
|
greaterThan?: InputMaybe<Scalars["Date"]["input"]>;
|
|
|
|
|
greaterThanEqualTo?: InputMaybe<Scalars["Date"]["input"]>;
|
|
|
|
|
@@ -2422,7 +2436,6 @@ export type Mutation = {
|
|
|
|
|
deleteUser: Scalars["Boolean"]["output"];
|
|
|
|
|
deleteVideo: Scalars["Boolean"]["output"];
|
|
|
|
|
dismissChallenge: Scalars["Boolean"]["output"];
|
|
|
|
|
dismissVideoExport: Scalars["Boolean"]["output"];
|
|
|
|
|
editComment: Scalars["Boolean"]["output"];
|
|
|
|
|
editProfileImageUri: UserGql;
|
|
|
|
|
editShot: EditShotReturn;
|
|
|
|
|
@@ -2531,10 +2544,6 @@ export type MutationDismissChallengeArgs = {
|
|
|
|
|
challengeId: Scalars["ID"]["input"];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type MutationDismissVideoExportArgs = {
|
|
|
|
|
jobId: Scalars["Int"]["input"];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type MutationEditCommentArgs = {
|
|
|
|
|
commentId: Scalars["Int"]["input"];
|
|
|
|
|
newMessage: Scalars["String"]["input"];
|
|
|
|
|
@@ -2893,6 +2902,7 @@ export type Query = {
|
|
|
|
|
myVideoExports: Array<VideoExportJobGql>;
|
|
|
|
|
notifications: NotificationConnection;
|
|
|
|
|
ruleSets: Array<RuleSet>;
|
|
|
|
|
simulateShot: ShotProjectionGql;
|
|
|
|
|
unreadNotificationCount: Scalars["Int"]["output"];
|
|
|
|
|
videoExportJob?: Maybe<VideoExportJobGql>;
|
|
|
|
|
videoPlayerClusters: Array<PlayerClusterGql>;
|
|
|
|
|
@@ -3082,6 +3092,10 @@ export type QueryNotificationsArgs = {
|
|
|
|
|
offset?: Scalars["Int"]["input"];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type QuerySimulateShotArgs = {
|
|
|
|
|
simulationInput: SimulateShotInputGql;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type QueryVideoExportJobArgs = {
|
|
|
|
|
jobId: Scalars["Int"]["input"];
|
|
|
|
|
};
|
|
|
|
|
@@ -3345,6 +3359,14 @@ export type ShotMoveInput = {
|
|
|
|
|
shotId: Scalars["Int"]["input"];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type ShotProjectionGql = {
|
|
|
|
|
__typename?: "ShotProjectionGQL";
|
|
|
|
|
events: Array<SimulationEventGql>;
|
|
|
|
|
finalState: Array<SimulationBallStateGql>;
|
|
|
|
|
pottedBallIds: Array<Scalars["Int"]["output"]>;
|
|
|
|
|
trajectories: Array<BallTrajectoryGql>;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type ShotsOrderingComponent =
|
|
|
|
|
| {
|
|
|
|
|
difficulty: FloatOrdering;
|
|
|
|
|
@@ -3395,6 +3417,42 @@ export type ShotsOrderingComponent =
|
|
|
|
|
videoId: IntOrdering;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type SimulateShotInputGql = {
|
|
|
|
|
b64Image?: InputMaybe<Scalars["String"]["input"]>;
|
|
|
|
|
balls?: InputMaybe<Array<SimulationBallStateInputGql>>;
|
|
|
|
|
cueBallId: Scalars["Int"]["input"];
|
|
|
|
|
strike: CueStrikeInputGql;
|
|
|
|
|
tableSize?: InputMaybe<Scalars["Float"]["input"]>;
|
|
|
|
|
useHomography?: InputMaybe<HomographyInputGql>;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type SimulationBallStateGql = {
|
|
|
|
|
__typename?: "SimulationBallStateGQL";
|
|
|
|
|
ballId: Scalars["Int"]["output"];
|
|
|
|
|
position: Array<Scalars["Float"]["output"]>;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type SimulationBallStateInputGql = {
|
|
|
|
|
ballId: Scalars["Int"]["input"];
|
|
|
|
|
position: Array<Scalars["Float"]["input"]>;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type SimulationEventGql = {
|
|
|
|
|
__typename?: "SimulationEventGQL";
|
|
|
|
|
ballIds: Array<Scalars["Int"]["output"]>;
|
|
|
|
|
eventType: SimulationEventType;
|
|
|
|
|
position?: Maybe<Array<Scalars["Float"]["output"]>>;
|
|
|
|
|
time: Scalars["Float"]["output"];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export enum SimulationEventType {
|
|
|
|
|
BallBall = "BALL_BALL",
|
|
|
|
|
BallCushion = "BALL_CUSHION",
|
|
|
|
|
BallPocket = "BALL_POCKET",
|
|
|
|
|
BallStop = "BALL_STOP",
|
|
|
|
|
StickBall = "STICK_BALL",
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export type SpinTypeBreakdownGql = {
|
|
|
|
|
__typename?: "SpinTypeBreakdownGQL";
|
|
|
|
|
center: Scalars["Int"]["output"];
|
|
|
|
|
@@ -3571,6 +3629,12 @@ export type TooManyProfileImageUploadsErr = {
|
|
|
|
|
linksRequested: Scalars["Int"]["output"];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type TrajectoryPointGql = {
|
|
|
|
|
__typename?: "TrajectoryPointGQL";
|
|
|
|
|
position: Array<Scalars["Float"]["output"]>;
|
|
|
|
|
time: Scalars["Float"]["output"];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type UpdateAnnotationInputGql = {
|
|
|
|
|
name: Scalars["String"]["input"];
|
|
|
|
|
notes?: InputMaybe<Scalars["String"]["input"]>;
|
|
|
|
|
@@ -3700,8 +3764,6 @@ export type VideoExportJobGql = {
|
|
|
|
|
shotIds?: Maybe<Array<Scalars["Int"]["output"]>>;
|
|
|
|
|
status: VideoExportStatusEnum;
|
|
|
|
|
videoId: Scalars["Int"]["output"];
|
|
|
|
|
videoName?: Maybe<Scalars["String"]["output"]>;
|
|
|
|
|
videoThumbnailUri?: Maybe<Scalars["String"]["output"]>;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export enum VideoExportModeEnum {
|
|
|
|
|
@@ -7092,8 +7154,6 @@ export type VideoExportJobFieldsFragment = {
|
|
|
|
|
videoId: number;
|
|
|
|
|
mode: VideoExportModeEnum;
|
|
|
|
|
status: VideoExportStatusEnum;
|
|
|
|
|
videoName?: string | null;
|
|
|
|
|
videoThumbnailUri?: string | null;
|
|
|
|
|
shotIds?: Array<number> | null;
|
|
|
|
|
runId?: number | null;
|
|
|
|
|
downloadUrl?: string | null;
|
|
|
|
|
@@ -7114,8 +7174,6 @@ export type RequestVideoExportMutation = {
|
|
|
|
|
videoId: number;
|
|
|
|
|
mode: VideoExportModeEnum;
|
|
|
|
|
status: VideoExportStatusEnum;
|
|
|
|
|
videoName?: string | null;
|
|
|
|
|
videoThumbnailUri?: string | null;
|
|
|
|
|
shotIds?: Array<number> | null;
|
|
|
|
|
runId?: number | null;
|
|
|
|
|
downloadUrl?: string | null;
|
|
|
|
|
@@ -7125,15 +7183,6 @@ export type RequestVideoExportMutation = {
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type DismissVideoExportMutationVariables = Exact<{
|
|
|
|
|
jobId: Scalars["Int"]["input"];
|
|
|
|
|
}>;
|
|
|
|
|
|
|
|
|
|
export type DismissVideoExportMutation = {
|
|
|
|
|
__typename?: "Mutation";
|
|
|
|
|
dismissVideoExport: boolean;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type VideoExportJobQueryVariables = Exact<{
|
|
|
|
|
jobId: Scalars["Int"]["input"];
|
|
|
|
|
}>;
|
|
|
|
|
@@ -7146,8 +7195,6 @@ export type VideoExportJobQuery = {
|
|
|
|
|
videoId: number;
|
|
|
|
|
mode: VideoExportModeEnum;
|
|
|
|
|
status: VideoExportStatusEnum;
|
|
|
|
|
videoName?: string | null;
|
|
|
|
|
videoThumbnailUri?: string | null;
|
|
|
|
|
shotIds?: Array<number> | null;
|
|
|
|
|
runId?: number | null;
|
|
|
|
|
downloadUrl?: string | null;
|
|
|
|
|
@@ -7170,8 +7217,6 @@ export type MyVideoExportsQuery = {
|
|
|
|
|
videoId: number;
|
|
|
|
|
mode: VideoExportModeEnum;
|
|
|
|
|
status: VideoExportStatusEnum;
|
|
|
|
|
videoName?: string | null;
|
|
|
|
|
videoThumbnailUri?: string | null;
|
|
|
|
|
shotIds?: Array<number> | null;
|
|
|
|
|
runId?: number | null;
|
|
|
|
|
downloadUrl?: string | null;
|
|
|
|
|
@@ -7761,8 +7806,6 @@ export const VideoExportJobFieldsFragmentDoc = gql`
|
|
|
|
|
videoId
|
|
|
|
|
mode
|
|
|
|
|
status
|
|
|
|
|
videoName
|
|
|
|
|
videoThumbnailUri
|
|
|
|
|
shotIds
|
|
|
|
|
runId
|
|
|
|
|
downloadUrl
|
|
|
|
|
@@ -15233,54 +15276,6 @@ export type RequestVideoExportMutationOptions = Apollo.BaseMutationOptions<
|
|
|
|
|
RequestVideoExportMutation,
|
|
|
|
|
RequestVideoExportMutationVariables
|
|
|
|
|
>;
|
|
|
|
|
export const DismissVideoExportDocument = gql`
|
|
|
|
|
mutation DismissVideoExport($jobId: Int!) {
|
|
|
|
|
dismissVideoExport(jobId: $jobId)
|
|
|
|
|
}
|
|
|
|
|
`;
|
|
|
|
|
export type DismissVideoExportMutationFn = Apollo.MutationFunction<
|
|
|
|
|
DismissVideoExportMutation,
|
|
|
|
|
DismissVideoExportMutationVariables
|
|
|
|
|
>;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* __useDismissVideoExportMutation__
|
|
|
|
|
*
|
|
|
|
|
* To run a mutation, you first call `useDismissVideoExportMutation` within a React component and pass it any options that fit your needs.
|
|
|
|
|
* When your component renders, `useDismissVideoExportMutation` returns a tuple that includes:
|
|
|
|
|
* - A mutate function that you can call at any time to execute the mutation
|
|
|
|
|
* - An object with fields that represent the current status of the mutation's execution
|
|
|
|
|
*
|
|
|
|
|
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
|
|
|
*
|
|
|
|
|
* @example
|
|
|
|
|
* const [dismissVideoExportMutation, { data, loading, error }] = useDismissVideoExportMutation({
|
|
|
|
|
* variables: {
|
|
|
|
|
* jobId: // value for 'jobId'
|
|
|
|
|
* },
|
|
|
|
|
* });
|
|
|
|
|
*/
|
|
|
|
|
export function useDismissVideoExportMutation(
|
|
|
|
|
baseOptions?: Apollo.MutationHookOptions<
|
|
|
|
|
DismissVideoExportMutation,
|
|
|
|
|
DismissVideoExportMutationVariables
|
|
|
|
|
>,
|
|
|
|
|
) {
|
|
|
|
|
const options = { ...defaultOptions, ...baseOptions };
|
|
|
|
|
return Apollo.useMutation<
|
|
|
|
|
DismissVideoExportMutation,
|
|
|
|
|
DismissVideoExportMutationVariables
|
|
|
|
|
>(DismissVideoExportDocument, options);
|
|
|
|
|
}
|
|
|
|
|
export type DismissVideoExportMutationHookResult = ReturnType<
|
|
|
|
|
typeof useDismissVideoExportMutation
|
|
|
|
|
>;
|
|
|
|
|
export type DismissVideoExportMutationResult =
|
|
|
|
|
Apollo.MutationResult<DismissVideoExportMutation>;
|
|
|
|
|
export type DismissVideoExportMutationOptions = Apollo.BaseMutationOptions<
|
|
|
|
|
DismissVideoExportMutation,
|
|
|
|
|
DismissVideoExportMutationVariables
|
|
|
|
|
>;
|
|
|
|
|
export const VideoExportJobDocument = gql`
|
|
|
|
|
query VideoExportJob($jobId: Int!) {
|
|
|
|
|
videoExportJob(jobId: $jobId) {
|
|
|
|
|
|