Stripe integration with nuxt error
I'm currently working with nuxt.
Here is a part of my better auth client instance :
And I have this error on the line 8 :
And I don't have the
import { createAuthClient } from 'better-auth/vue'
import { stripeClient } from '@better-auth/stripe/client'
const client = createAuthClient({
baseURL: url.origin,
fetchOptions: { headers },
plugins: [
stripeClient({ subscription: true })
]
})
import { createAuthClient } from 'better-auth/vue'
import { stripeClient } from '@better-auth/stripe/client'
const client = createAuthClient({
baseURL: url.origin,
fetchOptions: { headers },
plugins: [
stripeClient({ subscription: true })
]
})
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?: { baseURL?: string | undefined; appName?: 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 '{ 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?: { baseURL?: string | undefined; appName?: 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.
subscription
property on client.0 Replies