correction bible du mande (store update temps reel)

This commit is contained in:
2026-02-27 23:23:43 +01:00
parent 23560ac9c3
commit 5268a7dd68
40 changed files with 1303 additions and 489 deletions

View File

@@ -2,7 +2,7 @@
// Do not edit this file manually
type AppRoutes = "/" | "/checkout" | "/dashboard" | "/features" | "/login" | "/pricing" | "/profile" | "/project/[id]" | "/project/[id]/ideas" | "/project/[id]/settings" | "/project/[id]/workflow" | "/project/[id]/world" | "/signup"
type AppRouteHandlerRoutes = "/api/ai/generate" | "/api/ai/transform" | "/api/auth/[...nextauth]" | "/api/auth/register" | "/api/chapters" | "/api/chapters/[id]" | "/api/entities" | "/api/entities/[id]" | "/api/ideas" | "/api/ideas/[id]" | "/api/projects" | "/api/projects/[id]" | "/api/projects/[id]/workflow" | "/api/user/profile"
type AppRouteHandlerRoutes = "/api/ai/generate" | "/api/ai/transform" | "/api/auth/[...nextauth]" | "/api/auth/register" | "/api/chapters" | "/api/chapters/[id]" | "/api/entities" | "/api/entities/[id]" | "/api/ideas" | "/api/ideas/[id]" | "/api/plans" | "/api/projects" | "/api/projects/[id]" | "/api/projects/[id]/workflow" | "/api/user/profile"
type PageRoutes = never
type LayoutRoutes = "/" | "/project/[id]"
type RedirectRoutes = never
@@ -22,6 +22,7 @@ interface ParamMap {
"/api/entities/[id]": { "id": string; }
"/api/ideas": {}
"/api/ideas/[id]": { "id": string; }
"/api/plans": {}
"/api/projects": {}
"/api/projects/[id]": { "id": string; }
"/api/projects/[id]/workflow": { "id": string; }

View File

@@ -254,6 +254,15 @@ type RouteHandlerConfig<Route extends AppRouteHandlerRoutes = AppRouteHandlerRou
type __Unused = __Check
}
// Validate ../../../src/app/api/plans/route.ts
{
type __IsExpected<Specific extends RouteHandlerConfig<"/api/plans">> = Specific
const handler = {} as typeof import("../../../src/app/api/plans/route.js")
type __Check = __IsExpected<typeof handler>
// @ts-ignore
type __Unused = __Check
}
// Validate ../../../src/app/api/projects/[id]/route.ts
{
type __IsExpected<Specific extends RouteHandlerConfig<"/api/projects/[id]">> = Specific