import { stepPaywallContent } from '@/steps/content/step-32-paywall.content'; import type { BillingPlanCatalog } from '@funnelsgrove/payments'; export const billingTestPlans = { primary: { projectPlanId: '32b31f69-5907-4736-89c7-76d3acb38813', title: stepPaywallContent.locales.en.catalogLabels["1-Week Plan"], providerPlanId: 'price_1TOQ2fPEfkEVo5khumapOSsI', priceLabel: stepPaywallContent.locales.en.catalogLabels["$9.99/week"], perDayAmount: '$1.43', amountCents: 999, checkoutSummaryLabel: stepPaywallContent.locales.en.catalogLabels["$9.99 today"], }, secondary: { projectPlanId: 'ce0a0022-7bf0-41f2-a707-edc5e6113a07', title: stepPaywallContent.locales.en.catalogLabels["1-Month Plan"], providerPlanId: 'price_1TSgPZPEfkEVo5khMbtAlqsG', featuredTag: stepPaywallContent.locales.en.catalogLabels["🔥 Most Popular Choice"], priceLabel: stepPaywallContent.locales.en.catalogLabels["$29.99/month"], perDayAmount: '$1.00', amountCents: 2999, checkoutSummaryLabel: stepPaywallContent.locales.en.catalogLabels["$29.99 today"], }, tertiary: { projectPlanId: 'fb623ebc-c2fd-4e6a-8eb6-b8ed92db1b21', title: stepPaywallContent.locales.en.catalogLabels["1-Year Plan"], providerPlanId: 'price_1TBgcaPEfkEVo5khbGnGhrBA', priceLabel: stepPaywallContent.locales.en.catalogLabels["$59.99/year"], perDayAmount: '$0.16', amountCents: 5999, checkoutSummaryLabel: stepPaywallContent.locales.en.catalogLabels["$59.99 today"], }, } satisfies BillingPlanCatalog;