add submitCancellationFeedback & cancellation reason enum
Some checks failed
Tests / Tests (pull_request) Failing after 0s
Some checks failed
Tests / Tests (pull_request) Failing after 0s
This commit is contained in:
@@ -140,6 +140,15 @@ export type BucketSetInputGql = {
|
|||||||
feature: Scalars["String"]["input"];
|
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 = {
|
export type Challenge = {
|
||||||
__typename?: "Challenge";
|
__typename?: "Challenge";
|
||||||
createdAt: Scalars["DateTime"]["output"];
|
createdAt: Scalars["DateTime"]["output"];
|
||||||
@@ -2361,6 +2370,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;
|
||||||
@@ -2537,6 +2547,11 @@ export type MutationStartChallengeArgs = {
|
|||||||
challengeId: Scalars["ID"]["input"];
|
challengeId: Scalars["ID"]["input"];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export type MutationSubmitCancellationFeedbackArgs = {
|
||||||
|
feedback?: InputMaybe<Scalars["String"]["input"]>;
|
||||||
|
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"];
|
||||||
|
|||||||
@@ -1072,6 +1072,10 @@ 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
|
||||||
|
): Boolean!
|
||||||
findPrerecordTableLayout(b64Image: String!, videoId: Int!): HomographyInfoGQL
|
findPrerecordTableLayout(b64Image: String!, videoId: Int!): HomographyInfoGQL
|
||||||
createUploadStream(
|
createUploadStream(
|
||||||
videoMetadata: VideoMetadataInput!
|
videoMetadata: VideoMetadataInput!
|
||||||
@@ -1196,6 +1200,15 @@ type CreateSubscriptionResultGQL {
|
|||||||
sessionId: String!
|
sessionId: String!
|
||||||
}
|
}
|
||||||
|
|
||||||
|
enum CancellationReasonEnum {
|
||||||
|
DONT_PLAY_ENOUGH
|
||||||
|
TOO_EXPENSIVE
|
||||||
|
MISSING_FEATURES
|
||||||
|
TECHNICAL_ISSUES
|
||||||
|
DATA_NOT_ACCURATE
|
||||||
|
OTHER
|
||||||
|
}
|
||||||
|
|
||||||
type CreateUploadStreamReturn {
|
type CreateUploadStreamReturn {
|
||||||
videoId: Int!
|
videoId: Int!
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user