diff --git a/src/index.tsx b/src/index.tsx index 9b463dd..56937c3 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -9683,7 +9683,11 @@ export const SubmitCancellationFeedbackDocument = gql` $feedback: String $metadata: CancellationFeedbackMetadataInput ) { - submitCancellationFeedback(reasons: $reasons, feedback: $feedback) + submitCancellationFeedback( + reasons: $reasons + feedback: $feedback + metadata: $metadata + ) } `; export type SubmitCancellationFeedbackMutationFn = Apollo.MutationFunction< diff --git a/src/operations/payments.gql b/src/operations/payments.gql index 1d5fafa..a2c7ec6 100644 --- a/src/operations/payments.gql +++ b/src/operations/payments.gql @@ -68,5 +68,9 @@ mutation SubmitCancellationFeedback( $feedback: String $metadata: CancellationFeedbackMetadataInput ) { - submitCancellationFeedback(reasons: $reasons, feedback: $feedback) + submitCancellationFeedback( + reasons: $reasons + feedback: $feedback + metadata: $metadata + ) }