chore(api): fix logger issue

This commit is contained in:
Lars Hampe 2024-11-12 21:34:32 +01:00
parent f284f74734
commit 8309d3a92c
3 changed files with 25 additions and 11 deletions

View File

@ -20,10 +20,7 @@ const route = createRoute({
}, },
}, },
responses: { responses: {
200: { 204: {
content: {
'application/json': { schema: UserOutput },
},
description: 'Return success', description: 'Return success',
}, },
...openApiErrorResponses, ...openApiErrorResponses,

View File

@ -19,7 +19,7 @@ export const logger = (): MiddlewareHandler => {
direction: 'in', direction: 'in',
method, method,
path, path,
userId: dbUser.id, userId: dbUser?.id,
requestId, requestId,
}) })
@ -31,7 +31,7 @@ export const logger = (): MiddlewareHandler => {
method, method,
path, path,
status: c.res.status, status: c.res.status,
userId: dbUser.id, userId: dbUser?.id,
requestId, requestId,
}) })
} }
@ -42,6 +42,7 @@ export const logger = (): MiddlewareHandler => {
method, method,
path, path,
status: c.res.status, status: c.res.status,
userId: dbUser?.id,
requestId, requestId,
}) })
} }
@ -52,6 +53,7 @@ export const logger = (): MiddlewareHandler => {
method, method,
path, path,
status: c.res.status, status: c.res.status,
userId: dbUser?.id,
requestId, requestId,
}) })
} }

View File

