Stripe subscription update error

I'm working on a nuxt project with better-auth and stripe plugin. I have this code :
const checkout = async () => {
const { data, error } = await client.subscription.upgrade({
plan: 'pro',
successUrl: '/settings/billing',
cancelUrl: '/settings/billing'
})

console.log('data', data)
console.log('error', error)
}
const checkout = async () => {
const { data, error } = await client.subscription.upgrade({
plan: 'pro',
successUrl: '/settings/billing',
cancelUrl: '/settings/billing'
})

console.log('data', data)
console.log('error', error)
}
It redirect me on the stripe checkout page but I when I proceed I recieve this error :
Argument periodStart: Invalid value provided. Expected DateTime, NullableDateTimeFieldUpdateOperationsInput or Null, provided Int.

Invalid prisma.subscription.update() invocation:

{
where: {
referenceId: "1234"
},
data: {
plan: "pro",
stripeSubscriptionId: "sub_1234",
status: "active",
periodStart: 1741337914,
~~~~~~~~~~
periodEnd: 1744016314,
seats: 1
}
}
Argument periodStart: Invalid value provided. Expected DateTime, NullableDateTimeFieldUpdateOperationsInput or Null, provided Int.

Invalid prisma.subscription.update() invocation:

{
where: {
referenceId: "1234"
},
data: {
plan: "pro",
stripeSubscriptionId: "sub_1234",
status: "active",
periodStart: 1741337914,
~~~~~~~~~~
periodEnd: 1744016314,
seats: 1
}
}
Solution:
@bekacru I have the version 1.2.4-beta.5
Jump to solution
18 Replies
bekacru
bekacru4w ago
update to 1.2.4-beta.4
David
DavidOP4w ago
I have updated to v1.2.4-beta.4 and I have now ts errors. I have this code :
import { betterAuth } from 'better-auth'
import { prismaAdapter } from 'better-auth/adapters/prisma'
import { PrismaClient } from '@prisma/client'
import { stripe } from '@better-auth/stripe'
import Stripe from 'stripe'

const stripeClient = new Stripe(process.env.STRIPE_SECRET_KEY!)
export const prisma = new PrismaClient()

export const auth = betterAuth({
baseURL: process.env.BETTER_AUTH_URL!,
database: prismaAdapter(prisma, { provider: 'postgresql' }),
emailAndPassword: { enabled: true },
socialProviders: {
github: {
clientId: process.env.GITHUB_CLIENT_ID!,
clientSecret: process.env.GITHUB_CLIENT_SECRET!
}
},
user: {
deleteUser: { enabled: true }
},
account: {
accountLinking: { enabled: true, allowDifferentEmails: true }
},
plugins: [
stripe({
^^^^^^^^
stripeClient,
^^^^^^^^^^^^^
stripeWebhookSecret: process.env.STRIPE_WEBHOOK_SECRET!,
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
createCustomerOnSignUp: true,
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
subscription: {
^^^^^^^^^^^^^^^
enabled: true,
^^^^^^^^^^^^^^
plans: [
^^^^^^^^
{
^
name: 'pro',
^^^^^^^^^^^^
priceId: 'price_1234'
^^^^^^^^^^^^^^^^^^^^^
}
^
]
^
}
^
})
^^
]
})
import { betterAuth } from 'better-auth'
import { prismaAdapter } from 'better-auth/adapters/prisma'
import { PrismaClient } from '@prisma/client'
import { stripe } from '@better-auth/stripe'
import Stripe from 'stripe'

const stripeClient = new Stripe(process.env.STRIPE_SECRET_KEY!)
export const prisma = new PrismaClient()

