update with metadata field

This commit is contained in:
2025-12-16 16:01:30 -08:00
parent f002ce1752
commit c6e4ca005e
3 changed files with 10142 additions and 3622 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -67,6 +67,7 @@ mutation CancelSubscription {
mutation SubmitCancellationFeedback(
$reasons: [CancellationReasonEnum!]
$feedback: String
$metadata: CancellationFeedbackMetadataInput
) {
submitCancellationFeedback(reasons: $reasons, feedback: $feedback)
}

View File

@@ -1075,6 +1075,7 @@ type Mutation {
submitCancellationFeedback(
reasons: [CancellationReasonEnum!] = null
feedback: String = null
metadata: CancellationFeedbackMetadataInput = null
): Boolean!
findPrerecordTableLayout(b64Image: String!, videoId: Int!): HomographyInfoGQL
createUploadStream(
@@ -1209,6 +1210,12 @@ enum CancellationReasonEnum {
OTHER
}
input CancellationFeedbackMetadataInput {
appVersion: String = null
gitRevision: String = null
platform: String = null
}
type CreateUploadStreamReturn {
videoId: Int!
}