@ -1,12 +1,12 @@
/* prettier-ignore-start */
/* eslint-disable */ /* eslint-disable */
// @ts-nocheck // @ts-nocheck
// noinspection JSUnusedGlobalSymbols // noinspection JSUnusedGlobalSymbols
// This file is auto-generated by TanStack Router // This file was automatically generated by TanStack Router.
// You should NOT make any changes in this file as it will be overwritten.
// Additionally, you should also exclude this file from your linter and/or formatter to prevent it from being checked or modified.
import { createFileRoute } from '@tanstack/react-router' import { createFileRoute } from '@tanstack/react-router'
@ -39,26 +39,31 @@ const ChangelogIdEditLazyImport = createFileRoute('/changelog/$id/edit')()
// Create/Update Routes // Create/Update Routes
const CliLazyRoute = CliLazyImport.update({ const CliLazyRoute = CliLazyImport.update({
id: '/cli',
path: '/cli', path: '/cli',
getParentRoute: () => rootRoute, getParentRoute: () => rootRoute,
} as any).lazy(() => import('./routes/cli.lazy').then((d) => d.Route)) } as any).lazy(() => import('./routes/cli.lazy').then((d) => d.Route))
const IndexLazyRoute = IndexLazyImport.update({ const IndexLazyRoute = IndexLazyImport.update({
id: '/',
path: '/', path: '/',
getParentRoute: () => rootRoute, getParentRoute: () => rootRoute,
} as any).lazy(() => import('./routes/index.lazy').then((d) => d.Route)) } as any).lazy(() => import('./routes/index.lazy').then((d) => d.Route))
const UserIndexLazyRoute = UserIndexLazyImport.update({ const UserIndexLazyRoute = UserIndexLazyImport.update({
id: '/user/',
path: '/user/', path: '/user/',
getParentRoute: () => rootRoute, getParentRoute: () => rootRoute,
} as any).lazy(() => import('./routes/user/index.lazy').then((d) => d.Route)) } as any).lazy(() => import('./routes/user/index.lazy').then((d) => d.Route))
const PageIndexLazyRoute = PageIndexLazyImport.update({ const PageIndexLazyRoute = PageIndexLazyImport.update({
id: '/page/',
path: '/page/', path: '/page/',
getParentRoute: () => rootRoute, getParentRoute: () => rootRoute,
} as any).lazy(() => import('./routes/page.index.lazy').then((d) => d.Route)) } as any).lazy(() => import('./routes/page.index.lazy').then((d) => d.Route))
const ChangelogIndexLazyRoute = ChangelogIndexLazyImport.update({ const ChangelogIndexLazyRoute = ChangelogIndexLazyImport.update({
id: '/changelog/',
path: '/changelog/', path: '/changelog/',
getParentRoute: () => rootRoute, getParentRoute: () => rootRoute,
} as any).lazy(() => } as any).lazy(() =>
@ -66,6 +71,7 @@ const ChangelogIndexLazyRoute = ChangelogIndexLazyImport.update({
) )
const AccessTokensIndexLazyRoute = AccessTokensIndexLazyImport.update({ const AccessTokensIndexLazyRoute = AccessTokensIndexLazyImport.update({
id: '/access-tokens/',
path: '/access-tokens/', path: '/access-tokens/',
getParentRoute: () => rootRoute, getParentRoute: () => rootRoute,
} as any).lazy(() => } as any).lazy(() =>
@ -73,16 +79,19 @@ const AccessTokensIndexLazyRoute = AccessTokensIndexLazyImport.update({
) )
const PageCreateLazyRoute = PageCreateLazyImport.update({ const PageCreateLazyRoute = PageCreateLazyImport.update({
id: '/page/create',
path: '/page/create', path: '/page/create',
getParentRoute: () => rootRoute, getParentRoute: () => rootRoute,
} as any).lazy(() => import('./routes/page.create.lazy').then((d) => d.Route)) } as any).lazy(() => import('./routes/page.create.lazy').then((d) => d.Route))
const PageIdLazyRoute = PageIdLazyImport.update({ const PageIdLazyRoute = PageIdLazyImport.update({
id: '/page/$id',
path: '/page/$id', path: '/page/$id',
getParentRoute: () => rootRoute, getParentRoute: () => rootRoute,
} as any).lazy(() => import('./routes/page.$id.lazy').then((d) => d.Route)) } as any).lazy(() => import('./routes/page.$id.lazy').then((d) => d.Route))
const ChangelogCreateLazyRoute = ChangelogCreateLazyImport.update({ const ChangelogCreateLazyRoute = ChangelogCreateLazyImport.update({
id: '/changelog/create',
path: '/changelog/create', path: '/changelog/create',
getParentRoute: () => rootRoute, getParentRoute: () => rootRoute,
} as any).lazy(() => } as any).lazy(() =>
@ -90,11 +99,13 @@ const ChangelogCreateLazyRoute = ChangelogCreateLazyImport.update({
) )
const ChangelogIdLazyRoute = ChangelogIdLazyImport.update({ const ChangelogIdLazyRoute = ChangelogIdLazyImport.update({
id: '/changelog/$id',
path: '/changelog/$id', path: '/changelog/$id',
getParentRoute: () => rootRoute, getParentRoute: () => rootRoute,
} as any).lazy(() => import('./routes/changelog.$id.lazy').then((d) => d.Route)) } as any).lazy(() => import('./routes/changelog.$id.lazy').then((d) => d.Route))
const AccessTokensNewLazyRoute = AccessTokensNewLazyImport.update({ const AccessTokensNewLazyRoute = AccessTokensNewLazyImport.update({
id: '/access-tokens/new',
path: '/access-tokens/new', path: '/access-tokens/new',
getParentRoute: () => rootRoute, getParentRoute: () => rootRoute,
} as any).lazy(() => } as any).lazy(() =>
@ -102,6 +113,7 @@ const AccessTokensNewLazyRoute = AccessTokensNewLazyImport.update({
) )
const PageIdIndexLazyRoute = PageIdIndexLazyImport.update({ const PageIdIndexLazyRoute = PageIdIndexLazyImport.update({
id: '/',
path: '/', path: '/',
getParentRoute: () => PageIdLazyRoute, getParentRoute: () => PageIdLazyRoute,
} as any).lazy(() => } as any).lazy(() =>
@ -109,6 +121,7 @@ const PageIdIndexLazyRoute = PageIdIndexLazyImport.update({
) )
const ChangelogIdIndexLazyRoute = ChangelogIdIndexLazyImport.update({ const ChangelogIdIndexLazyRoute = ChangelogIdIndexLazyImport.update({
id: '/',
path: '/', path: '/',
getParentRoute: () => ChangelogIdLazyRoute, getParentRoute: () => ChangelogIdLazyRoute,
} as any).lazy(() => } as any).lazy(() =>
@ -116,12 +129,14 @@ const ChangelogIdIndexLazyRoute = ChangelogIdIndexLazyImport.update({
) )
const PageIdEditLazyRoute = PageIdEditLazyImport.update({ const PageIdEditLazyRoute = PageIdEditLazyImport.update({
id: '/edit',
path: '/edit', path: '/edit',
getParentRoute: () => PageIdLazyRoute, getParentRoute: () => PageIdLazyRoute,
} as any).lazy(() => import('./routes/page.$id.edit.lazy').then((d) => d.Route)) } as any).lazy(() => import('./routes/page.$id.edit.lazy').then((d) => d.Route))
const ChangelogIdVersionCreateLazyRoute = const ChangelogIdVersionCreateLazyRoute =
ChangelogIdVersionCreateLazyImport.update({ ChangelogIdVersionCreateLazyImport.update({
id: '/versionCreate',
path: '/versionCreate', path: '/versionCreate',
getParentRoute: () => ChangelogIdLazyRoute, getParentRoute: () => ChangelogIdLazyRoute,
} as any).lazy(() => } as any).lazy(() =>
@ -129,6 +144,7 @@ const ChangelogIdVersionCreateLazyRoute =
) )
const ChangelogIdEditLazyRoute = ChangelogIdEditLazyImport.update({ const ChangelogIdEditLazyRoute = ChangelogIdEditLazyImport.update({
id: '/edit',
path: '/edit', path: '/edit',
getParentRoute: () => ChangelogIdLazyRoute, getParentRoute: () => ChangelogIdLazyRoute,
} as any).lazy(() => } as any).lazy(() =>
@ -137,6 +153,7 @@ const ChangelogIdEditLazyRoute = ChangelogIdEditLazyImport.update({
const ChangelogIdVersionVersionIdRoute = const ChangelogIdVersionVersionIdRoute =
ChangelogIdVersionVersionIdImport.update({ ChangelogIdVersionVersionIdImport.update({
id: '/version/$versionId',
path: '/version/$versionId', path: '/version/$versionId',
getParentRoute: () => ChangelogIdLazyRoute, getParentRoute: () => ChangelogIdLazyRoute,
} as any) } as any)
@ -451,8 +468,6 @@ export const routeTree = rootRoute
._addFileChildren(rootRouteChildren) ._addFileChildren(rootRouteChildren)
._addFileTypes<FileRouteTypes>() ._addFileTypes<FileRouteTypes>()
/* prettier-ignore-end */
/* ROUTE_MANIFEST_START /* ROUTE_MANIFEST_START
{ {
"routes": { "routes": {