This commit is contained in:
freedakgmail
2025-11-30 09:16:43 +08:00
parent b436ae0680
commit fd9c064749
227 changed files with 1251 additions and 912 deletions
+2 -1
View File
@@ -2,7 +2,7 @@
// Do not edit this file manually
type AppRoutes = "/" | "/admin" | "/auth/register" | "/auth/signin" | "/help" | "/members" | "/members/[id]" | "/members/new" | "/relationship" | "/settings" | "/timeline" | "/tree" | "/trees/new"
type AppRouteHandlerRoutes = "/api/admin/login-logs" | "/api/admin/users" | "/api/admin/users/[userId]" | "/api/auth/[...nextauth]" | "/api/auth/register" | "/api/trees" | "/api/trees/[treeId]" | "/api/trees/[treeId]/activity-logs" | "/api/trees/[treeId]/collaborators" | "/api/trees/[treeId]/import" | "/api/trees/[treeId]/invite" | "/api/trees/[treeId]/members" | "/api/trees/[treeId]/members/[memberId]" | "/api/trees/[treeId]/members/[memberId]/history" | "/api/trees/[treeId]/relationship" | "/api/upload" | "/api/user/activity-logs" | "/api/user/change-password" | "/api/user/profile" | "/uploads/[filename]"
type AppRouteHandlerRoutes = "/api/admin/login-logs" | "/api/admin/users" | "/api/admin/users/[userId]" | "/api/auth/[...nextauth]" | "/api/auth/register" | "/api/trees" | "/api/trees/[treeId]" | "/api/trees/[treeId]/activity-logs" | "/api/trees/[treeId]/collaborators" | "/api/trees/[treeId]/import" | "/api/trees/[treeId]/invite" | "/api/trees/[treeId]/members" | "/api/trees/[treeId]/members/[memberId]" | "/api/trees/[treeId]/members/[memberId]/history" | "/api/trees/[treeId]/relationship" | "/api/upload" | "/api/user/activity-logs" | "/api/user/change-password" | "/api/user/profile" | "/api/users/me/seen-help" | "/uploads/[filename]"
type PageRoutes = never
type LayoutRoutes = "/"
type RedirectRoutes = never
@@ -32,6 +32,7 @@ interface ParamMap {
"/api/user/activity-logs": {}
"/api/user/change-password": {}
"/api/user/profile": {}
"/api/users/me/seen-help": {}
"/auth/register": {}
"/auth/signin": {}
"/help": {}