Checkout‑Registrierung validiert jetzt die E‑Mail‑Länge, und die Checkout‑Flows sind Paddle‑only: Stripe‑Endpoints/

Services/Helpers sind entfernt, API/Frontend angepasst, Tests auf Paddle umgestellt. Außerdem wurde die CSP gestrafft
  und Stripe‑Texte in den Abandoned‑Checkout‑Mails ersetzt.
This commit is contained in:
Codex Agent
2025-12-18 11:14:42 +01:00
parent 7213aef108
commit 2e4226a838
33 changed files with 314 additions and 1219 deletions

View File

@@ -41,7 +41,6 @@ export interface CheckoutWizardState {
name?: string;
pending_purchase?: boolean;
} | null;
paymentProvider?: 'stripe' | 'paddle';
isProcessing?: boolean;
}
@@ -51,7 +50,6 @@ export interface CheckoutWizardContextValue extends CheckoutWizardState {
previousStep: () => void;
setSelectedPackage: (pkg: CheckoutPackage) => void;
markAuthenticated: (user: CheckoutWizardState['authUser']) => void;
setPaymentProvider: (provider: CheckoutWizardState['paymentProvider']) => void;
resetPaymentState: () => void;
cancelCheckout: () => void;
}