Compare commits
2 Commits
dean/add-f
...
dean/mobil
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
63e1a7090a | ||
|
|
85c4ec6d40 |
143
src/index.tsx
143
src/index.tsx
@@ -79,6 +79,12 @@ export enum AlignedIntervalEnum {
|
|||||||
Year = "YEAR",
|
Year = "YEAR",
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export type AuthHandoffTokenGql = {
|
||||||
|
__typename?: "AuthHandoffTokenGQL";
|
||||||
|
expiresInSeconds: Scalars["Int"]["output"];
|
||||||
|
token: Scalars["String"]["output"];
|
||||||
|
};
|
||||||
|
|
||||||
export type BankFeaturesGql = {
|
export type BankFeaturesGql = {
|
||||||
__typename?: "BankFeaturesGQL";
|
__typename?: "BankFeaturesGQL";
|
||||||
bankAngle: Scalars["Float"]["output"];
|
bankAngle: Scalars["Float"]["output"];
|
||||||
@@ -140,6 +146,21 @@ export type BucketSetInputGql = {
|
|||||||
feature: Scalars["String"]["input"];
|
feature: Scalars["String"]["input"];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export type CancellationFeedbackMetadataInput = {
|
||||||
|
appVersion?: InputMaybe<Scalars["String"]["input"]>;
|
||||||
|
gitRevision?: InputMaybe<Scalars["String"]["input"]>;
|
||||||
|
platform?: InputMaybe<Scalars["String"]["input"]>;
|
||||||
|
};
|
||||||
|
|
||||||
|
export enum CancellationReasonEnum {
|
||||||
|
DataNotAccurate = "DATA_NOT_ACCURATE",
|
||||||
|
DontPlayEnough = "DONT_PLAY_ENOUGH",
|
||||||
|
MissingFeatures = "MISSING_FEATURES",
|
||||||
|
Other = "OTHER",
|
||||||
|
TechnicalIssues = "TECHNICAL_ISSUES",
|
||||||
|
TooExpensive = "TOO_EXPENSIVE",
|
||||||
|
}
|
||||||
|
|
||||||
export type Challenge = {
|
export type Challenge = {
|
||||||
__typename?: "Challenge";
|
__typename?: "Challenge";
|
||||||
createdAt: Scalars["DateTime"]["output"];
|
createdAt: Scalars["DateTime"]["output"];
|
||||||
@@ -303,6 +324,12 @@ export type EnumAggregation = {
|
|||||||
feature: Scalars["String"]["input"];
|
feature: Scalars["String"]["input"];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export type ExchangeAuthHandoffResultGql = {
|
||||||
|
__typename?: "ExchangeAuthHandoffResultGQL";
|
||||||
|
customToken: Scalars["String"]["output"];
|
||||||
|
userId: Scalars["Int"]["output"];
|
||||||
|
};
|
||||||
|
|
||||||
export type FilterInput =
|
export type FilterInput =
|
||||||
| {
|
| {
|
||||||
andFilters: Array<FilterInput>;
|
andFilters: Array<FilterInput>;
|
||||||
@@ -2327,6 +2354,7 @@ export type Mutation = {
|
|||||||
blockUser: Scalars["Boolean"]["output"];
|
blockUser: Scalars["Boolean"]["output"];
|
||||||
cancelSubscription: UserSubscriptionStatusGql;
|
cancelSubscription: UserSubscriptionStatusGql;
|
||||||
commentOnVideo: Scalars["Boolean"]["output"];
|
commentOnVideo: Scalars["Boolean"]["output"];
|
||||||
|
createAuthHandoffToken: AuthHandoffTokenGql;
|
||||||
createBucketSet: BucketSetGql;
|
createBucketSet: BucketSetGql;
|
||||||
createChallenge: Challenge;
|
createChallenge: Challenge;
|
||||||
createRuleSet: RuleSet;
|
createRuleSet: RuleSet;
|
||||||
@@ -2344,6 +2372,7 @@ export type Mutation = {
|
|||||||
editUploadStream: Scalars["Boolean"]["output"];
|
editUploadStream: Scalars["Boolean"]["output"];
|
||||||
editUser: UserGql;
|
editUser: UserGql;
|
||||||
ensureStripeCustomerExists: UserGql;
|
ensureStripeCustomerExists: UserGql;
|
||||||
|
exchangeAuthHandoffToken: ExchangeAuthHandoffResultGql;
|
||||||
findPrerecordTableLayout?: Maybe<HomographyInfoGql>;
|
findPrerecordTableLayout?: Maybe<HomographyInfoGql>;
|
||||||
followUser: UserGql;
|
followUser: UserGql;
|
||||||
getHlsInitUploadLink: GetUploadLinkReturn;
|
getHlsInitUploadLink: GetUploadLinkReturn;
|
||||||
@@ -2361,6 +2390,7 @@ export type Mutation = {
|
|||||||
setLoggerLevel: Scalars["Boolean"]["output"];
|
setLoggerLevel: Scalars["Boolean"]["output"];
|
||||||
setSegmentDuration: Scalars["Boolean"]["output"];
|
setSegmentDuration: Scalars["Boolean"]["output"];
|
||||||
startChallenge: ChallengeEntry;
|
startChallenge: ChallengeEntry;
|
||||||
|
submitCancellationFeedback: Scalars["Boolean"]["output"];
|
||||||
submitChallengeEntry: ChallengeEntry;
|
submitChallengeEntry: ChallengeEntry;
|
||||||
undismissChallenge: Scalars["Boolean"]["output"];
|
undismissChallenge: Scalars["Boolean"]["output"];
|
||||||
unfollowUser: UserGql;
|
unfollowUser: UserGql;
|
||||||
@@ -2463,6 +2493,10 @@ export type MutationEditUserArgs = {
|
|||||||
input: EditUserInputGql;
|
input: EditUserInputGql;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export type MutationExchangeAuthHandoffTokenArgs = {
|
||||||
|
token: Scalars["String"]["input"];
|
||||||
|
};
|
||||||
|
|
||||||
export type MutationFindPrerecordTableLayoutArgs = {
|
export type MutationFindPrerecordTableLayoutArgs = {
|
||||||
b64Image: Scalars["String"]["input"];
|
b64Image: Scalars["String"]["input"];
|
||||||
videoId: Scalars["Int"]["input"];
|
videoId: Scalars["Int"]["input"];
|
||||||
@@ -2537,6 +2571,12 @@ export type MutationStartChallengeArgs = {
|
|||||||
challengeId: Scalars["ID"]["input"];
|
challengeId: Scalars["ID"]["input"];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export type MutationSubmitCancellationFeedbackArgs = {
|
||||||
|
feedback?: InputMaybe<Scalars["String"]["input"]>;
|
||||||
|
metadata?: InputMaybe<CancellationFeedbackMetadataInput>;
|
||||||
|
reasons?: InputMaybe<Array<CancellationReasonEnum>>;
|
||||||
|
};
|
||||||
|
|
||||||
export type MutationSubmitChallengeEntryArgs = {
|
export type MutationSubmitChallengeEntryArgs = {
|
||||||
entryId: Scalars["ID"]["input"];
|
entryId: Scalars["ID"]["input"];
|
||||||
videoId: Scalars["ID"]["input"];
|
videoId: Scalars["ID"]["input"];
|
||||||
@@ -3535,7 +3575,6 @@ export type GetAggregatedShotMetricsQuery = {
|
|||||||
__typename?: "TargetMetricsGQL";
|
__typename?: "TargetMetricsGQL";
|
||||||
count: number;
|
count: number;
|
||||||
makePercentage?: number | null;
|
makePercentage?: number | null;
|
||||||
averageDifficulty?: number | null;
|
|
||||||
};
|
};
|
||||||
}>;
|
}>;
|
||||||
};
|
};
|
||||||
@@ -4018,7 +4057,6 @@ export type GetFeedQuery = {
|
|||||||
private: boolean;
|
private: boolean;
|
||||||
elapsedTime?: number | null;
|
elapsedTime?: number | null;
|
||||||
tableSize: number;
|
tableSize: number;
|
||||||
pocketSize?: number | null;
|
|
||||||
owner?: {
|
owner?: {
|
||||||
__typename?: "UserGQL";
|
__typename?: "UserGQL";
|
||||||
id: number;
|
id: number;
|
||||||
@@ -4120,7 +4158,6 @@ export type VideoCardFieldsFragment = {
|
|||||||
private: boolean;
|
private: boolean;
|
||||||
elapsedTime?: number | null;
|
elapsedTime?: number | null;
|
||||||
tableSize: number;
|
tableSize: number;
|
||||||
pocketSize?: number | null;
|
|
||||||
owner?: {
|
owner?: {
|
||||||
__typename?: "UserGQL";
|
__typename?: "UserGQL";
|
||||||
id: number;
|
id: number;
|
||||||
@@ -4218,7 +4255,6 @@ export type GetVideoFeedQuery = {
|
|||||||
private: boolean;
|
private: boolean;
|
||||||
elapsedTime?: number | null;
|
elapsedTime?: number | null;
|
||||||
tableSize: number;
|
tableSize: number;
|
||||||
pocketSize?: number | null;
|
|
||||||
owner?: {
|
owner?: {
|
||||||
__typename?: "UserGQL";
|
__typename?: "UserGQL";
|
||||||
id: number;
|
id: number;
|
||||||
@@ -5387,8 +5423,6 @@ export type GetUserQuery = {
|
|||||||
updatedAt?: any | null;
|
updatedAt?: any | null;
|
||||||
videosPrivateByDefault?: boolean | null;
|
videosPrivateByDefault?: boolean | null;
|
||||||
agreesToMarketing?: boolean | null;
|
agreesToMarketing?: boolean | null;
|
||||||
following?: Array<{ __typename?: "UserGQL"; id: number }> | null;
|
|
||||||
followers?: Array<{ __typename?: "UserGQL"; id: number }> | null;
|
|
||||||
} | null;
|
} | null;
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -5688,7 +5722,6 @@ export type GetVideoDetailsQuery = {
|
|||||||
endTime?: any | null;
|
endTime?: any | null;
|
||||||
makePercentage: number;
|
makePercentage: number;
|
||||||
medianRun?: number | null;
|
medianRun?: number | null;
|
||||||
averageDifficulty?: number | null;
|
|
||||||
startTime?: any | null;
|
startTime?: any | null;
|
||||||
totalShots: number;
|
totalShots: number;
|
||||||
totalShotsMade: number;
|
totalShotsMade: number;
|
||||||
@@ -5954,19 +5987,6 @@ export type GetMedianRunForVideoQuery = {
|
|||||||
getVideo: { __typename?: "VideoGQL"; id: number; medianRun?: number | null };
|
getVideo: { __typename?: "VideoGQL"; id: number; medianRun?: number | null };
|
||||||
};
|
};
|
||||||
|
|
||||||
export type GetAverageDifficultyForVideoQueryVariables = Exact<{
|
|
||||||
videoId: Scalars["Int"]["input"];
|
|
||||||
}>;
|
|
||||||
|
|
||||||
export type GetAverageDifficultyForVideoQuery = {
|
|
||||||
__typename?: "Query";
|
|
||||||
getVideo: {
|
|
||||||
__typename?: "VideoGQL";
|
|
||||||
id: number;
|
|
||||||
averageDifficulty?: number | null;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
export type StreamWithEndFramesFragment = {
|
export type StreamWithEndFramesFragment = {
|
||||||
__typename?: "UploadStreamGQL";
|
__typename?: "UploadStreamGQL";
|
||||||
id: string;
|
id: string;
|
||||||
@@ -6402,7 +6422,6 @@ export const VideoCardFieldsFragmentDoc = gql`
|
|||||||
streamSegmentType
|
streamSegmentType
|
||||||
}
|
}
|
||||||
tableSize
|
tableSize
|
||||||
pocketSize
|
|
||||||
tags {
|
tags {
|
||||||
tagClasses {
|
tagClasses {
|
||||||
name
|
name
|
||||||
@@ -6710,7 +6729,6 @@ export const GetAggregatedShotMetricsDocument = gql`
|
|||||||
targetMetrics {
|
targetMetrics {
|
||||||
count
|
count
|
||||||
makePercentage
|
makePercentage
|
||||||
averageDifficulty
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -10896,12 +10914,6 @@ export const GetUserDocument = gql`
|
|||||||
query GetUser($userId: Int!) {
|
query GetUser($userId: Int!) {
|
||||||
getUser(userId: $userId) {
|
getUser(userId: $userId) {
|
||||||
...UserFragment
|
...UserFragment
|
||||||
following {
|
|
||||||
id
|
|
||||||
}
|
|
||||||
followers {
|
|
||||||
id
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
${UserFragmentFragmentDoc}
|
${UserFragmentFragmentDoc}
|
||||||
@@ -11981,7 +11993,6 @@ export const GetVideoDetailsDocument = gql`
|
|||||||
endTime
|
endTime
|
||||||
makePercentage
|
makePercentage
|
||||||
medianRun
|
medianRun
|
||||||
averageDifficulty
|
|
||||||
startTime
|
startTime
|
||||||
totalShots
|
totalShots
|
||||||
totalShotsMade
|
totalShotsMade
|
||||||
@@ -12635,80 +12646,6 @@ export type GetMedianRunForVideoQueryResult = Apollo.QueryResult<
|
|||||||
GetMedianRunForVideoQuery,
|
GetMedianRunForVideoQuery,
|
||||||
GetMedianRunForVideoQueryVariables
|
GetMedianRunForVideoQueryVariables
|
||||||
>;
|
>;
|
||||||
export const GetAverageDifficultyForVideoDocument = gql`
|
|
||||||
query GetAverageDifficultyForVideo($videoId: Int!) {
|
|
||||||
getVideo(videoId: $videoId) {
|
|
||||||
id
|
|
||||||
averageDifficulty
|
|
||||||
}
|
|
||||||
}
|
|
||||||
`;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* __useGetAverageDifficultyForVideoQuery__
|
|
||||||
*
|
|
||||||
* To run a query within a React component, call `useGetAverageDifficultyForVideoQuery` and pass it any options that fit your needs.
|
|
||||||
* When your component renders, `useGetAverageDifficultyForVideoQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
||||||
* you can use to render your UI.
|
|
||||||
*
|
|
||||||
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
||||||
*
|
|
||||||
* @example
|
|
||||||
* const { data, loading, error } = useGetAverageDifficultyForVideoQuery({
|
|
||||||
* variables: {
|
|
||||||
* videoId: // value for 'videoId'
|
|
||||||
* },
|
|
||||||
* });
|
|
||||||
*/
|
|
||||||
export function useGetAverageDifficultyForVideoQuery(
|
|
||||||
baseOptions: Apollo.QueryHookOptions<
|
|
||||||
GetAverageDifficultyForVideoQuery,
|
|
||||||
GetAverageDifficultyForVideoQueryVariables
|
|
||||||
>,
|
|
||||||
) {
|
|
||||||
const options = { ...defaultOptions, ...baseOptions };
|
|
||||||
return Apollo.useQuery<
|
|
||||||
GetAverageDifficultyForVideoQuery,
|
|
||||||
GetAverageDifficultyForVideoQueryVariables
|
|
||||||
>(GetAverageDifficultyForVideoDocument, options);
|
|
||||||
}
|
|
||||||
export function useGetAverageDifficultyForVideoLazyQuery(
|
|
||||||
baseOptions?: Apollo.LazyQueryHookOptions<
|
|
||||||
GetAverageDifficultyForVideoQuery,
|
|
||||||
GetAverageDifficultyForVideoQueryVariables
|
|
||||||
>,
|
|
||||||
) {
|
|
||||||
const options = { ...defaultOptions, ...baseOptions };
|
|
||||||
return Apollo.useLazyQuery<
|
|
||||||
GetAverageDifficultyForVideoQuery,
|
|
||||||
GetAverageDifficultyForVideoQueryVariables
|
|
||||||
>(GetAverageDifficultyForVideoDocument, options);
|
|
||||||
}
|
|
||||||
export function useGetAverageDifficultyForVideoSuspenseQuery(
|
|
||||||
baseOptions?: Apollo.SuspenseQueryHookOptions<
|
|
||||||
GetAverageDifficultyForVideoQuery,
|
|
||||||
GetAverageDifficultyForVideoQueryVariables
|
|
||||||
>,
|
|
||||||
) {
|
|
||||||
const options = { ...defaultOptions, ...baseOptions };
|
|
||||||
return Apollo.useSuspenseQuery<
|
|
||||||
GetAverageDifficultyForVideoQuery,
|
|
||||||
GetAverageDifficultyForVideoQueryVariables
|
|
||||||
>(GetAverageDifficultyForVideoDocument, options);
|
|
||||||
}
|
|
||||||
export type GetAverageDifficultyForVideoQueryHookResult = ReturnType<
|
|
||||||
typeof useGetAverageDifficultyForVideoQuery
|
|
||||||
>;
|
|
||||||
export type GetAverageDifficultyForVideoLazyQueryHookResult = ReturnType<
|
|
||||||
typeof useGetAverageDifficultyForVideoLazyQuery
|
|
||||||
>;
|
|
||||||
export type GetAverageDifficultyForVideoSuspenseQueryHookResult = ReturnType<
|
|
||||||
typeof useGetAverageDifficultyForVideoSuspenseQuery
|
|
||||||
>;
|
|
||||||
export type GetAverageDifficultyForVideoQueryResult = Apollo.QueryResult<
|
|
||||||
GetAverageDifficultyForVideoQuery,
|
|
||||||
GetAverageDifficultyForVideoQueryVariables
|
|
||||||
>;
|
|
||||||
export const GetVideoForClipTimesDocument = gql`
|
export const GetVideoForClipTimesDocument = gql`
|
||||||
query GetVideoForClipTimes($videoId: Int!) {
|
query GetVideoForClipTimes($videoId: Int!) {
|
||||||
getVideo(videoId: $videoId) {
|
getVideo(videoId: $videoId) {
|
||||||
|
|||||||
@@ -7,7 +7,6 @@ query GetAggregatedShotMetrics($aggregateInput: AggregateInputGQL!) {
|
|||||||
targetMetrics {
|
targetMetrics {
|
||||||
count
|
count
|
||||||
makePercentage
|
makePercentage
|
||||||
averageDifficulty
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -50,7 +50,6 @@ fragment VideoCardFields on VideoGQL {
|
|||||||
streamSegmentType
|
streamSegmentType
|
||||||
}
|
}
|
||||||
tableSize
|
tableSize
|
||||||
pocketSize
|
|
||||||
tags {
|
tags {
|
||||||
tagClasses {
|
tagClasses {
|
||||||
name
|
name
|
||||||
|
|||||||
@@ -63,3 +63,17 @@ mutation CancelSubscription {
|
|||||||
stripeSubscriptionId
|
stripeSubscriptionId
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
mutation CreateAuthHandoffToken {
|
||||||
|
createAuthHandoffToken {
|
||||||
|
token
|
||||||
|
expiresInSeconds
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
mutation ExchangeAuthHandoffToken($token: String!) {
|
||||||
|
exchangeAuthHandoffToken(token: $token) {
|
||||||
|
customToken
|
||||||
|
userId
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@@ -34,12 +34,6 @@ query getLoggedInUser {
|
|||||||
query GetUser($userId: Int!) {
|
query GetUser($userId: Int!) {
|
||||||
getUser(userId: $userId) {
|
getUser(userId: $userId) {
|
||||||
...UserFragment
|
...UserFragment
|
||||||
following {
|
|
||||||
id
|
|
||||||
}
|
|
||||||
followers {
|
|
||||||
id
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -61,7 +61,6 @@ query GetVideoDetails($videoId: Int!) {
|
|||||||
endTime
|
endTime
|
||||||
makePercentage
|
makePercentage
|
||||||
medianRun
|
medianRun
|
||||||
averageDifficulty
|
|
||||||
startTime
|
startTime
|
||||||
totalShots
|
totalShots
|
||||||
totalShotsMade
|
totalShotsMade
|
||||||
@@ -212,13 +211,6 @@ query GetMedianRunForVideo($videoId: Int!) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
query GetAverageDifficultyForVideo($videoId: Int!) {
|
|
||||||
getVideo(videoId: $videoId) {
|
|
||||||
id
|
|
||||||
averageDifficulty
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fragment StreamWithEndFrames on UploadStreamGQL {
|
fragment StreamWithEndFrames on UploadStreamGQL {
|
||||||
id
|
id
|
||||||
streamSegmentType
|
streamSegmentType
|
||||||
|
|||||||
@@ -1072,6 +1072,13 @@ type Mutation {
|
|||||||
deleteUser: Boolean!
|
deleteUser: Boolean!
|
||||||
createSubscription(priceId: String!): CreateSubscriptionResultGQL!
|
createSubscription(priceId: String!): CreateSubscriptionResultGQL!
|
||||||
cancelSubscription: UserSubscriptionStatusGQL!
|
cancelSubscription: UserSubscriptionStatusGQL!
|
||||||
|
submitCancellationFeedback(
|
||||||
|
reasons: [CancellationReasonEnum!] = null
|
||||||
|
feedback: String = null
|
||||||
|
metadata: CancellationFeedbackMetadataInput = null
|
||||||
|
): Boolean!
|
||||||
|
createAuthHandoffToken: AuthHandoffTokenGQL!
|
||||||
|
exchangeAuthHandoffToken(token: String!): ExchangeAuthHandoffResultGQL!
|
||||||
findPrerecordTableLayout(b64Image: String!, videoId: Int!): HomographyInfoGQL
|
findPrerecordTableLayout(b64Image: String!, videoId: Int!): HomographyInfoGQL
|
||||||
createUploadStream(
|
createUploadStream(
|
||||||
videoMetadata: VideoMetadataInput!
|
videoMetadata: VideoMetadataInput!
|
||||||
@@ -1196,6 +1203,31 @@ type CreateSubscriptionResultGQL {
|
|||||||
sessionId: String!
|
sessionId: String!
|
||||||
}
|
}
|
||||||
|
|
||||||
|
enum CancellationReasonEnum {
|
||||||
|
DONT_PLAY_ENOUGH
|
||||||
|
TOO_EXPENSIVE
|
||||||
|
MISSING_FEATURES
|
||||||
|
TECHNICAL_ISSUES
|
||||||
|
DATA_NOT_ACCURATE
|
||||||
|
OTHER
|
||||||
|
}
|
||||||
|
|
||||||
|
input CancellationFeedbackMetadataInput {
|
||||||
|
appVersion: String = null
|
||||||
|
gitRevision: String = null
|
||||||
|
platform: String = null
|
||||||
|
}
|
||||||
|
|
||||||
|
type AuthHandoffTokenGQL {
|
||||||
|
token: String!
|
||||||
|
expiresInSeconds: Int!
|
||||||
|
}
|
||||||
|
|
||||||
|
type ExchangeAuthHandoffResultGQL {
|
||||||
|
customToken: String!
|
||||||
|
userId: Int!
|
||||||
|
}
|
||||||
|
|
||||||
type CreateUploadStreamReturn {
|
type CreateUploadStreamReturn {
|
||||||
videoId: Int!
|
videoId: Int!
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user