export const auth = betterAuth({
baseURL: process.env.BETTER_AUTH_URL!,
database: prismaAdapter(prisma, { provider: 'postgresql' }),
emailAndPassword: { enabled: true },
socialProviders: {
github: {
clientId: process.env.GITHUB_CLIENT_ID!,
clientSecret: process.env.GITHUB_CLIENT_SECRET!
}
},
user: {
deleteUser: { enabled: true }
},
account: {
accountLinking: { enabled: true, allowDifferentEmails: true }
},
plugins: [
stripe({
^^^^^^^^
stripeClient,
^^^^^^^^^^^^^
stripeWebhookSecret: process.env.STRIPE_WEBHOOK_SECRET!,
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
createCustomerOnSignUp: true,
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
subscription: {
^^^^^^^^^^^^^^^
enabled: true,
^^^^^^^^^^^^^^
plans: [
^^^^^^^^
{
^
name: 'pro',
^^^^^^^^^^^^
priceId: 'price_1234'
^^^^^^^^^^^^^^^^^^^^^
}
^
]
^
}
^
})
^^
]
})
@bekacru With this errors :
Type '{ id: "stripe"; endpoints: { stripeWebhook: { <C extends [({ body?: undefined; method?: "POST" | undefined; query?: Record<string, any> | undefined; params?: Record<string, any> | undefined; request?: Request | undefined; headers?: HeadersInit | undefined; asResponse?: boolean | undefined; returnHeaders?: boolean | ...' is not assignable to type 'BetterAuthPlugin'.
Types of property 'init' are incompatible.
Type '(ctx: AuthContext) => { options: { databaseHooks: { user: { create: { after(user: { id: string; name: string; email: string; emailVerified: boolean; createdAt: Date; updatedAt: Date; image?: string | ... 1 more ... | undefined; }, ctx: GenericEndpointContext | undefined): Promise<...>; }; }; }; }; }' is not assignable to type '(ctx: AuthContext) => void | { context?: { appName?: string | undefined; baseURL?: string | undefined; secret?: string | undefined; secondaryStorage?: { get?: ((key: string) => string | ... 1 more ... | null) | undefined; set?: ((key: string, value: string, ttl?: number | undefined) => void | Promise<...>) | undefin...'.
Types of parameters 'ctx' and 'ctx' are incompatible.
Type 'import("C:/.../node_modules/.pnpm/[email protected][email protected]/node_modules/better-auth/dist/shared/better-auth.purQujiV").l' is not assignable to type 'import("C:/.../node_modules/.pnpm/[email protected][email protected]/node_modules/better-auth/dist/shared/better-auth.purQujiV").l'.
The types of 'options.socialProviders' are incompatible between these types.
Type 'import("C:/.../node_modules/.pnpm/[email protected][email protected]/node_modules/better-auth/dist/shared/better-auth.BRpbZ8Wm").S | undefined' is not assignable to type 'import("C:/.../node_modules/.pnpm/[email protected][email protected]/node_modules/better-auth/dist/shared/better-auth.BRpbZ8Wm").S | undefined'.
Type '{ id: "stripe"; endpoints: { stripeWebhook: { <C extends [({ body?: undefined; method?: "POST" | undefined; query?: Record<string, any> | undefined; params?: Record<string, any> | undefined; request?: Request | undefined; headers?: HeadersInit | undefined; asResponse?: boolean | undefined; returnHeaders?: boolean | ...' is not assignable to type 'BetterAuthPlugin'.
Types of property 'init' are incompatible.
Type '(ctx: AuthContext) => { options: { databaseHooks: { user: { create: { after(user: { id: string; name: string; email: string; emailVerified: boolean; createdAt: Date; updatedAt: Date; image?: string | ... 1 more ... | undefined; }, ctx: GenericEndpointContext | undefined): Promise<...>; }; }; }; }; }' is not assignable to type '(ctx: AuthContext) => void | { context?: { appName?: string | undefined; baseURL?: string | undefined; secret?: string | undefined; secondaryStorage?: { get?: ((key: string) => string | ... 1 more ... | null) | undefined; set?: ((key: string, value: string, ttl?: number | undefined) => void | Promise<...>) | undefin...'.
Types of parameters 'ctx' and 'ctx' are incompatible.
Type 'import("C:/.../node_modules/.pnpm/[email protected][email protected]/node_modules/better-auth/dist/shared/better-auth.purQujiV").l' is not assignable to type 'import("C:/.../node_modules/.pnpm/[email protected][email protected]/node_modules/better-auth/dist/shared/better-auth.purQujiV").l'.
The types of 'options.socialProviders' are incompatible between these types.
Type 'import("C:/.../node_modules/.pnpm/[email protected][email protected]/node_modules/better-auth/dist/shared/better-auth.BRpbZ8Wm").S | undefined' is not assignable to type 'import("C:/.../node_modules/.pnpm/[email protected][email protected]/node_modules/better-auth/dist/shared/better-auth.BRpbZ8Wm").S | undefined'.
And this error on stripeClient plugin :
Type '{ id: "stripe-client"; $InferServerPlugin: { id: "stripe"; endpoints: { stripeWebhook: { <C extends [({ body?: undefined; method?: "POST" | undefined; query?: Record<string, any> | undefined; params?: Record<string, any> | undefined; request?: Request | undefined; headers?: HeadersInit | undefined; asResponse?: bool...' is not assignable to type 'BetterAuthClientPlugin'.
The types of '$InferServerPlugin.init' are incompatible between these types.
Type '(ctx: AuthContext) => { options: { databaseHooks: { user: { create: { after(user: { id: string; name: string; email: string; emailVerified: boolean; createdAt: Date; updatedAt: Date; image?: string | ... 1 more ... | undefined; }, ctx: GenericEndpointContext | undefined): Promise<...>; }; }; }; }; }' is not assignable to type '(ctx: AuthContext) => void | { context?: { session?: { session?: { [x: string]: any; id?: string | undefined; createdAt?: { toString?: (() => string) | undefined; toDateString?: (() => string) | undefined; ... 41 more ...; [Symbol.toPrimitive]?: { ...; } | undefined; } | undefined; ... 5 more ...; userAgent?: string...'.
Types of parameters 'ctx' and 'ctx' are incompatible.
Type '{ id: "stripe-client"; $InferServerPlugin: { id: "stripe"; endpoints: { stripeWebhook: { <C extends [({ body?: undefined; method?: "POST" | undefined; query?: Record<string, any> | undefined; params?: Record<string, any> | undefined; request?: Request | undefined; headers?: HeadersInit | undefined; asResponse?: bool...' is not assignable to type 'BetterAuthClientPlugin'.
The types of '$InferServerPlugin.init' are incompatible between these types.
Type '(ctx: AuthContext) => { options: { databaseHooks: { user: { create: { after(user: { id: string; name: string; email: string; emailVerified: boolean; createdAt: Date; updatedAt: Date; image?: string | ... 1 more ... | undefined; }, ctx: GenericEndpointContext | undefined): Promise<...>; }; }; }; }; }' is not assignable to type '(ctx: AuthContext) => void | { context?: { session?: { session?: { [x: string]: any; id?: string | undefined; createdAt?: { toString?: (() => string) | undefined; toDateString?: (() => string) | undefined; ... 41 more ...; [Symbol.toPrimitive]?: { ...; } | undefined; } | undefined; ... 5 more ...; userAgent?: string...'.
Types of parameters 'ctx' and 'ctx' are incompatible.
bekacru
bekacru4w ago
add baseUrl: "." in your tsonfig and make sure to restart your ts server
David
DavidOP4w ago
In which tsconfig the global one or the server one ?
bekacru
bekacru4w ago
the server one
David
DavidOP4w ago
That doesn't change anything Here is my server/tsconfig.json @bekacru
{
"extends": "../.nuxt/tsconfig.server.json",
"compilerOptions": {
"baseUrl": "."
}
}
{
"extends": "../.nuxt/tsconfig.server.json",
"compilerOptions": {
"baseUrl": "."
}
}
Your solution doesn't work
bekacru
bekacru4w ago
make sure to update the stripe plugin to the latest beta version as well
Solution
David
David4w ago
@bekacru I have the version 1.2.4-beta.5
bekacru
bekacru4w ago
and there is stll a type error?
David
DavidOP4w ago
Yes
bekacru
bekacru4w ago
you need to upgrade both better-auth and @better-auth/stripe
Swiftzerr
Swiftzerr4w ago
@David did updating to beta fix your issue? I’m experiencing the same type error using the latest beta of both better-auth and the stripe plugin
David
DavidOP4w ago
Yes it fix my issue
Swiftzerr
Swiftzerr4w ago
@bekacru sorry for bothering you but I’m experiencing the same errors. Running 1.2.4-beta.8 on both packages. Also with ”baseUrl”: “.” Type errors on both client and server
David
DavidOP4w ago
I have removed baseUrl from my tsconfig.json
Swiftzerr
Swiftzerr4w ago
I tried that too
David
DavidOP4w ago
Oh yes I think I get it Try to clear your project remove node_modules, delete your lock file and your .nuxt dir. Then, reinstall all. @Swiftzerr
Swiftzerr
Swiftzerr4w ago
I’ll try that I appreciate the help Still have the issue sadly Just managed to solve this. For anyone else having the issue in the future, make sure you run npx @better-auth/cli@latest generate after adding the plugins to both the server and client. This should fix it.

Did you find this page helpful?