Compare commits
1 Commits
loewy/canc
...
dean/feed-
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
21ae448d27 |
@@ -140,15 +140,6 @@ export type BucketSetInputGql = {
|
||||
feature: 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 = {
|
||||
__typename?: "Challenge";
|
||||
createdAt: Scalars["DateTime"]["output"];
|
||||
@@ -2370,7 +2361,6 @@ export type Mutation = {
|
||||
setLoggerLevel: Scalars["Boolean"]["output"];
|
||||
setSegmentDuration: Scalars["Boolean"]["output"];
|
||||
startChallenge: ChallengeEntry;
|
||||
submitCancellationFeedback: Scalars["Boolean"]["output"];
|
||||
submitChallengeEntry: ChallengeEntry;
|
||||
undismissChallenge: Scalars["Boolean"]["output"];
|
||||
unfollowUser: UserGql;
|
||||
@@ -2547,11 +2537,6 @@ export type MutationStartChallengeArgs = {
|
||||
challengeId: Scalars["ID"]["input"];
|
||||
};
|
||||
|
||||
export type MutationSubmitCancellationFeedbackArgs = {
|
||||
feedback?: InputMaybe<Scalars["String"]["input"]>;
|
||||
reasons?: InputMaybe<Array<CancellationReasonEnum>>;
|
||||
};
|
||||
|
||||
export type MutationSubmitChallengeEntryArgs = {
|
||||
entryId: Scalars["ID"]["input"];
|
||||
videoId: Scalars["ID"]["input"];
|
||||
|
||||
@@ -1072,10 +1072,6 @@ type Mutation {
|
||||
deleteUser: Boolean!
|
||||
createSubscription(priceId: String!): CreateSubscriptionResultGQL!
|
||||
cancelSubscription: UserSubscriptionStatusGQL!
|
||||
submitCancellationFeedback(
|
||||
reasons: [CancellationReasonEnum!] = null
|
||||
feedback: String = null
|
||||
): Boolean!
|
||||
findPrerecordTableLayout(b64Image: String!, videoId: Int!): HomographyInfoGQL
|
||||
createUploadStream(
|
||||
videoMetadata: VideoMetadataInput!
|
||||
@@ -1112,7 +1108,7 @@ type AddShotAnnotationReturn {
|
||||
}
|
||||
|
||||
union SuccessfulAddAddShotAnnotationErrors =
|
||||
SuccessfulAdd
|
||||
| SuccessfulAdd
|
||||
| AddShotAnnotationErrors
|
||||
|
||||
type SuccessfulAdd {
|
||||
@@ -1124,7 +1120,7 @@ type AddShotAnnotationErrors {
|
||||
}
|
||||
|
||||
union DoesNotOwnShotErrOtherErrorNeedsNote =
|
||||
DoesNotOwnShotErr
|
||||
| DoesNotOwnShotErr
|
||||
| OtherErrorNeedsNote
|
||||
|
||||
type DoesNotOwnShotErr {
|
||||
@@ -1167,7 +1163,7 @@ type GetProfileUploadLinkReturn {
|
||||
}
|
||||
|
||||
union UploadLinkGetProfileUploadLinkErrors =
|
||||
UploadLink
|
||||
| UploadLink
|
||||
| GetProfileUploadLinkErrors
|
||||
|
||||
type UploadLink {
|
||||
@@ -1200,15 +1196,6 @@ type CreateSubscriptionResultGQL {
|
||||
sessionId: String!
|
||||
}
|
||||
|
||||
enum CancellationReasonEnum {
|
||||
DONT_PLAY_ENOUGH
|
||||
TOO_EXPENSIVE
|
||||
MISSING_FEATURES
|
||||
TECHNICAL_ISSUES
|
||||
DATA_NOT_ACCURATE
|
||||
OTHER
|
||||
}
|
||||
|
||||
type CreateUploadStreamReturn {
|
||||
videoId: Int!
|
||||
}
|
||||
@@ -1252,7 +1239,7 @@ type GetUploadLinkErrors {
|
||||
}
|
||||
|
||||
union MustHaveSetForUploadLinkErrSegmentAlreadyUploadedErrProcessingFailedErrNoInitForChunkedUploadErrTooManyProfileImageUploadsErrInitUploadAlreadyCompletedErrTooManyInitUploadsErr =
|
||||
MustHaveSetForUploadLinkErr
|
||||
| MustHaveSetForUploadLinkErr
|
||||
| SegmentAlreadyUploadedErr
|
||||
| ProcessingFailedErr
|
||||
| NoInitForChunkedUploadErr
|
||||
|
||||
Reference in New Issue
Block a user