Paul E
Paul E
KKinde
Created by Paul E on 3/17/2025 in #💻┃support
Kinde + ParaglideJS in SvelteKit
Hi Ages, thank you this works at runtime 🙂 There is this compile time warning: Unexpected any. Specify a different type.eslint@typescript-eslint/no-explicit-any I suppose a more robust solution might be a good idea for the future. ParaglideJS seems to be one of the most common ways to integrate internationalization into a SvelteKit App. Much appreciated and wish you a great week
10 replies
KKinde
Created by Paul E on 3/17/2025 in #💻┃support
Kinde + ParaglideJS in SvelteKit
Hi Ages, with your code I receive following error in the kindeHandle with the event argument when calling sessionHooks({ event }):
Type 'RequestEvent<Partial<Record<string, string>>, string | null>' is not assignable to type 'EventHandler'.
Type 'RequestEvent<Partial<Record<string, string>>, string | null>' is not assignable to type '{ request: Request & SessionManager & { session: Record<string, unknown> & { destroy: (error?: unknown) => void; }; }; }'.
Types of property 'request' are incompatible.
Type 'Request' is not assignable to type 'Request & SessionManager & { session: Record<string, unknown> & { destroy: (error?: unknown) => void; }; }'.
Type 'Request' is missing the following properties from type 'SessionManager': getSessionItem, setSessionItem, removeSessionItem, destroySessionts(2322)
sessionHooks.d.ts(3, 5): The expected type comes from property 'event' which is declared here on type '{ event: EventHandler; }'
Type 'RequestEvent<Partial<Record<string, string>>, string | null>' is not assignable to type 'EventHandler'.
Type 'RequestEvent<Partial<Record<string, string>>, string | null>' is not assignable to type '{ request: Request & SessionManager & { session: Record<string, unknown> & { destroy: (error?: unknown) => void; }; }; }'.
Types of property 'request' are incompatible.
Type 'Request' is not assignable to type 'Request & SessionManager & { session: Record<string, unknown> & { destroy: (error?: unknown) => void; }; }'.
Type 'Request' is missing the following properties from type 'SessionManager': getSessionItem, setSessionItem, removeSessionItem, destroySessionts(2322)
sessionHooks.d.ts(3, 5): The expected type comes from property 'event' which is declared here on type '{ event: EventHandler; }'
In this code block:
// Kinde middleware handle adapted to SvelteKit's Handle type
const kindeHandle: Handle = async ({ event, resolve }) => {
sessionHooks({ event });
return await resolve(event);
};
// Kinde middleware handle adapted to SvelteKit's Handle type
const kindeHandle: Handle = async ({ event, resolve }) => {
sessionHooks({ event });
return await resolve(event);
};
10 replies
KKinde
Created by Paul E on 3/17/2025 in #💻┃support
Kinde + ParaglideJS in SvelteKit
Hi Ages, my intention is to use the latest packages. From my packages.json: devDependencies: "@sveltejs/kit": "^2.20.1", "@inlang/paraglide-js": "2.0.1" dependencies: "@kinde-oss/kinde-auth-sveltekit": "^2.1.0" Is that the latest? Checking GitHub it is.
10 replies
KKinde
Created by Paul E on 3/17/2025 in #💻┃support
Kinde + ParaglideJS in SvelteKit
Hi Ages! Thank you for your message and support 🙂 I receive the following error. The types Handle (from @sveltejs/kit) and Handler (from @kinde-oss/kinde-auth-sveltekit) don't match together.
Type 'Handle' is not assignable to type 'Handler'.
Types of parameters 'input' and 'input' are incompatible.
Type '{ event: EventHandler; resolve(event: RequestEvent<Partial<Record<string, string>>, string | null>, opts?: ResolveOptions | undefined): MaybePromise<...>; }' is not assignable to type '{ event: RequestEvent<Partial<Record<string, string>>, string | null>; resolve: (event: RequestEvent<Partial<Record<string, string>>, string | null>, opts?: ResolveOptions | undefined) => MaybePromise<...>; }'.
Types of property 'resolve' are incompatible.
Type '(event: import("@sveltejs/kit").RequestEvent<Partial<Record<string, string>>, string | null>, opts?: import("node_modules/vite/dist/node/index").ResolveOptions | undefined) => MaybePromise<...>' is not assignable to type '(event: import("@sveltejs/kit").RequestEvent<Partial<Record<string, string>>, string | null>, opts?: import("@sveltejs/kit").ResolveOptions | undefined) => MaybePromise<...>'.
Types of parameters 'opts' and 'opts' are incompatible.
Type 'import("@sveltejs/kit").ResolveOptions | undefined' is not assignable to type 'import("/node_modules/vite/dist/node/index").ResolveOptions | undefined'.
Type 'ResolveOptions' has no properties in common with type 'ResolveOptions'.ts(2322)
Type 'Handle' is not assignable to type 'Handler'.
Types of parameters 'input' and 'input' are incompatible.
Type '{ event: EventHandler; resolve(event: RequestEvent<Partial<Record<string, string>>, string | null>, opts?: ResolveOptions | undefined): MaybePromise<...>; }' is not assignable to type '{ event: RequestEvent<Partial<Record<string, string>>, string | null>; resolve: (event: RequestEvent<Partial<Record<string, string>>, string | null>, opts?: ResolveOptions | undefined) => MaybePromise<...>; }'.
Types of property 'resolve' are incompatible.
Type '(event: import("@sveltejs/kit").RequestEvent<Partial<Record<string, string>>, string | null>, opts?: import("node_modules/vite/dist/node/index").ResolveOptions | undefined) => MaybePromise<...>' is not assignable to type '(event: import("@sveltejs/kit").RequestEvent<Partial<Record<string, string>>, string | null>, opts?: import("@sveltejs/kit").ResolveOptions | undefined) => MaybePromise<...>'.
Types of parameters 'opts' and 'opts' are incompatible.
Type 'import("@sveltejs/kit").ResolveOptions | undefined' is not assignable to type 'import("/node_modules/vite/dist/node/index").ResolveOptions | undefined'.
Type 'ResolveOptions' has no properties in common with type 'ResolveOptions'.ts(2322)
10 replies
CCConvex Community
Created by marnec on 2/25/2025 in #support-community
slow queries (using indexes)
@Jamie Hi Jamie! What performance can I expect from Europe? I want my app to be snappy and are wondering whether Convex is the right tech. (I don’t want to selfhost right now) thank you 🙂
7 replies
CCConvex Community
Created by Connor on 1/25/2024 in #support-community
server region
Looking forward to region support. Not everyone wants to host their own infra. Please keep us updated!
47 replies