We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5862f3 commit 37d575eCopy full SHA for 37d575e
static/gsApp/views/amCheckout/types.tsx
@@ -37,6 +37,7 @@ export type CheckoutAPIData = BaseCheckoutData & {
37
reservedSpans?: number;
38
reservedTransactions?: number;
39
reservedUptime?: number;
40
+ seer?: boolean;
41
};
42
43
export type StepProps = {
static/gsApp/views/amCheckout/utils.tsx
@@ -479,6 +479,9 @@ export function getCheckoutAPIData({
479
referrer: referrer || 'billing',
480
...(previewToken && {previewToken}),
481
...(paymentIntent && {paymentIntent}),
482
+ ...(formData.seerEnabled && {
483
+ seer: formData.seerEnabled,
484
+ }),
485
486
487
if (formData.applyNow) {
0 commit comments