404 with stripe plugin

hey all im getting a 404 when trying to get a stripe url:
const { data, error } = await client.subscription.upgrade({
annual: biAnnual,
plan: 'basic',
successUrl: '/dashboard',
cancelUrl: '/pricing'
});
console.log(data, error);
if (error) console.error(error.message);
const { data, error } = await client.subscription.upgrade({
annual: biAnnual,
plan: 'basic',
successUrl: '/dashboard',
cancelUrl: '/pricing'
});
console.log(data, error);
if (error) console.error(error.message);
/api/auth/subscription/upgrade 404 its also not generating my schema for stripe using the CI tool- the Session table was not created. using svelte5
1 Reply
sanser
sanserOP5w ago
how should the stripe schema look, its only added stripeCustomerId in my user table?

Did you find this page helpful?