Compare commits
1 Commits
loewy/add-
...
dean/add-a
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c6fff664cc |
5423
package-lock.json
generated
Normal file
5423
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
10868
src/index.tsx
10868
src/index.tsx
File diff suppressed because it is too large
Load Diff
@@ -7,7 +7,6 @@ query GetAggregatedShotMetrics($aggregateInput: AggregateInputGQL!) {
|
||||
targetMetrics {
|
||||
count
|
||||
makePercentage
|
||||
averageDifficulty
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -50,7 +50,6 @@ fragment VideoCardFields on VideoGQL {
|
||||
streamSegmentType
|
||||
}
|
||||
tableSize
|
||||
pocketSize
|
||||
tags {
|
||||
tagClasses {
|
||||
name
|
||||
|
||||
@@ -63,14 +63,3 @@ mutation CancelSubscription {
|
||||
stripeSubscriptionId
|
||||
}
|
||||
}
|
||||
mutation SubmitCancellationFeedback(
|
||||
$reasons: [CancellationReasonEnum!]
|
||||
$feedback: String
|
||||
$metadata: CancellationFeedbackMetadataInput
|
||||
) {
|
||||
submitCancellationFeedback(
|
||||
reasons: $reasons
|
||||
feedback: $feedback
|
||||
metadata: $metadata
|
||||
)
|
||||
}
|
||||
|
||||
@@ -34,12 +34,6 @@ query getLoggedInUser {
|
||||
query GetUser($userId: Int!) {
|
||||
getUser(userId: $userId) {
|
||||
...UserFragment
|
||||
following {
|
||||
id
|
||||
}
|
||||
followers {
|
||||
id
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -61,7 +61,6 @@ query GetVideoDetails($videoId: Int!) {
|
||||
endTime
|
||||
makePercentage
|
||||
medianRun
|
||||
averageDifficulty
|
||||
startTime
|
||||
totalShots
|
||||
totalShotsMade
|
||||
|
||||
@@ -1072,11 +1072,6 @@ type Mutation {
|
||||
deleteUser: Boolean!
|
||||
createSubscription(priceId: String!): CreateSubscriptionResultGQL!
|
||||
cancelSubscription: UserSubscriptionStatusGQL!
|
||||
submitCancellationFeedback(
|
||||
reasons: [CancellationReasonEnum!] = null
|
||||
feedback: String = null
|
||||
metadata: CancellationFeedbackMetadataInput = null
|
||||
): Boolean!
|
||||
findPrerecordTableLayout(b64Image: String!, videoId: Int!): HomographyInfoGQL
|
||||
createUploadStream(
|
||||
videoMetadata: VideoMetadataInput!
|
||||
@@ -1201,21 +1196,6 @@ type CreateSubscriptionResultGQL {
|
||||
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 CreateUploadStreamReturn {
|
||||
videoId: Int!
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user