Compare commits
1 Commits
dean/mobil
...
dean/add-a
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c6fff664cc |
13681
src/index.tsx
13681
src/index.tsx
File diff suppressed because it is too large
Load Diff
@@ -63,17 +63,3 @@ mutation CancelSubscription {
|
|||||||
stripeSubscriptionId
|
stripeSubscriptionId
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
mutation CreateAuthHandoffToken {
|
|
||||||
createAuthHandoffToken {
|
|
||||||
token
|
|
||||||
expiresInSeconds
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
mutation ExchangeAuthHandoffToken($token: String!) {
|
|
||||||
exchangeAuthHandoffToken(token: $token) {
|
|
||||||
customToken
|
|
||||||
userId
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -211,6 +211,13 @@ 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,13 +1072,6 @@ 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!
|
||||||
@@ -1203,31 +1196,6 @@ 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