From 8649673f1b297affae095ebc356a8cabccbb4efe Mon Sep 17 00:00:00 2001 From: Loewy Date: Tue, 16 Dec 2025 17:09:18 -0800 Subject: [PATCH] add missing field --- src/index.tsx | 6 +++++- src/operations/payments.gql | 6 +++++- 2 files changed, 10 insertions(+), 2 deletions(-) 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 + ) }