update with metadata field
This commit is contained in:
13756
src/index.tsx
13756
src/index.tsx
File diff suppressed because it is too large
Load Diff
@@ -67,6 +67,7 @@ mutation CancelSubscription {
|
|||||||
mutation SubmitCancellationFeedback(
|
mutation SubmitCancellationFeedback(
|
||||||
$reasons: [CancellationReasonEnum!]
|
$reasons: [CancellationReasonEnum!]
|
||||||
$feedback: String
|
$feedback: String
|
||||||
|
$metadata: CancellationFeedbackMetadataInput
|
||||||
) {
|
) {
|
||||||
submitCancellationFeedback(reasons: $reasons, feedback: $feedback)
|
submitCancellationFeedback(reasons: $reasons, feedback: $feedback)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1075,6 +1075,7 @@ type Mutation {
|
|||||||
submitCancellationFeedback(
|
submitCancellationFeedback(
|
||||||
reasons: [CancellationReasonEnum!] = null
|
reasons: [CancellationReasonEnum!] = null
|
||||||
feedback: String = null
|
feedback: String = null
|
||||||
|
metadata: CancellationFeedbackMetadataInput = null
|
||||||
): Boolean!
|
): Boolean!
|
||||||
findPrerecordTableLayout(b64Image: String!, videoId: Int!): HomographyInfoGQL
|
findPrerecordTableLayout(b64Image: String!, videoId: Int!): HomographyInfoGQL
|
||||||
createUploadStream(
|
createUploadStream(
|
||||||
@@ -1209,6 +1210,12 @@ enum CancellationReasonEnum {
|
|||||||
OTHER
|
OTHER
|
||||||
}
|
}
|
||||||
|
|
||||||
|
input CancellationFeedbackMetadataInput {
|
||||||
|
appVersion: String = null
|
||||||
|
gitRevision: String = null
|
||||||
|
platform: String = null
|
||||||
|
}
|
||||||
|
|
||||||
type CreateUploadStreamReturn {
|
type CreateUploadStreamReturn {
|
||||||
videoId: Int!
|
videoId: Int!
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user